/* --- 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;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Ensure no gaps at the top of the page */
body > section:first-of-type {
    margin-top: 0 !important;
}

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

/* --- 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: 6px; /* Standardized curve */
    transition: var(--transition);
    font-size: 0.9rem;
    border: 2px solid transparent; /* Standardized stroke weight */
}

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

.btn--primary:hover {
    background-color: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

/* 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-color: rgba(255,255,255,0.7); /* Standardized stroke weight */
    background: rgba(255,255,255,0.1);
}

.btn--outline:hover {
    background-color: var(--color-white);
    color: var(--color-dark);
    border-color: var(--color-white);
}

/* --- 3. Top Info Bar --- */
.top-bar {
    background-color: var(--color-dark);
    color: var(--color-white);
    font-size: 0.85rem;
    padding: 10px 0;
    width: 100%;
    z-index: 1001;
    margin: 0;
    border: 0;
}

.top-bar__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
}

.top-bar__left {
    display: flex;
    gap: 25px;
    align-items: center;
}

.top-bar__link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.85rem;
}

.top-bar__link:hover {
    color: var(--color-accent);
}

.top-bar__link i {
    font-size: 0.9rem;
    color: var(--color-primary);
}

.top-bar__right {
    display: flex;
    align-items: center;
}

.top-bar__social {
    display: flex;
    gap: 15px;
}

.top-bar__social-link {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    border-radius: 4px;
    transition: var(--transition);
    font-size: 0.9rem;
}

.top-bar__social-link:hover {
    color: var(--color-white);
    background-color: var(--color-primary);
    transform: translateY(-2px);
}

/* Hide top bar on mobile */
@media (max-width: 768px) {
    .top-bar {
        display: none !important; /* Force hide on mobile */
    }
    
    /* When top bar is hidden, header moves to top */
    .header:not(.header--dark) {
        top: 0 !important;
    }
}

/* --- 4. Header --- */
.header {
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
    margin: 0;
}

/* Ensure header overlays properly on homepage */
.header:not(.header--dark),
.header:not(.header--dark) + * {
    margin-top: 0 !important;
}

/* Default top bar - absolute for homepage */
.top-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

/* Default header (homepage) - absolute positioning with gradient */
.header:not(.header--dark) {
    position: absolute;
    top: 48px;
    left: 0;
    width: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent);
}

/* Dark header (for inner pages) - relative positioning, normal flow */
.header--dark {
    position: relative;
    background-color: #1a1a1a;
    background-image: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Note: JavaScript will set top-bar to relative when header--dark is present */

/* Sticky Header - covers entire top */
.header.sticky {
    position: fixed;
    top: 0; /* At the very top when sticky */
    left: 0;
    right: 0;
    width: 100%;
    background: #fff !important; /* Solid white, no gradient */
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    padding: 15px 0;
    z-index: 1002; /* Above everything when sticky */
}

.header.sticky .nav__link {
    color: var(--color-dark);
}

.header.sticky .nav__link:hover,
.header.sticky .nav__link.active {
    color: var(--color-primary);
}

.header.sticky .nav-toggle .bar {
    background-color: var(--color-dark);
}

/* Logo switching based on header state */
.logo__img--dark {
    display: none; /* Hide dark logo by default */
}

.logo__img--light {
    display: block; /* Show light logo by default */
}

/* When sticky (white background), show dark logo */
.header.sticky .logo__img--dark {
    display: block;
    height: 45px;
}

.header.sticky .logo__img--light {
    display: none;
}

/* When sticky with dark header, keep light logo */
.header--dark.sticky .logo__img--dark {
    display: none;
}

.header--dark.sticky .logo__img--light {
    display: block;
    height: 45px;
}

/* Dark header sticky - maintain dark styling */
.header--dark.sticky {
    background: #1a1a1a !important; /* Keep dark background */
    box-shadow: 0 2px 15px rgba(0,0,0,0.3);
}

.header--dark.sticky .nav__link {
    color: var(--color-white); /* Keep white text */
}

.header--dark.sticky .nav__link:hover,
.header--dark.sticky .nav__link.active {
    color: var(--color-primary);
}

.header--dark.sticky .nav-toggle .bar {
    background-color: var(--color-white);
}

.header__container {
    display: flex;
    justify-content: space-between; /* This ensures Logo is Left, Button is Right */
    align-items: center;
    position: relative; /* Important for positioning the mobile menu correctly */
    padding: 0;
}

.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,
.nav__link.active {
    color: var(--color-primary);
}

.nav__link.active {
    font-weight: 700;
    position: relative;
}

/* Active page indicator underline */
.nav__link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-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;
    margin-top: 0;
    padding-top: 0;
}

