/* --- 1. Variables & Reset --- */
:root {
    --color-primary: #D30000; /* Red from button */
    --color-white: #ffffff;
    --color-dark: #1a1a1a;
    --color-overlay: rgba(0, 0, 0, 0.4);
    --color-accent: #F4C430; /* The yellow/gold color */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--color-white);
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* --- 2. Buttons --- */
.btn {
    display: inline-block;
    padding: 12px 28px;
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 8px;
    transition: var(--transition);
    font-size: 0.9rem;
}

.btn--primary {
    background-color: var(--color-primary);
    color: var(--color-white);
    border: 2px solid var(--color-primary);
}

.btn--primary:hover {
    background-color: transparent;
    color: var(--color-primary); /* For white bg header */
}

/* Specific hover for hero primary button to keep it visible on dark bg */
.hero .btn--primary:hover {
    background-color: darkred;
    border-color: darkred;
    color: white;
}

.btn--outline {
    background-color: transparent;
    color: var(--color-white);
    border: 1px solid rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.1);
}

.btn--outline:hover {
    background-color: var(--color-white);
    color: var(--color-dark);
}

/* --- 3. Header --- */
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent);
}

.header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--color-white);
    gap: 10px;
}

.logo__img {
    height: 50px; /* Adjust based on your actual logo file */
}

.logo__text {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1;
    font-size: 1.2rem;
    color: #F4C430; /* Goldish color from logo */
}

.logo__text small {
    color: var(--color-white);
    font-size: 0.7rem;
    letter-spacing: 1px;
}

.nav__list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav__link {
    color: var(--color-white);
    text-decoration: none;
    font-weight: 600;
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: var(--transition);
}

.nav__link:hover {
    color: var(--color-primary);
}

/* --- 4. Hero Section --- */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

/* Slideshow Backgrounds */
.hero__bg-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero__bg.active {
    opacity: 1;
}

/* Replace these URLs with your local images */
.hero__bg--1 { background-image: url('../images/hero-bg-1.jpg'); } 
.hero__bg--2 { background-image: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1920'); } /* Demo Placeholder */
.hero__bg--3 { background-image: url('https://images.unsplash.com/photo-1476514525535-07fb3b4ae5f1?auto=format&fit=crop&w=1920'); } /* Demo Placeholder */

/* Dark Overlay */
.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3); /* Adjust darkness here */
    z-index: -1;
}

/* Hero Content */
.hero__content {
    position: relative;
    z-index: 1;
    margin-top: -50px; /* Slight offset to account for navbar */
}

.hero__title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.hero__description-wrapper {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    max-width: 600px;
}

.hero__bar {
    width: 4px;
    background-color: var(--color-primary);
    flex-shrink: 0;
}

.hero__description {
    font-size: 1.1rem;
}

.hero__actions {
    display: flex;
    gap: 20px;
}

/* --- 5. Features Bar --- */
.features-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.features-bar__container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-white);
    font-weight: 600;
    font-size: 0.9rem;
}

.feature__icon {
    font-size: 1.5rem;
    /* Use outline style icons if preferred, here mostly solid */
}

/* Responsive Tweaks */
@media (max-width: 768px) {
    .header__container {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav__list {
        gap: 15px;
        font-size: 0.8rem;
    }

    .hero__title {
        font-size: 2.5rem;
    }

    .features-bar__container {
        justify-content: center;
    }
}
/* --- 6. General Utilities (Add these if not present) --- */
.section-padding {
    padding: 100px 0;
}

.section-label {
    color: var(--color-primary);
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.section-title {
    font-family: var(--font-heading);
    color: var(--color-dark);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
}

/* --- 7. About Section --- */
.about {
    background-color: var(--color-white);
}

.about__container {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two equal columns */
    gap: 60px;
    align-items: center;
}

/* Left Content Styling */
.about__content {
    background: #fff;
    /* Optional: If you want the subtle border card look shown in design */
    border: 1px solid #eaeaea; 
    padding: 40px;
    border-radius: 20px;
}

.about__description-wrapper {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

/* Reusing the vertical bar concept, but specifically for this section if needed */
.vertical-bar {
    width: 4px;
    background-color: var(--color-primary);
    flex-shrink: 0;
    border-radius: 2px;
}

.about__text p {
    color: #555;
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.7;
}

.about__text p:last-child {
    margin-bottom: 0;
}

.about__btn {
    width: 100%; /* Make button full width of the card content */
    text-align: center;
}

/* Right Image Styling */
.about__image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    min-height: 500px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.about__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* The Red Badge overlay */
.about__badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 20px 30px;
    text-align: center;
    border-top-left-radius: 20px;
}

.about__badge-title {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
}

.about__badge-year {
    display: block;
    font-size: 0.8rem;
    margin-top: 5px;
    opacity: 0.9;
}

/* Responsive Adjustments */
@media (max-width: 900px) {
    .about__container {
        grid-template-columns: 1fr; /* Stack vertically on tablet/mobile */
        gap: 40px;
    }

    .about__image-wrapper {
        min-height: 300px; /* Smaller image height on mobile */
    }
    
    .section-title {
        font-size: 2rem;
    }
}
/* --- 8. Services Section --- */
.services {
    position: relative;
    /* Default background image (the airport guy) */
    background-image: url('https://images.unsplash.com/photo-1506012787146-f92b2d7d6d96?auto=format&fit=crop&w=1920');
    background-size: cover;
    background-position: center;
    height: 600px; /* Adjust height as needed */
    display: flex;
    align-items: center;
    transition: background-image 0.5s ease-in-out; /* Smooth transition for the background change */
}

/* Dark overlay to make text readable */
.services__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.services__content {
    position: relative;
    z-index: 1;
    /* Push content up slightly to make room for the bottom bar */
    margin-bottom: 100px; 
}

/* Utility classes for white text variants */
.section-label--white {
    color: rgba(255, 255, 255, 0.8);
}

.section-title--white {
    color: var(--color-white);
    font-size: 3.5rem; /* Larger size for this specific headline */
}

.text-accent {
    color: var(--color-accent);
}

/* Bottom Services Navigation Bar */
.services__bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.3); /* Subtle background for the bar */
    backdrop-filter: blur(5px);
}

