@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    /* Refined Green & White Palette - Inspired by premium safari aesthetics */
    --green-deep: #0a2819;
    --green-primary: #1a432b;
    --green-medium: #2d6b47;
    --green-light: #4a966e;
    --green-accent: #6bb88e;
    --green-pale: #c8e6d4;
    --green-mist: #e8f5ec;
    
    --white: #ffffff;
    --off-white: #fafcfb;
    --cream: #f5f7f5;
    --ivory: #f0f2f0;
    
    --text-primary: #1a2e22;
    --text-secondary: #4a5c52;
    --text-muted: #7a8c82;
    --text-light: #9aaa9e;
    
    /* Status colors */
    --danger: #c0564f;
    
    /* Layout */
    --topbar-h: 72px;
    
    --gold: #b8965a;
    --gold-light: #d4b87a;
    --gold-dark: #967a42;
    
    /* Legacy aliases for backward compatibility */
    --sand-50: #fafcfb;
    --forest-900: var(--green-deep);
    --forest-800: #1a4732;
    --forest-700: var(--green-primary);
    --forest-500: var(--green-medium);
    --gold-400: var(--gold);
    --gold-300: var(--gold-light);
    --gold-200: var(--gold-dark);
    --gold-100: #f5e7c6;
    --sand: var(--cream);
    --sand-light: var(--off-white);
    --gray-100: var(--ivory);
    --gray-500: var(--text-muted);
    --gray-700: var(--text-secondary);
    --gray-900: var(--text-primary);
    
    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;
    --space-4xl: 96px;
    
    /* Layout */
    --container: 1400px;
    --container-narrow: 960px;
    
    /* Borders */
    --radius-sm: 2px;
    --radius-md: 4px;
    --radius-lg: 8px;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(10, 40, 25, 0.08);
    --shadow-md: 0 4px 12px rgba(10, 40, 25, 0.1);
    --shadow-lg: 0 8px 32px rgba(10, 40, 25, 0.12);
    --shadow-xl: 0 16px 64px rgba(10, 40, 25, 0.15);
    
    /* Borders & Dividers */
    --line: #dce3dc;
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--cream);
}
::-webkit-scrollbar-thumb {
    background: var(--gold-400);
    border-radius: 5px;
    border: 2px solid var(--cream);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gold-500);
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    letter-spacing: -0.03em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
}

h4 {
    font-size: 1.25rem;
    font-weight: 600;
}

p {
    margin-bottom: 1.5em;
    max-width: 65ch;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--space-md);
    }
}

.container-narrow {
    max-width: var(--container-narrow);
}

/* Selection */
::selection {
    background: var(--green-pale);
    color: var(--green-deep);
}

/* ==========================================================================
   PAGE LOADER
   ========================================================================== */
.page-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--green-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.page-loader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.page-loader-inner {
    text-align: center;
}

.page-loader-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--white);
    letter-spacing: 0.1em;
    margin-bottom: var(--space-md);
}

.page-loader-bar {
    width: 200px;
    height: 1px;
    background: rgba(255,255,255,0.2);
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.page-loader-bar::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background: var(--green-accent);
    animation: loaderProgress 2s ease-in-out infinite;
}

@keyframes loaderProgress {
    0% { width: 0%; }
    50% { width: 100%; }
    100% { width: 0%; }
}

/* ==========================================================================
   TOP BAR
   ========================================================================== */
.topbar {
    background: var(--green-deep);
    color: rgba(255,255,255,0.7);
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-family: var(--font-body);
}

.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 44px;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.topbar-contact {
    display: flex;
    gap: var(--space-lg);
    align-items: center;
}

.topbar-contact a {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.topbar-contact a:hover { color: var(--white); }

.topbar-social {
    display: flex;
    gap: var(--space-md);
}

.topbar-social a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.3s;
}

.topbar-social a:hover { color: var(--white); }

.topbar-links {
    display: flex;
    gap: var(--space-lg);
}

.topbar-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
}

.topbar-links a:hover { color: var(--white); }

.tb-divider { color: rgba(255,255,255,0.4); }

@media (max-width: 768px) {
    .topbar-links, .tb-divider {
        display: none;
    }
    .topbar-contact a span {
        display: none;
    }
    .topbar-contact a i {
        font-size: 1.1rem;
    }
    .topbar .container {
        flex-wrap: wrap;
        height: auto;
        padding-top: 8px;
        padding-bottom: 8px;
    }
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.site-header {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 2000;
    border-bottom: 1px solid var(--ivory);
    box-shadow: 0 1px 4px rgba(10,40,25,0.06);
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.brand {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    text-decoration: none;
}

.brand img {
    height: 50px;
    width: auto;
}

.brand-text {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--green-deep);
    letter-spacing: -0.02em;
}

.brand-text span {
    display: block;
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 2px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    flex-shrink: 1;
}

.main-nav ul {
    display: flex;
    gap: var(--space-lg);
    list-style: none;
}

.main-nav a {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--text-secondary);
    padding: var(--space-sm) 0;
    position: relative;
    text-decoration: none;
    transition: color 0.3s;
    white-space: nowrap;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--green-medium);
    transition: width 0.3s;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--green-primary);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 14px 28px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-gold {
    background: var(--gold);
    color: var(--white);
}

.btn-gold:hover {
    background: #a6854a;
    transform: translateY(-2px);
}

.btn-sm { padding: 12px 24px; font-size: 0.75rem; }

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--green-deep);
    cursor: pointer;
    padding: 8px;
    z-index: 2002;
    line-height: 1;
}

