/* ================================
   EXCLUSIVE SAFARI EXPERIENCES PAGE
   ================================ */

:root {
    --primary-gold: #D4AF37;
    --dark-brown: #3E2723;
    --light-cream: #FAF8F3;
    --accent-green: #2C5F2D;
    --text-dark: #2C2C2C;
    --text-light: #666666;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body.experiences-page {
    font-family: 'Lora', serif;
    color: var(--text-dark);
    line-height: 1.8;
    overflow-x: hidden;
    background: #fff;
}

/* ================================
   NAVIGATION STYLES
   ================================ */

.main-navigation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent !important;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    z-index: 1000;
    transition: all 0.4s ease;
}

.main-navigation.scrolled {
    background: rgba(250, 248, 243, 0.95) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}

.nav-logo {
    flex-shrink: 0;
}

.logo-img {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease, filter 0.3s ease;
    /* Remove the white filter - logo should be visible on all backgrounds */
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.3));
}

.main-navigation.scrolled .logo-img {
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.1));
}

.logo-img:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    gap: 45px;
}

.nav-menu li a {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 8px 0;
    transition: color 0.3s ease;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.main-navigation.scrolled .nav-menu li a {
    color: #3E2723;
    text-shadow: none;
}

.main-navigation.scrolled .mobile-menu-toggle span {
    background: var(--dark-brown);
}

.nav-menu li a:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: width 0.3s ease;
}

.nav-menu li a:hover:before,
.nav-menu li a.active:before {
    width: 100%;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--primary-gold);
}

.nav-menu li a.nav-cta {
    background: var(--primary-gold);
    color: #fff;
    padding: 12px 28px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.nav-menu li a.nav-cta:before {
    display: none;
}

.nav-menu li a.nav-cta:hover {
    background: #C19B2F;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

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

.container-fluid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ================================
   HERO SECTION
   ================================ */

.hero-experience {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(135deg, #1a1a1a 0%, #4a3f35 100%);
    background-image: url('https://images.unsplash.com/photo-1516426122078-c23e76319801?w=1920');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.5) 0%,
            rgba(0, 0, 0, 0.3) 50%,
            rgba(0, 0, 0, 0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 900px;
    padding: 90px 20px 0;
}

.hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--primary-gold);
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeInUp 1s forwards;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(40px, 7vw, 80px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeInUp 1s 0.3s forwards;
}

.hero-description {
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeInUp 1s 0.6s forwards;
}

.cta-button {
    display: inline-block;
    padding: 18px 45px;
    background: var(--primary-gold);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s ease;
    opacity: 0;
    animation: fadeInUp 1s 0.9s forwards;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
    background: #E5C158;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-indicator span {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 25px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    width: 6px;
    height: 6px;
    margin-left: -3px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: scrollDown 2s infinite;
}

@keyframes scrollDown {

    0%,
    100% {
        opacity: 0;
        top: 10px;
    }

    50% {
        opacity: 1;
        top: 25px;
    }
}

/* ================================
   INTRODUCTION SECTION
   ================================ */

.intro-section {
    padding: 120px 0;
    background: var(--light-cream);
}

.intro-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.section-tag {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-gold);
    margin-bottom: 20px;
    padding: 8px 20px;
    border: 1px solid var(--primary-gold);
    border-radius: 20px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    color: var(--dark-brown);
    margin-bottom: 30px;
    line-height: 1.3;
}

.intro-text p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
}

/* ================================
   EXPERIENCE GRID
   ================================ */

.experience-grid {
    padding: 80px 0;
    background: #fff;
}

.experience-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 100px;
    align-items: center;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.experience-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.experience-card.reverse {
    direction: rtl;
}

.experience-card.reverse>* {
    direction: ltr;
}

.experience-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    height: 500px;
}

.experience-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.experience-card:hover .experience-image img {
    transform: scale(1.1);
}

.experience-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 40px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.experience-card:hover .experience-overlay {
    opacity: 1;
}

.experience-icon {
    font-size: 60px;
    filter: grayscale(1) brightness(2);
}

.experience-info {
    padding: 20px;
}

.experience-category {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-gold);
    margin-bottom: 15px;
}

.experience-name {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--dark-brown);
    margin-bottom: 20px;
    line-height: 1.3;
}

.experience-desc {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 25px;
}

.experience-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.feature-badge {
    display: inline-block;
    padding: 8px 16px;
    background: var(--light-cream);
    color: var(--dark-brown);
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.feature-badge:hover {
    background: var(--primary-gold);
    color: #fff;
}

.learn-more {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--dark-brown);
    text-decoration: none;
    transition: all 0.3s ease;
}

.learn-more:hover {
    color: var(--primary-gold);
    padding-left: 10px;
}

/* ================================
   STATS SECTION
   ================================ */