.services__bar-container {
    display: flex;
    justify-content: space-between;
}

.services__link {
    flex: 1; /* Distribute space evenly */
    text-align: center;
    padding: 25px 10px;
    color: var(--color-white);
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

/* Remove border from the last item */
.services__link:last-child {
    border-right: none;
}

.services__link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-accent);
}

/* Responsive Adjustments */
@media (max-width: 900px) {
    .services {
        height: auto;
        padding: 100px 0; /* Switch to padding on mobile so content fits */
    }
    
    .services__content {
        margin-bottom: 40px;
    }

    .section-title--white {
        font-size: 2.5rem;
    }

    .services__bar {
        position: relative; /* Stack normally on mobile */
        border-top: none;
        background: transparent;
    }

    .services__bar-container {
        flex-direction: column; /* Stack links vertically */
    }

    .services__link {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        padding: 20px 0;
        text-align: left;
    }
}
/* --- 9. Curated Packages Section --- */
.packages {
    background-color: #fafafa; /* Slightly off-white bg like screenshot */
}

/* Header Alignment */
.packages__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end; /* Aligns text bottom with button bottom */
    margin-bottom: 40px;
}

/* Grid Layout */
.packages__grid {
    display: grid;
    /* Creates 3 columns that auto-resize */
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px;
}

/* Card Styling */
.package-card {
    position: relative;
    display: block; /* Make anchor act as block */
    height: 400px;
    border-radius: 24px;
    overflow: hidden;
    text-decoration: none;
    color: var(--color-white);
    /* Fix for Safari border-radius clipping */
    transform: translateZ(0); 
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

/* Image with Zoom Effect */
.package-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

/* Hover Effect: Zoom Image */
.package-card:hover .package-card__img {
    transform: scale(1.1);
}

/* Dark Gradient Overlay for Readability */
.package-card__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradient starts transparent and gets dark at bottom */
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 30%, transparent 100%);
    z-index: 1;
}

/* The Arrow Icon Button */
.package-card__arrow {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background-color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    color: var(--color-dark);
    font-size: 1.2rem;
    transition: var(--transition);
    transform: rotate(-45deg); /* Angled arrow look */
}

/* Hover Effect: Arrow turns Red */
.package-card:hover .package-card__arrow {
    background-color: var(--color-primary);
    color: var(--color-white);
}

/* Card Content Positioning */
.package-card__content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    z-index: 2;
}

.package-card__title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.2;
}

.package-card__desc {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 400;
    line-height: 1.4;
}

/* Responsive Handling */
.packages__btn-bottom-wrapper {
    display: none; /* Hidden on desktop */
    text-align: center;
    margin-top: 30px;
}

@media (max-width: 1024px) {
    .packages__grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on tablet */
    }
}

@media (max-width: 768px) {
    .packages__header {
        flex-direction: column;
        align-items: flex-start;
    }

    .packages__btn-top {
        display: none; /* Hide top button on mobile */
    }

    .packages__btn-bottom-wrapper {
        display: block; /* Show bottom button on mobile */
    }

    .packages__grid {
        grid-template-columns: 1fr; /* 1 column on mobile */
        gap: 20px;
    }
    
    .package-card {
        height: 350px;
    }
}
/* --- 10. Process / Journey Section --- */
.process {
    position: relative;
    color: var(--color-white);
    text-align: center;
    overflow: hidden; /* Ensures background doesn't spill out */
}

