/* ==========================================================================
   DESIGN SYSTEM & VARIABLES (Voyager Lanka Tours - Premium Luxury)
   ========================================================================== */
:root {
    /* Brand Palette - Luxury Organic Sage & Spruce */
    --color-dark-spruce:  #11241C; /* Main text, dark mode header, luxurious dark accents */
    --color-sage-primary: #4E6E58; /* Luxury light green primary */
    --color-sage-hover:   #3B5543; /* Darker sage for buttons & hover */
    --color-sage-light:   #EAEFEA; /* Light tint for card backdrops */
    --color-cream:        #FAF9F5; /* Main background warm canvas */
    --color-cream-deep:   #F3F1EA; /* Muted contrast backgrounds */
    --color-white:        #FFFFFF;
    --color-charcoal:     #2D3330; /* Body copy */
    --color-text-muted:   #545C58; /* Optimized for readable mobile contrast */
    --color-border-light: rgba(78, 110, 88, 0.16); /* Enhanced mobile visibility */
    --color-border-hover: rgba(78, 110, 88, 0.32);
    --color-border-solid: #e3e9e4; /* Crisp fallback solid border */

    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body:    'Plus Jakarta Sans', -apple-system, sans-serif;

    /* Motion */
    --ease-out-expo:    cubic-bezier(0.16, 1, 0.3, 1);
    --ease-bounce:      cubic-bezier(0.2, 0.9, 0.4, 1.1);
    --transition-smooth: all 0.5s var(--ease-out-expo);
    --transition-fast:   all 0.2s ease-in-out;

    /* Shadows */
    --shadow-soft:    0 8px 30px rgba(17, 36, 28, 0.03);
    --shadow-medium:  0 16px 48px rgba(17, 36, 28, 0.06);
    --shadow-deep:    0 24px 64px rgba(17, 36, 28, 0.10);

    /* Spacing (Refined for fluid mobile scaling) */
    --container-px: clamp(16px, 4vw, 40px);
    --section-py:   clamp(48px, 6vw, 110px);
    --card-gap:     clamp(16px, 3vw, 32px);
}

/* ==========================================================================
   GLOBAL RESET & ACCESSIBILITY
   ========================================================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--color-charcoal);
    background-color: var(--color-white);
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 var(--container-px);
}

.section-padding {
    padding: var(--section-py) 0;
}

.text-center { text-align: center; }
.text-white  { color: var(--color-white); }
.bg-cream    { background-color: var(--color-cream); }
.bg-white    { background-color: var(--color-white); }
.bg-cream-deep { background-color: var(--color-cream-deep); }
.bg-dark     { background-color: var(--color-dark-spruce); color: var(--color-white); }

/* ==========================================================================
   TYPOGRAPHY ELEMENTS
   ========================================================================== */
.section-tag {
    display: inline-block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 3.5px;
    font-weight: 700;
    color: var(--color-sage-primary);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 500;
    line-height: 1.25;
    color: var(--color-dark-spruce);
    margin-bottom: 16px;
}

.bg-dark .section-title {
    color: var(--color-white);
}

.section-subtitle {
    font-size: clamp(0.92rem, 1.8vw, 1.05rem);
    color: var(--color-text-muted);
    max-width: 680px;
    margin: 0 auto 40px auto;
    font-weight: 300;
    line-height: 1.75;
}

.bg-dark .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.lead-text {
    font-size: clamp(1.05rem, 2.2vw, 1.25rem);
    line-height: 1.65;
    color: var(--color-dark-spruce);
    margin-bottom: 18px;
    font-family: var(--font-heading);
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-fast);
    text-transform: uppercase;
    letter-spacing: 2px;
    white-space: nowrap;
    border: 1px solid transparent;
    min-height: 46px; /* Optimized mobile tap target */
}

.btn-sm {
    padding: 10px 24px;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    min-height: 38px;
}

.btn-sage {
    background-color: var(--color-sage-primary);
    color: var(--color-white);
    border-color: var(--color-sage-primary);
}

.btn-sage:hover {
    background-color: var(--color-sage-hover);
    border-color: var(--color-sage-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(78, 110, 88, 0.25);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-dark-spruce);
    border-color: rgba(17, 36, 28, 0.25);
}