@media (max-width: 980px) {
    .brand-text {
        display: none;
    }

    .site-header .container {
        height: 70px;
        position: relative;
    }

    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        order: 2;
        flex-shrink: 0;
    }

    .main-nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--white);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: var(--space-xl);
        transform: translateX(100%);
        transition: transform 0.4s ease;
        z-index: 2001;
        overflow-y: auto;
        box-shadow: -4px 0 20px rgba(0,0,0,0.1);
    }

    .main-nav.mobile-open {
        transform: translateX(0);
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0;
        list-style: none !important;
    }

    .main-nav ul li {
        border-bottom: 1px solid var(--ivory);
        list-style: none !important;
    }

    .main-nav ul li a {
        display: block;
        padding: var(--space-md) 0;
        font-size: 1rem;
    }

    .nav-cta {
        flex-direction: column;
        gap: var(--space-md);
        margin-top: var(--space-xl);
    }

    .nav-cta .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Mobile Navigation Overlay */
#menuOverlay {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
    z-index: 10;
    display: none;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 16px 32px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background: var(--green-primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--green-medium);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--green-primary);
    border: 1px solid var(--green-primary);
}

.btn-outline:hover {
    background: var(--green-primary);
    color: var(--white);
}

.btn-white {
    background: var(--white);
    color: var(--green-deep);
}

.btn-white:hover {
    background: var(--green-mist);
}

.btn-gold {
    background: var(--gold);
    color: var(--forest-900);
}

.btn-gold:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-green {
    background: var(--green-deep);
    color: var(--white);
}

.btn-green:hover {
    background: var(--green-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-forest {
    background: var(--green-primary);
    color: var(--white);
}

.btn-forest:hover {
    background: var(--green-deep);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline-green {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline-green:hover {
    background: var(--white);
    color: var(--green-deep);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.4);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--green-deep);
}

.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
    padding: 12px 24px;
}

.btn-ghost:hover {
    color: var(--green-primary);
}

.btn-block {
    width: 100%;
}

.btn-sm {
    padding: 12px 24px;
    font-size: 0.8rem;
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1rem;
}

/* ==========================================================================
   UTILITY CLASSES
   ========================================================================== */
.eyebrow {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.lede {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin-top: 0.75rem;
}

.page-header {
    position: relative;
    min-height: 450px;
    display: flex;
    align-items: center;
    padding: var(--space-4xl) 0;
    background: var(--green-deep);
    overflow: hidden;
}

.page-header.has-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat !important;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header.has-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(10,40,25,0.65) 0%, rgba(10,40,25,0.35) 100%);
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to top, rgba(10,40,25,0.5) 0%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

.page-header h1 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    color: var(--white);
    margin-bottom: 0.75rem;
    font-family: var(--font-display);
}

.page-header p {
    color: rgba(255,255,255,0.85);
    font-size: 1.1rem;
    max-width: 600px;
}

.page-header .eyebrow {
    color: var(--green-accent);
}

.section-divider-line {
    width: 100%;
    height: 1px;
    background: var(--ivory);
    margin: var(--space-3xl) 0;
}

@media (max-width: 768px) {
    .page-header {
        min-height: 350px;
        padding: var(--space-2xl) 0;
    }
    .page-header h1 {
        font-size: 2rem;
    }
}

/* ==========================================================================
   ALERTS
   ========================================================================== */
.alert {
    padding: 14px 18px;
    border-radius: var(--radius-md);
    margin-bottom: var(--space-lg);
    font-size: 0.88rem;
    display: flex;
    gap: var(--space-sm);
    align-items: center;
}

.alert-success {
    background: rgba(74,117,89,0.1);
    color: var(--green-primary);
    border: 1px solid rgba(74,117,89,0.25);
}

.alert-error {
    background: rgba(192,86,79,0.08);
    color: #c0564f;
    border: 1px solid rgba(192,86,79,0.25);
}

/* ==========================================================================
   EMPTY STATE
   ========================================================================== */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
}

.empty-state i {
    font-size: 2rem;
    color: var(--ivory);
    margin-bottom: 14px;
}

/* ==========================================================================
   RECEIPT / PRINT
   ========================================================================== */
.receipt-box {
    background: var(--white);
    border: 1px solid var(--ivory);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    max-width: 800px;
    margin: 0 auto;
}

@media print {
    .site-header,
    .site-footer,
    .float-whatsapp,
    .back-to-top {
        display: none !important;
    }
}

.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
    padding: 12px 24px;
}

.btn-ghost:hover {
    color: var(--green-primary);
}

.btn-sm {
    padding: 12px 24px;
    font-size: 0.8rem;
}

/* ==========================================================================
   HERO CAROUSEL - 70% Viewport Style
   ========================================================================== */
.hero-carousel {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background: var(--green-deep);
}

.carousel-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.5s ease, visibility 1.5s ease;
}

.carousel-slide.active {
    opacity: 1;
    visibility: visible;
}

.carousel-slide-bg {
    position: absolute;
    inset: 0;
}

.carousel-slide-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: transform 10s ease-out;
}

.carousel-slide.active .carousel-slide-bg img {
    transform: scale(1);
}

.carousel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(10, 40, 25, 0.6) 0%,
        rgba(10, 40, 25, 0.4) 50%,
        rgba(10, 40, 25, 0.3) 100%
    );
}