/* Background Image setup */
.process__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Replace with your mountain/lake image */
    background-image: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?auto=format&fit=crop&w=1920');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Optional: Parallax effect */
    z-index: -2;
}

/* Dark Overlay for Readability */
.process__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Adjust opacity if needed */
    z-index: -1;
}

.process__header {
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.process__subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-top: -10px;
}

/* Steps Layout */
.process__steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    gap: 20px;
}

.process__step {
    flex: 1; /* Each step takes equal width */
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* The Line Connector */
/* We draw a line from the center of this item to the right */
.process__step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 40px; /* Aligns with the vertical center of the 80px circle */
    left: 50%;
    width: 100%; /* Spans to the next item */
    height: 2px;
    background-color: rgba(255, 255, 255, 0.5);
    z-index: 0; /* Behind the icon */
}

/* Icon Circle */
.process__icon-box {
    width: 80px;
    height: 80px;
    background-color: rgba(211, 0, 0, 0.8); /* Red with slight transparency */
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 1; /* Sits on top of the line */
    transition: transform 0.3s ease, background-color 0.3s ease;
    box-shadow: 0 0 0 5px rgba(211, 0, 0, 0.2); /* Outer glow ring */
}

.process__icon {
    font-size: 2rem;
    color: var(--color-white);
}

/* Hover Animation: Pulse Effect */
.process__step:hover .process__icon-box {
    transform: scale(1.1);
    background-color: var(--color-primary); /* Solid red on hover */
    box-shadow: 0 0 0 8px rgba(211, 0, 0, 0.4);
}

/* Text Content */
.process__content {
    padding: 0 10px;
}

.process__step-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.step-num {
    color: var(--color-primary); /* Red number like in screenshot */
    margin-right: 5px;
    font-weight: 800;
}

.process__step-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive Adjustments */
@media (max-width: 900px) {
    .process__steps {
        flex-direction: column; /* Stack vertically */
        gap: 40px;
    }

    .process__step {
        flex-direction: row; /* Icon left, text right */
        align-items: flex-start;
        text-align: left;
    }

    .process__icon-box {
        flex-shrink: 0; /* Prevent icon from shrinking */
        margin-right: 20px;
        margin-bottom: 0;
        width: 60px;
        height: 60px;
    }

    .process__icon {
        font-size: 1.5rem;
    }

    .process__step:not(:last-child)::after {
        /* Vertical line for mobile */
        width: 2px;
        height: 100%; /* Span down to next item */
        top: 60px; /* Start below the icon */
        left: 30px; /* Center of the 60px icon */
        transform: translateX(-50%);
    }
    
    .process__step:not(:last-child) {
        padding-bottom: 20px; /* Space for line */
    }
}
/* --- 11. Why Choose Us Section --- */
.why-choose {
    background-color: var(--color-white);
    text-align: center;
}

.why-choose__header {
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.why-choose__subtitle {
    font-size: 1.1rem;
    color: #555;
    margin-top: 10px;
}

/* Grid Layout */
.why-choose__grid {
    display: grid;
    /* 3 Columns equal width */
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Card Styling */
.why-card {
    background: #fff;
    /* The subtle red border from your screenshot */
    border: 1px solid rgba(211, 0, 0, 0.15);
    border-radius: 16px;
    padding: 40px 30px;
    transition: all 0.4s ease;
    position: relative;
    top: 0;
}

/* Hover Animation: Lift card and enhance shadow */
.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(211, 0, 0, 0.1);
    border-color: rgba(211, 0, 0, 0.4);
}

/* Icon Styling */
.why-card__icon {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 25px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Bouncy effect */
}

/* Hover Animation: Icon pops slightly */
.why-card:hover .why-card__icon {
    transform: scale(1.2);
}

.why-card__title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--color-dark);
}

.why-card__desc {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .why-choose__grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on tablet */
    }
}

@media (max-width: 768px) {
    .why-choose__grid {
        grid-template-columns: 1fr; /* 1 column on mobile */
        gap: 20px;
    }
    
    .why-card {
        padding: 30px 20px;
    }
}
/* --- 12. Testimonials Section --- */
.testimonials {
    background-color: #fafafa; /* Light background for contrast */
    overflow: hidden;
}

.testimonials__container {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 50/50 Split */
    gap: 60px;
    align-items: start;
}

/* --- Left Column: Visuals --- */
.testimonials__visual {
    position: relative;
    /* Ensure the left side has height for the floating card */
    min-height: 600px; 
}

.testimonials__img-wrapper {
    width: 90%; /* Leave space for the card to pop out */
    height: 550px;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
}

.testimonials__main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.testimonials__visual:hover .testimonials__main-img {
    transform: scale(1.05); /* Slow zoom effect */
}