.btn-outline:hover {
    background-color: var(--color-dark-spruce);
    color: var(--color-white);
    border-color: var(--color-dark-spruce);
    transform: translateY(-2px);
}

.btn-white {
    background-color: var(--color-white);
    color: var(--color-dark-spruce);
    border-color: var(--color-white);
}

.btn-white:hover {
    background-color: var(--color-cream-deep);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(17, 36, 28, 0.05);
    transition: var(--transition-smooth);
}

.site-header.scrolled {
    box-shadow: var(--shadow-soft);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 14px var(--container-px);
    transition: padding 0.4s var(--ease-out-expo);
}

.site-header.scrolled .nav-container {
    padding-top: 8px;
    padding-bottom: 8px;
}

/* Logo Setup */
.logo-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--color-dark-spruce);
}

.site-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    z-index: 100;
}

.nav-logo-img {
    height: 52px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-fast); 
    will-change: height;
}

.site-header.scrolled .nav-logo-img {
    height: 38px; 
}

.footer-logo {
    display: inline-block;
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 58px;
    width: auto;
    object-fit: contain;
}

/* Nav Menu & Submenus */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 28px;
}

.nav-menu li {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: var(--color-text-muted);
    font-weight: 600;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color 0.22s ease;
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link svg {
    transition: transform 0.22s ease;
}

.nav-link:hover {
    color: var(--color-dark-spruce);
}

/* Dropdown Submenus */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background-color: var(--color-white);
    border: 1px solid var(--color-border-solid);
    border-radius: 4px;
    box-shadow: var(--shadow-medium);
    padding: 10px 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s var(--ease-out-expo);
    display: flex;
    flex-direction: column;
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu .dropdown-link {
    padding: 10px 24px;
    display: block;
    text-decoration: none;
    color: var(--color-text-muted);
    font-size: 0.78rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-fast);
}

.dropdown-menu .dropdown-link:hover {
    background-color: var(--color-cream);
    color: var(--color-sage-primary);
    padding-left: 28px;
}

/* Nesting Dropdowns */
.has-submenu:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.has-submenu:hover > .nav-link svg {
    transform: rotate(180deg);
}

.submenu-parent {
    position: relative;
}

.submenu-parent .dropdown-menu {
    left: 100%;
    top: 0;
    transform: translateX(10px) translateY(0);
}

.submenu-parent:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0) translateY(0);
}

/* Navigation Submenu Arrow Styling */
.submenu-arrow-desktop { display: inline-block; margin-left: auto; }
.submenu-arrow-mobile  { display: none; margin-left: auto; }

/* Mobile Nav Toggle */
.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1010;
}

.hamburger-bar {
    width: 100%;
    height: 2px;
    background-color: var(--color-dark-spruce);
    display: block;
    transition: var(--transition-fast);
}

/* Mobile Nav Overlay Backdrop */
.nav-backdrop {
    position: fixed;
    inset: 0;
    background-color: rgba(17, 36, 28, 0.4);
    backdrop-filter: blur(4px);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.nav-backdrop.active {
    opacity: 1;
    visibility: visible;
}

/* ==========================================
   LANGUAGE SWITCHER
   ========================================== */

.language-switcher {
    position: relative;
}

.language-btn {
    background: transparent;
    border: 1px solid var(--color-border-solid);
    border-radius: 999px;
    padding: 10px 16px;
    cursor: pointer;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--color-dark-spruce);
    transition: var(--transition-fast);
}

.language-btn:hover {
    background-color: var(--color-cream);
}

.language-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 180px;
    background: white;
    border: 1px solid var(--color-border-solid);
    border-radius: 6px;
    box-shadow: var(--shadow-medium);
    display: none;
    flex-direction: column;
    overflow: hidden;
    z-index: 1100;
}

.language-dropdown.show {
    display: flex;
}

.language-dropdown a {
    text-decoration: none;
    color: var(--color-text-muted);
    padding: 12px 18px;
    transition: var(--transition-fast);
    font-size: 0.85rem;
}