.stats-section {
    padding: 100px 0;
    background: var(--dark-brown);
    color: #fff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 60px;
    text-align: center;
}

.stat-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.stat-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 10px;
}

.stat-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
}

/* ================================
   TESTIMONIAL SECTION
   ================================ */

.testimonial-section {
    padding: 120px 0;
    background: var(--light-cream);
}

.testimonial-slider {
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-card {
    text-align: center;
    padding: 60px 40px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.6s ease;
}

.testimonial-card.visible {
    opacity: 1;
    transform: scale(1);
}

.quote-icon {
    font-size: 80px;
    color: var(--primary-gold);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 30px;
}

.testimonial-text {
    font-size: 20px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 40px;
    font-style: italic;
}

.testimonial-author {
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.author-name {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-brown);
    margin-bottom: 5px;
}

.author-location {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    color: var(--text-light);
    letter-spacing: 1px;
}

/* ================================
   CTA SECTION
   ================================ */

.cta-section {
    position: relative;
    padding: 150px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #4a3f35 100%);
    background-image: url('https://images.unsplash.com/photo-1549366021-9f761d450615?w=1920');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    color: #fff;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-description {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 18px 40px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s ease;
}

.btn-primary {
    background: var(--primary-gold);
    color: #fff;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

/* ================================
   FOOTER
   ================================ */

.experience-footer {
    padding: 60px 0 30px;
    background: var(--dark-brown);
    color: rgba(255, 255, 255, 0.8);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
}

.footer-brand h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: var(--primary-gold);
    margin-bottom: 10px;
}

.footer-brand p {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    letter-spacing: 1px;
}

.footer-social {
    display: flex;
    gap: 30px;
}

.social-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--primary-gold);
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    letter-spacing: 1px;
}

/* ================================
   ANIMATIONS
   ================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    opacity: 0;
    animation: fadeInUp 1s forwards;
}

.fade-in-up.delay-1 {
    animation-delay: 0.3s;
}

.fade-in-up.delay-2 {
    animation-delay: 0.6s;
}

.fade-in-up.delay-3 {
    animation-delay: 0.9s;
}

/* ================================
   RESPONSIVE DESIGN
   ================================ */

@media (max-width: 1024px) {
    .nav-container {
        padding: 0 30px;
        height: 80px;
    }

    .nav-menu {
        gap: 30px;
    }

    .nav-menu li a {
        font-size: 14px;
    }

    .logo-img {
        height: 50px;
    }

    .container-fluid {
        padding: 0 30px;
    }

    .experience-card {
        gap: 40px;
        margin-bottom: 80px;
    }

    .experience-image {
        height: 400px;
    }

    .experience-name {
        font-size: 32px;
    }
}

@media (max-width: 768px) {

    /* Mobile Navigation */
    .mobile-menu-toggle {
        display: flex;
    }

    /* When mobile menu is active, always show white background on nav bar */
    .main-navigation.mobile-menu-open {
        background: rgba(250, 248, 243, 0.98) !important;
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    }

    /* Change hamburger icon color when menu is open */
    .main-navigation.mobile-menu-open .mobile-menu-toggle span {
        background: var(--dark-brown);
    }

    .nav-container {
        padding: 0 20px;
        height: 70px;
    }

    .logo-img {
        height: 45px;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        padding: 40px 20px;
        gap: 0;
        transform: translateX(-100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    /* Always use dark text color in mobile menu */
    .nav-menu li a {
        font-size: 16px;
        display: block;
        padding: 12px 0;
        color: #3E2723 !important;
        text-shadow: none !important;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
        padding: 15px 0;
        border-bottom: 1px solid rgba(62, 39, 35, 0.1);
    }

    .nav-menu li:last-child {
        border-bottom: none;
        margin-top: 20px;
    }

    .nav-menu li a {
        font-size: 16px;
        display: block;
        padding: 12px 0;
    }

    .nav-menu li a.nav-cta {
        display: inline-block;
        padding: 15px 40px;
    }

    .hero-experience {
        height: 80vh;
    }

    .intro-section {
        padding: 80px 0;
    }

    .experience-grid {
        padding: 60px 0;
    }

    .experience-card {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 60px;
    }

    .experience-card.reverse {
        direction: ltr;
    }

    .experience-image {
        height: 350px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .stat-number {
        font-size: 48px;
    }

    .testimonial-section {
        padding: 80px 0;
    }

    .testimonial-card {
        padding: 40px 30px;
    }

    .testimonial-text {
        font-size: 18px;
    }

    .cta-section {
        padding: 100px 0;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }

    .hero-description {
        font-size: 18px;
    }

    .section-title {
        font-size: 32px;
    }

    .experience-name {
        font-size: 28px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .quote-icon {
        font-size: 60px;
    }
}