/* The Floating Card Overlay */
.testimonial-card--floating {
    position: absolute;
    bottom: 40px;
    right: 0; /* Pushes out of the image boundary */
    width: 320px;
    background: var(--color-white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    z-index: 2;
    border: 1px solid rgba(0,0,0,0.05);
    animation: floatUp 1s ease-out forwards;
}

.testimonial-card__text {
    font-size: 0.95rem;
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial-card__author {
    color: var(--color-primary);
    font-weight: 700;
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-size: 0.9rem;
}

/* --- Right Column: Content & List --- */
.testimonials__header {
    margin-bottom: 40px;
}

/* Scrollable Wrapper for Scalability */
.testimonials__list-wrapper {
    /* Fixed height matches the image side approx */
    height: 500px; 
    overflow-y: auto; /* Allows scrolling if content exceeds height */
    padding-right: 20px; /* Space for scrollbar */
    
    /* Custom Scrollbar Styling (Webkit) */
    scrollbar-width: thin;
    scrollbar-color: rgba(0,0,0,0.2) transparent;
}

/* Custom Scrollbar visual */
.testimonials__list-wrapper::-webkit-scrollbar {
    width: 6px;
}
.testimonials__list-wrapper::-webkit-scrollbar-track {
    background: transparent;
}
.testimonials__list-wrapper::-webkit-scrollbar-thumb {
    background-color: rgba(0,0,0,0.2);
    border-radius: 10px;
}

/* Individual Review Item */
.testimonial-item {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.testimonial-item:hover {
    opacity: 1; /* Highlight on hover */
}

/* Vertical decorative line */
.testimonial-item__line {
    width: 4px;
    background-color: #ddd; /* Default gray */
    flex-shrink: 0;
    border-radius: 2px;
    transition: background-color 0.3s ease, height 0.3s ease;
}

/* Line turns red on hover */
.testimonial-item:hover .testimonial-item__line {
    background-color: var(--color-primary);
}

.testimonial-item__body p {
    font-size: 1rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 15px;
}

.testimonial-item__author {
    display: block;
    text-align: right;
    color: var(--color-primary);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-top: 10px;
}

/* Animation Keyframes */
@keyframes floatUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- Responsive Adjustments --- */
@media (max-width: 900px) {
    .testimonials__container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .testimonials__visual {
        min-height: auto;
        margin-bottom: 20px;
    }

    .testimonials__img-wrapper {
        width: 100%;
        height: 300px;
    }

    /* On mobile, stop floating the card and just stack it */
    .testimonial-card--floating {
        position: relative;
        bottom: auto;
        right: auto;
        width: 100%;
        margin-top: -50px; /* Overlap slightly */
        margin-left: 20px;
        width: calc(100% - 40px);
    }

    .testimonials__list-wrapper {
        height: auto; /* Remove fixed height on mobile */
        overflow-y: visible;
    }
}
/* --- 13. Call to Action (CTA) Section --- */
.cta {
    position: relative;
    /* Adjust height as needed, screenshot looks like a banner height */
    padding: 120px 0; 
    text-align: center;
    color: var(--color-white);
    overflow: hidden;
}

/* Background Image */
.cta__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Replace with your tropical beach image */
    background-image: url('https://images.unsplash.com/photo-1590523277543-a94d2e4eb00b?auto=format&fit=crop&w=1920');
    background-size: cover;
    background-position: center;
    z-index: -2;
}

/* Gradient Overlay for Readability */
.cta__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.6), rgba(0,0,0,0.3));
    z-index: -1;
}

.cta__title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
    /* Optional: Slight shadow for pop against complex backgrounds */
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.cta__subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 40px;
    font-weight: 400;
}

.cta__actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: center;
}

/* Specific Tweak for the Primary Button in this section */
.cta__btn {
    padding: 15px 35px; /* Make it slightly larger */
    font-size: 1rem;
    box-shadow: 0 10px 20px rgba(211, 0, 0, 0.3);
}

/* --- WhatsApp Button Styling --- */
.btn--whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background-color: rgba(0, 0, 0, 0.6); /* Dark semi-transparent */
    color: var(--color-white);
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 600;
    border-radius: 50px; /* Pill shape */
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(5px);
    transition: var(--transition);
}

.btn--whatsapp i {
    font-size: 1.4rem;
    color: #25D366; /* Official WhatsApp Green */
}

/* Hover Effect: WhatsApp Button */
.btn--whatsapp:hover {
    background-color: var(--color-white);
    color: var(--color-dark);
    transform: translateY(-3px);
}