/* 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;
}

/* Local background images */
.hero__bg--1 { background-image: url('../images/hero-bg-1.jpg'); } 
.hero__bg--2 { background-image: url('../images/bg/hero-2.jpg'); }
.hero__bg--3 { background-image: url('../images/bg/hero-3.jpg'); }

/* Dark Overlay */
.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5); /* Adjust darkness here */
    z-index: -1;
}

/* Hero Content */
.hero__content {
    position: relative;
    z-index: 1;
    padding-top: 65px; /* Space for top bar + header */
    margin-top: 0;
}

.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;
    line-height: 1.8;
}

/* Highlight GLOBAL text */
.highlight-global {
    color: var(--color-primary);
    font-weight: 700;
    font-size: 1.3em;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(211, 0, 0, 0.5);
    display: inline-block;
    position: relative;
}

.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: row;
        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('../images/bg/services-default.jpg');
    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;
}

/* Hover effect only on clickable services */
.services__link--clickable:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-accent);
}

/* Info-only services styling (desktop) */
.services__link--info {
    opacity: 0.75;
    cursor: default;
}

.services__link--info:hover {
    background: transparent;
    color: inherit;
}

/* 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%;
    /* Mountain/lake background */
    background-image: url('../images/bg/process.jpg');
    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: -110px;
    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%;
    /* Tropical beach CTA background */
    background-image: url('../images/bg/cta-beach.jpg');
    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: 6px; /* Standardized curve */
    border: 2px solid rgba(255,255,255,0.3); /* Standardized stroke weight */
    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);
    border-color: var(--color-white);
    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, other columns 1 part each */
    grid-template-columns: 2fr 1fr 1fr 1.2fr; 
    gap: 50px;
    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__contact-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.footer__contact-item i {
    color: var(--color-primary);
    font-size: 1.1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer__phones {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer__address {
    font-style: normal;
    color: #555;
    line-height: 1.7;
    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);
}

/* Trust Badges */
.footer__badges {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    background: rgba(211, 0, 0, 0.05);
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-dark);
}

.trust-badge i {
    color: var(--color-primary);
    font-size: 1.2rem;
}

/* Business Hours */
.footer__hours {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.footer__hours-title {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: var(--color-dark);
}

.footer__hours p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 5px;
}

/* Footer Powered By */
.footer__powered {
    opacity: 0.7;
    font-size: 0.9em;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 105px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--color-primary);
    color: var(--color-white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(211, 0, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top:hover {
    background-color: var(--color-dark);
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.back-to-top.show {
    display: flex;
    animation: fadeInUp 0.3s ease;
}

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

/* WhatsApp Float Button - Improved UI */
.whatsapp-float {
    position: fixed;
    right: 30px;
    bottom: 30px; /* Above back-to-top, away from corners */
    display: flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: var(--color-white);
    padding: 12px 18px;
    border-radius: 30px;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 997; /* Below back-to-top */
    opacity: 0.95;
}

.whatsapp-float:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
    background: #128C7E;
    opacity: 1;
}

.whatsapp-float__icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.whatsapp-float__text {
    font-size: 14px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    white-space: nowrap;
    color: var(--color-white);
    letter-spacing: 0.3px;
}

/* Subtle pulse ring */
.whatsapp-float::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% + 8px);
    height: calc(100% + 8px);
    border-radius: 30px;
    border: 2px solid rgba(37, 211, 102, 0.4);
    animation: pulseRing 2.5s ease-out infinite;
    z-index: -1;
}