.language-dropdown a:hover {
    background: var(--color-cream);
    color: var(--color-sage-primary);
}

@media (max-width: 1024px) {
    .mobile-nav-toggle { display: flex; }
    .submenu-arrow-desktop { display: none; }
    .submenu-arrow-mobile  { display: inline-block; }
    .language-switcher {
    width: 100%;
    margin-top: 10px;
}

.language-btn {
    width: 100%;
    text-align: left;
}

.language-dropdown {
    position: static;
    margin-top: 8px;
    box-shadow: none;
    border: none;
    display: none;
}

.language-dropdown.show {
    display: flex;
}

    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: min(85%, 340px);
        height: 100vh;
        background-color: var(--color-white);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 90px 30px;
        transform: translate3d(100%, 0, 0);
        transition: transform 0.4s var(--ease-out-expo);
        box-shadow: -10px 0 50px rgba(17, 36, 28, 0.08);
        overflow-y: auto;
        z-index: 999;
        gap: 20px;
    }

    .nav-menu.open {
        transform: translate3d(0, 0, 0);
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid var(--color-border-solid);
    }

    .nav-link {
        padding: 16px 0;
        justify-content: space-between;
        font-size: 0.85rem;
    }

    .dropdown-menu {
        position: static;
        transform: none !important;
        box-shadow: none;
        border: none;
        padding: 0 0 14px 14px;
        opacity: 1;
        visibility: visible;
        display: none !important;
    }

    .dropdown-menu.mobile-open {
        display: flex !important;
    }

    /* Ensure secondary child menus sit cleanly on mobile */
    .dropdown-menu .dropdown-menu {
        padding-left: 18px !important;
    }

    .nav-cta-wrapper {
        margin-top: 30px;
        width: 100%;
    }

    .nav-cta-wrapper .btn {
        width: 100%;
    }
}

/* ==========================================================================
   GRID DEFINITIONS (Refined for Consistent Mobile Wrapping)
   ========================================================================== */
.grid {
    display: grid;
    gap: var(--card-gap);
}

.align-center { align-items: center; }

/* 1 Column base for mobile, progressively scaling with media queries */
.grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {
    .grid-2 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1025px) {
    .grid-3 { grid-template-columns: repeat(3, 1fr); }
    .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* Responsive Ordering Helper */
@media (max-width: 991px) {
    .order-mobile-1 { order: 1 !important; }
    .order-mobile-2 { order: 2 !important; }
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-media-container {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-video, .hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(17, 36, 28, 0.4) 0%,
        rgba(17, 36, 28, 0.75) 100%
    );
}

.hero-content {
    max-width: 820px;
    z-index: 10;
}

.hero-badge {
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 6px 18px;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    border-radius: 50px;
    margin-bottom: 24px;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    color: var(--color-white);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 6vw, 3.8rem);
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--color-white);
}

.hero-subtitle {
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    font-weight: 300;
    color: rgba(250, 249, 245, 0.95);
    margin-bottom: 36px;
    line-height: 1.65;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

@media (max-width: 480px) {
    .hero-buttons .btn {
        width: 100%;
    }
}

/* ==========================================================================
   CARDS (Itineraries, Destinations, Activities)
   ========================================================================== */
.premium-card {
    background-color: var(--color-white);
    border: 1px solid var(--color-border-solid);
    border-radius: 6px;
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.premium-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-medium);
    border-color: var(--color-border-hover);
}

.card-img-wrap {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    position: relative;
    background-color: var(--color-cream-deep);
}

.card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out-expo);
}

.premium-card:hover .card-img-wrap img {
    transform: scale(1.04);
}

.card-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background-color: var(--color-white);
    color: var(--color-dark-spruce);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 12px;
    border-radius: 2px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    z-index: 3;
}

.card-body {
    padding: clamp(20px, 3.5vw, 28px);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-title {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 2.5vw, 1.35rem);
    color: var(--color-dark-spruce);
    margin-bottom: 12px;
    font-weight: 500;
}

.card-desc {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--color-border-light);
    padding-top: 16px;
    margin-top: auto;
    flex-wrap: wrap;
    gap: 12px;
}

