/* ============================================
   GoSavanna Safaris - Premium Luxury Stylesheet
   Designed for: Emotional storytelling & conversion
   Color Palette: Deep Savanna Gold, Maasai Red, Earth Browns
   ============================================ */

/* ============================================
   ITINERARY MODAL
   ============================================ */

/* Modal Overlay */
.itinerary-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.itinerary-modal.active {
    opacity: 1;
    visibility: visible;
}

/* Modal Overlay Background */
.itinerary-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

/* Modal Container */
.itinerary-modal-container {
    position: relative;
    width: 90%;
    max-width: 800px;
    max-height: 85vh;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 1001;
}

.itinerary-modal.active .itinerary-modal-container {
    transform: scale(1) translateY(0);
}

/* Modal Close Button */
.itinerary-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(201, 162, 39, 0.1);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--savanna-gold);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 1002;
}

.itinerary-modal-close:hover {
    background: var(--savanna-gold);
    color: white;
    transform: rotate(90deg);
}

/* Modal Content */
.itinerary-modal-content {
    padding: 2rem;
    overflow-y: auto;
    max-height: 85vh;
}

/* Custom Scrollbar */
.itinerary-modal-content::-webkit-scrollbar {
    width: 8px;
}

.itinerary-modal-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.itinerary-modal-content::-webkit-scrollbar-thumb {
    background: var(--savanna-gold);
    border-radius: 4px;
}

.itinerary-modal-content::-webkit-scrollbar-thumb:hover {
    background: #b8941f;
}

/* Modal Header */
.itinerary-modal-content h2 {
    color: var(--savanna-green);
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    padding-right: 3rem;
}