@keyframes pulseRing {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.15);
        opacity: 0;
    }
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .footer__container {
        grid-template-columns: 1fr 1fr; /* 2 columns on tablet */
        gap: 40px;
    }

    .footer__col--brand {
        grid-column: 1 / -1; /* Brand spans full width */
    }
}

@media (max-width: 768px) {
    .footer__container {
        grid-template-columns: 1fr; /* Stack everything */
        gap: 40px;
    }

    .footer__desc {
        max-width: 100%;
    }

    .footer__bottom-container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer__legal {
        flex-direction: column;
        gap: 10px;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    /* WhatsApp Float - Mobile: Compact with text */
    .whatsapp-float {
        left: 20px;
        bottom: 20px; /* Above back-to-top button */
        padding: 10px 14px;
        gap: 8px;
        border-radius: 25px;
        box-shadow: 0 3px 12px rgba(37, 211, 102, 0.4);
    }

    .whatsapp-float__icon {
        width: 28px;
        height: 28px;
        font-size: 18px;
    }

    /* Keep text on mobile but smaller */
    .whatsapp-float__text {
        font-size: 13px;
        display: block;
    }

    /* Smaller pulse on mobile */
    .whatsapp-float::before {
        width: calc(100% + 6px);
        height: calc(100% + 6px);
        border-radius: 25px;
    }

    .footer__badges {
        justify-content: center;
    }
}

/* Tablet/Medium Screens - Slightly Smaller */
@media (max-width: 968px) and (min-width: 769px) {
    .whatsapp-float {
        padding: 10px 16px;
        gap: 8px;
        left: 18px;
        bottom: 95px;
    }

    .whatsapp-float__icon {
        width: 28px;
        height: 28px;
        font-size: 18px;
    }

    .whatsapp-float__text {
        font-size: 13px;
    }
}
/* Dark Header for inner pages - already defined above */

.header--dark .nav__link {
    color: var(--color-white);
}

.header--dark .nav__link:hover,
.header--dark .nav__link.active {
    color: var(--color-accent);
}

.header--dark .nav__link.active::after {
    background-color: var(--color-accent);
}

.header--dark .nav-toggle .bar {
    background-color: var(--color-white);
}
/* --- 15. About Page: Legacy Section --- */

.legacy {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    /* Add extra top padding since we don't have a hero section here */
    padding-top: 100px;
    padding-bottom: 80px;
    min-height: 100vh;
}

.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: 100%;
    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;
    }
}

/* --- Legal/Policy Pages Enhanced Styling --- */
.legacy .about-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
    opacity: 1 !important;
    transform: none !important;
}

/* Decorative accent line at top */
.legacy .about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary) 0%, #ff4d4d 100%);
}

.legacy .section-label {
    color: var(--color-primary);
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.legacy .section-title {
    font-size: 2.5rem;
    color: var(--color-dark);
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.legacy .about-main__text-wrapper {
    margin-top: 30px;
    border-left: none; /* Remove border for policy pages */
    padding-left: 0; /* Remove padding for policy pages */
    margin-left: 0;
}

.legacy .about-main__text-wrapper > p:first-child {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.legacy .about-main__text-wrapper h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-top: 30px;
    margin-bottom: 15px;
}

.about-main__text-wrapper h3:first-child {
    margin-top: 20px;
}

.about-main__text-wrapper strong {
    color: var(--color-primary);
    font-weight: 700;
}

.about-main__text-wrapper a {
    color: var(--color-primary);
    text-decoration: underline;
    transition: var(--transition);
}

.about-main__text-wrapper a:hover {
    color: var(--color-dark);
}
/* --- 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.8;
    margin-bottom: 20px;
}

.legacy .about-main__text-wrapper p strong {
    color: var(--color-dark);
    font-weight: 600;
}

/* List styling for policy pages */
.legacy .about-main__list {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.legacy .about-main__list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    color: #555;
    line-height: 1.7;
}

.legacy .about-main__list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: bold;
    font-size: 1.2rem;
}

.legacy .about-main__list li a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.legacy .about-main__list li a:hover {
    color: #a00;
    text-decoration: underline;
}

.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;
    }
}