.card-stat {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: var(--color-dark-spruce);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-stat svg {
    color: var(--color-sage-primary);
    width: 15px;
    height: 15px;
    flex-shrink: 0;
}

.card-link {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    color: var(--color-sage-primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: var(--transition-fast);
}

.card-link:hover {
    color: var(--color-dark-spruce);
}

/* Card Specific Grid Refinements (Homepage Itineraries) */
#itineraries .card-img-wrap {
    aspect-ratio: 1 / 1;
}

@media (max-width: 1300px) and (min-width: 640px) {
    #itineraries .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Golden Coastline Beach Card Heights */
#golden-coastline .card-img-wrap {
    height: 260px;
    aspect-ratio: unset;
}

/* Minimal Overlaid Destination Cards */
.dest-card {
    position: relative;
    aspect-ratio: 3 / 4;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.dest-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out-expo);
}

.dest-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(17, 36, 28, 0.85) 0%, rgba(17, 36, 28, 0.2) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: clamp(20px, 4vw, 32px);
    color: var(--color-white);
    transition: var(--transition-smooth);
}

.dest-card:hover img {
    transform: scale(1.04);
}

.dest-card:hover .dest-overlay {
    background: linear-gradient(to top, rgba(17, 36, 28, 0.95) 0%, rgba(17, 36, 28, 0.4) 60%, transparent 100%);
}

.dest-title {
    font-family: var(--font-heading);
    font-size: clamp(1.35rem, 3vw, 1.6rem);
    font-weight: 400;
    margin-bottom: 6px;
}

.dest-sub {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-sage-light);
    opacity: 0.85;
}

/* ==========================================================================
   SERVICES & ACTIVITIES
   ========================================================================== */
.service-card {
    background-color: var(--color-white);
    padding: clamp(24px, 4vw, 40px);
    border-radius: 6px;
    border: 1px solid var(--color-border-solid);
    transition: var(--transition-smooth);
    height: 100%;
}

.service-card:hover {
    border-color: var(--color-border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft);
}

.service-icon {
    width: 56px;
    height: 56px;
    background-color: var(--color-sage-light);
    color: var(--color-sage-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 24px;
}

.service-title {
    font-family: var(--font-heading);
    font-size: clamp(1.15rem, 2vw, 1.25rem);
    color: var(--color-dark-spruce);
    margin-bottom: 12px;
}

.service-desc {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    line-height: 1.65;
}

/* ==========================================================================
   REVIEWS & ACCREDITATIONS
   ========================================================================== */
.reviews-section {
    background-color: var(--color-cream);
    padding: var(--section-py) 0;
}

.reviews-masonry-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: start;
}