.itinerary-modal-content .tour-meta {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Day Cards in Modal */
.itinerary-modal-content .day-card {
    margin-bottom: 1.5rem;
    padding: 1.25rem;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid var(--savanna-gold);
}

.itinerary-modal-content .day-card h5 {
    color: var(--savanna-green);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.itinerary-modal-content .day-card p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.itinerary-modal-content .day-card .meals {
    color: var(--savanna-gold);
    font-weight: 500;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Inclusions & Exclusions in Modal */
.itinerary-modal-content .inclusions-section,
.itinerary-modal-content .exclusions-section {
    margin-bottom: 1.5rem;
    padding: 1.25rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.itinerary-modal-content .inclusions-section {
    border-left: 4px solid var(--savanna-gold);
}

.itinerary-modal-content .exclusions-section {
    border-left: 4px solid #ccc;
}

.itinerary-modal-content .inclusions-section h5,
.itinerary-modal-content .exclusions-section h5 {
    font-size: 1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.itinerary-modal-content .inclusions-section h5 {
    color: var(--savanna-gold);
}

.itinerary-modal-content .exclusions-section h5 {
    color: #888;
}

.itinerary-modal-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.itinerary-modal-content li {
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.itinerary-modal-content .inclusions-section li::before {
    content: '•';
    color: var(--savanna-gold);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.itinerary-modal-content .exclusions-section li::before {
    content: '•';
    color: #ccc;
    position: absolute;
    left: 0;
}

/* Optional Activities in Modal */
.itinerary-modal-content .optional-activities {
    margin-bottom: 1.5rem;
    padding: 1.25rem;
    background: rgba(201, 162, 39, 0.08);
    border-radius: 12px;
    border-left: 4px solid var(--savanna-gold);
}

.itinerary-modal-content .optional-activities h5 {
    color: var(--savanna-gold);
    font-size: 1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .itinerary-modal-container {
        width: 95%;
        max-height: 90vh;
        border-radius: 12px;
    }

    .itinerary-modal-content {
        padding: 1.5rem;
    }

    .itinerary-modal-content h2 {
        font-size: 1.5rem;
    }

    .itinerary-modal-close {
        top: 12px;
        right: 12px;
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 480px) {
    .itinerary-modal-container {
        width: 100%;
        max-height: 100vh;
        border-radius: 0;
    }

    .itinerary-modal-content {
        padding: 1.25rem;
        max-height: 100vh;
    }

    .itinerary-modal-content h2 {
        font-size: 1.25rem;
    }
}

/* Body scroll lock when modal is open */
body.modal-open {
    overflow: hidden;
}

/* ============================================
   FOOTER
   ============================================ */
:root {
    /* Primary Luxury Colors */
    --savanna-gold: #C9A227;           /* Deep Savanna Gold - Primary */
    --savanna-gold-light: #D4B84A;     /* Light Gold */
    --savanna-gold-dark: #A88420;      /* Dark Gold */
    --maasai-red: #B8321A;             /* Warm Maasai Red - Accent */
    --maasai-red-light: #D94E32;       /* Light Red */
    --earth-brown: #3D2914;            /* Deep Earth Brown */
    --earth-brown-light: #5D4037;      /* Light Brown */
    --ivory: #FAF8F3;                  /* Clean Ivory Background */
    --ivory-dark: #F5F0E8;             /* Darker Ivory */

    /* Supporting Colors */
    --savanna-green: #2D5016;          /* Natural Safari Green */
    --sunset-orange: #E07B39;          /* Sunset Accent */
    --text-primary: #1A1A1A;           /* Near Black */
    --text-secondary: #4A4A4A;         /* Dark Gray */
    --text-muted: #6B6B6B;             /* Medium Gray */
    --text-light: #FFFFFF;             /* White */

    /* Effects */
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-heavy: 0 20px 60px rgba(0, 0, 0, 0.15);
    --shadow-gold: 0 8px 30px rgba(201, 162, 39, 0.25);
    --shadow-red: 0 8px 30px rgba(184, 50, 26, 0.25);

    /* Transitions */
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-luxury: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);

    /* Spacing & Layout */
    --max-width: 1400px;
    --section-padding: 6rem;
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;

    /* Typography Scale */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ============================================
   FONT IMPORTS
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600;700&display=swap');

/* ============================================
   RESET & BASE STYLES
   ============================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--ivory);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

/* ============================================
   TYPOGRAPHY - LUXURY HIERARCHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1.25rem;
    color: var(--earth-brown);
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    letter-spacing: -0.01em;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
}

p {
    margin-bottom: 1.25rem;
    color: var(--text-secondary);
    font-size: 1.0625rem;
    line-height: 1.8;
}

.text-gold { color: var(--savanna-gold); }
.text-red { color: var(--maasai-red); }
.text-brown { color: var(--earth-brown); }
.text-light { color: var(--text-light); }

/* ============================================
   LUXURY CONTAINER & LAYOUT
   ============================================ */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.container-narrow {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-muted);
}

.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--savanna-gold);
    margin-bottom: 1rem;
}

/* ============================================
   PREMIUM BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    text-align: center;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: var(--transition-slow);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--savanna-gold), var(--savanna-gold-dark));
    color: var(--text-light);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(201, 162, 39, 0.35);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-secondary:hover {
    background: var(--text-light);
    color: var(--earth-brown);
    border-color: var(--text-light);
}

.btn-outline {
    background: transparent;
    color: var(--earth-brown);
    border: 2px solid var(--earth-brown);
}

.btn-outline:hover {
    background: var(--earth-brown);
    color: var(--text-light);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: var(--text-light);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1rem;
}

/* ============================================
   LUXURY HEADER & NAVIGATION
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: var(--transition-smooth);
    padding: 1.5rem 0;
}

.header.scrolled {
    background: rgba(250, 248, 243, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-soft);
    padding: 1rem 0;
}

.header.scrolled .logo {
    color: var(--earth-brown);
}

.header.scrolled .nav-link {
    color: var(--text-primary);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-light);
    transition: var(--transition-smooth);
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--savanna-gold), var(--maasai-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.25rem;
    box-shadow: 0 4px 15px rgba(201, 162, 39, 0.3);
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    color: var(--text-light);
    position: relative;
    padding: 0.5rem 0;
    font-size: 0.9375rem;
    letter-spacing: 0.02em;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--savanna-gold);
    transition: var(--transition-smooth);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--savanna-gold);
}

.nav-cta {
    background: var(--savanna-gold);
    color: var(--text-light) !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 100px;
    font-weight: 600;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: var(--savanna-gold-dark);
    transform: translateY(-2px);
}

/* Navigation Decorative Bubble */
.nav-decoration-bubble {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--savanna-gold), var(--maasai-red));
    border-radius: 50%;
    position: relative;
    cursor: default;
}

.nav-decoration-bubble::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.6;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
    z-index: 1001;
}

.menu-toggle span {
    width: 28px;
    height: 2px;
    background: var(--text-light);
    transition: var(--transition-smooth);
    border-radius: 2px;
}

.header.scrolled .menu-toggle span {
    background: var(--earth-brown);
}

/* Hide decorative bubble in mobile menu */
.nav-menu.active .nav-decoration-bubble {
    display: none;
}

/* Mobile menu styling */
@media (max-width: 992px) {
    .nav-menu {
        background: rgba(250, 248, 243, 0.98);
        backdrop-filter: blur(20px);
        padding: 3rem 2rem;
        gap: 2rem;
        height: 100vh;
        overflow-y: auto;
    }

    .nav-link {
        color: var(--earth-brown);
        font-size: 1.5rem;
        font-weight: 600;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .nav-link:hover,
    .nav-link.active {
        color: var(--savanna-gold);
    }

    .nav-link::after {
        display: none;
    }
}

/* ============================================
   CINEMATIC HERO SECTION
   ============================================ */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.1);
    transition: transform 8s ease-out;
}

.hero-slide.active .hero-slide-bg {
    transform: scale(1);
    animation: kenBurns 20s ease-out forwards;
}

@keyframes kenBurns {
    0% { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.1) translate(-2%, -1%); }
}