/* Mobile responsive for policy pages */
@media (max-width: 768px) {
    .legacy {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    
    .legacy .about-card {
        padding: 30px 20px;
        border-radius: 12px;
    }
    
    .legacy .section-title {
        font-size: 1.8rem;
    }
    
    .legacy .about-main__text-wrapper h3 {
        font-size: 1.1rem;
    }
    
    .legacy .about-main__text-wrapper p {
        font-size: 1rem;
    }
}

/* --- 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%;
    /* Flight booking hero background */
    background-image: url('../images/bg/services-flight.jpg');
    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;
}

.booking-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Form Messages */
.form-success-message,
.form-error-message {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    animation: slideDown 0.3s ease;
    transition: opacity 0.5s ease;
}

.form-success-message {
    background: #d1fae5;
    color: #065f46;
    border-left: 4px solid #10b981;
}

.form-error-message {
    background: #fee2e2;
    color: #991b1b;
    border-left: 4px solid #ef4444;
}

.form-success-message i,
.form-error-message i {
    font-size: 20px;
}

/* Form toast popup – fixed overlay, visible on mobile */
.form-toast-popup {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.form-toast-popup--visible {
    opacity: 1;
    visibility: visible;
}
.form-toast-popup--closing {
    opacity: 0;
    visibility: hidden;
}
.form-toast-popup__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    cursor: pointer;
}
.form-toast-popup__card {
    position: relative;
    z-index: 1;
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    max-width: 400px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    text-align: center;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}
.form-toast-popup--visible .form-toast-popup__card {
    transform: scale(1);
}
.form-toast-popup__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}
.form-toast-popup--success .form-toast-popup__icon {
    background: #d1fae5;
    color: #059669;
}
.form-toast-popup--error .form-toast-popup__icon {
    background: #fee2e2;
    color: #dc2626;
}
.form-toast-popup__message {
    margin: 0 0 20px;
    font-size: 15px;
    line-height: 1.5;
    color: #1f2937;
}
.form-toast-popup__btn {
    display: inline-block;
    padding: 10px 24px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    background: var(--color-primary);
    color: #fff;
    transition: background 0.2s, transform 0.05s;
}
.form-toast-popup__btn:hover {
    background: #b00000;
}
.form-toast-popup__btn:active {
    transform: scale(0.98);
}

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

/* 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: 2px solid rgba(255, 255, 255, 0.5); /* Standardized stroke weight */
    border-radius: 6px; /* Standardized curve */
    color: var(--color-white);
    backdrop-filter: blur(5px);
}

.btn--light:hover {
    background-color: var(--color-white);
    color: var(--color-dark);
    border-color: var(--color-white);
}

/* 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%;
    /* Destination hero fallback (Twilight Temple style) */
    background-image: url('../images/bg/hero-3.jpg'); 
    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);
}

.gallery-expand-hint {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--color-white);
    font-size: 0.9rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    background: rgba(0,0,0,0.5);
    padding: 10px 16px;
    border-radius: 8px;
    white-space: nowrap;
}
.gallery-item:hover .gallery-expand-hint {
    opacity: 1;
}