.carousel-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-content-inner {
    width: 70%;
    max-width: 900px;
    padding: var(--space-4xl) var(--space-xl);
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.carousel-tag {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 8px 20px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--green-pale);
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.carousel-slide.active .carousel-tag {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

.carousel-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--white);
    margin: var(--space-lg) 0;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.carousel-slide.active .carousel-title {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.5s;
}

.carousel-title .highlight {
    color: var(--green-accent);
    font-style: italic;
}

.carousel-subtitle {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.8);
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: var(--space-xl);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.carousel-slide.active .carousel-subtitle {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.7s;
}

.carousel-cta {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.carousel-slide.active .carousel-cta {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.9s;
}

/* Carousel Navigation */
.carousel-nav {
    position: absolute;
    bottom: var(--space-3xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    z-index: 20;
}

.carousel-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--white);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.carousel-arrow:hover {
    background: rgba(255,255,255,0.2);
    border-color: var(--green-accent);
}

.carousel-indicators {
    display: flex;
    gap: var(--space-sm);
}

.carousel-indicator {
    width: 40px;
    height: 2px;
    background: rgba(255,255,255,0.2);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-indicator.active {
    background: var(--green-accent);
    width: 60px;
}

.carousel-indicator:hover {
    background: rgba(255,255,255,0.4);
}

@media (max-width: 980px) {
    .carousel-content-inner {
        width: 90%;
        padding-left: var(--space-xl);
    }
    
    .carousel-title {
        font-size: clamp(2.5rem, 8vw, 4rem);
    }
    
    .carousel-nav {
        bottom: var(--space-xl);
    }
}

/* ==========================================================================
   BLOG
   ========================================================================== */
.blog-hero {
    position: relative;
    padding: 5rem 0 4rem;
    background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-primary) 100%);
    overflow: hidden;
}
.blog-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212,175,55,0.12) 0%, transparent 70%);
    border-radius: 50%;
}
.blog-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(107,184,142,0.08) 0%, transparent 70%);
    border-radius: 50%;
}
.blog-hero-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}
.blog-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-300);
    margin-bottom: 1.5rem;
}
.blog-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--white);
    margin-bottom: 1rem;
    font-family: var(--font-display);
    line-height: 1.1;
}
.blog-hero p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    max-width: 550px;
    margin: 0 auto;
}
.blog-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.blog-stat {
    text-align: center;
}
.blog-stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}
.blog-stat-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 0.4rem;
}
.section-eyebrow {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.75rem;
}
.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: var(--forest-900);
    margin-bottom: 0.5rem;
    font-family: var(--font-display);
}
.section-subtitle {
    font-size: 1rem;
    color: var(--gray-500);
    max-width: 500px;
}
.featured-hero {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 480px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    margin-bottom: 4rem;
    box-shadow: var(--shadow-xl);
}
.featured-hero-image {
    position: relative;
    overflow: hidden;
}
.featured-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}
.featured-hero:hover .featured-hero-image img {
    transform: scale(1.05);
}
.featured-hero-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent 60%, rgba(10,40,25,0.3) 100%);
}
.featured-hero-content {
    background: var(--white);
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.featured-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--gold-100);
    color: var(--gold-dark);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.2rem;
    width: fit-content;
}
.featured-hero-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--forest-900);
    margin-bottom: 1rem;
    font-family: var(--font-display);
    line-height: 1.2;
}
.featured-hero-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}
.featured-hero-title a:hover {
    color: var(--gold-dark);
}
.featured-hero-excerpt {
    font-size: 1rem;
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}
.featured-hero-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.85rem;
    color: var(--gray-500);
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-100);
}
.featured-hero-meta i {
    margin-right: 0.4rem;
    color: var(--green-medium);
}
.blog-magazine {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.5rem;
}
.blog-magazine .blog-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
}
.blog-magazine .blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.blog-magazine .blog-card.large {
    grid-column: span 8;
}
.blog-magazine .blog-card.medium {
    grid-column: span 4;
}
.blog-magazine .blog-card.half {
    grid-column: span 6;
}
.blog-magazine .blog-card-image {
    position: relative;
    overflow: hidden;
}
.blog-magazine .blog-card.large .blog-card-image {
    height: 320px;
}
.blog-magazine .blog-card.medium .blog-card-image {
    height: 220px;
}
.blog-magazine .blog-card.half .blog-card-image {
    height: 240px;
}
.blog-magazine .blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}
.blog-magazine .blog-card:hover .blog-card-image img {
    transform: scale(1.06);
}
.blog-card-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.35rem 1rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    backdrop-filter: blur(8px);
}
.blog-card-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--gray-500);
    margin-bottom: 0.75rem;
}
.blog-card-meta i {
    margin-right: 0.3rem;
    color: var(--green-medium);
}
.blog-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    color: var(--forest-900);
    font-family: var(--font-display);
    line-height: 1.3;
}
.blog-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}
.blog-card-title a:hover {
    color: var(--gold-dark);
}
.blog-card-excerpt {
    font-size: 0.9rem;
    color: var(--gray-700);
    line-height: 1.6;
    margin-bottom: 1rem;
    flex: 1;
}
.blog-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-100);
}
.blog-author {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.blog-author-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--forest-900);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.75rem;
}
.blog-author-name {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--forest-900);
}
.blog-read-more {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--green-medium);
    display: flex;
    align-items: center;
    gap: 0.3rem;
    transition: gap 0.3s;
}
.blog-read-more:hover {
    gap: 0.6rem;
    color: var(--green-primary);
}
.category-travel-tips { background: rgba(84,139,102,0.9) !important; color: white !important; }
.category-destination-guides { background: rgba(212,175,55,0.9) !important; color: #0f2e1f !important; }
.category-safari-stories { background: rgba(201,165,92,0.9) !important; color: #0f2e1f !important; }
.category-news { background: rgba(26,71,50,0.9) !important; color: white !important; }
.category-wildlife { background: rgba(45,90,63,0.9) !important; color: white !important; }
.newsletter-strip {
    background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-primary) 100%);
    padding: 3.5rem 0;
    margin: 4rem 0;
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
}
.newsletter-strip::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212,175,55,0.1) 0%, transparent 70%);
    border-radius: 50%;
}
.newsletter-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}
.newsletter-content h3 {
    font-size: 1.6rem;
    color: var(--white);
    margin-bottom: 0.5rem;
    font-family: var(--font-display);
}
.newsletter-content p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
    margin: 0;
}
.newsletter-form {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
    position: relative;
}
.newsletter-form input {
    padding: 0.9rem 1.2rem;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.08);
    color: var(--white);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    min-width: 260px;
    transition: all 0.3s;
}
.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.5);
}
.newsletter-form input:focus {
    outline: none;
    border-color: var(--gold-300);
    background: rgba(255,255,255,0.12);
}
.newsletter-form .btn {
    padding: 0.9rem 1.8rem;
    background: var(--gold);
    color: var(--forest-900);
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}
.newsletter-form .btn:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}
.newsletter-success {
    display: none;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 500;
    animation: fadeInUp 0.5s ease;
}
.newsletter-success i {
    font-size: 1.2rem;
    color: var(--gold-300);
}