.hero-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(61, 41, 20, 0.88) 0%,
        rgba(61, 41, 20, 0.5) 50%,
        rgba(184, 50, 26, 0.4) 100%
    );
}

.hero-slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--text-light);
    max-width: 900px;
    padding: 2rem;
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}

.hero-slide.active .hero-slide-content {
    opacity: 1;
    transform: translateY(0);
}

.hero-slide-content h1 {
    font-size: clamp(2.75rem, 7vw, 5rem);
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6), 0 4px 20px rgba(0, 0, 0, 0.4);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: #FFFFFF;
}

.hero-slide-content h1 em {
    font-style: italic;
    color: var(--savanna-gold);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7), 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-slide-content p {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    margin-bottom: 2.5rem;
    color: #FFFFFF;
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.hero-buttons {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Slider Navigation */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.25rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    z-index: 10;
}

.slider-arrow:hover {
    background: var(--savanna-gold);
    border-color: var(--savanna-gold);
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev { left: 2.5rem; }
.slider-arrow.next { right: 2.5rem; }

/* Slider Indicators */
.slider-indicators {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.slider-indicator {
    width: 50px;
    height: 4px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    position: relative;
    overflow: hidden;
}

.slider-indicator::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--savanna-gold);
    transition: width 0.3s ease;
}

.slider-indicator.active::after {
    width: 100%;
    animation: indicatorProgress 5s linear;
}

@keyframes indicatorProgress {
    from { width: 0; }
    to { width: 100%; }
}

.slider-indicator:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    animation: fadeInUp 1s ease 1s both;
}

.scroll-indicator i {
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

/* ============================================
   INTERACTIVE SAFARI JOURNEY SECTION
   ============================================ */
.safari-journey {
    position: relative;
    padding: 8rem 0;
    background: var(--earth-brown);
    overflow: hidden;
}

.journey-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 2;
}

.journey-header h2 {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.journey-header h2 em {
    font-style: italic;
    color: var(--savanna-gold);
}

.journey-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.125rem;
}