/* Ensure animation works on the primary button too */
.cta__btn:hover {
    transform: translateY(-3px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .cta__title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .cta__actions {
        flex-direction: column; /* Stack buttons on mobile */
        gap: 15px;
    }
    
    .btn--whatsapp, .cta__btn {
        width: 100%;
        justify-content: center;
    }
}
/* --- 14. Footer Section --- */
.footer {
    background-color: var(--color-white);
    padding-top: 80px;
    color: var(--color-dark);
}

.footer__container {
    display: grid;
    /* Grid: Brand takes 2 parts, Links 1 part, Contacts 1 part */
    grid-template-columns: 2fr 1fr 1fr; 
    gap: 60px;
    margin-bottom: 60px;
}

/* Brand Column */
.footer__logo {
    margin-bottom: 25px;
    display: inline-flex;
}

/* Helper to turn logo text dark for footer (since header was white) */
.logo__text--dark {
    color: var(--color-dark);
}
.logo__text--dark small {
    color: #666;
}

.footer__desc {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
    max-width: 90%;
}

/* Social Icons */
.footer__socials {
    display: flex;
    gap: 15px;
}

.footer__social-link {
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.1rem;
}

/* Hover Animation: Fill with Red */
.footer__social-link:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-3px);
}

/* Column Titles */
.footer__title {
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 25px;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

/* Link Lists */
.footer__links, .footer__contact-list {
    list-style: none;
}

.footer__links li, .footer__contact-list li {
    margin-bottom: 15px;
}

.footer__links a, .footer__contact-list a {
    text-decoration: none;
    color: #444;
    font-size: 0.95rem;
    transition: var(--transition);
    display: inline-block;
}

/* Hover Animation: Slide Right */
.footer__links a:hover {
    color: var(--color-primary);
    transform: translateX(5px);
}

.footer__contact-list a:hover {
    color: var(--color-primary);
}

.footer__address {
    font-style: normal;
    color: #555;
    line-height: 1.6;
    margin-top: 20px;
    font-size: 0.95rem;
}

/* Bottom Bar */
.footer__bottom {
    border-top: 1px solid #eee;
    padding: 25px 0;
    font-size: 0.85rem;
    color: #777;
}

.footer__bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer__legal {
    display: flex;
    gap: 30px;
}

.footer__legal a {
    text-decoration: none;
    color: #777;
    transition: var(--transition);
}

.footer__legal a:hover {
    color: var(--color-primary);
}

/* Responsive Adjustments */
@media (max-width: 900px) {
    .footer__container {
        grid-template-columns: 1fr; /* Stack everything */
        gap: 40px;
    }

    .footer__desc {
        max-width: 100%;
    }

    .footer__bottom-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}
/* Dark Header for inner pages */
.header--dark {
    background-color: #333; /* Dark grey to match screenshot */
    position: relative; /* Removes the overlay effect so content starts below it */
}
/* --- 15. About Page: Legacy Section --- */

.legacy {
    background-color: var(--color-white);
    /* Add extra top padding since we don't have a hero section here */
    padding-top: 80px; 
}

.legacy__container {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 50/50 split */
    gap: 60px;
    align-items: center;
}

/* Left Column: The Content Card */
.legacy__content {
    /* The thin red border around the whole text block */
    border: 1px solid rgba(211, 0, 0, 0.15); 
    border-radius: 20px;
    padding: 50px 40px;
    background: #fff;
    /* Subtle fade-in animation */
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0; /* Starts invisible for animation */
}

/* The Text Wrapper with the thick red line */
.legacy__text-wrapper {
    margin-top: 30px;
    border-left: 5px solid var(--color-primary); /* The thick red line */
    padding-left: 25px;
}

.legacy__text-wrapper p {
    color: #555;
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.legacy__text-wrapper p:last-child {
    margin-bottom: 0;
}

/* Right Column: Image Styling */
.legacy__image-box {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 450px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    /* Slide-in animation */
    animation: slideInRight 0.8s ease-out forwards;
    opacity: 0;
    animation-delay: 0.3s; /* Delays image slightly after text */
}

.legacy__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Optional: Grayscale filter to give it a 'history' vibe */
    filter: grayscale(20%); 
    transition: transform 0.6s ease, filter 0.6s ease;
}

.legacy__image-box:hover .legacy__img {
    transform: scale(1.05);
    filter: grayscale(0%); /* Full color on hover */
}

/* Badge Styling (Reused concept but scoped to legacy) */
.legacy__badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 15px 30px;
    text-align: center;
    border-top-left-radius: 20px;
}

.legacy__badge-title {
    display: block;
    font-family: var(--font-heading);
    font-weight: 600;
}

.legacy__badge-year {
    font-size: 0.8rem;
    opacity: 0.9;
}

/* --- Animations --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Adjustments */
@media (max-width: 900px) {
    .legacy__container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .legacy__image-box {
        height: 300px;
    }
}
/* --- 16. About Main Content (Vision/Mission) --- */

.about-main {
    padding-bottom: 100px;
    background-color: var(--color-white);
}

/* Generic Card Style for this section */
.about-card {
    background: #fff;
    border: 1px solid rgba(211, 0, 0, 0.15); /* The thin red border */
    border-radius: 24px;
    padding: 50px;
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /* Initial state for animation */
    opacity: 0;
    transform: translateY(20px);
}

.about-card:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    transform: translateY(-5px);
}