@media (min-width: 768px) {
    .reviews-masonry-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1025px) {
    .reviews-masonry-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.reviews-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Summary Card */
.review-summary-card {
    background-color: var(--color-white);
    border: 1px solid var(--color-border-solid);
    border-radius: 12px;
    padding: 36px 30px;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.review-summary-card h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: var(--color-dark-spruce);
    margin-bottom: 12px;
    font-weight: 500;
}

.summary-score-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.summary-score-num {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 500;
    color: var(--color-dark-spruce);
    line-height: 1;
}

.summary-stars, .reviewer-item-stars {
    color: #F5A623;
    font-size: 1.1rem;
    display: flex;
    gap: 2px;
}

.summary-count-link {
    font-size: 0.82rem;
    color: var(--color-text-muted);
    text-decoration: underline;
    margin-bottom: 24px;
    transition: var(--transition-fast);
}

.summary-count-link:hover {
    color: var(--color-sage-primary);
}

.btn-review-write {
    background-color: #000000;
    color: var(--color-white);
    border: 1px solid #000000;
    border-radius: 30px;
    padding: 10px 24px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
    width: 100%;
}

.btn-review-write:hover {
    background-color: var(--color-sage-primary);
    border-color: var(--color-sage-primary);
    transform: translateY(-1px);
}

/* Individual Review Card */
.review-item-card {
    background-color: var(--color-white);
    border: 1px solid var(--color-border-solid);
    border-radius: 12px;
    padding: clamp(20px, 4vw, 30px);
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.review-item-card:hover {
    border-color: var(--color-border-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.reviewer-profile {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.reviewer-avatar-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--color-sage-primary);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.reviewer-meta-text h4 {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--color-dark-spruce);
    line-height: 1.25;
}

.reviewer-meta-text span {
    font-size: 0.72rem;
    color: var(--color-text-muted);
}

.reviewer-item-stars {
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.review-body-text {
    font-size: 0.88rem;
    color: var(--color-charcoal);
    line-height: 1.65;
    margin-bottom: 18px;
    flex-grow: 1;
}

.review-card-footer-link {
    border-top: 1px solid rgba(17, 36, 28, 0.06);
    padding-top: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    color: var(--color-text-muted);
    transition: var(--transition-fast);
}

.review-card-footer-link:hover {
    color: var(--color-sage-primary);
}

.platform-info-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 600;
}

.platform-logo-svg {
    width: 16px;
    height: 16px;
}

.share-logo-svg {
    width: 14px;
    height: 14px;
    opacity: 0.5;
    transition: var(--transition-fast);
}

.review-card-footer-link:hover .share-logo-svg {
    opacity: 1;
    color: var(--color-sage-primary);
}

/* Recognition Strips */
.recognition-strip {
    background-color: var(--color-cream-deep);
    border-top: 1px solid var(--color-border-solid);
    border-bottom: 1px solid var(--color-border-solid);
    padding: 40px 0;
}

.recognition-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.recognition-item {
    display: flex;
    align-items: center;
    gap: 14px;
    max-width: 280px;
}

.recognition-icon {
    color: var(--color-sage-primary);
    flex-shrink: 0;
}

.recognition-text h4 {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-dark-spruce);
    margin-bottom: 4px;
    font-weight: 700;
}

.recognition-text p {
    font-size: 0.72rem;
    color: var(--color-text-muted);
    line-height: 1.4;
}

/* ==========================================================================
   ROUTE MAPS & STICKY LIGHTBOXES
   ========================================================================== */
.route-map-section {
    padding: 60px 0;
    background: #f7f6f2;
    border-top: 1px solid var(--color-border-solid);
    border-bottom: 1px solid var(--color-border-solid);
    text-align: center;
}

.route-map-heading {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3vw, 2rem);
    color: var(--color-dark-spruce);
    margin-bottom: 8px;
}

.route-map-sub {
    font-family: var(--font-body);
    font-size: 0.88rem;
    color: var(--color-text-muted);
    margin-bottom: 30px;
    letter-spacing: 0.03em;
}

.route-map-wrapper {
    position: relative;
    display: inline-block;
    cursor: zoom-in;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.route-map-img {
    display: block;
    max-height: 500px;
    width: auto;
    max-width: 100%;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.route-map-wrapper:hover .route-map-img {
    transform: scale(1.015);
}

.route-map-hint {
    position: absolute;
    bottom: 12px;
    right: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: 6px;
    padding: 6px 12px;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-charcoal);
    pointer-events: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.route-map-hint svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

/* Map Zoom Lightbox */
.map-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.map-lightbox.is-open {
    opacity: 1;
    pointer-events: all;
}

.map-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10,10,8,0.9);
    cursor: zoom-out;
}

.map-lightbox-inner {
    position: relative;
    z-index: 1;
    max-height: 90vh;
    max-width: 90vw;
    overflow: auto;
    border-radius: 12px;
    -webkit-overflow-scrolling: touch;
}

.map-lightbox-inner img {
    display: block;
    width: auto;
    height: auto;
    max-height: none;
    max-width: none;
    border-radius: 12px;
}

.map-lightbox-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.15);
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    transition: background 0.2s;
}

.map-lightbox-close:hover {
    background: rgba(255,255,255,0.28);
}

@media (max-width: 768px) {
    .route-map-img {
        max-height: none;
        width: 100%;
        border-radius: 8px;
    }
    .route-map-wrapper {
        border-radius: 8px;
        width: 100%;
    }
}

/* ==========================================================================
   PURE-CSS LIQUID MASONRY GALLERY (No Awkward Crops)
   ========================================================================== */