/* Gallery lightbox */
.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.gallery-lightbox.is-open {
    opacity: 1;
    visibility: visible;
}
.gallery-lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    cursor: pointer;
}
.gallery-lightbox__content {
    position: relative;
    z-index: 2;
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: galleryLightboxIn 0.35s ease;
}
@keyframes galleryLightboxIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
.gallery-lightbox__img {
    max-width: 100%;
    max-height: 75vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.gallery-lightbox__caption {
    margin-top: 16px;
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    max-width: 600px;
}
.gallery-lightbox__counter {
    margin-top: 8px;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}
.gallery-lightbox__close {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 3;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    color: var(--color-white);
    font-size: 1.4rem;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.gallery-lightbox__close:hover {
    background: var(--color-primary);
    transform: scale(1.05);
}
.gallery-lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 52px;
    height: 52px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    color: var(--color-white);
    font-size: 1.2rem;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.gallery-lightbox__nav:hover {
    background: var(--color-primary);
    transform: translateY(-50%) scale(1.08);
}
.gallery-lightbox__prev {
    left: 20px;
}
.gallery-lightbox__next {
    right: 20px;
}
.gallery-lightbox.single-image .gallery-lightbox__nav {
    display: none;
}
@media (max-width: 600px) {
    .gallery-lightbox__nav {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }
    .gallery-lightbox__prev { left: 10px; }
    .gallery-lightbox__next { right: 10px; }
    .gallery-lightbox__close {
        top: 12px;
        right: 12px;
        width: 42px;
        height: 42px;
    }
}

/* 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;
    }
}
/* --- Dropdown Menu Styles --- */

/* Parent Item Container */
.nav__item--has-dropdown {
    position: relative; /* Needed to position the dropdown below it */
    padding-bottom: 10px; /* Bridge gap so mouse doesn't lose hover */
    margin-bottom: -10px; /* Compensate for padding */
}

/* The Dropdown List (Hidden by default) */
.nav__dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%); /* Center align relative to parent */
    background-color: #fff;
    min-width: 240px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-radius: 8px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
}

/* Dropdown Links */
.nav__dropdown-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    color: #333; /* Always dark text inside white dropdown */
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
    white-space: nowrap; /* Prevent text wrapping */
}

.nav__dropdown-link i {
    font-size: 1rem;
    color: var(--color-primary);
    transition: var(--transition);
}

.nav__dropdown-link:hover {
    background-color: #f5f5f5;
    color: var(--color-primary);
    padding-left: 25px;
}

.nav__dropdown-link:hover i {
    transform: scale(1.1);
}

.nav__dropdown-link.active {
    background-color: rgba(211, 0, 0, 0.05);
    color: var(--color-primary);
    font-weight: 700;
}

/* Show Dropdown on Hover */
.nav__item--has-dropdown:hover .nav__dropdown {
    opacity: 1;
    visibility: visible;
    top: 100%; /* Ensure it sits right below */
}

/* Arrow Icon styling */
.arrow {
    font-size: 0.7rem;
    margin-left: 5px;
    display: inline-block;
    transition: transform 0.3s;
}

.nav__item--has-dropdown:hover .arrow {
    transform: rotate(180deg);
}

/* Better dropdown hover area */
.nav__item--has-dropdown {
    position: relative;
}

.nav__item--has-dropdown::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 10px;
    background: transparent;
}

/* --- Mobile View Adjustments --- */
@media (max-width: 900px) {
    /* Reset Position for Mobile (Stack vertically) */
    .nav__item--has-dropdown {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-bottom: 0;
        margin-bottom: 0;
    }

    .nav__dropdown {
        position: static; /* No longer absolute */
        transform: none;
        box-shadow: none;
        background-color: transparent;
        opacity: 1;
        visibility: visible;
        display: none; /* Hidden until menu is open or stick to always visible */
        min-width: 100%;
        text-align: center;
        padding: 0;
        margin-top: 10px;
    }
    
    /* Make dropdown visible by default on mobile for simplicity 
       OR rely on hover state if tapping works on device */
    .nav__item--has-dropdown:hover .nav__dropdown,
    .nav__item--has-dropdown:focus-within .nav__dropdown {
        display: block;
    }

    .nav__dropdown-link {
        color: var(--color-dark); /* Match your mobile menu text color */
        padding: 10px;
        font-size: 0.9rem;
    }
    
    .header--dark .nav__dropdown-link {
        color: #fff; /* White text if mobile menu has dark background */
    }
}
/* --- Header Actions Container --- */
.header__actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* WhatsApp Quick Link */
.header__whatsapp {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #25D366; /* WhatsApp green */
    color: var(--color-white);
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.3rem;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
}

