/* Global Styles */
:root {
    --primary-color: #FF7F50;
    --secondary-color: #4169E1;
    --accent-color: #FFD700;
    --dark-color: #333;
    --light-color: #f8f8f8;
    --text-color: #444;
    --text-light: #777;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
	font-family: 'Poppins', sans-serif;
	background-color: var(--light-color);
	color: var(--text-color);
	line-height: 1.6;
}

h1, h2, h3, h4 {
	font-weight: 700;
	line-height: 1.2;
	color: #66C;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

.container {
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
}

.section-header .section-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(255, 127, 80, 0.3);
}

.btn:hover {
    background: #ff6347;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 127, 80, 0.4);
}

.btn i {
    margin-left: 8px;
}

/* Header */
header {
    background-color: white;
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
    transition: var(--transition);
}

.logo img:hover {
    transform: scale(1.05);
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin: 0 15px;
    position: relative;
}

nav ul li a {
    font-weight: 600;
    color: var(--dark-color);
    padding: 10px 0;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

nav ul li a:hover::after {
    width: 100%;
}

nav ul li a i {
    font-size: 1.1rem;
}

.mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Banner Section */
.banner {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('img/travel-banner.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
    margin-top: 80px;
}

.banner-content {
    width: 100%;
    padding: 0 20px;
}

.banner h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    animation: fadeInDown 1s ease;
}

.banner .subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease;
}

.destination-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto 40px;
    animation: fadeIn 1.5s ease;
}

.grid-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    aspect-ratio: 1/1;
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.grid-item:hover img {
    transform: scale(1.1);
}

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    padding: 15px;
    color: white;
    font-weight: 600;
    transform: translateY(100%);
    transition: var(--transition);
}

.grid-item:hover .overlay {
    transform: translateY(0);
}