.gallery-masonry-wrapper {
    column-count: 1;
    column-gap: 16px;
    width: 100%;
}

@media (min-width: 480px) { .gallery-masonry-wrapper { column-count: 2; } }
@media (min-width: 768px) { .gallery-masonry-wrapper { column-count: 3; } }
@media (min-width: 1200px) { .gallery-masonry-wrapper { column-count: 4; } }

.gallery-item-card {
    break-inside: avoid;
    margin-bottom: 16px;
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    background-color: var(--color-cream-deep);
    border: 1px solid var(--color-border-solid);
    box-shadow: var(--shadow-soft);
    cursor: zoom-in;
    transition: transform 0.4s var(--ease-out-expo), border-color 0.3s ease, box-shadow 0.4s var(--ease-out-expo);
    opacity: 0;
    transform: translateY(20px);
}

.gallery-item-card.animate-in {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s var(--ease-out-expo), transform 0.6s var(--ease-out-expo);
}

.gallery-item-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-border-hover);
    box-shadow: var(--shadow-medium);
}

.gallery-img-elem {
    width: 100%;
    height: auto;
    display: block;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-img-elem.loaded {
    opacity: 1;
}

.shimmer-placeholder {
    width: 100%;
    position: relative;
    background: linear-gradient(90deg, #F3F1EA 25%, #EAEFEA 50%, #F3F1EA 75%);
    background-size: 200% 100%;
    animation: shimmerPulse 1.5s infinite linear;
}

@keyframes shimmerPulse {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.gallery-item-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(17, 36, 28, 0.08);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 2;
}

.gallery-item-card:hover::after {
    opacity: 1;
}

/* Category Filters */
.gallery-filters-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--color-border-solid);
    color: var(--color-text-muted);
    padding: 10px 22px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-fast);
}

.filter-btn:hover {
    color: var(--color-dark-spruce);
    border-color: var(--color-sage-primary);
}

.filter-btn.active {
    background-color: var(--color-sage-primary);
    color: var(--color-white);
    border-color: var(--color-sage-primary);
    box-shadow: 0 4px 12px rgba(78, 110, 88, 0.15);
}

.load-more-btn-container {
    display: flex;
    justify-content: center;
    margin-top: 48px;
}

/* ==========================================================================
   PORTRAIT/LANDSCAPE COMPATIBLE LIGHTBOX
   ========================================================================== */