/* Typography inside cards */
.about-card__heading {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 25px;
}

/* The Content Wrapper with the Red Vertical Line */
.about-main__text-wrapper {
    border-left: 5px solid var(--color-primary);
    padding-left: 30px;
    margin-left: 5px; /* Offset to prevent text touching edge if padding is tight */
}

.about-main__text-wrapper p {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.about-main__text-wrapper p:last-child {
    margin-bottom: 0;
}

/* List Styling for 'What We Do' */
.about-main__list {
    margin: 20px 0;
    padding-left: 20px; /* Indent bullets slightly */
}

.about-main__list li {
    margin-bottom: 10px;
    color: #333;
    font-weight: 600;
    font-size: 1rem;
}

/* Layout Grid for Bottom Section */
.about-main__grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 50/50 Split */
    gap: 30px;
}

.about-main__col-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Ensure the stacked cards in right column fill available height if needed */
.about-main__col-right .about-card {
    margin-bottom: 0;
    flex: 1; /* Makes them stretch nicely */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Animation Class */
.animate-card {
    animation: fadeUpCard 0.8s ease-out forwards;
}

@keyframes fadeUpCard {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Adjustments */
@media (max-width: 900px) {
    .about-main__grid {
        grid-template-columns: 1fr; /* Stack visually on mobile */
    }
    
    .about-card {
        padding: 30px 20px; /* Reduce padding on small screens */
    }

    .about-card__heading {
        font-size: 1.8rem;
    }
}
/* --- 17. Flight Booking Page --- */

/* Hero Section Setup */
.flight-hero {
    position: relative;
    height: 80vh; /* Tall hero section */
    min-height: 600px;
    display: flex;
    align-items: center; /* Vertically center the card */
    padding-top: 80px; /* Space for the navbar */
}

/* Background Image */
.flight-hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Replace with your airplane wing image */
    background-image: url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?auto=format&fit=crop&w=1920');
    background-size: cover;
    background-position: center;
    z-index: -1;
}

/* Optional: Dark gradient at top so nav links are visible */
.flight-hero__bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent);
}

/* The White Card */
.flight-hero__card {
    background: var(--color-white);
    max-width: 550px;
    padding: 50px 40px;
    border-radius: 24px; /* Soft rounded corners */
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    
    /* Animation: Slide Up + Fade In */
    opacity: 0;
    transform: translateY(30px);
    animation: floatUpHero 1s ease-out forwards 0.3s;
}

.flight-hero__title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-top: 10px;
    margin-bottom: 30px;
    line-height: 1.1;
}

/* The "Red Line" Text Wrapper Pattern */
.flight-hero__text-wrapper {
    border-left: 5px solid var(--color-primary); /* Thick red line */
    padding-left: 25px;
}

.flight-hero__text-wrapper p {
    color: #444;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.flight-hero__text-wrapper p:last-child {
    margin-bottom: 0;
}

/* Animation Keyframes */
@keyframes floatUpHero {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .flight-hero {
        height: auto;
        padding: 120px 0 60px 0; /* More top padding for mobile nav */
    }
    
    .flight-hero__card {
        padding: 30px 25px;
    }

    .flight-hero__title {
        font-size: 2.2rem;
    }
}
/* --- 18. Booking Form Section --- */

.booking-section {
    background-color: var(--color-white);
    padding-bottom: 100px; /* Extra space at bottom */
}

/* Helper for centered title */
.text-center {
    text-align: center;
    margin-bottom: 50px;
}

/* The Main Form Card */
.booking-form {
    max-width: 1000px;
    margin: 0 auto;
    background: #fff;
    /* The thin red border matching the screenshot */
    border: 1px solid rgba(211, 0, 0, 0.2);
    border-radius: 24px;
    padding: 60px;
    /* Subtle shadow for depth */
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

/* Grid Layout for Inputs */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2 equal columns */
    column-gap: 40px;
    row-gap: 30px;
    margin-bottom: 40px;
}

/* Individual Field Styling */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--color-dark);
    font-family: var(--font-heading);
}

.required {
    color: var(--color-primary); /* Red asterisk */
    margin-left: 2px;
}

/* The Pill-Shaped Inputs */
.form-input {
    width: 100%;
    padding: 15px 25px;
    border-radius: 50px; /* Creates the pill shape */
    border: 1px solid #e0e0e0;
    background: #fff;
    font-family: var(--font-body);
    font-size: 1rem;
    color: #333;
    outline: none;
    transition: all 0.3s ease;
    
    /* The subtle shadow from the screenshot */
    box-shadow: 0 4px 10px rgba(0,0,0,0.04);
}

/* Input Focus State */
.form-input:focus {
    border-color: var(--color-primary);
    box-shadow: 0 4px 15px rgba(211, 0, 0, 0.1);
}

/* Submit Button Placement */
.form-submit-wrapper {
    text-align: center;
}