/* ==========================================================================
   SECTIONS
   ========================================================================== */
.section {
    padding: var(--space-4xl) 0;
}

.section-sand { background: var(--sand); }
.section-ivory { background: var(--white); }
.section-forest { background: var(--green-deep); color: var(--white); }
.section-forest h2,
.section-forest .lede { color: var(--white); }
.section-forest .eyebrow { color: var(--green-accent); }

.section-header {
    margin-bottom: var(--space-3xl);
}

.section-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--green-medium);
    margin-bottom: var(--space-md);
    position: relative;
    padding-left: var(--space-lg);
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: var(--space-lg);
    height: 1px;
    background: var(--green-medium);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: var(--space-md);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    line-height: 1.8;
}

/* ==========================================================================
   TOUR CARDS - Minimalist Design
   ========================================================================== */
.tour-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.tour-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.4s ease;
}

.tour-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.tour-card-image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.tour-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.tour-card:hover .tour-card-image img {
    transform: scale(1.05);
}

.tour-card-badge {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    padding: 6px 14px;
    background: var(--green-primary);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
}

.tour-card-duration {
    position: absolute;
    bottom: var(--space-md);
    right: var(--space-md);
    padding: 6px 14px;
    background: var(--white);
    color: var(--green-deep);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
}

.tour-card-content {
    padding: var(--space-lg);
}

.tour-card-location {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--green-medium);
    margin-bottom: var(--space-sm);
}

.tour-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
    line-height: 1.3;
}

.tour-card-title a {
    transition: color 0.3s ease;
}

.tour-card-title a:hover {
    color: var(--green-primary);
}

.tour-card-meta {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: var(--space-md);
}

.tour-card-meta i {
    color: var(--gold);
}

.tour-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-md);
    border-top: 1px solid var(--ivory);
}

.tour-card-price {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--green-deep);
}

.tour-card-link {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--green-medium);
    transition: gap 0.3s ease;
}

.tour-card-link:hover {
    gap: var(--space-sm);
    color: var(--green-primary);
}

/* ---------- TOUR DETAIL GRID ---------- */
.tour-detail-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: var(--space-3xl);
    align-items: start;
}
.tour-detail-main {
    min-width: 0;
}
.tour-detail-side {
    position: sticky;
    top: var(--topbar-h);
}

/* ---------- TOUR GALLERY ---------- */
.tour-gallery-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: var(--space-md);
    box-shadow: var(--shadow-sm);
}
.tour-gallery-main img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
}
.tour-gallery-thumbs {
    display: flex;
    gap: var(--space-sm);
    overflow-x: auto;
    padding-bottom: var(--space-sm);
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    scroll-behavior: smooth;
}
.tour-gallery-thumbs img {
    width: 90px;
    height: 70px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.2s;
    flex-shrink: 0;
    border: 2px solid transparent;
}
.tour-gallery-thumbs img.active {
    opacity: 1;
    border-color: var(--gold-400);
}
.tour-gallery-thumbs img:hover {
    opacity: 1;
}

/* ---------- QUICK FACTS ---------- */
.tour-quickfacts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: var(--space-sm);
    margin: var(--space-lg) 0;
}
.qf-item {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}
.qf-item i {
    font-size: 1.2rem;
    color: var(--green-medium);
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}
.qf-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-bottom: 2px;
}
.qf-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* ---------- TOUR TABS ---------- */
.tour-tabs {
    display: flex;
    gap: var(--space-xs);
    border-bottom: 1px solid var(--line);
    margin-bottom: var(--space-lg);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
}
.tour-tab {
    padding: var(--space-sm) var(--space-lg);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    white-space: nowrap;
    transition: all 0.2s;
}
.tour-tab:hover {
    color: var(--text-primary);
}
.tour-tab.active {
    color: var(--green-deep);
    border-bottom-color: var(--gold-400);
}
.tour-tab-panel {
    display: none;
}
.tour-tab-panel.active {
    display: block;
    animation: fadeIn 0.3s ease;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ---------- INCLUDES / EXCLUDES ---------- */
.incl-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
}
.incl-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.incl-list li {
    padding: var(--space-sm) 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    line-height: 1.5;
}
.incl-list.yes i {
    color: var(--green-medium);
    margin-top: 3px;
}
.incl-list.no i {
    color: var(--danger);
    margin-top: 3px;
}