.gallery-lightbox {
    position: fixed;
    inset: 0;
    background-color: rgba(17, 36, 28, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    user-select: none;
    -webkit-user-select: none;
}

.gallery-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-viewport {
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.lightbox-image-container {
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.lightbox-main-img {
    max-width: 100%;
    max-height: 85vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: var(--shadow-deep);
    transform: scale(0.97) translate3d(0, 0, 0);
    opacity: 0;
    transition: transform 0.4s var(--ease-out-expo), opacity 0.3s ease;
    cursor: grab;
}

.lightbox-main-img:active {
    cursor: grabbing;
}

.gallery-lightbox.active .lightbox-main-img {
    transform: scale(1) translate3d(0, 0, 0);
    opacity: 1;
}

.lightbox-main-img.zoomed {
    transform: scale(1.6) translate3d(0, 0, 0) !important;
    cursor: zoom-out;
}

.lightbox-loading-spinner {
    position: absolute;
    width: 44px;
    height: 44px;
    border: 3px solid rgba(255, 255, 255, 0.15);
    border-top-color: var(--color-sage-primary);
    border-radius: 50%;
    animation: spinnerRotate 0.8s infinite linear;
    display: none;
}

@keyframes spinnerRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.lightbox-main-img.loading + .lightbox-loading-spinner {
    display: block;
}

.lightbox-btn {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--color-white);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
    z-index: 2010;
}

.lightbox-btn:hover {
    background-color: var(--color-sage-primary);
    border-color: var(--color-sage-primary);
}

.lightbox-close-trigger { top: 24px; right: 24px; }
.lightbox-zoom-trigger { top: 24px; right: 88px; }
.lightbox-nav-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-nav-next { right: 24px; top: 50%; transform: translateY(-50%); }

@media (max-width: 768px) {
    .lightbox-btn {
        width: 40px;
        height: 40px;
    }
    .lightbox-nav-prev { left: 8px; }
    .lightbox-nav-next { right: 8px; }
    .lightbox-close-trigger { top: 16px; right: 16px; }
    .lightbox-zoom-trigger { top: 16px; right: 68px; }
}

.lightbox-bottom-info {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--color-white);
    z-index: 2010;
    width: 90%;
}

.lightbox-counter-txt {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
}

/* ==========================================================================
   ITINERARY HEADER & PAGES
   ========================================================================== */
.itinerary-header {
    position: relative;
    padding-top: clamp(120px, 15vw, 150px);
    padding-bottom: clamp(48px, 8vw, 80px);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.itinerary-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.itinerary-header .container {
    position: relative;
    z-index: 2;
}

.itinerary-header .section-tag {
    color: rgba(255, 255, 255, 0.85);
}

.itinerary-header .section-title {
    color: #ffffff;
    font-size: clamp(2rem, 5vw, 3.2rem);
    margin-bottom: 12px;
}

.itinerary-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: clamp(1rem, 2vw, 1.15rem);
    font-weight: 300;
    max-width: 700px;
}

.text-green {
    color: #89bfa7;
    font-weight: 400;
}

/* Tour At A Glance Activity Grid */
.activity-overview {
    border-top: 1px solid var(--color-border-light);
    border-bottom: 1px solid var(--color-border-light);
    padding: var(--section-py) 0;
}

.activity-overview-title {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    text-align: center;
    margin-bottom: 30px;
    color: var(--color-dark-spruce);
}

.activity-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

@media (min-width: 860px) {
    .activity-grid { grid-template-columns: repeat(4, 1fr); }
}

.activity-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    border-radius: 8px;
    background: #f7f6f2;
    border: 1px solid var(--color-border-solid);
}

.activity-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
}

.activity-card.is-yes .activity-icon { color: #4f8a5b; }
.activity-card.is-no .activity-icon { color: #c1554c; }

.activity-label {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    color: #2b2b28;
}

.activity-card.is-no .activity-label {
    color: #9a9a94;
    text-decoration: line-through;
}

/* Itinerary Details Layout */
.itinerary-layout {
    display: grid;
    gap: 40px;
    grid-template-columns: 1fr;
}

@media (min-width: 992px) {
    .itinerary-layout {
        grid-template-columns: 2fr 1fr;
        gap: 56px;
    }
}

.timeline {
    position: relative;
    padding-left: 28px;
    margin-top: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--color-cream-deep);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -28px;
    top: 6px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: var(--color-white);
    border: 3px solid var(--color-sage-primary);
    z-index: 10;
}

.timeline-day {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    color: var(--color-sage-primary);
    margin-bottom: 6px;
    display: block;
}

.timeline-title {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 2.5vw, 1.4rem);
    color: var(--color-dark-spruce);
    margin-bottom: 12px;
}

.timeline-content p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.65;
}

.timeline-highlights {
    list-style: none;
    margin-top: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.timeline-highlights li {
    background-color: var(--color-cream);
    border: 1px solid var(--color-border-solid);
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-dark-spruce);
    border-radius: 4px;
}

.sidebar-sticky {
    position: static;
}

@media (min-width: 992px) {
    .sidebar-sticky {
        position: sticky;
        top: 100px;
    }
}

.itinerary-meta-box {
    background-color: var(--color-cream);
    border: 1px solid var(--color-border-solid);
    border-radius: 8px;
    padding: 30px;
}

.meta-box-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 24px;
}

.meta-box-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.88rem;
    border-bottom: 1px solid var(--color-border-light);
    padding-bottom: 10px;
}

.meta-box-item:last-child {
    border: none;
}

.meta-box-item span:first-child {
    color: var(--color-text-muted);
}

.meta-box-item span:last-child {
    color: var(--color-dark-spruce);
    font-weight: 700;
}

/* ==========================================================================
   CONTACT PAGE SPECIFIC STYLES
   ========================================================================== */