.booking-btn {
    padding: 15px 50px; /* Wider button */
    font-size: 1rem;
    border-radius: 50px;
}

/* Form Animation */
.animate-form {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUpForm 0.8s ease-out forwards 0.5s;
}

@keyframes fadeUpForm {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .booking-form {
        padding: 30px 20px;
    }

    .form-grid {
        grid-template-columns: 1fr; /* Stack inputs vertically */
        gap: 20px;
    }
}
/* --- 19. Contact Page --- */

.contact-section {
    background-color: var(--color-white);
    padding-top: 80px; /* Space from header */
    padding-bottom: 100px;
}

/* Header Text Styling */
.contact-header {
    max-width: 700px;
    margin: 0 auto 50px auto;
}

.contact-subtitle {
    font-size: 1.1rem;
    color: #555;
    margin-top: 15px;
}

/* Reusing .booking-form styles but mapping them to .contact-form for clarity */
.contact-form {
    max-width: 1000px;
    margin: 0 auto;
    background: #fff;
    /* The thin red border matching the screenshot */
    border: 1px solid rgba(211, 0, 0, 0.2);
    border-radius: 24px;
    padding: 60px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

/* Textarea Specifics */
.form-group--full {
    grid-column: 1 / -1; /* Make it span both columns */
    margin-bottom: 30px; /* Extra space before button */
}

.form-textarea {
    border-radius: 20px; /* Less rounded than the pill inputs */
    resize: vertical; /* Allow user to resize height only */
    padding: 20px 25px; /* Comfortable padding */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .contact-form {
        padding: 30px 20px;
    }
    
    .contact-title {
        font-size: 2rem;
    }
}
/* --- 20. Contact Details Section --- */

.contact-info {
    background-color: #fafafa; /* Slightly different bg to separate from form */
    padding-bottom: 100px;
}

.contact-info__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 Columns */
    gap: 30px;
}

/* Card Styling */
.contact-card {
    background: var(--color-white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.05); /* Very subtle border */
    transition: all 0.3s ease;
    
    /* Animation Init */
    opacity: 0;
    transform: translateY(20px);
}

/* Hover Effect: Lift and Red Border */
.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    border-color: rgba(211, 0, 0, 0.2); /* Red tint on hover */
}

/* Icon Styling */
.contact-card__icon {
    width: 70px;
    height: 70px;
    background-color: rgba(211, 0, 0, 0.1); /* Light red bg */
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.contact-card:hover .contact-card__icon {
    transform: scale(1.1);
    background-color: var(--color-primary);
    color: var(--color-white);
}

.contact-card__title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--color-dark);
}

.contact-card__text {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

.contact-card__text a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card__text a:hover {
    color: var(--color-primary);
}

/* Animation Class (Reuse logic) */
.animate-card {
    animation: fadeUpContact 0.8s ease-out forwards;
}

@keyframes fadeUpContact {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Adjustments */
@media (max-width: 900px) {
    .contact-info__grid {
        grid-template-columns: 1fr; /* Stack vertically on mobile */
        gap: 20px;
    }
}
/* --- 21. Tour Packages Page --- */

.packages-list {
    background-color: var(--color-white);
    padding-top: 80px;
}

/* Grid Layout */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 Columns */
    gap: 30px;
}

/* Card Styling */
.pkg-card {
    position: relative;
    height: 480px; /* Fixed height for uniformity */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    /* Prepare for transition */
    transform: translateZ(0); 
}

/* Background Image */
.pkg-card__bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

/* Zoom Effect on Hover */
.pkg-card:hover .pkg-card__bg {
    transform: scale(1.1);
}

/* Gradient Overlay */
.pkg-card__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradient starts transparent, gets dark at bottom to read text */
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.6) 40%, transparent 100%);
    z-index: 1;
}

/* Content Positioning */
.pkg-card__content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    z-index: 2;
    color: var(--color-white);
}

.pkg-card__title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.pkg-card__desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    line-height: 1.5;
    font-weight: 400;
}