/* ---------- BOOKING CARD ---------- */
.booking-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--line);
}
.booking-price {
    display: flex;
    align-items: baseline;
    gap: var(--space-sm);
    margin-bottom: var(--space-xs);
}
.booking-price .amt {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--forest-900);
    line-height: 1;
}
.booking-price .per {
    font-size: 0.85rem;
    color: var(--text-muted);
}
.booking-rating {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.85rem;
    color: var(--gold-400);
    font-weight: 600;
    margin-bottom: var(--space-lg);
}
.booking-form .field {
    margin-bottom: var(--space-md);
}
.booking-form .field label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-primary);
}
.booking-form .field input,
.booking-form .field select,
.booking-form .field textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--line);
    font-family: var(--font-body);
    font-size: 0.92rem;
    background: var(--sand-50);
    color: var(--text-primary);
    transition: border-color 0.2s, box-shadow 0.2s;
}
.booking-form .field input:focus,
.booking-form .field select:focus,
.booking-form .field textarea:focus {
    outline: none;
    border-color: var(--gold-400);
    box-shadow: 0 0 0 3px rgba(212,175,55,0.15);
}
.booking-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}
.booking-note {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    padding: var(--space-md);
    background: var(--sand-50);
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: var(--space-md);
}
.booking-note i {
    color: var(--green-medium);
    margin-top: 2px;
}

/* ---------- STAR RATING ---------- */
.star-rating {
    display: flex;
    gap: var(--space-xs);
    font-size: 1.8rem;
    color: var(--line);
    cursor: pointer;
}
.star-rating i {
    transition: color 0.15s, transform 0.15s;
}
.star-rating i.active,
.star-rating i.hovered {
    color: var(--gold-400);
}
.star-rating i:hover {
    transform: scale(1.15);
}

/* ---------- ITINERARY TIMELINE ---------- */
.itinerary-item {
    display: flex;
    gap: var(--space-lg);
    padding: var(--space-lg) 0;
    border-bottom: 1px solid var(--line);
}
.itinerary-item:last-child {
    border-bottom: none;
}
.itinerary-day {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--forest-900), var(--forest-700));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
}
.itinerary-item h4 {
    font-size: 1.1rem;
    color: var(--forest-900);
    margin-bottom: var(--space-xs);
    font-family: var(--font-display);
}
.itinerary-item p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ---------- FILTER SIDEBAR ---------- */
.filter-sidebar {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--line);
    margin-bottom: var(--space-xl);
}
.filter-sidebar .filter-group {
    margin-bottom: var(--space-md);
}
.filter-sidebar label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-primary);
}
.filter-sidebar input,
.filter-sidebar select {
    width: 100%;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--line);
    font-family: var(--font-body);
    font-size: 0.9rem;
    background: var(--sand-50);
    color: var(--text-primary);
}
.filter-sidebar input:focus,
.filter-sidebar select:focus {
    outline: none;
    border-color: var(--gold-400);
    box-shadow: 0 0 0 3px rgba(212,175,55,0.15);
}

/* ---------- SORT BAR ---------- */
.sort-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-lg);
    gap: var(--space-md);
    flex-wrap: wrap;
}
.sort-bar .result-count {
    font-size: 0.9rem;
    color: var(--text-muted);
}
.sort-bar select {
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--line);
    font-family: var(--font-body);
    font-size: 0.9rem;
    background: var(--white);
    color: var(--text-primary);
    cursor: pointer;
}

/* ---------- LISTING LAYOUT ---------- */
.listing-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: var(--space-2xl);
    align-items: start;
}

@media (max-width: 980px) {
    .tour-detail-grid {
        grid-template-columns: 1fr;
    }
    .tour-detail-side {
        position: static;
    }
    .listing-layout {
        grid-template-columns: 1fr;
    }
    .incl-grid {
        grid-template-columns: 1fr;
    }
    .tour-gallery-main img {
        height: 360px;
    }
}

@media (max-width: 640px) {
    .tour-quickfacts {
        grid-template-columns: repeat(2, 1fr);
    }
    .booking-row {
        grid-template-columns: 1fr;
    }
    .tour-tabs {
        gap: 0;
    }
    .tour-tab {
        padding: var(--space-sm) var(--space-md);
        font-size: 0.82rem;
    }
}

/* ==========================================================================
   DESTINATION CARDS
   ========================================================================== */
.dest-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.dest-card {
    position: relative;
    aspect-ratio: 3/4;
    border-radius: var(--radius-md);
    overflow: hidden;
    display: block;
}

.dest-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.dest-card:hover img {
    transform: scale(1.1);
}

.dest-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,40,25,0.9) 0%, rgba(10,40,25,0.2) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--space-lg);
}

.dest-card-tag {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--green-accent);
    margin-bottom: var(--space-xs);
}

.dest-card-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
}

@media (max-width: 980px) {
    .dest-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .dest-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.testi-card {
    background: var(--off-white);
    padding: var(--space-xl);
    border-radius: var(--radius-md);
}

.testi-stars {
    color: var(--gold);
    font-size: 0.85rem;
    margin-bottom: var(--space-md);
}

.testi-quote {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: var(--space-lg);
}

.testi-author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.testi-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--green-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--green-deep);
}

.testi-name {
    font-weight: 600;
    color: var(--text-primary);
}

.testi-location {
    font-size: 0.85rem;
    color: var(--text-muted);
}

@media (max-width: 980px) {
    .testi-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .testi-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   PARTNERS
   ========================================================================== */
.partners-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-3xl);
    flex-wrap: wrap;
    opacity: 0.5;
}