.journey-scenes {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.journey-scene {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
    opacity: 0;
    transform: translateY(60px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.journey-scene.visible {
    opacity: 1;
    transform: translateY(0);
}

.journey-scene:nth-child(even) {
    direction: rtl;
}

.journey-scene:nth-child(even) > * {
    direction: ltr;
}

.journey-scene-image {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.journey-scene-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(61, 41, 20, 0.6), transparent 50%);
    z-index: 2;
}

.journey-scene-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: transform 1s ease;
}

.journey-scene:hover .journey-scene-image img {
    transform: scale(1.05);
}

.journey-scene-number {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 80px;
    height: 80px;
    background: var(--savanna-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-light);
    z-index: 3;
    box-shadow: var(--shadow-gold);
}

.journey-scene-content {
    padding: 2rem 0;
}

.journey-scene-content h3 {
    color: var(--text-light);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.journey-scene-content h3 em {
    font-style: italic;
    color: var(--savanna-gold);
}

.journey-scene-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.125rem;
    line-height: 1.9;
    margin-bottom: 2rem;
}

.journey-quote {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.25rem;
    color: var(--savanna-gold);
    padding-left: 1.5rem;
    border-left: 3px solid var(--savanna-gold);
}

/* Journey Progress Line */
.journey-progress {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-50%);
}

.journey-progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--savanna-gold);
    transition: height 0.5s ease;
}

/* ============================================
   TRUST & SOCIAL PROOF SECTION
   ============================================ */
.trust-section {
    padding: 6rem 0;
    background: var(--ivory);
}

.trust-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 5rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: var(--text-light);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 600;
    color: var(--savanna-gold);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9375rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Testimonials */
.testimonials-luxury {
    background: linear-gradient(135deg, var(--earth-brown) 0%, #2a1c0d 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.testimonials-luxury::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.testimonials-luxury .section-header h2 {
    color: var(--text-light);
}

.testimonials-luxury .section-header p {
    color: rgba(255, 255, 255, 0.7);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card-luxury {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-md);
    padding: 2.5rem;
    transition: var(--transition-smooth);
    position: relative;
}

.testimonial-card-luxury:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-10px);
    border-color: rgba(201, 162, 39, 0.3);
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.testimonial-rating i {
    color: var(--savanna-gold);
    font-size: 0.875rem;
}

.testimonial-quote {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author-luxury {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author-luxury img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--savanna-gold);
}

.testimonial-author-luxury h4 {
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.testimonial-author-luxury span {
    font-size: 0.875rem;
    color: var(--savanna-gold);
}

.testimonial-verified {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    color: #25D366;
    margin-top: 0.25rem;
}

/* Why Choose Icons */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.why-choose-item {
    text-align: center;
    padding: 2rem 1.5rem;
}

.why-choose-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--savanna-gold), var(--savanna-gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--text-light);
    font-size: 1.75rem;
    box-shadow: var(--shadow-gold);
    transition: var(--transition-smooth);
}

.why-choose-item:hover .why-choose-icon {
    transform: scale(1.1) rotate(5deg);
}

.why-choose-item h4 {
    color: var(--earth-brown);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.why-choose-item p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* ============================================
   LUXURY TOUR SHOWCASE
   ============================================ */
.tours-luxury {
    padding: 6rem 0;
    background: var(--ivory-dark);
}

.tours-grid-luxury {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.tour-card-luxury {
    background: var(--text-light);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    position: relative;
}

.tour-card-luxury:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-heavy);
}

.tour-card-luxury::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--savanna-gold), var(--maasai-red));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.tour-card-luxury:hover::before {
    transform: scaleX(1);
}