/* Buttons Container */
.pkg-card__actions {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

/* Common button tweaks for inside the card */
.pkg-btn {
    flex: 1; /* Both buttons take equal width */
    text-align: center;
    padding: 12px 0; /* Adjust padding to fit */
    font-size: 0.9rem;
}

/* "Explore" Button (Grey/Light style) */
.btn--light {
    background-color: rgba(255, 255, 255, 0.2); /* Semi-transparent white */
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: var(--color-white);
    backdrop-filter: blur(5px);
}

.btn--light:hover {
    background-color: var(--color-white);
    color: var(--color-dark);
}

/* Animation Class (Reuse generic fade up) */
.animate-card {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUpPackage 0.8s ease-out forwards;
}

@keyframes fadeUpPackage {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Adjustments */
@media (max-width: 1100px) {
    .packages-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 Columns on Tablet */
    }
}

@media (max-width: 768px) {
    .packages-grid {
        grid-template-columns: 1fr; /* 1 Column on Mobile */
        gap: 20px;
    }

    .pkg-card {
        height: 400px;
    }

    .pkg-card__title {
        font-size: 1.5rem;
    }
}
/* --- 22. Tour Packages Enquiry Form --- */

.enquiry-section {
    background-color: var(--color-white);
    padding-bottom: 100px;
}

.enquiry-header {
    max-width: 800px;
    margin: 0 auto 50px auto;
}

.enquiry-desc {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #555;
    margin-top: 20px;
}

.enquiry-desc p {
    margin-bottom: 5px;
}

/* NOTE: The form fields use the existing .booking-form, .form-input, 
   and .form-grid classes. If you haven't added the Flight Booking CSS yet, 
   please refer to step 18 in our chat history or let me know!
*/
/* --- 23. Destination Details (Bangkok & Pattaya) --- */

/* Hero Banner */
.dest-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    text-align: center;
}

.dest-hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Replace with your Twilight Temple image */
    background-image: url('https://images.unsplash.com/photo-1590452324707-160350438641?auto=format&fit=crop&w=1920'); 
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.dest-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
}

.dest-hero__title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    text-transform: uppercase;
    text-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

/* Intro Section */
.itinerary__intro {
    margin-bottom: 60px;
}

.itinerary__desc {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
    max-width: 900px;
    margin-bottom: 30px;
}

.itinerary__divider {
    width: 100%;
    height: 4px;
    background-color: var(--color-primary); /* The red line from screenshot */
    border-radius: 2px;
}

/* Itinerary Cards */
.itinerary__heading {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--color-dark);
}

.day-card {
    background: #fff;
    border: 1px solid rgba(211, 0, 0, 0.2); /* Thin red border */
    border-radius: 24px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.02);
}

.day-card__title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--color-dark);
}

.day-card__body {
    /* The Red Vertical Line Pattern */
    border-left: 5px solid var(--color-primary);
    padding-left: 25px;
}

.day-card__body ul {
    list-style-type: disc;
    margin-left: 20px; /* Space for bullets */
}

.day-card__body li {
    margin-bottom: 10px;
    color: #555;
    line-height: 1.6;
}

.tour-end-note {
    margin-top: 20px;
    font-weight: 600;
    color: var(--color-primary);
}

/* Inclusions & Exclusions */
.inc-exc-container {
    background: #fff;
    border: 1px solid rgba(211, 0, 0, 0.2); /* Thin red border wrapper */
    border-radius: 24px;
    overflow: hidden; /* Ensures grid content stays inside corners */
    margin-top: 60px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.02);
}

.inc-exc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two equal columns */
}

.inc-exc-col {
    padding: 40px;
}

/* Optional vertical separator if desired */
.inc-exc-col--border {
    border-left: 1px solid rgba(211, 0, 0, 0.1); 
}

.inc-exc-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--color-dark);
}

.inc-exc-list ul {
    list-style: disc;
}

.inc-exc-list li {
    margin-bottom: 12px;
    color: #444;
    line-height: 1.5;
    margin-left: 20px;
}

/* Animation */
.animate-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUpItinerary 0.8s ease-out forwards;
}

/* Stagger animations via CSS or JS (CSS simple method below for first few) */
.itinerary__list .day-card:nth-child(2) { animation-delay: 0.1s; }
.itinerary__list .day-card:nth-child(3) { animation-delay: 0.2s; }
.itinerary__list .day-card:nth-child(4) { animation-delay: 0.3s; }

@keyframes fadeUpItinerary {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 900px) {
    .dest-hero__title {
        font-size: 2.5rem;
    }

    .inc-exc-grid {
        grid-template-columns: 1fr; /* Stack Inclusions/Exclusions */
    }

    .inc-exc-col--border {
        border-left: none;
        border-top: 1px solid rgba(211, 0, 0, 0.1);
    }

    .day-card {
        padding: 25px;
    }
}
/* --- Enquiry Section Header (Reuse if already present) --- */
.enquiry-header {
    max-width: 800px;
    margin: 0 auto 50px auto;
}

.enquiry-desc {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #555;
    margin-top: 20px;
}

.enquiry-desc p {
    margin-bottom: 5px;
}
/* --- 24. Gallery Page --- */

/* The Grid Layout */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 Columns */
    gap: 30px;
}

/* Individual Image Item */
.gallery-item {
    position: relative;
    height: 300px; /* Fixed height for uniformity */
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

/* Hover Effect: Zoom Image */
.gallery-item:hover .gallery-img {
    transform: scale(1.1);
}

/* Overlay Text (Hidden by default, shows on hover) */
.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-caption {
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    transform: translateY(10px);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 900px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 Columns on Tablet */
    }
}

@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: 1fr; /* 1 Column on Mobile */
    }
    .gallery-item {
        height: 250px;
    }
}