.partners-grid img {
    height: 36px;
    width: auto;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.partners-grid img:hover {
    filter: grayscale(0%);
}

/* ==========================================================================
   CTA SECTION
   ========================================================================== */
.cta-section {
    background: var(--green-deep);
    padding: var(--space-4xl) 0;
}

.cta-content {
    max-width: 600px;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: var(--space-md);
}

.cta-content p {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    margin-bottom: var(--space-lg);
}

/* ==========================================================================
   WHERE TO STAY
   ========================================================================== */
.stats-bar {
    padding: 3rem 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}
.stat-item .stat-number {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--forest-900);
    line-height: 1;
}
.stat-item .stat-label {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.filter-section {
    padding: 2rem 0;
    background: var(--sand);
}
.filter-form {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.filter-form select,
.filter-form input {
    padding: 0.7rem 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.9rem;
    background: var(--white);
    color: var(--text-primary);
}
.filter-form input { min-width: 240px; }
.filter-form .btn { padding: 0.7rem 1.5rem; }
.accom-section {
    padding: 4rem 0;
    background: var(--white);
}
.accom-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}
.accom-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--line);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
}
.accom-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.accom-card-image {
    position: relative;
    overflow: hidden;
}
.accom-card-image img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.7s ease;
}
.accom-card:hover .accom-card-image img {
    transform: scale(1.06);
}
.accom-card-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.35rem 1rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: rgba(255,255,255,0.95);
    color: var(--forest-900);
    backdrop-filter: blur(8px);
}
.accom-card-price {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.35rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    background: var(--gold);
    color: var(--forest-900);
}
.accom-card-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.accom-card-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--gray-500);
    margin-bottom: 0.75rem;
}
.accom-card-meta i { color: var(--green-medium); margin-right: 0.3rem; }
.accom-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--forest-900);
    margin-bottom: 0.5rem;
    font-family: var(--font-display);
    line-height: 1.3;
}
.accom-card-desc {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.6;
    flex: 1;
}
.accom-card-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-100);
    margin-top: 1rem;
}
.accom-card-rating {
    font-size: 0.85rem;
    color: var(--gold-400);
    font-weight: 600;
}
.accom-card-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--green-medium);
    display: flex;
    align-items: center;
    gap: 0.3rem;
    transition: gap 0.3s;
    text-decoration: none;
}
.accom-card-link:hover { gap: 0.6rem; color: var(--green-primary); }
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2rem;
}
.pagination a,
.pagination .page-info {
    padding: 0.6rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    text-decoration: none;
}
.pagination a {
    background: var(--white);
    border: 1px solid var(--line);
    color: var(--text-primary);
    transition: all 0.2s;
}
.pagination a:hover {
    background: var(--forest-900);
    color: var(--white);
    border-color: var(--forest-900);
}
.pagination .page-info {
    color: var(--text-muted);
    font-weight: 600;
}

@media (max-width: 992px) {
    .accom-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
}
@media (max-width: 768px) {
    .accom-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr; }
    .filter-form { flex-direction: column; align-items: stretch; }
    .filter-form input { min-width: auto; }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
    background: var(--green-deep);
    color: rgba(255,255,255,0.6);
    padding-top: var(--space-4xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-3xl);
    padding-bottom: var(--space-3xl);
}

.footer-brand img {
    height: 44px;
    margin-bottom: var(--space-md);
}

.footer-brand-text {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
}

.footer-about p {
    font-size: 0.9rem;
    line-height: 1.8;
    margin-top: var(--space-md);
}

.footer-contact {
    margin-top: var(--space-lg);
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.9rem;
    margin-bottom: var(--space-sm);
}

.footer-contact-item i {
    color: var(--green-accent);
    width: 20px;
}

.footer-contact-item a {
    color: rgba(255,255,255,0.6);
    transition: color 0.3s ease;
}

.footer-contact-item a:hover {
    color: var(--white);
}

.footer-social {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--green-medium);
}

.footer-col h4 {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: var(--space-lg);
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-col a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: var(--space-lg) 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

@media (max-width: 980px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: var(--space-sm);
        text-align: center;
    }
}




/* ==========================================================================
   PROMO BANNER
   ========================================================================== */
.promo-banner {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.promo-banner img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.promo-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(10,40,25,0.9) 0%, rgba(10,40,25,0.4) 60%, transparent 100%);
    z-index: 1;
}

.promo-content {
    position: relative;
    z-index: 10;
    padding: var(--space-3xl);
    max-width: 500px;
}

.promo-content .section-label {
    color: var(--green-accent);
}

.promo-content .section-label::before {
    background: var(--green-accent);
}

.promo-content h2 {
    color: var(--white);
    margin: var(--space-md) 0;
}

.promo-content p {
    color: rgba(255,255,255,0.8);
}



/* ==========================================================================
   HORIZON DIVIDER
   ========================================================================== */
.horizon-divider {
    width: 100%;
    height: 80px;
    overflow: hidden;
    line-height: 0;
}
.horizon-divider svg {
    width: 100%;
    height: 100%;
}

/* ==========================================================================
   PROMO BANNER
   ========================================================================== */
.daytrip-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-xl);
}

.daytrip-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}

.daytrip-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.daytrip-media {
    height: 300px;
    overflow: hidden;
}

.daytrip-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.7s ease;
}

.daytrip-card:hover .daytrip-media img {
    transform: scale(1.08);
}

.daytrip-body {
    padding: 1.3rem;
}

.daytrip-body h4 {
    font-size: 1.2rem;
    color: var(--green-deep);
    margin-bottom: 0.4rem;
}

.daytrip-body p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.daytrip-link {
    color: var(--green-medium);
    font-weight: 600;
    font-size: 0.9rem;
}

.daytrip-link i {
    margin-left: 0.3rem;
}

.daytrip-hidden {
    display: none;
    opacity: 0;
    transform: translateY(20px);
}

.daytrip-visible {
    animation: fadeInUp 0.5s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.daytrip-grid {
    transition: all 0.3s ease;
}

/* ==========================================================================
   WHY CHOOSE US
   ========================================================================== */
.whychoose-section {
    background: var(--sand);
    padding: var(--space-4xl) 0;
}

.whychoose-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.whychoose-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--green-deep);
    margin-bottom: 0.5rem;
}