.tour-image-luxury {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.tour-image-luxury img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.tour-card-luxury:hover .tour-image-luxury img {
    transform: scale(1.1);
}

.tour-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(61, 41, 20, 0.8), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.tour-card-luxury:hover .tour-image-overlay {
    opacity: 1;
}

.tour-quick-view {
    color: var(--text-light);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease 0.1s;
}

.tour-card-luxury:hover .tour-quick-view {
    transform: translateY(0);
    opacity: 1;
}

.tour-badges {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.tour-badge-luxury {
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.tour-badge-luxury.popular {
    background: var(--maasai-red);
    color: var(--text-light);
}

.tour-badge-luxury.luxury {
    background: var(--savanna-gold);
    color: var(--text-light);
}

.tour-badge-luxury.value {
    background: var(--savanna-green);
    color: var(--text-light);
}

.tour-content-luxury {
    padding: 2rem;
}

.tour-content-luxury h3 {
    color: var(--earth-brown);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.tour-meta-luxury {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.tour-meta-luxury span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    color: var(--text-muted);
}

.tour-meta-luxury i {
    color: var(--savanna-gold);
}

.tour-description {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.tour-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.tour-price-luxury {
    display: flex;
    flex-direction: column;
}

.tour-price-luxury .from {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.tour-price-luxury .price {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--savanna-gold);
}

.tour-price-luxury .per {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.tour-actions {
    display: flex;
    gap: 0.75rem;
}

.btn-tour {
    padding: 0.75rem 1.25rem;
    font-size: 0.8125rem;
}

.btn-tour-whatsapp {
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 50%;
    background: #25D366;
    color: var(--text-light);
}

/* Recently Viewed Section */
.recently-viewed {
    padding: 4rem 0;
    background: var(--text-light);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.recently-viewed-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.recently-viewed-header h3 {
    font-size: 1.25rem;
    color: var(--earth-brown);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.recently-viewed-header h3 i {
    color: var(--savanna-gold);
}

.recently-viewed-grid {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding-bottom: 1rem;
    scrollbar-width: thin;
    scrollbar-color: var(--savanna-gold) transparent;
}

.recently-viewed-grid::-webkit-scrollbar {
    height: 6px;
}

.recently-viewed-grid::-webkit-scrollbar-track {
    background: transparent;
}

.recently-viewed-grid::-webkit-scrollbar-thumb {
    background: var(--savanna-gold);
    border-radius: 3px;
}

.recent-tour-card {
    flex-shrink: 0;
    width: 280px;
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: var(--ivory);
    border-radius: var(--border-radius-md);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.recent-tour-card:hover {
    background: var(--ivory-dark);
    transform: translateX(5px);
}

.recent-tour-card img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--border-radius-sm);
}

.recent-tour-info h4 {
    font-size: 0.9375rem;
    color: var(--earth-brown);
    margin-bottom: 0.25rem;
}

.recent-tour-info .price {
    font-weight: 600;
    color: var(--savanna-gold);
}

/* ============================================
   STICKY FEATURES
   ============================================ */

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 100px;
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.9375rem;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    transition: var(--transition-smooth);
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float a i {
    font-size: 1.5rem;
}

.whatsapp-float a:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5);
}

.whatsapp-float .whatsapp-label {
    display: block;
}

@keyframes pulse-whatsapp {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Exit Intent Popup */
.exit-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.exit-popup.active {
    display: flex;
    opacity: 1;
}

.exit-popup-content {
    background: var(--text-light);
    border-radius: var(--border-radius-lg);
    max-width: 600px;
    width: 90%;
    padding: 3rem;
    text-align: center;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: var(--shadow-heavy);
}

.exit-popup.active .exit-popup-content {
    transform: scale(1);
}

.exit-popup-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: var(--ivory);
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.exit-popup-close:hover {
    background: var(--maasai-red);
    color: var(--text-light);
}

.exit-popup-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--savanna-gold), var(--maasai-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--text-light);
    font-size: 2rem;
}

.exit-popup h3 {
    color: var(--earth-brown);
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.exit-popup p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.exit-popup-form {
    display: flex;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.exit-popup-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 100px;
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.exit-popup-form input:focus {
    outline: none;
    border-color: var(--savanna-gold);
}

/* ============================================
   MAASAI CULTURE SECTION - ENHANCED
   ============================================ */
.maasai-culture {
    padding: 6rem 0;
    background: var(--text-light);
    position: relative;
}

.culture-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.culture-card {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    background: var(--text-light);
}

.culture-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.culture-image {
    position: relative;
    height: 320px;
    overflow: hidden;
}

.culture-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.culture-card:hover .culture-image img {
    transform: scale(1.1);
}

.culture-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(61, 41, 20, 0.9), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.culture-card:hover .culture-image-overlay {
    opacity: 1;
}

.culture-content {
    padding: 2rem;
    text-align: center;
}

.culture-content h3 {
    color: var(--earth-brown);
    margin-bottom: 0.75rem;
}

.culture-content p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.culture-icon {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 50px;
    height: 50px;
    background: var(--savanna-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.25rem;
    z-index: 2;
    box-shadow: var(--shadow-gold);
}

/* ============================================
   ABOUT PREVIEW SECTION
   ============================================ */
.about-preview {
    padding: 6rem 0;
    background: var(--ivory);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
}

.about-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.2), transparent);
    z-index: 1;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-content h2 {
    color: var(--earth-brown);
    margin-bottom: 1.5rem;
}

.about-content h2 em {
    font-style: italic;
    color: var(--savanna-gold);
}

.about-content .highlight {
    color: var(--maasai-red);
    font-weight: 600;
    font-size: 1.125rem;
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery-section {
    padding: 6rem 0;
    background: var(--text-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(61, 41, 20, 0.8), transparent);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: var(--text-light);
    font-size: 1.5rem;
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox img {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: var(--border-radius-md);
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox.active img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover {
    background: var(--maasai-red);
    transform: rotate(90deg);
}

/* ============================================
   FOOTER - LUXURY
   ============================================ */
.footer {
    background: var(--earth-brown);
    color: var(--text-light);
    padding: 5rem 0 2rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--savanna-gold), var(--maasai-red), var(--savanna-gold));
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand h3 {
    color: var(--text-light);
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-brand h3 i {
    color: var(--savanna-gold);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.footer-links h4 {
    color: var(--savanna-gold);
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.footer-links ul li {
    margin-bottom: 0.875rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-smooth);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--savanna-gold);
    transform: translateX(5px);
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.875rem;
}

.footer-contact i {
    color: var(--savanna-gold);
    width: 20px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: var(--transition-smooth);
}

.social-links a:hover {
    background: var(--savanna-gold);
    transform: translateY(-5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9375rem;
    margin-bottom: 0.5rem;
}

.footer-bottom .developer {
    color: var(--savanna-gold);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Reveal Animation Classes */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

/* Stagger delays */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1200px) {
    .tours-grid-luxury {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-stats,
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .container {
        padding: 0 1.5rem;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(250, 248, 243, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        padding: 2rem;
        gap: 2rem;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        opacity: 1;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-link {
        color: var(--earth-brown);
        font-size: 1.25rem;
    }

    .menu-toggle {
        display: flex;
    }

    .about-grid,
    .journey-scene {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .journey-scene:nth-child(even) {
        direction: ltr;
    }

    .journey-progress {
        display: none;
    }

    .culture-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }

    .slider-arrow.prev { left: 1rem; }
    .slider-arrow.next { right: 1rem; }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 4rem;
    }

    .hero-slider {
        min-height: 100vh;
    }

    .hero-slide-content {
        padding: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
    }

    .tours-grid-luxury,
    .culture-grid,
    .testimonials-grid,
    .trust-stats,
    .why-choose-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .whatsapp-float a {
        padding: 1rem;
    }

    .whatsapp-float .whatsapp-label {
        display: none;
    }

    .exit-popup-form {
        flex-direction: column;
    }

    .journey-scene-image {
        height: 300px;
    }

    .journey-scene-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        top: -10px;
        left: -10px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .tour-content-luxury {
        padding: 1.5rem;
    }

    .testimonial-card-luxury {
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.hidden { display: none !important; }
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Loading State */
.loading {
    position: relative;
    overflow: hidden;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: shimmer 1.5s infinite;
}

/* Focus States for Accessibility */
a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--savanna-gold);
    outline-offset: 2px;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}

/* Navigation Decorative Bubble */
.nav-decoration-bubble {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--savanna-gold), var(--maasai-red));
    border-radius: 50%;
    position: relative;
    cursor: default;
}

.nav-decoration-bubble::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.6;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
}