@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;
    
    --gold: #b8965a;
    --gold-light: #d4b87a;
    --gold-dark: #967a42;
    
    /* 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);
}

/* Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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-xl);
}

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

.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 44px;
}

.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);
    transition: color 0.3s ease;
}

.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);
    transition: color 0.3s ease;
}

.topbar-social a:hover {
    color: var(--white);
}

@media (max-width: 768px) {
    .topbar-links, .tb-divider {
        display: none;
    }
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 200;
    border-bottom: 1px solid var(--ivory);
}

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

.brand {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.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-3xl);
}

.main-nav ul {
    display: flex;
    gap: var(--space-xl);
}

.main-nav a {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--text-secondary);
    padding: var(--space-sm) 0;
    position: relative;
    transition: color 0.3s ease;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--green-medium);
    transition: width 0.3s ease;
}

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

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--green-deep);
    cursor: pointer;
}

@media (max-width: 980px) {
    .brand-text {
        display: none;
    }
    
    .site-header .container {
        height: 70px;
    }
    
    .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: 199;
        overflow-y: auto;
    }
    
    .main-nav.mobile-open {
        transform: translateX(0);
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 0;
    }
    
    .main-nav li {
        border-bottom: 1px solid var(--ivory);
    }
    
    .main-nav 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%;
    }
    
    .menu-toggle {
        display: block;
    }
}

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

/* ==========================================================================
   SECTIONS
   ========================================================================== */
.section {
    padding: var(--space-4xl) 0;
}

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

@media (max-width: 980px) {
    .tour-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .tour-grid {
        grid-template-columns: 1fr;
    }
}

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

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

/* ==========================================================================
   FLOATING ELEMENTS
   ========================================================================== */
.float-whatsapp {
    position: fixed;
    bottom: var(--space-lg);
    right: var(--space-lg);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    z-index: 1000;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.float-whatsapp:hover {
    transform: scale(1.1);
}

.back-to-top {
    position: fixed;
    bottom: var(--space-lg);
    right: 80px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--green-primary);
    color: var(--white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--green-medium);
}

/* ==========================================================================
   QUICK FIND TABS
   ========================================================================== */
.quickfind {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
    margin: -30px auto var(--space-3xl);
    position: relative;
    z-index: 10;
    flex-wrap: wrap;
}

.quickfind-tab {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 14px 28px;
    background: var(--white);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.quickfind-tab:hover,
.quickfind-tab.active {
    background: var(--green-primary);
    color: var(--white);
}

.quickfind-tab i {
    font-size: 0.9rem;
}

/* ==========================================================================
   WELCOME SECTION
   ========================================================================== */
.welcome-section {
    padding: var(--space-4xl) 0;
}

.welcome-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.welcome-image {
    position: relative;
}

.welcome-img-frame {
    border-radius: var(--radius-md);
    overflow: hidden;
}

.welcome-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--green-primary);
    color: var(--white);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    text-align: center;
}

.welcome-badge-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.welcome-badge-text {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: var(--space-xs);
}

@media (max-width: 980px) {
    .welcome-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .welcome-image {
        order: -1;
    }
}

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

/* ==========================================================================
   COOKIE BANNER
   ========================================================================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9998;
    background: var(--green-deep);
    color: var(--white);
    padding: var(--space-lg) var(--space-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-banner-text {
    max-width: 600px;
    font-size: 0.85rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.8);
}

.cookie-banner-text a {
    color: var(--green-accent);
    text-decoration: underline;
}

.cookie-btn {
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.85rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn-accept {
    background: var(--green-medium);
    color: var(--white);
}

.cookie-btn-accept:hover {
    background: var(--green-light);
}

.cookie-btn-decline {
    background: transparent;
    color: rgba(255,255,255,0.6);
    border: 1px solid rgba(255,255,255,0.2);
}

.cookie-btn-decline:hover {
    border-color: rgba(255,255,255,0.4);
}