.whychoose-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    margin-top: var(--space-3xl);
}

.whychoose-feature {
    display: flex;
    gap: var(--space-md);
}

.whychoose-feature-icon {
    background: var(--green-mist);
    width: 3.2rem;
    height: 3.2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-medium);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.whychoose-feature-text h4 {
    font-size: 1.1rem;
    color: var(--green-primary);
    margin-bottom: 0.25rem;
}

.whychoose-feature-text p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.whychoose-image {
    position: relative;
}

.whychoose-img-frame {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.whychoose-img-frame img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}

@media (max-width: 980px) {
    .whychoose-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    .whychoose-features {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   WELCOME SECTION
   ========================================================================== */
.welcome-section {
    padding: var(--space-4xl) 0;
    background: var(--white);
}

.welcome-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.welcome-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    color: var(--green-deep);
}

.welcome-text {
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
}

.welcome-features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.welcome-feature {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--green-primary);
    font-weight: 500;
}

.welcome-feature i {
    font-size: 1.2rem;
    color: var(--gold);
}

.welcome-image {
    position: relative;
}

.welcome-img-frame {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.welcome-img-frame img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.welcome-badge {
    position: absolute;
    bottom: -25px;
    right: -25px;
    background: var(--green-primary);
    color: var(--white);
    border-radius: 50%;
    width: 130px;
    height: 130px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 700;
    box-shadow: var(--shadow-lg);
}

.welcome-badge-number {
    font-family: var(--font-display);
    font-size: 2.2rem;
    line-height: 1;
}

.welcome-badge-text {
    font-size: 0.8rem;
}

@media (max-width: 980px) {
    .welcome-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    .welcome-image {
        order: -1;
    }
}

/* ==========================================================================
   QUICK FIND TABS
   ========================================================================== */
.quickfind {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin: -2rem auto 3rem;
    background: var(--white);
    border-radius: 60px;
    padding: 0.6rem;
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 5;
}

.quickfind-tab {
    padding: 0.8rem 1.8rem;
    border-radius: 40px;
    font-weight: 600;
    color: var(--text-secondary);
    transition: all var(--transition);
    font-size: 0.95rem;
}

.quickfind-tab i {
    margin-right: 0.3rem;
}

.quickfind-tab.active,
.quickfind-tab:hover {
    background: var(--green-primary);
    color: var(--white);
}

/* ==========================================================================
   PARTNERS
   ========================================================================== */
.partners-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: var(--space-3xl);
}

.partners-strip img {
    height: 80px;
    max-width: 180px;
    object-fit: contain;
    filter: grayscale(0);
    opacity: 1;
    transition: var(--transition);
}

.partners-strip img:hover {
    opacity: 0.8;
    transform: scale(1.05);
}

/* ==========================================================================
   TOUR CARDS (for index.php large cards)
   ========================================================================== */
.tour-grid-large {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-3xl);
}

.tour-card-large .tour-card-media {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.tour-card-large .tour-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.tour-card-large:hover .tour-card-media img {
    transform: scale(1.1);
}

.tour-card-large .tour-card-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--gold);
    color: var(--white);
    padding: 0.4rem 1.2rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: var(--shadow-sm);
}

.tour-card-large .tour-card-price {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: var(--green-deep);
    color: var(--white);
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
}

.tour-card-large .tour-card-body {
    padding: 1.5rem;
}

.tour-card-large .tour-card-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--green-deep);
    font-family: var(--font-display);
}

.tour-card-large .tour-card-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--ivory);
    padding-top: 1rem;
}

.tour-card-large .tour-card-rating {
    color: var(--gold);
    font-weight: 600;
}

.tour-card-large .tour-card-link {
    color: var(--green-medium);
    font-weight: 600;
    font-size: 0.9rem;
}

.tour-card-large .tour-card-link i {
    margin-left: 0.3rem;
}

/* ==========================================================================
   FINAL CTA SECTION
   ========================================================================== */
.final-cta {
    background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-primary) 100%);
    padding: var(--space-4xl) 0;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="%23ffffff" stroke-width="0.5" opacity="0.1"/></svg>');
    background-size: 200px;
    opacity: 0.3;
}

.final-cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.final-cta-content .eyebrow {
    color: var(--green-accent);
    margin-bottom: 1rem;
}

.final-cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: 1.5rem;
}

.final-cta-content .lede {
    color: rgba(255,255,255,0.85);
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
}

.final-cta-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1rem;
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.4);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--green-deep);
}

/* ---------- CUSTOM SAFARI CTA ---------- */
.custom-safari-cta {
    background: linear-gradient(135deg, var(--forest-900), var(--forest-700));
    border-radius: var(--radius-lg);
    padding: var(--space-3xl) var(--space-4xl);
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.custom-safari-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212,175,55,0.15) 0%, transparent 70%);
    border-radius: 50%;
}
.custom-safari-cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}
.custom-safari-cta-content h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin-bottom: 1rem;
    font-family: var(--font-display);
}
.custom-safari-cta-content p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
    background: var(--green-deep);
    color: rgba(255,255,255,0.7);
    position: relative;
}

.footer-wave {
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    color: var(--green-deep);
    transform: translateY(-99%);
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr repeat(4, 1fr);
    gap: var(--space-3xl);
    padding: var(--space-4xl) 0 var(--space-3xl);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 40px;
    width: auto;
}

.footer-logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.footer-tagline {
    color: var(--green-accent);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.6);
}

.footer-contact-info {
    margin-top: var(--space-lg);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.88rem;
}

.contact-item i {
    color: var(--green-accent);
    margin-top: 3px;
    font-size: 0.9rem;
}