.header__whatsapp:hover {
    background-color: #128C7E;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

/* Contact Button with Icon */
.header__btn i {
    margin-right: 5px;
    font-size: 0.9rem;
}

/* --- Hamburger Toggle Button (Default Hidden) --- */
.nav-toggle {
    display: none; /* Hidden on Desktop */
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: var(--color-dark); /* Or black #333 */
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* --- Mobile Styles (Max-width 968px) --- */
@media (max-width: 968px) {
    
    /* Show Toggle Button */
    .nav-toggle {
        display: flex; 
    }

    /* Hide Desktop Buttons on Mobile */
    .desktop-btn {
        display: none; 
    }
    
    .header__whatsapp {
        display: none;
    }

    /* Mobile Menu Container */
    .nav {
        position: absolute;
        top: 100%; /* Push it exactly below the header */
        left: 0;
        width: 100%;
        background-color: #ffffff;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        padding: 20px;
        
        /* Hide by default */
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: all 0.3s ease;
        z-index: 999;
    }

    /* Active State (Added via JS) */
    .nav.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    /* Stack Links Vertically */
    .nav__list {
        flex-direction: column;
        align-items: center; /* Center text */
        gap: 20px;
    }

    .nav__item {
        width: 100%;
        text-align: center;
    }
    
    /* Mobile Dropdown Handling */
    .nav__item--has-dropdown:hover .nav__dropdown,
    .nav__item--has-dropdown {
        /* On mobile, we might want the dropdown always visible or toggleable */
        display: block; 
    }
    
    .nav__dropdown {
        position: static; /* Flow naturally in the list */
        box-shadow: none;
        padding-top: 10px;
        display: none; /* JS or Hover can toggle this, or keep visible */
        transform: none;
        background-color: #f9f9f9; /* Slight contrast */
        width: 100%;
    }
    
    /* Make dropdown visible on hover/click for mobile */
    .nav__item--has-dropdown:hover .nav__dropdown {
        display: block;
    }

    /* Toggle Animation (Hamburger to X) */
    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

/* Helper to hide mobile-only items on desktop */
@media (min-width: 969px) {
    .mobile-only {
        display: none;
    }
}
/* --- Mobile View Adjustments --- */
@media (max-width: 968px) {
    
    /* 1. Force the Navigation Links to be Dark/Black on Mobile */
    .nav__link {
        color: #333333 !important; /* Dark grey text */
        font-weight: 600; /* Make them slightly bolder for readability */
    }
    
    /* 2. Ensure the dropdown arrow is also dark */
    .nav__link .arrow {
        color: #333333 !important;
    }

    /* 3. Ensure the dropdown links are dark */
    .nav__dropdown-link {
        color: #555555 !important;
    }

    /* 4. Mobile Menu Container Styling */
    .nav {
        background-color: #ffffff; /* White background */
        /* ... keep your existing position/transform styles ... */
    }
    
    /* 5. Toggle Button Bars Color (Ensure they are visible against header) */
    .nav-toggle .bar {
        background-color: #fff; /* White bars if header is dark/transparent */
    }
    
    /* OPTIONAL: If your header turns white on scroll, use JS to toggle this to black */
}
/* --- Hero Section Mobile Fix --- */
@media (max-width: 768px) {
    
    /* 1. Allow the hero section to grow as tall as needed */
    .hero {
        height: auto !important;     /* Disable fixed height (e.g., 100vh) */
        min-height: 100vh;           /* Ensure it still fills screen at minimum */
        display: flex;
        flex-direction: column;      /* Stack content vertically */
        padding-bottom: 0;           /* Remove bottom padding if features bar is there */
    }

    /* 2. Push the content to the top/center but allow space for the bar */
    .hero__content {
        flex-grow: 1;                /* Take up available space */
        display: flex;
        flex-direction: column;
        justify-content: center;     /* Center content vertically */
        padding-top: 120px;          /* Space for header */
        padding-bottom: 40px;        /* Space before the features bar */
    }

    /* 3. Make the Features Bar sit naturally at the bottom (not absolute) */
    .features-bar {
        position: relative !important; /* Force it into the document flow */
        bottom: auto !important;
        left: auto !important;
        transform: none !important;
        width: 100%;
        margin-top: auto;            /* Push to bottom if using flex column */
        background-color: rgba(0, 0, 0, 0.8); /* Ensure background is visible/dark */
    }

    /* 4. Optional: Reduce font sizes slightly to fit better */
    .hero__title {
        font-size: 2.5rem;           /* Smaller title on mobile */
        margin-bottom: 20px;
    }
    
    .hero__description {
        font-size: 1rem;
        max-width: 100%;
    }

    /* 5. Adjust Features Bar internal layout for mobile */
    .features-bar__container {
        display: grid;
        grid-template-columns: 1fr 1fr; /* 2 columns */
        gap: 0; /* No gap, we'll use borders */
        padding: 0;
    }

    .feature {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 25px 15px;
        text-align: center;
        border-right: 1px solid rgba(255, 255, 255, 0.3);
        border-bottom: 1px solid rgba(255, 255, 255, 0.3);
        min-height: 100px;
    }

    /* Remove right border from last column */
    .feature:nth-child(2n) {
        border-right: none;
    }

    /* Last feature spans 2 columns (On-ground help) */
    .feature:nth-child(5) {
        grid-column: 1 / -1; /* Span both columns */
        border-right: none; /* No right border since it spans full width */
    }

    /* Remove bottom border from last row */
    .feature:nth-last-child(-n+1) {
        border-bottom: none;
    }

    .feature__icon {
        font-size: 2rem;
        margin-bottom: 8px;
    }

    .feature span {
        font-size: 0.85rem;
        line-height: 1.3;
    }
}
/* --- Services Section Mobile Responsiveness --- */
@media (max-width: 768px) {
    
    /* 1. Reset Section Height */
    .services {
        height: auto !important;      /* Allow content to define height */
        min-height: 100vh;            /* Ensure it covers screen */
        padding-bottom: 60px;         /* Space at bottom */
        display: flex;
        flex-direction: column;
    }

    /* 2. Adjust Title/Header Spacing */
    .services__content {
        flex-grow: 0;                 /* Don't take up all space */
        padding-top: 80px;            /* Space from top */
        margin-bottom: 40px;          /* Separate title from list */
    }
    
    .section-title {
        font-size: 2.5rem;            /* Resize big text for mobile */
    }

    /* 3. Reset the Bar Position (Stop it from sticking to bottom) */
    .services__bar {
        position: relative !important;
        bottom: auto !important;
        width: 100%;
        background: transparent;      /* Remove desktop bar background if any */
        margin-top: auto;             /* Push to bottom of flex container if needed */
    }

    /* 4. Stack the Links Vertically */
    .services__bar-container {
        display: flex;
        flex-direction: column;       /* Stack items top-to-bottom */
        gap: 15px;                    /* Space between buttons */
        padding: 0 20px;              /* Side gutters */
    }

    /* 5. Style Links as Touchable Cards */
    .services__link {
        display: block;
        width: 100%;
        padding: 18px 20px;
        font-size: 1.1rem;
        text-align: left;             /* Easier to read list on left */
        color: #ffffff;
        
        /* Glassmorphism Effect for better visibility */
        background-color: rgba(255, 255, 255, 0.1); 
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 8px;           /* Rounded corners */
        
        /* Add an arrow icon to indicate clickable */
        position: relative;
    }

    /* Add a pseudo-element arrow '>' */
    /* Arrow only on clickable services */
    .services__link--clickable::after {
        content: '→';
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        opacity: 0.7;
        font-size: 1.3rem;
    }
    
    /* Info-only services (no arrow, no interaction) */
    .services__link--info {
        opacity: 0.85;
        cursor: default;
        background-color: rgba(255, 255, 255, 0.05); /* Less prominent */
    }
    
    .services__link--info:hover {
        background-color: rgba(255, 255, 255, 0.05); /* No hover effect */
        transform: none;
    }
    
    /* Active State for Touch - only on clickable */
    .services__link--clickable:active {
        background-color: rgba(255, 255, 255, 0.3);
        transform: scale(0.98);       /* Subtle press effect */
    }
    
    /* Enhanced hover for clickable services */
    .services__link--clickable:hover {
        background-color: rgba(255, 255, 255, 0.2);
    }
    
    .services__link--clickable:hover::after {
        opacity: 1;
        transform: translateY(-50%) translateX(3px); /* Arrow moves right on hover */
    }
}
/* --- Mobile Hero & Button Improvements (Max-width 768px) --- */
@media (max-width: 768px) {

    /* 1. Stack the entire Hero content vertically */
    .hero {
        height: auto !important;      /* Let content define height */
        min-height: 100vh;            /* Still cover the screen */
        display: flex;
        flex-direction: column;
        padding-bottom: 0;
    }

    .hero__content {
        flex-grow: 1;                 /* Push features bar down */
        display: flex;
        flex-direction: column;
        justify-content: center;      /* Center text vertically */
        padding-top: 130px;           /* clear the header */
        padding-bottom: 60px;         /* space before features */
    }

    /* 2. Improve Button Layout (The Stack) */
    .hero__actions {
        display: flex;
        flex-direction: column;       /* Stack buttons top-to-bottom */
        gap: 15px;                    /* Space between buttons */
        width: 100%;
        max-width: 320px;             /* limit width for aesthetics */
        margin: 0 auto;               /* center the stack */
    }

    /* 3. Make Buttons Touch-Friendly */
    .hero__actions .btn {
        width: 100%;                  /* Full width of the stack */
        display: flex;
        justify-content: center;      /* Center text inside button */
        align-items: center;
        padding: 15px 20px;           /* Larger touch target */
        font-size: 1rem;
    }

    /* 4. Improve "Read More" Visibility */
    .btn--outline {
        background-color: rgba(255, 255, 255, 0.1); /* Slight background */
        backdrop-filter: blur(5px);   /* Blur image behind it for readability */
        border: 2px solid #fff;       /* Thicker border */
    }

    /* 5. Typography Adjustments */
    .hero__title {
        font-size: 2.2rem;            /* Prevent text overflow */
        line-height: 1.2;
        margin-bottom: 20px;
    }

    .hero__description {
        font-size: 1rem;
        padding: 0 10px;              /* Prevent text hitting edges */
        margin-bottom: 30px;
    }

    /* 6. Fix Features Bar (Sit naturally at bottom) */
    .features-bar {
        position: relative !important;
        bottom: auto !important;
        background: rgba(0,0,0,0.8);  /* darker background for contrast */
        margin-top: auto;
        padding: 20px 0;
    }

    .features-bar__container {
        display: grid;
        grid-template-columns: 1fr 1fr; /* 2 columns */
        gap: 0;
        padding: 0;
    }
    
    .feature {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 25px 15px;
        text-align: center;
        border-right: 1px solid rgba(255, 255, 255, 0.3);
        border-bottom: 1px solid rgba(255, 255, 255, 0.3);
        min-height: 100px;
    }

    .feature:nth-child(2n) {
        border-right: none;
    }

    /* Last feature spans 2 columns (On-ground help) */
    .feature:nth-child(5) {
        grid-column: 1 / -1; /* Span both columns */
        border-right: none;
    }

    .feature:nth-last-child(-n+1) {
        border-bottom: none;
    }

    .feature__icon {
        font-size: 2rem;
        margin-bottom: 8px;
    }

    .feature span {
        font-size: 0.85rem;
        line-height: 1.3;
    }
}