.cta-button {
    background: var(--accent-color);
    color: var(--dark-color);
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    display: inline-block;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.cta-button:hover {
    background: #ffcc00;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

/* Destinations Section */
.destinations {
    padding: 100px 0;
    background: white;
}

.destination-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.destination-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.destination-card:hover .card-image img {
    transform: scale(1.1);
}

.price-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.card-content {
    padding: 25px;
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.rating {
    color: var(--accent-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.rating span {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-left: 10px;
}

.card-content p {
    margin-bottom: 20px;
    color: var(--text-light);
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.card-footer span {
    color: var(--text-light);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.card-footer i {
    margin-right: 5px;
}

.card-button {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.card-button i {
    margin-left: 5px;
    transition: var(--transition);
}

.card-button:hover i {
    transform: translateX(5px);
}

.view-all {
    display: inline-block;
    margin-top: 50px;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.view-all:hover {
    color: var(--secondary-color);
}

.view-all i {
    margin-left: 8px;
    transition: var(--transition);
}

.view-all:hover i {
    transform: translateY(3px);
}

/* Offers Section */
.offers {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.offer-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.offer-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.offer-card.highlight {
    border: 2px solid var(--accent-color);
}

.offer-badge {
    position: absolute;
    top: 15px;
    right: -30px;
    background: var(--primary-color);
    color: white;
    padding: 5px 30px;
    transform: rotate(45deg);
    font-weight: 600;
    font-size: 0.8rem;
}

.offer-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.discount {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.offer-details {
    margin-bottom: 20px;
    color: var(--text-light);
}

.offer-features {
    margin-bottom: 25px;
    list-style: none;
}

.offer-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.offer-features i {
    color: var(--primary-color);
    margin-right: 10px;
}

.offer-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.valid-until {
    color: var(--text-light);
    font-size: 0.9rem;
}

.offer-button {
    color: var(--primary-color);
    font-weight: 600;
    display: flex;
    align-items: center;
}

.offer-button i {
    margin-left: 8px;
    transition: var(--transition);
}

.offer-button:hover i {
    transform: translateX(5px);
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: white;
}

.testimonial-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    margin-bottom: 25px;
    flex-grow: 1;
}

.testimonial-text {
    font-style: italic;
    margin-top: 15px;
    color: var(--text-light);
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 3px solid var(--primary-color);
}

.testimonial-author h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.testimonial-author p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Newsletter Section */
.newsletter {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
}

.newsletter-content {
    max-width: 700px;
    margin: 0 auto;
}

.newsletter h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: white;
}

.newsletter p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 50px 0 0 50px;
    font-size: 1rem;
    outline: none;
}

.newsletter-form button {
    padding: 15px 30px;
    background: var(--dark-color);
    color: white;
    border: none;
    border-radius: 0 50px 50px 0;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: #222;
}

.privacy-note {
    font-size: 0.8rem;
    margin-top: 15px;
    opacity: 0.8;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--light-color);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.info-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.info-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.info-card h3 {
    margin-bottom: 15px;
}

.info-card p {
    color: var(--text-light);
    line-height: 1.8;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.form-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

.contact-form textarea {
    height: 150px;
    resize: none;
    margin-bottom: 20px;
}

.submit-button {
    width: 100%;
    padding: 15px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.submit-button:hover {
    background: #ff6347;
}

#responseMessage {
    margin-top: 20px;
    padding: 15px;
    border-radius: 5px;
    text-align: center;
}

/* Footer */
footer {
    background: var(--dark-color);
    color: white;
    padding: 80px 0 0;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 20px;
}

.footer-logo p {
    margin-bottom: 20px;
    color: #aaa;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
}

.footer-links h3 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--primary-color);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #aaa;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.footer-newsletter h3 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-newsletter h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--primary-color);
}

.footer-newsletter p {
    color: #aaa;
    margin-bottom: 20px;
}

.footer-newsletter-form {
    display: flex;
    margin-bottom: 30px;
}

.footer-newsletter-form input {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 5px 0 0 5px;
    font-size: 1rem;
    outline: none;
}

.footer-newsletter-form button {
    padding: 0 20px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    transition: var(--transition);
}

.footer-newsletter-form button:hover {
    background: #ff6347;
}

.payment-methods {
    display: flex;
    gap: 15px;
    font-size: 1.8rem;
    color: #aaa;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: #aaa;
    font-size: 0.9rem;
}

.footer-bottom i {
    color: var(--primary-color);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .banner h1 {
        font-size: 3rem;
    }
    
    .destination-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    nav ul {
        display: none;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .banner {
        height: auto;
        padding: 150px 0 80px;
    }
    
    .banner h1 {
        font-size: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .form-group {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .destination-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        border-radius: 50px;
        margin-bottom: 10px;
    }
    
    .newsletter-form button {
        border-radius: 50px;
    }
}
/* About Page Styles */
.about-hero {
	position: relative;
	height: 60vh;
	min-height: 400px;
	background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('img/about-banner.jpg') no-repeat center center/cover;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: white;
	margin-top: 80px;
	background-image: url(img/BOH-Tea-Plantation-what-to-do-in-Cameron-Highlands-Malaysia.jpg);
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease;
}

.hero-content p {
    font-size: 1.5rem;
    animation: fadeInUp 1s ease;
}

.about-content {
    padding: 80px 0;
    background: white;
}

.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.section-divider {
    height: 3px;
    width: 80px;
    background: var(--primary-color);
    margin: 20px 0 30px;
}

.about-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-image img {
    width: 100%;
    height: auto;
    transition: var(--transition);
}

.about-image:hover img {
    transform: scale(1.05);
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    text-align: center;
    margin-top: 60px;
}

.mission, .vision {
    padding: 40px 30px;
    background: var(--light-color);
    border-radius: 10px;
    transition: var(--transition);
}

.mission:hover, .vision:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.mission i, .vision i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.mission h3, .vision h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.history-section {
    padding: 80px 0;
    background: var(--light-color);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    width: 3px;
    background: var(--primary-color);
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.timeline-item {
    padding: 20px 40px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-year {
    position: absolute;
    width: 100px;
    height: 100px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    top: 20px;
    z-index: 1;
}

.timeline-item:nth-child(odd) .timeline-year {
    right: -50px;
}

.timeline-item:nth-child(even) .timeline-year {
    left: -50px;
}

.timeline-content {
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
    position: relative;
}

.timeline-content h3 {
    margin-bottom: 10px;
    color: var(--dark-color);
}

.philosophy-section {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.philosophy-intro {
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
    color: var(--text-light);
}

.philosophy-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.philosophy-card {
    padding: 40px 30px;
    background: var(--light-color);
    border-radius: 10px;
    transition: var(--transition);
}

.philosophy-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.philosophy-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.philosophy-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.team-section {
    padding: 80px 0;
    background: var(--light-color);
    text-align: center;
}

.team-intro {
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
    color: var(--text-light);
}

.team-members {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.team-member {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 5px solid var(--primary-color);
}

.team-member h3 {
    margin-bottom: 5px;
}

.position {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.bio {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-links a {
    width: 35px;
    height: 35px;
    background: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    color: white;
}

.why-choose-us {
    padding: 80px 0;
    background: white;
}

.reasons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.reason {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.reason-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.reason-content h3 {
    margin-bottom: 10px;
    color: var(--dark-color);
}

.reason-content p {
    color: var(--text-light);
}

.about-cta {
	padding: 100px 0;
	background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
	color: #000;
	text-align: center;
}

.about-cta h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-primary {
    background: white;
    color: var(--primary-color);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-color);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-section {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }
    
    .mission-vision {
        grid-template-columns: 1fr;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 0;
    }
    
    .timeline-item:nth-child(even) {
        left: 0;
    }
    
    .timeline-item:nth-child(odd) .timeline-year,
    .timeline-item:nth-child(even) .timeline-year {
        left: 0;
        right: auto;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .reasons {
        grid-template-columns: 1fr;
    }
}
/* FAQs Page Styles */
.faqs-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('img/faqs-banner.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 80px;
}

.faqs-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease;
}

.faqs-hero p {
    font-size: 1.3rem;
    animation: fadeInUp 1s ease;
}

.faqs-section {
    padding: 80px 0;
    background: white;
}

.faqs-intro {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.faqs-intro a {
    color: var(--primary-color);
    font-weight: 600;
}

.faqs-intro a:hover {
    text-decoration: underline;
}

.category-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.category-btn {
    padding: 10px 20px;
    background: var(--light-color);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.category-btn.active {
    background: var(--primary-color);
    color: white;
}

.category-btn:hover:not(.active) {
    background: #e0e0e0;
}

.faq-category {
    margin-bottom: 50px;
}

.category-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--dark-color);
    display: flex;
    align-items: center;
    gap: 15px;
}

.category-title i {
    color: var(--primary-color);
}

.faq-item {
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--primary-color);
}

.faq-question {
    padding: 20px;
    background: var(--light-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 1.2rem;
    color: var(--dark-color);
    margin: 0;
}

.faq-question i {
    transition: var(--transition);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 500px;
}

.faq-answer p, .faq-answer ul {
    margin-bottom: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

.faq-answer ul {
    padding-left: 20px;
}

.faq-answer li {
    margin-bottom: 8px;
}

.still-questions {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: var(--light-color);
    border-radius: 10px;
}

.still-questions h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.still-questions p {
    margin-bottom: 25px;
    font-size: 1.1rem;
    color: var(--text-light);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .faqs-hero h1 {
        font-size: 2.5rem;
    }
    
    .category-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .category-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .faq-question {
        padding: 15px;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .faqs-hero {
        height: 40vh;
        min-height: 300px;
    }
    
    .faqs-hero h1 {
        font-size: 2rem;
    }
    
    .category-title {
        font-size: 1.5rem;
    }
}
/* Booking Conditions Page Styles */
.conditions-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('img/conditions-banner.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 80px;
}

.conditions-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease;
}

.conditions-hero p {
    font-size: 1.3rem;
    animation: fadeInUp 1s ease;
}

.conditions-section {
    padding: 80px 0;
    background: white;
}

.conditions-intro {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.conditions-toc {
    background: var(--light-color);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 50px;
}

.conditions-toc h3 {
    margin-bottom: 20px;
    color: var(--dark-color);
}

.conditions-toc ul {
    list-style: none;
    columns: 2;
    column-gap: 40px;
}

.conditions-toc li {
    margin-bottom: 10px;
    break-inside: avoid;
}

.conditions-toc a {
    color: var(--text-color);
    transition: var(--transition);
    display: block;
    padding: 5px 0;
}

.conditions-toc a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.condition-item {
    margin-bottom: 60px;
    scroll-margin-top: 100px;
}

.condition-item h2 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--dark-color);
    display: flex;
    align-items: center;
    gap: 15px;
}

.condition-item h2 span {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 700;
}

.condition-text {
    line-height: 1.8;
}

.condition-text p {
    margin-bottom: 20px;
}

.condition-text ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.condition-text li {
    margin-bottom: 10px;
}

.condition-table {
    display: table;
    width: 100%;
    margin: 25px 0;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
}

.table-row {
    display: table-row;
}

.table-row.header {
    background: var(--primary-color);
    color: white;
    font-weight: 600;
}

.table-cell {
    display: table-cell;
    padding: 15px;
    border-bottom: 1px solid #eee;
    vertical-align: middle;
}

.table-row:last-child .table-cell {
    border-bottom: none;
}

.condition-acceptance {
    background: var(--light-color);
    padding: 30px;
    border-radius: 10px;
    margin-top: 60px;
    text-align: center;
    font-size: 1.1rem;
}

.condition-acceptance p {
    margin-bottom: 15px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .conditions-toc ul {
        columns: 1;
    }
    
    .condition-item h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .conditions-hero h1 {
        font-size: 2.5rem;
    }
    
    .condition-table {
        display: block;
    }
    
    .table-row {
        display: block;
        border-bottom: 1px solid #eee;
    }
    
    .table-cell {
        display: block;
        padding: 10px 15px;
    }
    
    .table-cell:first-child {
        padding-top: 15px;
    }
    
    .table-cell:last-child {
        padding-bottom: 15px;
    }
    
    .table-row.header {
        display: none;
    }
    
    .table-cell::before {
        content: attr(data-label);
        font-weight: 600;
        display: inline-block;
        width: 120px;
        color: var(--primary-color);
    }
}

@media (max-width: 576px) {
    .conditions-hero {
        height: 40vh;
        min-height: 300px;
    }
    
    .conditions-hero h1 {
        font-size: 2rem;
    }
    
    .condition-item h2 {
        font-size: 1.4rem;
    }
}
/* Privacy Policy Page Styles */
.privacy-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('img/privacy-banner.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 80px;
}

.privacy-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease;
}

.privacy-hero p {
    font-size: 1.3rem;
    animation: fadeInUp 1s ease;
}

.privacy-section {
    padding: 80px 0;
    background: white;
}

.privacy-intro {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.privacy-intro strong {
    color: var(--dark-color);
}

.privacy-toc {
    background: var(--light-color);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 50px;
}

.privacy-toc h3 {
    margin-bottom: 20px;
    color: var(--dark-color);
}

.privacy-toc ul {
    list-style: none;
    columns: 2;
    column-gap: 40px;
}

.privacy-toc li {
    margin-bottom: 10px;
    break-inside: avoid;
}

.privacy-toc a {
    color: var(--text-color);
    transition: var(--transition);
    display: block;
    padding: 5px 0;
}

.privacy-toc a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.privacy-item {
    margin-bottom: 60px;
    scroll-margin-top: 100px;
}

.privacy-item h2 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--dark-color);
    display: flex;
    align-items: center;
    gap: 15px;
}

.privacy-item h2 span {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 700;
}

.privacy-text {
    line-height: 1.8;
}

.privacy-text p {
    margin-bottom: 20px;
}

.privacy-text ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.privacy-text li {
    margin-bottom: 10px;
}

.privacy-text h4 {
    font-size: 1.2rem;
    margin: 25px 0 15px;
    color: var(--dark-color);
}

.privacy-table {
    display: table;
    width: 100%;
    margin: 25px 0;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
}

.privacy-table .table-row {
    display: table-row;
}

.privacy-table .table-row:first-child {
    background: var(--primary-color);
    color: white;
    font-weight: 600;
}

.privacy-table .table-cell {
    display: table-cell;
    padding: 15px;
    border-bottom: 1px solid #eee;
    vertical-align: middle;
}

.privacy-table .table-cell.purpose {
    width: 30%;
    font-weight: 600;
}

.privacy-table .table-row:last-child .table-cell {
    border-bottom: none;
}

.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.right-item {
    text-align: center;
    padding: 25px 20px;
    background: var(--light-color);
    border-radius: 8px;
    transition: var(--transition);
}

.right-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.right-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.right-item h4 {
    margin-bottom: 10px;
    color: var(--dark-color);
}

.cookie-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.cookie-type {
    padding: 20px;
    background: var(--light-color);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.cookie-type h5 {
    margin-bottom: 10px;
    color: var(--dark-color);
}

.cookie-type p {
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.cookie-type em {
    font-size: 0.8rem;
    color: var(--primary-color);
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.contact-method {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-method i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 5px;
}

.contact-method h4 {
    margin-bottom: 10px;
    color: var(--dark-color);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .privacy-toc ul {
        columns: 1;
    }
    
    .privacy-item h2 {
        font-size: 1.6rem;
    }
    
    .privacy-table .table-cell.purpose {
        width: 40%;
    }
}

@media (max-width: 768px) {
    .privacy-hero h1 {
        font-size: 2.5rem;
    }
    
    .privacy-table {
        display: block;
    }
    
    .privacy-table .table-row {
        display: block;
        border-bottom: 1px solid #eee;
    }
    
    .privacy-table .table-cell {
        display: block;
        padding: 10px 15px;
    }
    
    .privacy-table .table-cell:first-child {
        padding-top: 15px;
    }
    
    .privacy-table .table-cell:last-child {
        padding-bottom: 15px;
    }
    
    .privacy-table .table-row:first-child {
        display: none;
    }
    
    .privacy-table .table-cell::before {
        content: attr(data-label);
        font-weight: 600;
        display: inline-block;
        width: 120px;
        color: var(--primary-color);
    }
}

@media (max-width: 576px) {
    .privacy-hero {
        height: 40vh;
        min-height: 300px;
    }
    
    .privacy-hero h1 {
        font-size: 2rem;
    }
    
    .privacy-item h2 {
        font-size: 1.4rem;
    }
    
    .rights-grid {
        grid-template-columns: 1fr;
    }
}
/* Terms & Conditions Page Styles */
.terms-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('img/terms-banner.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 80px;
}

.terms-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease;
}

.terms-hero p {
    font-size: 1.3rem;
    animation: fadeInUp 1s ease;
}

.terms-section {
    padding: 80px 0;
    background: white;
}

.terms-intro {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.terms-intro strong {
    color: var(--dark-color);
}

.terms-toc {
    background: var(--light-color);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 50px;
}

.terms-toc h3 {
    margin-bottom: 20px;
    color: var(--dark-color);
}

.terms-toc ul {
    list-style: none;
    columns: 2;
    column-gap: 40px;
}

.terms-toc li {
    margin-bottom: 10px;
    break-inside: avoid;
}

.terms-toc a {
    color: var(--text-color);
    transition: var(--transition);
}	
/* Travel Insurance Page Styles */
.insurance-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('img/insurance-banner.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 80px;
}

.insurance-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease;
}

.insurance-hero p {
    font-size: 1.3rem;
    animation: fadeInUp 1s ease;
}

.insurance-section {
    padding: 80px 0;
    background: white;
}

.insurance-intro {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px;
    background: var(--light-color);
    border-radius: 10px;
}

.insurance-intro strong {
    color: var(--primary-color);
}

.insurance-importance {
    margin-bottom: 60px;
}

.insurance-importance h2 {
    text-align: center;
    margin-bottom: 40px;
}

.importance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.importance-card {
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.importance-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.importance-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.importance-card h3 {
    margin-bottom: 15px;
    color: var(--dark-color);
}

.coverage-requirements {
    margin-bottom: 60px;
}

.coverage-requirements h2 {
    text-align: center;
    margin-bottom: 30px;
}

.coverage-requirements p {
    text-align: center;
    margin-bottom: 30px;
}

.coverage-table {
    display: table;
    width: 100%;
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
}

.coverage-table .table-row {
    display: table-row;
}

.coverage-table .table-row.header {
    background: var(--primary-color);
    color: white;
    font-weight: 600;
}

.coverage-table .table-cell {
    display: table-cell;
    padding: 15px;
    border-bottom: 1px solid #eee;
    vertical-align: middle;
}

.coverage-table .table-row:last-child .table-cell {
    border-bottom: none;
}

.recommendations {
    margin-bottom: 60px;
}

.recommendations h2 {
    text-align: center;
    margin-bottom: 30px;
}

.recommendation-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.recommendation-card {
    padding: 25px;
    background: var(--light-color);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.recommendation-card h3 {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--dark-color);
}

.recommendation-card i {
    color: var(--primary-color);
}

.provider-options {
    margin-bottom: 60px;
}

.provider-options h2 {
    text-align: center;
    margin-bottom: 20px;
}

.provider-options p {
    text-align: center;
    margin-bottom: 30px;
}

.provider-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.provider-card {
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.provider-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.provider-card img {
    width: 80px;
    height: auto;
    object-fit: contain;
}

.provider-info h3 {
    margin-bottom: 5px;
    color: var(--dark-color);
}

.provider-info p {
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: var(--text-light);
    text-align: left;
}

.provider-link {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.insurance-faq {
    margin-bottom: 60px;
}

.insurance-faq h2 {
    text-align: center;
    margin-bottom: 30px;
}

.faq-item {
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    background: var(--light-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 1.1rem;
    color: var(--dark-color);
    margin: 0;
}

.faq-question i {
    transition: var(--transition);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 500px;
}

.faq-answer p {
    margin-bottom: 15px;
}

.insurance-cta {
    text-align: center;
    padding: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 10px;
    color: white;
}

.insurance-cta h2 {
    color: white;
    margin-bottom: 15px;
}

.insurance-cta p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-primary {
    background: white;
    color: var(--primary-color);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-color);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .coverage-table {
        display: block;
    }
    
    .coverage-table .table-row {
        display: block;
        border-bottom: 1px solid #eee;
    }
    
    .coverage-table .table-cell {
        display: block;
        padding: 10px 15px;
    }
    
    .coverage-table .table-cell:before {
        content: attr(data-label);
        font-weight: 600;
        display: inline-block;
        width: 150px;
        color: var(--primary-color);
    }
    
    .coverage-table .table-row.header {
        display: none;
    }
}

@media (max-width: 768px) {
    .insurance-hero h1 {
        font-size: 2.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .provider-card {
        flex-direction: column;
        text-align: center;
    }
    
    .provider-info p {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .insurance-hero {
        height: 40vh;
        min-height: 300px;
    }
    
    .insurance-hero h1 {
        font-size: 2rem;
    }
    
    .importance-grid {
        grid-template-columns: 1fr;
    }
    
    .recommendation-cards {
        grid-template-columns: 1fr;
    }
    
    .provider-grid {
        grid-template-columns: 1fr;
    }
}
/* Cookie Policy Page Styles */
.cookie-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('img/cookie-banner.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 80px;
}

.cookie-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease;
}

.cookie-hero p {
    font-size: 1.3rem;
    animation: fadeInUp 1s ease;
}

.cookie-section {
    padding: 80px 0;
    background: white;
}

.cookie-intro {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.cookie-intro strong {
    color: var(--dark-color);
}

.cookie-toc {
    background: var(--light-color);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 50px;
}

.cookie-toc h3 {
    margin-bottom: 20px;
    color: var(--dark-color);
}

.cookie-toc ul {
    list-style: none;
    columns: 2;
    column-gap: 40px;
}

.cookie-toc li {
    margin-bottom: 10px;
    break-inside: avoid;
}

.cookie-toc a {
    color: var(--text-color);
    transition: var(--transition);
    display: block;
    padding: 5px 0;
}

.cookie-toc a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.cookie-item {
    margin-bottom: 60px;
    scroll-margin-top: 100px;
}

.cookie-item h2 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--dark-color);
    display: flex;
    align-items: center;
    gap: 15px;
}

.cookie-item h2 span {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 700;
}

.cookie-text {
    line-height: 1.8;
}

.cookie-text p {
    margin-bottom: 20px;
}

.cookie-text ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.cookie-text li {
    margin-bottom: 10px;
}

.cookie-text h3 {
    font-size: 1.3rem;
    margin: 30px 0 15px;
    color: var(--dark-color);
}

.cookie-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.cookie-type {
    padding: 25px;
    background: var(--light-color);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.cookie-type h3 {
    margin-bottom: 15px;
    color: var(--dark-color);
}

.cookie-type p {
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.cookie-type strong {
    color: var(--primary-color);
}

.third-party-table {
    display: table;
    width: 100%;
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
    margin: 25px 0;
}

.third-party-table .table-row {
    display: table-row;
}

.third-party-table .table-row.header {
    background: var(--primary-color);
    color: white;
    font-weight: 600;
}

.third-party-table .table-cell {
    display: table-cell;
    padding: 15px;
    border-bottom: 1px solid #eee;
    vertical-align: middle;
}

.third-party-table .table-row:last-child .table-cell {
    border-bottom: none;
}

.third-party-table a {
    color: var(--primary-color);
    font-weight: 600;
}

.cookie-settings-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.cookie-settings-btn:hover {
    background: #ff6347;
}

.contact-method {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-method i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 5px;
}

.contact-method h3 {
    margin-bottom: 10px;
    color: var(--dark-color);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .cookie-toc ul {
        columns: 1;
    }
    
    .cookie-item h2 {
        font-size: 1.6rem;
    }
    
    .third-party-table {
        display: block;
    }
    
    .third-party-table .table-row {
        display: block;
        border-bottom: 1px solid #eee;
    }
    
    .third-party-table .table-cell {
        display: block;
        padding: 10px 15px;
    }
    
    .third-party-table .table-cell:before {
        content: attr(data-label);
        font-weight: 600;
        display: inline-block;
        width: 120px;
        color: var(--primary-color);
    }
    
    .third-party-table .table-row.header {
        display: none;
    }
}

@media (max-width: 768px) {
    .cookie-hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .cookie-hero {
        height: 40vh;
        min-height: 300px;
    }
    
    .cookie-hero h1 {
        font-size: 2rem;
    }
    
    .cookie-types {
        grid-template-columns: 1fr;
    }
}
/* Package Page Styles */
.package-hero {
	position: relative;
	height: 70vh;
	min-height: 500px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: white;
	margin-top: 80px;
	background-image: url(img/mulu%20caves.jpeg);
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.price-badge {
    display: inline-block;
    background: var(--accent-color);
    color: var(--dark-color);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.package-details {
    padding: 80px 0;
    background: white;
}

.package-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.highlight-card {
    background: var(--light-color);
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
}

.highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.highlight-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.highlight-card h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.package-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.package-description h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.package-description p {
    margin-bottom: 30px;
    line-height: 1.8;
}

.package-inclusions {
    margin-bottom: 40px;
}

.package-inclusions h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.inclusion-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.inclusion-column h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--dark-color);
}

.inclusion-column ul {
    list-style: none;
    margin-bottom: 25px;
}

.inclusion-column li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.inclusion-column li::before {
    content: "•";
    color: var(--primary-color);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -5px;
}

.package-exclusions h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.package-exclusions ul {
    list-style: none;
}

.package-exclusions li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.package-exclusions li::before {
    content: "✕";
    color: #ff6b6b;
    position: absolute;
    left: 0;
}

.itinerary-day {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.itinerary-day h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.itinerary-day h3 span {
    color: var(--primary-color);
    margin-right: 10px;
}

.itinerary-day ul {
    list-style: none;
    padding-left: 20px;
}

.itinerary-day li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.itinerary-day li::before {
    content: "→";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

.itinerary-note {
    font-style: italic;
    color: var(--text-light);
    margin-top: 30px;
}

.package-cta {
    text-align: center;
    padding: 50px;
    background: var(--light-color);
    border-radius: 10px;
    margin-bottom: 60px;
}

.package-cta h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.package-cta p {
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

.package-testimonials {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    text-align: center;
}

.package-testimonials h2 {
    font-size: 2rem;
    margin-bottom: 50px;
    color: var(--dark-color);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-card .rating {
    margin-bottom: 20px;
    color: var(--accent-color);
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 25px;
    line-height: 1.7;
}

.author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-color);
}

.author span {
    font-weight: 600;
}

.package-gallery {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.package-gallery h2 {
    font-size: 2rem;
    margin-bottom: 50px;
    color: var(--dark-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    aspect-ratio: 1/1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.caption {
	position: absolute;
	bottom: -930px;
	left: -159px;
	right: 0;
	background: rgba(0, 0, 0, 0.7);
	color: white;
	padding: 15px;
	transform: translateY(100%);
	transition: var(--transition);
}

.gallery-item:hover .caption {
    transform: translateY(0);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .package-content {
        grid-template-columns: 1fr;
    }
    
    .inclusion-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .package-hero {
        height: 60vh;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .package-highlights {
        grid-template-columns: 1fr 1fr;
    }
}	
/* Mount Kinabalu Specific Styles */
.difficulty-level {
    margin: 30px 0;
}

.difficulty-meter {
    height: 10px;
    background: #eee;
    border-radius: 5px;
    margin: 10px 0;
    overflow: hidden;
}

.meter-fill {
    height: 100%;
    background: linear-gradient(90deg, #FF7F50, #FF4500);
}

.training-tips {
    background: var(--light-color);
    padding: 50px;
    border-radius: 10px;
    margin: 40px 0;
}

.training-tips h2 {
    text-align: center;
    margin-bottom: 40px;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.tip-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.tip-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.tip-card h3 {
    margin-bottom: 15px;
    color: var(--dark-color);
}

.tip-card ul {
    list-style: none;
}

.tip-card li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.tip-card li::before {
    content: "•";
    color: var(--primary-color);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -5px;
}

.package-addons {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    text-align: center;
}

.addon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 40px auto 0;
}

.addon-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.addon-card:hover {
    transform: translateY(-10px);
}

.addon-card h3 {
    color: var(--dark-color);
    margin-bottom: 10px;
}

.addon-card .price {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.addon-card p {
    margin-bottom: 20px;
    color: var(--text-light);
}

.btn-small {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.climb-date {
    display: block;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 5px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .training-tips {
        padding: 30px;
    }
    
    .addon-grid {
        grid-template-columns: 1fr;
    }
}
/* All Trekking Packages Page Styles */
.trekking-hero {
    position: relative;
    height: 60vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 80px;
}

.trekking-hero .hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.trekking-hero .hero-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.trekking-packages {
    padding: 80px 0;
    background: white;
}

.difficulty-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    background: var(--light-color);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn.active, .filter-btn:hover {
    background: var(--primary-color);
    color: white;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.trek-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.trek-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.trek-card .card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.trek-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.trek-card:hover .card-image img {
    transform: scale(1.1);
}

.price-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.difficulty-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: white;
    color: var(--dark-color);
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.beginner .difficulty-badge {
    background: #4CAF50;
    color: white;
}

.intermediate .difficulty-badge {
    background: #FFC107;
    color: var(--dark-color);
}

.advanced .difficulty-badge {
    background: #F44336;
    color: white;
}

.trek-card .card-content {
    padding: 25px;
}

.trek-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.card-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.card-meta i {
    margin-right: 5px;
}

.trek-card p {
    margin-bottom: 20px;
    color: var(--text-light);
}

.trek-card .card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.card-button {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.card-button:hover {
    text-decoration: underline;
}

.btn-small {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.why-choose-trekking {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-card {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 15px;
    color: var(--dark-color);
}


.trekking-preparation {
    padding: 80px 0;
    background: white;
}

.prep-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.prep-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.prep-text p {
    margin-bottom: 30px;
    line-height: 1.7;
}

.prep-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.prep-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    font-weight: 600;
    padding: 15px;
    background: var(--light-color);
    border-radius: 8px;
    transition: var(--transition);
}

.prep-link:hover {
    background: var(--primary-color);
    color: white;
}

.prep-link i {
    font-size: 1.2rem;
}

.prep-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.prep-image img {
    width: 100%;
    height: auto;
    transition: var(--transition);
}

.prep-image:hover img {
    transform: scale(1.05);
}

.trekking-testimonials {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.testimonial-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.quote {
    margin-bottom: 30px;
    position: relative;
}

.quote i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 15px;
    opacity: 0.5;
}

.quote p {
    font-style: italic;
    line-height: 1.8;
    color: var(--text-light);
}

.author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.author img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
}

.author h4 {
    margin-bottom: 5px;
    color: var(--dark-color);
}

.author p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.trekking-cta {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
}

.trekking-cta h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.trekking-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-primary {
    background: white;
    color: var(--primary-color);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-color);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .prep-content {
        grid-template-columns: 1fr;
    }
    
    .prep-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .trekking-hero .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .testimonial-slider {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .trekking-hero {
        height: 50vh;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .filter-btn {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
    
    .trek-card .card-footer {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
}
/* Langkawi Jungle Adventure Specific Styles */
.difficulty-badge {
    display: inline-block;
    background: #4CAF50;
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    margin: 15px 0;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.quick-facts {
    padding: 50px 0;
    background: var(--light-color);
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.fact-card {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.fact-card:hover {
    transform: translateY(-10px);
}

.fact-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.fact-card h3 {
    margin-bottom: 10px;
    color: var(--dark-color);
}

.wildlife-spotting {
    margin: 60px 0;
}

.wildlife-spotting h2 {
    text-align: center;
    margin-bottom: 40px;
}

.wildlife-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.animal-card {
    text-align: center;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.animal-card:hover {
    transform: translateY(-10px);
}

.animal-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.animal-card h3 {
    padding: 15px;
    font-size: 1rem;
    color: var(--dark-color);
}

.travel-date {
    display: block;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 5px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .facts-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .wildlife-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .facts-grid,
    .wildlife-grid {
        grid-template-columns: 1fr;
    }
    
    .package-hero .hero-content h1 {
        font-size: 2.2rem;
    }
}
/* Cameron Highlands Specific Styles */
.difficulty-badge {
    display: inline-block;
    background: #FFC107;
    color: var(--dark-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    margin: 15px 0;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.highlights-section {
    padding: 50px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e3e9f2 100%);
}

.highlight-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.highlight-card {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.highlight-card:hover {
    transform: translateY(-10px);
}

.highlight-card i {
	font-size: 2.5rem;
	color: #FF3300;
	margin-bottom: 15px;
}

.highlight-card h3 {
    margin-bottom: 10px;
    color: var(--dark-color);
}

.climate-section {
    margin: 60px 0;
    padding: 40px;
    background: var(--light-color);
    border-radius: 10px;
}

.climate-section h2 {
    text-align: center;
    margin-bottom: 40px;
}

.climate-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.climate-card {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.climate-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.climate-card h3 {
    margin-bottom: 10px;
    color: var(--dark-color);
}

.packing-tip {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.packing-tip i {
    font-size: 1.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.travel-date {
    display: block;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 5px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .highlight-cards {
        grid-template-columns: 1fr 1fr;
    }
    
    .packing-tip {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .highlight-cards,
    .climate-grid {
        grid-template-columns: 1fr;
    }
    
    .package-hero .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .climate-section {
        padding: 30px 20px;
    }
}
/* Taman Negara Specific Styles */
.difficulty-badge {
    display: inline-block;
    background: #4CAF50;
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    margin: 15px 0;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.experience-highlights {
    padding: 60px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e3e9f2 100%);
    text-align: center;
}

.experience-highlights h2 {
    margin-bottom: 40px;
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.highlight-item {
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.highlight-item:hover {
    transform: translateY(-10px);
}

.highlight-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.highlight-item h3 {
    margin-bottom: 15px;
    color: var(--dark-color);
}

.safety-info {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
    border-left: 4px solid var(--primary-color);
}

.safety-info h3 {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.safety-info i {
    color: var(--primary-color);
}

.wildlife-section {
    margin: 60px 0;
}

.wildlife-section h2 {
    text-align: center;
    margin-bottom: 40px;
}

.wildlife-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.animal-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.animal-card:hover {
    transform: translateY(-10px);
}

.animal-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.animal-card h3 {
    padding: 15px 15px 5px;
    font-size: 1.1rem;
    color: var(--dark-color);
}

.animal-card p {
    padding: 0 15px 15px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.travel-date {
    display: block;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 5px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .highlight-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .wildlife-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .package-hero .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .highlight-grid,
    .wildlife-grid {
        grid-template-columns: 1fr;
    }
}
/* Urban Language Basics Page Styles */
.language-hero {
	position: relative;
	height: 50vh;
	min-height: 400px;
	background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('img/city-language-banner.jpg') no-repeat center center/cover;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: white;
	margin-top: 80px;
	background-image: url(img/city-language-banner.jpg);
}

.language-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease;
}

.language-hero p {
    font-size: 1.3rem;
    animation: fadeInUp 1s ease;
}

.language-section {
    padding: 80px 0;
    background: white;
}

.language-intro {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.7;
}

.language-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.category-card {
    background: var(--light-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.category-card:hover {
    transform: translateY(-10px);
}

.category-header {
    background: var(--primary-color);
    color: white;
    padding: 20px;
    text-align: center;
}

.category-header i {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.category-header h3 {
    font-size: 1.5rem;
}

.phrase-list {
    padding: 20px;
}

.phrase-item {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #eee;
}

.phrase-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.phrase-item h4 {
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.phrase-item p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.foreign {
    font-style: italic;
    font-weight: 500;
}

.language-tips h3 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
    color: var(--dark-color);
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.tip-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.tip-card:hover {
    transform: translateY(-10px);
}

.tip-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.tip-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .language-hero h1 {
        font-size: 2.5rem;
    }
    
    .language-categories {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .language-hero {
        height: 40vh;
        min-height: 300px;
    }
    
    .language-hero h1 {
        font-size: 2rem;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
    }
}
/* Urban Packing List Page Styles */
.packing-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('img/urban-packing-banner.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 80px;
}

.packing-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease;
}

.packing-hero p {
    font-size: 1.3rem;
    animation: fadeInUp 1s ease;
}

.packing-section {
    padding: 80px 0;
    background: white;
}

.packing-intro {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.7;
}

.packing-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.category-card {
    background: var(--light-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.category-card:hover {
    transform: translateY(-10px);
}

.category-header {
    background: var(--primary-color);
    color: white;
    padding: 20px;
    text-align: center;
}

.category-header i {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.category-header h3 {
    font-size: 1.5rem;
}

.checklist {
    padding: 20px;
    list-style: none;
}

.checklist li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
}

.checklist i.fa-check-circle {
    position: absolute;
    left: 0;
    top: 3px;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.packing-tips h3 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
    color: var(--dark-color);
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.tip-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.tip-card:hover {
    transform: translateY(-10px);
}

.tip-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.tip-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .packing-hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .packing-hero {
        height: 40vh;
        min-height: 300px;
    }
    
    .packing-hero h1 {
        font-size: 2rem;
    }
}
/* Beach Getaways Page Styles */
.beach-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('img/beach-hero.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 80px;
}

.beach-hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.beach-hero p {
    font-size: 1.5rem;
    text-shadow: 0 2px 3px rgba(0, 0, 0, 0.3);
}

.beach-packages {
    padding: 80px 0;
    background: white;
}

.package-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 20px;
    background: var(--light-color);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn.active, .filter-btn:hover {
    background: var(--primary-color);
    color: white;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.beach-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.beach-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.beach-card .card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.beach-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.beach-card:hover .card-image img {
    transform: scale(1.05);
}

.price-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 8px 15px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.duration {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.9rem;
}

.beach-card .card-content {
    padding: 25px;
}

.beach-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.beach-card .rating {
    color: var(--accent-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.beach-card .rating span {
    color: var(--text-light);
    margin-left: 10px;
}

.beach-card p {
    margin-bottom: 20px;
    color: var(--text-light);
    line-height: 1.6;
}

.highlights {
    list-style: none;
    margin-bottom: 25px;
}

.highlights li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.highlights i {
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.card-footer {
    display: flex;
    gap: 15px;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-primary:hover {
    background: #ff6347;
    transform: translateY(-3px);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.beach-why-us {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.benefit-card {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-10px);
}

.benefit-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.benefit-card h3 {
    margin-bottom: 15px;
    color: var(--dark-color);
}

.beach-testimonials {
    padding: 80px 0;
    background: white;
}

.testimonial-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.quote {
    margin-bottom: 30px;
    position: relative;
}

.quote i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 15px;
    opacity: 0.5;
}

.quote p {
    font-style: italic;
    line-height: 1.8;
    color: var(--text-light);
}

.author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.author img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
}

.author h4 {
    margin-bottom: 5px;
    color: var(--dark-color);
}

.author p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.beach-cta {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
}

.beach-cta h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.beach-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .beach-hero h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .packages-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .testimonial-slider {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .beach-hero {
        height: 60vh;
    }
    
    .beach-hero h1 {
        font-size: 2.5rem;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .card-footer {
        flex-direction: column;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        text-align: center;
    }
}
/* Travel Blog Styles */
.blog-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('img/blog-banner.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 80px;
}

.blog-hero .hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease;
}

.blog-hero .hero-content p {
    font-size: 1.3rem;
    animation: fadeInUp 1s ease;
}

.blog-section {
    padding: 80px 0;
    background: white;
}

.blog-header {
    text-align: center;
    margin-bottom: 50px;
}

.blog-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.blog-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.blog-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.category-btn {
    padding: 10px 20px;
    background: var(--light-color);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.category-btn.active, .category-btn:hover {
    background: var(--primary-color);
    color: white;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.blog-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.blog-content {
    padding: 25px;
}

.blog-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-color);
    line-height: 1.3;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.blog-meta i {
    margin-right: 5px;
}

.blog-content p {
    margin-bottom: 20px;
    color: var(--text-light);
    line-height: 1.6;
}

.blog-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
}

.blog-link:hover {
    color: var(--secondary-color);
}

.blog-link i {
    transition: var(--transition);
}

.blog-link:hover i {
    transform: translateX(5px);
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}

.pagination a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--light-color);
    color: var(--text-color);
    font-weight: 600;
    transition: var(--transition);
}

.pagination a.active, .pagination a:hover {
    background: var(--primary-color);
    color: white;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .blog-hero .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .blog-categories {
        flex-wrap: wrap;
    }
}

@media (max-width: 576px) {
    .blog-hero {
        height: 40vh;
        min-height: 300px;
    }
    
    .blog-hero .hero-content h1 {
        font-size: 2rem;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;


    }
}
/* Prague Travel Guide Article Styles */
.article-hero {
    position: relative;
    height: 60vh;
    min-height: 500px;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('img/prague-hero.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 80px;
}

.article-hero .hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.article-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    animation: fadeInDown 1s ease;
}

.breadcrumb {
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: white;
    text-decoration: underline;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

.article-meta i {
    margin-right: 5px;
}

.article-content {
    padding: 80px 0;
    background: white;
}

.article-intro .lead {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--dark-color);
}

.article-image {
    margin: 30px 0;
}

.article-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.caption {
    margin-top: 10px;
    font-size: 0.9rem;
    color: var(--text-light);
    text-align: center;
}

.content-section {
    margin-bottom: 60px;
}

.content-section h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--dark-color);
    position: relative;
    padding-bottom: 15px;
}

.content-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--primary-color);
}

.content-section h3 {
    font-size: 1.5rem;
    margin: 30px 0 15px;
    color: var(--dark-color);
}

.attraction-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 25px 0;
    align-items: center;
}

.attraction-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.tip-card {
    text-align: center;
    padding: 30px;
    background: var(--light-color);
    border-radius: 10px;
    transition: var(--transition);
}

.tip-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.tip-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.tip-card h3 {
    margin-bottom: 15px;
    color: var(--dark-color);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.info-card {
    padding: 25px;
    background: var(--light-color);
    border-radius: 10px;
    text-align: center;
}

.info-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.info-card h3 {
    margin-bottom: 15px;
    color: var(--dark-color);
}

.season-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.season-card {
    padding: 20px;
    border-radius: 10px;
    color: white;
    position: relative;
    overflow: hidden;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.season-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.season-card h3,
.season-card p {
    position: relative;
    z-index: 2;
}

.spring {
    background: url('img/prague-spring.jpg') no-repeat center center/cover;
}

.summer {
    background: url('img/prague-summer.jpg') no-repeat center center/cover;
}

.autumn {
    background: url('img/prague-autumn.jpg') no-repeat center center/cover;
}

.winter {
    background: url('img/prague-winter.jpg') no-repeat center center/cover;
}

.itinerary-card {
    background: var(--light-color);
    padding: 30px;
    border-radius: 10px;
    margin: 25px 0;
}

.itinerary-card h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.itinerary-card ul {
    list-style: none;
}

.itinerary-card li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.itinerary-card li::before {
    content: '•';
    color: var(--primary-color);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -5px;
}

.accommodation-grid,
.dining-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.accommodation-card,
.dining-card {
    padding: 20px;
    background: var(--light-color);
    border-radius: 10px;
}

.accommodation-card h3,
.dining-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.daytrip-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.daytrip-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.daytrip-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.daytrip-card h3 {
    margin: 15px 0 10px;
    padding: 0 15px;
    color: var(--dark-color);
}

.daytrip-card p {
    padding: 0 15px 15px;
    color: var(--text-light);
}

.essential-tips {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.tip {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: var(--light-color);
    padding: 20px;
    border-radius: 10px;
}

.tip i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 5px;
}

.article-cta {
    text-align: center;
    padding: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 10px;
    color: white;
    margin: 60px 0;
}

.article-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: white;
}

.article-cta .btn {
    background: white;
    color: var(--primary-color);
    margin-top: 20px;
}

.article-footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid #eee;
}

.author-bio {
    display: flex;
    gap: 20px;
    align-items: center;
}

.author-bio img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
}

.author-bio h4 {
    margin-bottom: 10px;
    color: var(--dark-color);
}

.article-share h4 {
    margin-bottom: 15px;
    color: var(--dark-color);
}

.share-buttons {
    display: flex;
    gap: 15px;
}

.share-buttons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--light-color);
    border-radius: 50%;
    color: var(--dark-color);
    transition: var(--transition);
}

.share-buttons a:hover {
    background: var(--primary-color);
    color: white;
}

.related-articles {
    padding: 60px 0;
    background: var(--light-color);
}

.related-articles h2 {
    text-align: center;
    margin-bottom: 50px;
    color: var(--dark-color);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.related-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.related-card:hover {
    transform: translateY(-10px);
}

.related-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.related-card h3 {
    padding: 20px 20px 10px;
    font-size: 1.2rem;
    color: var(--dark-color);
}

.related-card a {
    display: inline-block;
    padding: 0 20px 20px;
    color: var(--primary-color);
    font-weight: 600;
    transition: var(--transition);
}

.related-card a:hover {
    color: var(--secondary-color);
}

.related-card a i {
    margin-left: 8px;
    transition: var(--transition);
}

.related-card a:hover i {
    transform: translateX(5px);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .attraction-card {
        grid-template-columns: 1fr;
    }
    
    .article-footer {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .article-hero h1 {
        font-size: 2.2rem;
    }
    
    .content-section h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .article-hero {
        height: 50vh;
        min-height: 400px;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .season-cards {
        grid-template-columns: 1fr;
    }
}
/* Budapest Travel Guide Article Styles */
.article-hero {
    position: relative;
    height: 60vh;
    min-height: 500px;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('img/budapest-hero.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 80px;
}

.quick-facts {
    background: var(--light-color);
    padding: 30px;
    border-radius: 10px;
    margin: 30px 0;
}

.quick-facts h3 {
    margin-bottom: 20px;
    color: var(--dark-color);
    text-align: center;
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.fact-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: white;
    border-radius: 8px;
}

.fact-card i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.neighborhood-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.neighborhood-card {
    padding: 20px;
    background: var(--light-color);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.neighborhood-card h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.comparison-table {
    display: table;
    width: 100%;
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
    margin: 25px 0;
}

.comparison-table .table-row {
    display: table-row;
}

.comparison-table .table-row.header {
    background: var(--primary-color);
    color: white;
    font-weight: 600;
}

.comparison-table .table-cell {
    display: table-cell;
    padding: 15px;
    border-bottom: 1px solid #eee;
    vertical-align: middle;
}

.comparison-table .table-row:last-child .table-cell {
    border-bottom: none;
}

.food-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.food-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.food-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.food-card h3 {
    padding: 15px 15px 5px;
    font-size: 1.1rem;
    color: var(--dark-color);
}

.food-card p {
    padding: 0 15px 15px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.experience-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.experience-card {
    padding: 25px;
    background: var(--light-color);
    border-radius: 8px;
    position: relative;
    padding-left: 70px;
}

.experience-number {
    position: absolute;
    left: 20px;
    top: 20px;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.experience-card h3 {
    margin-bottom: 10px;
    color: var(--dark-color);
}

/* Responsive adjustments for tables */
@media (max-width: 768px) {
    .comparison-table {
        display: block;
    }
    
    .comparison-table .table-row {
        display: block;
        border-bottom: 1px solid #eee;
    }
    
    .comparison-table .table-cell {
        display: block;
        padding: 10px 15px;
    }
    
    .comparison-table .table-cell:before {
        content: attr(data-label);
        font-weight: 600;
        display: inline-block;
        width: 120px;
        color: var(--primary-color);
    }
    
    .comparison-table .table-row.header {
        display: none;
    }
}
/* Vienna Itinerary Styles */
.itinerary-timeline {
    margin: 50px 0;
}

.itinerary-day {
    margin-bottom: 40px;
    padding: 30px;
    background: var(--light-color);
    border-radius: 10px;
}

.itinerary-day h3 {
    font-size: 1.8rem;
    color: var(--dark-color);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.itinerary-list {
    list-style: none;
    padding-left: 20px;
}

.itinerary-list li {
    margin-bottom: 15px;
    padding-left: 35px;
    position: relative;
    font-size: 1.1rem;
}

.itinerary-list li::before {
    content: '✓';
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: -2px;
    font-size: 1.4rem;
}

.package-hero {
	background-image: url(img/krakow-budget-travel-hero.jpeg);
}

@media (max-width: 768px) {
    .itinerary-day {
        padding: 20px;
    }
    
    .itinerary-day h3 {
        font-size: 1.4rem;
    }
    
    .itinerary-list li {
        font-size: 1rem;
    }
}
/* Czech Cuisine Page Styles */
.cuisine-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../img/prague-food.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 80px;
}

.cuisine-hero .hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.cuisine-hero .hero-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.cuisine-intro {
    padding: 60px 0;
    text-align: center;
    background: white;
    font-size: 1.1rem;
    line-height: 1.8;
}

.dishes-section {
    padding: 80px 0;
    background: var(--light-color);
}

.dish-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 50px;
}

.dish-image {
    height: 350px;
}

.dish-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dish-content {
    padding: 40px;
}

.dish-content h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.dish-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.dish-meta i {
    margin-right: 5px;
    color: var(--primary-color);
}

.dish-content p {
    margin-bottom: 25px;
    line-height: 1.8;
}

.dish-tip {
    background: rgba(255, 127, 80, 0.1);
    padding: 15px;
    border-left: 3px solid var(--primary-color);
    font-size: 0.9rem;
    line-height: 1.6;
}

.dish-tip i {
    color: var(--primary-color);
    margin-right: 10px;
}

.dining-tips {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.dining-tips h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--dark-color);
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.tip-card {
    padding: 30px;
    background: var(--light-color);
    border-radius: 10px;
    transition: var(--transition);
}

.tip-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.tip-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.tip-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.cuisine-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
}

.cuisine-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

.cuisine-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-primary {
    background: white;
    color: var(--primary-color);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-primary:hover {
    background: #f0f0f0;
    transform: translateY(-3px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .dish-card {
        grid-template-columns: 1fr;
    }
    
    .dish-image {
        height: 300px;
    }
    
    .cuisine-hero .hero-content h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .cuisine-hero .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .cuisine-hero .hero-content p {
        font-size: 1.2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 576px) {
    .cuisine-hero {
        height: 50vh;
    }
    
    .dish-content {
        padding: 25px;
    }
    
    .dining-tips h2 {
        font-size: 2rem;
    }
}
/* Vienna Hidden Gems Page Styles */
.vienna-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../img/vienna-hidden-gems.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 80px;
}

.vienna-hero .hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.vienna-hero .hero-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.vienna-intro {
    padding: 60px 0;
    text-align: center;
    background: white;
    font-size: 1.1rem;
    line-height: 1.8;
}

.hidden-gems {
    padding: 80px 0;
    background: var(--light-color);
}

.gem-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 50px;
}

.gem-image {
    height: 350px;
}

.gem-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gem-content {
    padding: 40px;
}

.gem-content h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.gem-meta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.gem-meta i {
    margin-right: 5px;
    color: var(--primary-color);
}

.gem-content p {
    margin-bottom: 25px;
    line-height: 1.8;
}

.gem-tip {
    background: rgba(65, 105, 225, 0.1);
    padding: 15px;
    border-left: 3px solid var(--secondary-color);
    font-size: 0.9rem;
    line-height: 1.6;
}

.gem-tip i {
    color: var(--secondary-color);
    margin-right: 10px;
}

.local-tips {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.local-tips h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--dark-color);
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.tip-card {
    padding: 30px;
    background: var(--light-color);
    border-radius: 10px;
    transition: var(--transition);
}

.tip-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.tip-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.tip-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.vienna-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
}

.vienna-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

.vienna-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .gem-card {
        grid-template-columns: 1fr;
    }
    
    .gem-image {
        height: 300px;
    }
    
    .vienna-hero .hero-content h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .vienna-hero .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .vienna-hero .hero-content p {
        font-size: 1.2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 576px) {
    .vienna-hero {
        height: 50vh;
    }
    
    .gem-content {
        padding: 25px;
    }
    
    .local-tips h2 {
        font-size: 2rem;
    }
}
/* Coastal Croatia Page Styles */
.croatia-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../img/croatia-coast-hero.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 80px;
}

.croatia-hero .hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.croatia-hero .hero-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.croatia-intro {
    padding: 60px 0;
    text-align: center;
    background: white;
    font-size: 1.1rem;
    line-height: 1.8;
}

.regions-section {
    padding: 80px 0;
    background: var(--light-color);
}

.regions-section h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    color: var(--dark-color);
}

.regions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.region-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 350px;
}

.region-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.region-card:hover img {
    transform: scale(1.05);
}

.region-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 20px;
    color: white;
}

.region-overlay h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.region-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0;
    transition: var(--transition);
}

.region-card:hover .region-content {
    opacity: 1;
}

.croatia-gems {
    padding: 80px 0;
    background: white;
}

.croatia-gems h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    color: var(--dark-color);
}

.gem-card {
    display: grid;
    grid-template-columns: 50px 1fr 1fr;
    gap: 30px;
    margin-bottom: 60px;
    align-items: center;
}

.gem-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
}

.gem-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.gem-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.gem-meta i {
    margin-right: 5px;
    color: var(--primary-color);
}

.gem-tip {
    background: rgba(65, 105, 225, 0.1);
    padding: 15px;
    border-left: 3px solid var(--secondary-color);
    margin-top: 20px;
    font-size: 0.9rem;
}

.gem-tip i {
    color: var(--secondary-color);
    margin-right: 10px;
}

.gem-image {
	height: 350px;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: var(--shadow);
}

.gem-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.island-hopping {
    padding: 80px 0;
    background: var(--light-color);
}

.island-hopping h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    color: var(--dark-color);
}

.itinerary-tabs {
    max-width: 1000px;
    margin: 0 auto;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    gap: 10px;
}

.tab-button {
    padding: 12px 25px;
    background: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.tab-button.active {
    background: var(--primary-color);
    color: white;
}

.tab-content {
    display: none;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.tab-content.active {
    display: block;
}

.itinerary-stops {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.stop {
    background: var(--light-color);
    padding: 25px;
    border-radius: 10px;
}

.stop-day {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 15px;
}

.stop h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.croatia-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
}

.croatia-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

.croatia-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-primary {
    background: white;
    color: var(--primary-color);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-primary:hover {
    background: #f0f0f0;
    transform: translateY(-3px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .gem-card {
        grid-template-columns: 1fr;
    }
    
    .gem-image {
        order: -1;
        height: 250px;
    }
    
    .croatia-hero .hero-content h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .croatia-hero .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .croatia-hero .hero-content p {
        font-size: 1.2rem;
    }
    
    .tab-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .tab-button {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .croatia-hero {
        height: 60vh;
    }
    
    .regions-grid {
        grid-template-columns: 1fr;
    }
    
    .croatia-gems h2,
    .island-hopping h2 {
        font-size: 2rem;
    }
}
/* Packing Tips Page Styles */
.packing-hero {
	position: relative;
	height: 60vh;
	min-height: 400px;
	background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../img/packing-hero.jpg') no-repeat center center/cover;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: white;
	margin-top: 80px;
	background-image: url(img/packing-hero.jpg);
}

.packing-hero .hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.packing-hero .hero-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.packing-intro {
    padding: 60px 0;
    text-align: center;
    background: white;
    font-size: 1.1rem;
    line-height: 1.8;
}

.packing-tips {
    padding: 80px 0;
    background: var(--light-color);
}

.tip-card {
    display: grid;
    grid-template-columns: 60px 1fr 1fr;
    gap: 30px;
    margin-bottom: 60px;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.tip-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    align-self: center;
}

.tip-content h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.tip-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.tip-meta i {
    margin-right: 5px;
    color: var(--primary-color);
}

.tip-bonus {
    background: rgba(255, 215, 0, 0.1);
    padding: 15px;
    border-left: 3px solid var(--accent-color);
    margin-top: 20px;
    font-size: 0.9rem;
}

.tip-bonus i {
    color: var(--accent-color);
    margin-right: 10px;
}

.tip-image {
    height: 250px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.tip-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bonus-tips {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.bonus-tips h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--dark-color);
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.hack-card {
    padding: 30px;
    background: var(--light-color);
    border-radius: 10px;
    transition: var(--transition);
}

.hack-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.hack-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.hack-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.packing-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
}

.packing-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

.packing-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-primary {
    background: white;
    color: var(--primary-color);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-primary:hover {
    background: #f0f0f0;
    transform: translateY(-3px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .tip-card {
        grid-template-columns: 1fr;
    }
    
    .tip-image {
        order: -1;
        height: 300px;
    }
    
    .packing-hero .hero-content h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .packing-hero .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .packing-hero .hero-content p {
        font-size: 1.2rem;
    }
    
    .tip-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .packing-hero {
        height: 50vh;
    }
    
    .bonus-tips h2 {
        font-size: 2rem;
    }
    
    .packing-cta h2 {
        font-size: 2rem;
    }
}
/* Northern Lights Norway Page Styles */
.northern-lights-hero {
    position: relative;
    height: 80vh;
    min-height: 600px;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../img/northern-lights-hero.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 80px;
}

.northern-lights-hero .hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    animation: fadeInDown 1s ease;
}

.northern-lights-hero .hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease;
    animation-delay: 0.3s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.northern-lights-hero .hero-content p {
    font-size: 1.5rem;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease;
    animation-delay: 0.6s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.northern-lights-intro {
    padding: 80px 0;
    text-align: center;
    background: white;
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.best-places {
    padding: 80px 0;
    background: var(--light-color);
}

.best-places h2 {
    text-align: center;
    margin-bottom: 60px;
    font-size: 2.5rem;
    color: var(--dark-color);
}

.places-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.place-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 400px;
}

.place-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.place-card:hover img {
    transform: scale(1.05);
}

.place-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7), transparent);
    color: white;
}

.place-overlay h3 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.place-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: white;
    transform: translateY(100px);
    transition: var(--transition);
}

.place-card:hover .place-content {
    transform: translateY(0);
}

.place-stats {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
    font-size: 0.9rem;
}

.place-stats i {
    margin-right: 8px;
    color: var(--accent-color);
}

.when-to-go {
    padding: 80px 0;
    background: white;
}

.when-to-go h2 {
    text-align: center;
    margin-bottom: 60px;
    font-size: 2.5rem;
    color: var(--dark-color);
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    width: 3px;
    background: var(--primary-color);
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.timeline-item {
    padding: 20px 40px;
    position: relative;
    margin-bottom: 30px;
}

.timeline-period {
    background: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
}

.timeline-content {
    background: var(--light-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.photo-tips {
    padding: 80px 0;
    background: var(--light-color);
}

.photo-tips h2 {
    text-align: center;
    margin-bottom: 60px;
    font-size: 2.5rem;
    color: var(--dark-color);
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.photo-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.photo-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.photo-content {
    padding: 25px;
}

.photo-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.photo-content ul {
    list-style-position: inside;
}

.photo-content li {
    margin-bottom: 10px;
}

.activities {
    padding: 80px 0;
    background: white;
}

.activities h2 {
    text-align: center;
    margin-bottom: 60px;
    font-size: 2.5rem;
    color: var(--dark-color);
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.activity-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.activity-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.activity-content {
    padding: 20px;
}

.activity-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.activity-meta {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.activity-meta i {
    margin-right: 5px;
    color: var(--primary-color);
}

.northern-lights-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #2b5876 0%, #4e4376 100%);
    color: white;
    text-align: center;
}

.northern-lights-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

.northern-lights-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-primary {
    background: white;
    color: var(--primary-color);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-primary:hover {
    background: #f0f0f0;
    transform: translateY(-3px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        padding-left: 70px;
        padding-right: 0;
    }
    
    .timeline-period {
        position: absolute;
        left: 0;
        top: 0;
    }
    
    .northern-lights-hero .hero-content h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .northern-lights-hero {
        height: 70vh;
    }
    
    .northern-lights-hero .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .northern-lights-hero .hero-content h2 {
        font-size: 2rem;
    }
    
    .place-card {
        height: 350px;
    }
}

@media (max-width: 576px) {
    .northern-lights-hero {
        height: 60vh;
    }
    
    .northern-lights-hero .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .best-places h2,
    .when-to-go h2,
    .photo-tips h2,
    .activities h2 {
        font-size: 2rem;
    }
    
    .places-grid,
    .photo-grid,
    .activities-grid {
        grid-template-columns: 1fr;
    }
}
/* FAQ Styling */
.faq-item {
    margin-bottom: 15px;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-color);
}

.faq-question {
    padding: 20px;
    background: var(--light-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 1.2rem;
    color: var(--dark-color);
    margin: 0;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer p {
    margin-bottom: 20px;
    color: var(--text-light);
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 500px;
}
/* Solo Travel Safety Page Styles */
.solo-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('img/solo-travel-hero.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 80px;
}

.solo-hero .hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.solo-hero .hero-content .subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
}

.solo-intro {
    padding: 80px 0;
    text-align: center;
    background: white;
}

.solo-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.solo-intro p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--text-light);
}

.safety-tips {
    padding: 80px 0;
    background: var(--light-color);
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.tip-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.tip-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.tip-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.tip-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.tip-card ul {
    list-style: none;
}

.tip-card li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    color: var(--text-light);
}

.tip-card li::before {
    content: "•";
    color: var(--primary-color);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -5px;
}

.packing-essentials {
    padding: 80px 0;
    background: white;
}

.packing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.packing-item {
    background: var(--light-color);
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.packing-item:hover {
    transform: translateY(-10px);
}

.packing-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.packing-item h4 {
    font-size: 1.1rem;
    color: var(--dark-color);
}

.destination-safety {
    padding: 80px 0;
    background: var(--light-color);
}

.safety-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.safety-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.safety-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.safety-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.safety-info {
    padding: 25px;
}

.safety-info h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.safety-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 15px 0;
}

.safety-rating span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.stars {
    color: var(--accent-color);
}

.safety-info p {
    margin-bottom: 20px;
    color: var(--text-light);
}

.solo-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    text-align: center;
    color: white;
}

.solo-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

.solo-cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-button.secondary:hover {
    background: white;
    color: var(--primary-color);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .solo-hero .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .solo-intro h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 576px) {
    .solo-hero {
        height: 50vh;
    }
    
    .solo-hero .hero-content h1 {
        font-size: 2rem;
    }
    
    .packing-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
}
/* Langkawi Jungle Adventure Specific Styles */
.difficulty-badge {
    display: inline-block;
    background: #4CAF50;
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    margin: 15px 0;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.quick-facts {
    padding: 50px 0;
    background: var(--light-color);
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.fact-card {
	text-align: center;
	padding: 30px 20px;
	background: white;
	border-radius: 10px;
	box-shadow: var(--shadow);
	transition: var(--transition);
}

.fact-card:hover {
    transform: translateY(-10px);
}

.fact-card i {
	font-size: 2.5rem;
	color: var(--primary-color);
	margin-bottom: 15px;
}

.fact-card h3 {
    margin-bottom: 10px;
    color: var(--dark-color);
}

.wildlife-spotting {
    margin: 60px 0;
}

.wildlife-spotting h2 {
    text-align: center;
    margin-bottom: 40px;
}

.wildlife-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.animal-card {
    text-align: center;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.animal-card:hover {
    transform: translateY(-10px);
}

.animal-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.animal-card h3 {
    padding: 15px;
    font-size: 1rem;
    color: var(--dark-color);
}

.travel-date {
    display: block;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 5px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .facts-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .wildlife-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .facts-grid,
    .wildlife-grid {
        grid-template-columns: 1fr;
    }
    
    .package-hero .hero-content h1 {
        font-size: 2.2rem;
    }
}

/* Preparation Guide Styles */
.preparation-guide {
    margin: 60px 0;
    padding: 40px 0;
    background-color: #f9f9f9;
    border-radius: 10px;
}

.preparation-guide h2 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.preparation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.preparation-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.preparation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.prep-icon {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.prep-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.preparation-card ul {
    list-style: none;
}

.preparation-card li {
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
}

.preparation-card li i {
    position: absolute;
    left: 0;
    top: 3px;
    color: var(--primary-color);
}

/* Community Impact Styles */
.community-impact {
    margin: 60px 0;
    padding: 40px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e3e9f2 100%);
    border-radius: 10px;
}

.community-impact h2 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.impact-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.impact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.impact-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.impact-icon h3 {
    margin-bottom: 15px;
    color: var(--dark-color);
}

.impact-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Package Options Styles */
.package-options {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.package-options h3 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
    font-size: 1.8rem;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.option-card {
    background: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.option-card.selected {
    border: 2px solid var(--primary-color);
    box-shadow: 0 10px 25px rgba(255,127,80,0.2);
}

.option-header {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.option-card h4 {
    color: var(--dark-color);
    font-size: 1.3rem;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.option-card h4 i {
    color: var(--primary-color);
}

.option-card .price {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.option-card .price span {
    font-weight: normal;
    color: var(--text-light);
    font-size: 0.9rem;
}

.option-card ul {
    list-style: none;
    margin: 20px 0;
    padding-left: 0;
}

.option-card li {
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
    color: var(--text-light);
}

.option-card li i {
    position: absolute;
    left: 0;
    top: 3px;
    color: var(--primary-color);
}

.select-package {
    width: 100%;
    padding: 12px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.select-package:hover {
    background: #ff6347;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .options-grid {
        grid-template-columns: 1fr;
    }
    
    .option-card {
        padding: 20px;
    }
}

/* Bordeaux Packages Specific Styles */
.package-comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.package-option {
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.package-option.highlight {
    border: 2px solid var(--accent-color);
    transform: translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: 15px;
    right: -30px;
    background: var(--primary-color);
    color: white;
    padding: 5px 30px;
    transform: rotate(45deg);
    font-weight: 600;
    font-size: 0.8rem;
    z-index: 1;
}

.package-header {
    padding: 30px;
    text-align: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
    border-bottom: 1px solid #eee;
}

.package-header h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 15px 0;
}

.price span {
    font-size: 1rem;
    color: var(--text-light);
}

.duration {
    color: var(--text-light);
    font-weight: 600;
}

.seasonal {
    margin-top: 10px;
    font-size: 0.8rem;
    color: var(--primary-color);
    font-weight: 600;
}

.package-features {
    padding: 30px;
}

.package-features ul {
    list-style: none;
    margin-bottom: 30px;
}

.package-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.package-features i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.package-features .fa-check {
    color: var(--primary-color);
}

.package-features .fa-times {
    color: #ccc;
}

.package-features .btn {
    width: 100%;
    text-align: center;
}

/* Why Choose Section */
.why-choose {
    margin: 80px 0;
}

.why-choose h2 {
    text-align: center;
    margin-bottom: 50px;
}

.reason {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.reason-number {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.reason-content h3 {
    margin-bottom: 10px;
    color: var(--dark-color);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .package-comparison {
        grid-template-columns: 1fr;
    }
    
    .package-option.highlight {
        transform: none;
    }
}

/* Enhanced Testimonial Styles */
.testimonial-card {
    position: relative;
}

.testimonial-card:before {
    content: """;
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 5rem;
    color: rgba(139, 0, 0, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-content {
    padding-top: 40px;
}

.testimonial-author img {
    border: 2px solid var(--primary-color);
}

.testimonial-author div p {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* Video Testimonial Styles */
.video-testimonial {
    background: var(--light-color);
    padding: 60px 0;
    margin-top: 50px;
    text-align: center;
}

.video-testimonial h3 {
    margin-bottom: 30px;
    color: var(--dark-color);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    max-width: 800px;
    margin: 0 auto;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.video-caption {
    margin-top: 20px;
    font-style: italic;
    color: var(--text-light);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .testimonial-card:before {
        font-size: 3rem;
        top: 10px;
        left: 10px;
    }
    
    .video-testimonial {
        padding: 40px 0;
    }
}