.contact-item a {
    color: rgba(255,255,255,0.7);
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--white);
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: var(--space-lg);
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--green-accent);
    color: var(--green-deep);
    transform: translateY(-3px);
}

.footer-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: var(--space-lg);
    font-family: var(--font-body);
}

.footer-title i {
    color: var(--green-accent);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.65rem;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.footer-links a:hover {
    color: var(--white);
    transform: translateX(4px);
}

.footer-links .view-all a {
    color: var(--green-accent);
    font-weight: 500;
    margin-top: 0.5rem;
}

.footer-newsletter-col p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: var(--space-md);
}

.newsletter-form {
    margin-bottom: var(--space-lg);
}

.newsletter-input-group {
    display: flex;
    background: rgba(255,255,255,0.08);
    border-radius: 50px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.15);
}

.newsletter-input-group input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 0.8rem 1.2rem;
    color: var(--white);
    font-size: 0.9rem;
}

.newsletter-input-group input::placeholder {
    color: rgba(255,255,255,0.4);
}

.newsletter-input-group input:focus {
    outline: none;
}

.newsletter-btn {
    width: 48px;
    height: 48px;
    background: var(--green-accent);
    border: none;
    color: var(--green-deep);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background: var(--green-light);
}

.newsletter-note {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.4);
}

.footer-badges {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    margin-top: var(--space-lg);
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.6);
    background: rgba(255,255,255,0.05);
    padding: 0.5rem 0.85rem;
    border-radius: 20px;
}

.badge-item i {
    color: var(--green-accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: var(--space-lg) 0;
    margin-top: var(--space-lg);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.copyright {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

.copyright strong {
    color: var(--white);
}

.footer-credit {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

.footer-credit i {
    color: #e53e3e;
    animation: heartbeat 1.5s ease infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

@media (max-width: 980px) {
    .footer-main {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-brand-col {
        grid-column: span 2;
        max-width: 500px;
    }
}

@media (max-width: 640px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-xl);
    }
    .footer-brand-col {
        grid-column: span 2;
    }
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    .final-cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    .footer-badges {
        justify-content: center;
    }
}

/* ==========================================================================
   COOKIE BANNER
   ========================================================================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--green-deep);
    color: var(--white);
    padding: var(--space-lg) var(--space-xl);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    display: none;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.4s ease;
}

.cookie-banner.visible {
    opacity: 1;
    transform: translateY(0);
}

.cookie-banner-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.cookie-icon {
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--green-accent);
    flex-shrink: 0;
}

.cookie-content {
    flex: 1;
    min-width: 200px;
}

.cookie-content strong {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--white);
}

.cookie-content p {
    margin: 0 0 0.5rem;
    font-size: 0.88rem;
    opacity: 0.9;
}

.cookie-link {
    color: var(--green-accent);
    text-decoration: underline;
    font-size: 0.85rem;
}

.cookie-actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.cookie-btn-accept {
    background: var(--green-accent);
    color: var(--green-deep);
}

.cookie-btn-accept:hover {
    background: var(--green-light);
}

.cookie-btn-decline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.3);
}

.cookie-btn-decline:hover {
    background: rgba(255,255,255,0.1);
}

@media (max-width: 768px) {
    .cookie-banner-inner {
        flex-direction: column;
        text-align: center;
    }
    .cookie-actions {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================================================
   RESPONSIVE FIXES
   ========================================================================== */
@media (max-width: 768px) {
    .tour-grid, .dest-grid, .testi-grid {
        max-width: 100%;
    }
    .quickfind {
        margin: -20px auto var(--space-xl);
        padding: 0 var(--space-md);
    }
    .quickfind-tab {
        padding: 12px 16px;
        font-size: 0.8rem;
        white-space: nowrap;
    }
    .welcome-section {
        padding: var(--space-2xl) 0;
    }
    .welcome-badge {
        bottom: -10px;
        left: -10px;
        padding: var(--space-md);
    }
    .welcome-badge-number {
        font-size: 1.8rem;
    }
    .promo-banner {
        min-height: 300px;
    }
    .promo-content {
        padding: var(--space-xl);
        max-width: 100%;
    }
    .partners-strip {
        gap: var(--space-xl);
    }
    .partners-strip img {
        height: 28px;
    }
    .float-whatsapp {
        width: 50px;
        height: 50px;
        bottom: var(--space-md);
        right: var(--space-md);
        font-size: 1.2rem;
    }
    .back-to-top {
        width: 44px;
        height: 44px;
        bottom: var(--space-md);
        right: 60px;
        font-size: 1rem;
    }
    .section {
        padding: var(--space-2xl) 0;
    }
    .carousel-content-inner,
    .promo-content,
    .cta-content,
    .section-subtitle,
    p {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
    .container {
        padding: 0 var(--space-sm);
    }
    .carousel-content-inner {
        width: 95%;
        padding: var(--space-lg) var(--space-md);
    }
    .carousel-title {
        font-size: clamp(2rem, 10vw, 3rem);
    }
    .carousel-subtitle {
        font-size: 1rem;
    }
    .quickfind {
        flex-direction: column;
        align-items: stretch;
    }
    .quickfind-tab {
        justify-content: center;
    }
    .site-footer {
        padding-top: var(--space-2xl);
    }
    .footer-grid {
        gap: var(--space-xl);
    }
}

@media (max-width: 600px) {
    .whatsapp-float span {
        display: none;
    }
    .whatsapp-float {
        padding: 0.9rem;
        border-radius: 50%;
        right: 1rem;
        bottom: 1rem;
    }
    .whatsapp-float i {
        font-size: 1.5rem;
    }
    .back-to-top {
        left: 1rem;
        bottom: 1rem;
        width: 44px;
        height: 44px;
    }
}
</style>