.contact-layout {
    display: grid;
    gap: 40px;
    grid-template-columns: 1fr;
}

@media (min-width: 992px) {
    .contact-layout {
        grid-template-columns: 1.1fr 1.9fr;
        gap: 56px;
    }
}

.contact-info-panel {
    background-color: var(--color-cream);
    border: 1px solid var(--color-border-solid);
    border-radius: 8px;
    padding: clamp(24px, 4vw, 48px);
}

.contact-card-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 30px;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-card-icon {
    width: 44px;
    height: 44px;
    background-color: var(--color-white);
    color: var(--color-sage-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--color-border-solid);
}

.contact-card-details h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-dark-spruce);
    margin-bottom: 4px;
}

.contact-card-details p, .contact-card-details a {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    text-decoration: none;
    line-height: 1.5;
}

.contact-card-details a:hover {
    color: var(--color-sage-primary);
}

.inquiry-form-wrapper {
    background-color: var(--color-white);
    border: 1px solid var(--color-border-solid);
    border-radius: 8px;
    padding: clamp(24px, 4vw, 48px);
    box-shadow: var(--shadow-soft);
}

.form-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--color-dark-spruce);
    margin-bottom: 8px;
}

.form-subtitle {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    margin-bottom: 24px;
}

.form-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 640px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
}

.form-group-full {
    grid-column: 1 / -1;
}

.form-label {
    display: block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    color: var(--color-dark-spruce);
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    background-color: var(--color-cream);
    border: 1px solid var(--color-border-solid);
    border-radius: 4px;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 0.88rem;
    color: var(--color-charcoal);
    transition: var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--color-sage-primary);
    background-color: var(--color-white);
    box-shadow: 0 0 0 3px rgba(78, 110, 88, 0.08);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.map-container {
    width: 100%;
    height: 380px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--color-border-solid);
    box-shadow: var(--shadow-soft);
}

/* ==========================================================================
   CONTACT CTA SECTION & WHATSAPP FLOATER
   ========================================================================== */
.cta-box {
    background-color: var(--color-dark-spruce);
    color: var(--color-white);
    border-radius: 12px;
    padding: clamp(40px, 8vw, 72px) clamp(20px, 4vw, 40px);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at top right, rgba(78, 110, 88, 0.2), transparent 60%);
    pointer-events: none;
}

.cta-content {
    max-width: 680px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    line-height: 1.25;
    margin-bottom: 16px;
}

.cta-desc {
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    font-weight: 300;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background-color: #25D366;
    color: var(--color-white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    z-index: 997;
    transition: transform 0.3s var(--ease-bounce);
}

.whatsapp-float:hover {
    transform: scale(1.08);
}

.whatsapp-pulse {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background-color: rgba(37, 211, 102, 0.25);
    z-index: -1;
    animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.8; }
    70% { transform: scale(1.3); opacity: 0; }
    100% { transform: scale(1.3); opacity: 0; }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    right: 24px;
    bottom: 86px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--color-dark-spruce);
    color: var(--color-white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-medium);
    z-index: 996;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.3s ease, transform 0.3s ease, background 0.25s ease, visibility 0.3s ease;
}

.back-to-top svg {
    width: 18px;
    height: 18px;
}

.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--color-sage-primary);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
    background-color: var(--color-dark-spruce);
    color: var(--color-white);
    padding: 60px 0 24px;
}

.footer-top-grid {
    display: grid;
    gap: 36px;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    margin-bottom: 48px;
}

.footer-brand p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.65;
    margin-top: 14px;
}

.footer-col h4 {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-sage-primary);
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.82rem;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-white);
    padding-left: 4px;
}

.footer-contact-info {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact-info div {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-contact-info svg {
    color: var(--color-sage-primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ==========================================================================
   SCROLL REVEAL & LAZY IMAGES
   ========================================================================== */
.scroll-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.lazy-image {
    opacity: 0;
    filter: blur(8px);
    transition: opacity 0.6s var(--ease-out-expo), filter 0.6s var(--ease-out-expo);
}

.lazy-image.loaded {
    opacity: 1;
    filter: blur(0);
}