:root {
    --primary-color: #000000;
    /* Black for primary color */
    --primary-hover: #1a1a1a;
    /* Dark gray for hover */
    --secondary-color: #ffffff;
    --text-color: #ffffff;
    --bg-dark: #0a0a0a;
    --font-heading: 'Bebas Neue', sans-serif;
    --font-body: 'Outfit', sans-serif;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-color);
    overflow-x: hidden;
    line-height: 1.6;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

.container {
    max-width: 1120px;
    /* Reduced from 1400px */
    margin: 0 auto;
    padding: 0 32px;
    /* Reduced from 40px */
    width: 100%;
}

/* --- Navbar Styles --- */
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    /* Reduced from 25px */
    transition: var(--transition);
    min-height: 64px;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
    /* Reduced from 80px */
    display: flex;
    align-items: center;
}

/* Removed .navbar.scrolled since nav is no longer fixed */

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 150px;
    /* Reduced from 60px */
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 32px;
    /* White pill container around all links */
    background: rgba(255, 255, 255, 1);
    padding: 12px 30px;
    border-radius: 50px;
}

.nav-links a {
    text-decoration: none;
    color: #000000;
    font-weight: 500;
    font-size: 0.8rem;
    /* Reduced from 1rem */
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary-color);
    opacity: 1;
}

.nav-links a::after {
    display: none;
    /* Remove underline effect */
}

.nav-links a:hover::after {
    width: 100%;
}

/* --- Dropdown Styles --- */
.nav-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.arrow-down {
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    transition: var(--transition);
    display: inline-block;
}

.nav-dropdown:hover .arrow-down {
    transform: rotate(225deg) translateY(-2px);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: #ffffff;
    min-width: 220px;
    padding: 15px 0;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1001;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(10px);
}

.dropdown-menu a {
    display: block;
    padding: 10px 25px;
    color: #444444 !important;
    font-size: 0.75rem !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.dropdown-menu a::after {
    display: none;
    /* Remove underline for dropdown links */
}

.dropdown-menu a:hover {
    background-color: #f8f8f8;
    color: var(--primary-color) !important;
    padding-left: 30px;
}

/* --- Hero Section --- */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    padding-left: 8%;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Slight white overlay */
    z-index: 1;
}

.hero-content {
    max-width: 800px;
    padding: 0;
    z-index: 10;
    color: #000000;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 10vw, 7.2rem);
    /* Reduced from 4rem/9rem */
    line-height: 0.9;
    margin-bottom: 16px;
    /* Reduced from 20px */
    letter-spacing: 10px;
    text-transform: uppercase;
}

.hero-title .accent {
    color: #ffffff;
    -webkit-text-stroke: 1px #ffffff;
    /* Alternative style: transparent with stroke */
    /* color: transparent;
    -webkit-text-stroke: 2px var(--primary-color); */
}

.hero-description {
    font-size: clamp(0.8rem, 1.6vw, 1rem);
    /* Reduced from 1rem/1.25rem */
    font-weight: 1000;
    /* Increased for better readability in black */
    margin-bottom: 32px;
    /* Reduced from 40px */
    max-width: 480px;
    /* Reduced from 600px */
    margin-left: 0;
    margin-right: 0;
    color: #000000;
    /* Slightly softer black for long text */


}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
}

.btn {
    padding: 14px 32px;
    /* Reduced from 18px 40px */
    border-radius: 40px;
    /* Reduced from 50px */
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
    /* Reduced from 1rem */
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background-color: #000000;
    color: white;
}

.btn-primary:hover {
    background-color: #1a1a1a;
    transform: translateY(-5px);
}

.btn-secondary {
    background-color: white;
    color: black;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.9);
    color: black;
    transform: translateY(-5px);
}

/* --- Scroll Indicator --- */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 1;
    z-index: 10;
    color: #ffffff;
}

.hero-scroll-indicator span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid #ffffff;
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background-color: #ffffff;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 1.5s infinite;
}

@keyframes scroll-wheel {
    0% {
        top: 8px;
        opacity: 1;
    }

    100% {
        top: 25px;
        opacity: 0;
    }
}

/* --- Mobile Menu --- */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
    position: relative;
}

.mobile-menu-btn span {
    width: 30px;
    height: 3px;
    background-color: white;
    transition: all 0.3s ease;
    border-radius: 2px;
}

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

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

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

/* Mobile menu overlay - removed, using full screen menu */

/* Mobile menu logo - hidden on desktop */
.mobile-menu-logo {
    display: none;
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: #000000;
        display: block !important;
        flex-direction: unset !important;
        justify-content: unset !important;
        align-items: unset !important;
        gap: unset !important;
        text-align: center;
        transition: right 0.4s ease;
        z-index: 1000;
        padding: 100px 40px 60px 40px;
        overflow-y: auto;
        overflow-x: hidden;
        border-radius: 0;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .hero {
        padding: 0 5%;
        text-align: center;
        justify-content: center;
        align-items: center;
    }
    
    .hero-content {
        max-width: 100%;
        padding: 0;
    }
    
    /* About section images - mobile only */
    .about-image {
        height: 500px;
        min-height: 500px;
        border-radius: 0 !important;
    }
    
    .about-grid.reversed .about-image {
        height: 500px;
        min-height: 500px;
        border-radius: 0 !important;
    }
    
    .about-image img {
        height: 100%;
        object-fit: cover;
    }
    
    /* Make "RIDE THE ADVENTURE" text bigger on mobile */
    .image-text-section .image-text {
        font-size: clamp(3.5rem, 25vw, 40rem) !important;
        line-height: 0.85;
    }
    
    /* Reduce side padding on about content for mobile */
    .about-content {
        padding: 40px 20px !important;
    }
    
    .why-choose-us .about-content {
        padding: 40px 20px !important;
    }
    
    /* Add more top padding to hero sections to prevent logo overlap */
    .about-page-hero,
    .contact-page-hero,
    .gallery-page-hero {
        padding: 200px 20px 80px !important;
        min-height: 50vh;
    }

    /* Prevent hero header text from cropping on mobile */
    .about-page-hero .image-text {
        font-size: clamp(4rem, 12vw, 4rem) !important;
    }
    
    /* Fix gallery grid - full width on mobile */
    .gallery-section .container {
        padding: 0;
        max-width: 100%;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr !important;
        gap: 0;
        width: 100%;
        margin: 0;
    }
    
    .gallery-item {
        width: 100%;
        margin: 0;
        border-radius: 0;
    }
    
    .nav-links > * {
        display: block !important;
        position: relative !important;
    }
    
    .nav-links > a {
        display: block !important;
        font-size: 1.5rem;
        color: #ffffff;
        padding: 15px 0;
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
        margin: 0 auto;
    }
    
    .nav-links > a:hover {
        color: #cccccc;
    }
    
    .nav-dropdown {
        display: block !important;
        width: 100%;
        padding: 15px 0;
        position: relative !important;
    }
    
    .nav-dropdown .dropdown-trigger {
        display: block !important;
        color: #ffffff !important;
        cursor: pointer;
        font-size: 1.5rem;
        padding: 0;
        margin: 0 auto;
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
    }
    
    .nav-dropdown.active .dropdown-trigger {
        color: #ffffff !important;
    }
    
    .nav-dropdown .dropdown-menu {
        display: none;
        width: 90%;
        max-width: 400px;
        margin: 20px auto;
        padding: 20px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 8px;
        position: relative;
        z-index: 1;
    }
    
    .nav-dropdown.active .dropdown-menu {
        display: block;
    }
    
    .nav-dropdown .dropdown-menu a {
        display: block !important;
        padding: 12px !important;
        text-align: center !important;
        font-size: 1.1rem !important;
        color: #ffffff !important;
        text-transform: capitalize !important;
        font-weight: 400 !important;
        letter-spacing: 0.5px !important;
        background: transparent !important;
        transition: color 0.2s ease !important;
    }
    
    .nav-dropdown .dropdown-menu a:hover {
        color: #999999 !important;
    }
    
    .social-links {
        display: flex !important;
        justify-content: center;
        gap: 30px;
        margin-top: 30px;
        position: relative !important;
    }
    
    .social-icon {
        display: inline-block !important;
    }
    
    .social-icon svg {
        width: 28px;
        height: 28px;
        color: #ffffff;
    }
    
    /* Show logo in mobile menu */
    .mobile-menu-logo {
        display: block !important;
        margin-top: 40px;
        padding: 20px 0;
    }
    
    .mobile-menu-logo img {
        width: 120px;
        height: auto;
        margin: 0 auto;
        display: block;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-title {
        font-size: clamp(2.5rem, 8vw, 3rem);
        text-align: center;
        line-height: 1;
    }
    
    .hero-subtitle {
        text-align: center;
        font-size: 1rem;
    }
    
    .hero-content p {
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .container {
        padding: 0 20px;
    }
    
    /* Center all text on mobile */
    .section-title,
    .sub-heading {
        text-align: center;
    }
    
    .about-content,
    .why-choose-us .about-content {
        text-align: center;
    }
    
    .features-list {
        justify-content: center;
    }
    
    .feature-item {
        justify-content: center;
    }
}

/* --- Reel Showcase --- */
.reel-showcase {
    padding: 80px 0;
    /* Reduced from 100px */
    background-color: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.reel-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    background-color: #0a0a0a;
}

.reel-bg-video video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    opacity: 0.05;
    filter: blur(8px);
    transition: opacity 0.6s ease;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
    /* Reduced from 60px */
    padding: 0 16px;
    /* Reduced from 20px */
    position: relative;
    z-index: 2;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 6.4vw, 4rem);
    /* Reduced from 3rem/8vw/5rem */
    letter-spacing: -1px;
    line-height: 1;
    margin-bottom: 8px;
    /* Reduced from 10px */
}

.reel-carousel-container {
    width: 100%;
    max-width: 100vw;
    position: relative;
    overflow: hidden;
    padding: 40px 0;
    z-index: 2;
}

.reel-track {
    display: flex;
    gap: 24px;
    /* Reduced from 30px */
    padding: 0 40px;
    /* Reduced from 50px */
    cursor: grab;
    will-change: transform;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reel-card {
    flex: 0 0 280px;
    /* Reduced from 350px */
    height: 480px;
    /* Reduced from 600px */
    border-radius: 20px;
    /* Reduced from 24px */
    overflow: hidden;
    position: relative;
    background: #1a1a1a;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease;
    filter: scale(0.9) grayscale(0.2) brightness(0.5);
    transform: scale(0.9);
}

.reel-card.active {
    filter: scale(1) grayscale(0) brightness(1);
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 0 4px var(--primary-color);
}

.reel-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.hero-btns {
    display: flex;
    gap: 16px;
    margin-top: 32px;
}

.carousel-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    /* Reduced from 30px */
    margin-top: 40px;
    /* Reduced from 50px */
    position: relative;
    z-index: 2;
}

.nav-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 40px;
    /* Reduced from 50px */
    height: 40px;
    /* Reduced from 50px */
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    /* Reduced from 1.2rem */
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.carousel-pagination {
    display: flex;
    gap: 10px;
}

.dot {
    width: 8px;
    /* Reduced from 10px */
    height: 8px;
    /* Reduced from 10px */
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: var(--transition);
}

.dot.active {
    background: var(--primary-color);
    transform: scale(1.4);
}

@media (max-width: 768px) {
    .reel-card {
        flex: 0 0 280px;
        height: 500px;
    }
    
    /* Trip cards */
    .trips-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .trip-card {
        text-align: center;
    }
    
    /* Gallery section */
    .gallery-reel {
        height: auto;
        padding: 40px 0;
    }
    
    /* Reviews */
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .review-card {
        text-align: center;
    }
    
    /* Stats */
    .about-stats {
        padding: 60px 0;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .stat-card {
        text-align: center;
    }
    
    /* CTA Section */
    .cta-section h2 {
        font-size: 2rem;
        text-align: center;
    }
    
    .cta-section p {
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    /* Footer */
    .footer-brand {
        text-align: center;
    }
    
    .footer-links-group h4 {
        text-align: center;
    }
    
    .footer-links {
        text-align: center;
    }
    
    .footer-bottom {
        text-align: center;
        flex-direction: column;
        gap: 20px;
    }
}

/* --- About Us Section --- */
.about-us {
    padding: 60px 0;
    /* Added significant vertical padding */
    background-color: #ffffff;
    color: #0a0a0a;
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    min-height: 800px;
    /* Increased height */
}

.about-image {
    position: relative;
    height: 100%;
    width: 100%;
    overflow: hidden;
    border-radius: 0 40px 40px 0;
    /* Rounded only on the right side */
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

.about-image:hover img {
    transform: scale(1.15);
}

.image-accent {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    background-color: var(--primary-color);
    z-index: -1;
    border-radius: 10px;
}

.about-content {
    padding: 60px 80px;
    max-width: 700px;
}

.sub-heading {
    display: block;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.about-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4rem);
    line-height: 1;
    margin-bottom: 25px;
    color: #000000;
}

.about-text {
    font-size: 1.1rem;
    color: #444444;
    margin-bottom: 20px;
    line-height: 1.7;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #eeeeee;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary-color);
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #888888;
    letter-spacing: 1px;
    margin-top: 5px;
}

@media (max-width: 968px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-image {
        order: 2;
    }

    .about-content {
        order: 1;
    }

    .about-us {
        padding: 60px 0;
    }

    /* RIDE THE DUNES section - mobile only (don't change desktop) */
    .trip-details-section.about-us {
        height: auto !important;
        min-height: auto !important;
        overflow: visible !important;
        padding: 40px 0 40px !important;
    }

    .trip-details-section .container {
        height: auto !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        max-width: 100% !important;
    }

    .trip-details-section .about-grid {
        height: auto !important;
        min-height: 0 !important;
        gap: 0 !important;
        align-items: stretch !important;
    }

    .trip-details-section .about-image {
        order: 1 !important;
        height: 500px !important;
        min-height: 500px !important;
        max-height: none !important;
        width: 100% !important;
        border-radius: 0 !important;
    }

    .trip-details-section .about-content {
        order: 2 !important;
        padding: 30px 20px 0 !important;
    }
}

/* --- Why Choose Us Section (Reversed) --- */
.why-choose-us {
    padding: 60px 0;
    background-color: #ffffff;
    color: #0a0a0a;
    overflow: hidden;
}

.about-grid.reversed {
    grid-template-columns: 1fr 1fr;
}

.about-grid.reversed .about-content {
    order: 1;
}

.about-grid.reversed .about-image {
    order: 2;
    border-radius: 40px 0 0 40px; /* Rounded only on the left side */
}

.features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    font-weight: 500;
    color: #0a0a0a;
}

.feature-item svg {
    flex-shrink: 0;
    color: #000000;
    stroke-width: 2.5;
}

.feature-item span {
    line-height: 1.4;
}

@media (max-width: 968px) {
    .why-choose-us {
        padding: 60px 0;
    }

    .about-grid.reversed {
        grid-template-columns: 1fr;
    }

    .about-grid.reversed .about-content,
    .about-grid.reversed .about-image {
        order: unset;
    }

    .about-grid.reversed .about-image {
        border-radius: 0;
        order: 2;
    }

    .features-list {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* --- Image Text Section --- */
.image-text-section {
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    padding: 50px;
}

.image-text-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    max-width: 900px;
    margin: 0 auto;
}

.star-rating {
    display: flex;
    gap: 8px;
    margin-bottom: 0;
}

.star {
    font-size: 2rem;
    color: #000000;
}

.image-text {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 20vw, 40rem);
    font-weight: 900;
    text-align: center;
    line-height: 0.8;
    letter-spacing: -3px;
    text-transform: uppercase;
    background-image: url('images/beach-ride-ebike-tour-tofo-mozambique.webp');
    background-size: cover;
    background-position: center;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-attachment: fixed;
    padding: 0px;
    margin: 0;
}

.image-text-subtitle {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 600;
    text-align: center;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.image-text-description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    text-align: center;
    color: #666666;
    line-height: 1.8;
    max-width: 600px;
    margin: 0;
}

/* --- Our Trips Section --- */
.our-trips {
    padding: 100px 0;
    background-color: #f8f8f8;
    /* Very light grey for separation */
    color: #0a0a0a;
}

.our-trips .container {
    max-width: 1400px;
    /* Wider container for this section specifically */
}

.trips-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.trip-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    height: 440px;
    /* Balanced height */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.trip-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.trip-image {
    width: 100%;
    height: 50%;
    /* Force 50/50 split */
    flex-shrink: 0;
    /* Prevent shrinking */
    overflow: hidden;
}

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

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

.trip-info {
    padding: 24px 20px;
    background: #ffffff;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 2;
    flex: 1;
    /* Take up the remaining 50% */
    display: flex;
    flex-direction: column;
    overflow: visible;
}

.trip-card:hover .trip-info {
    transform: translateY(-160px);
    /* Slide up to reveal full description */
}

.trip-name {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    /* Slightly smaller title */
    margin-bottom: 12px;
    letter-spacing: 0.5px;
    color: #000000;
}

.trip-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    /* Reduced from 20px */
    padding-bottom: 12px;
    /* Reduced from 15px */
    border-bottom: 1px solid #eeeeee;
}

.meta-item {
    font-size: 0.9rem;
    color: #666666;
    display: flex;
    align-items: center;
    gap: 8px;
}

.meta-item .icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: #666666;
}

.trip-difficulty {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.difficulty-title {
    font-weight: 700;
    font-size: 1rem;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.difficulty-row {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    flex-wrap: nowrap;
    overflow: visible;
}

/* --- Revealed Content --- */
.trip-details {
    margin-top: 16px;
    /* Tighter spacing */
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    border-top: 1px solid #eeeeee;
    padding-top: 16px;
}

.trip-card:hover .trip-details {
    opacity: 1;
    visibility: visible;
}

.trip-desc {
    font-size: 0.85rem;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.btn-read-more {
    display: inline-block;
    padding: 10px 24px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 40px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-read-more:hover {
    background-color: var(--primary-hover);
    transform: scale(1.05);
}

.difficulty-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 600;
    color: #999999;
}

.difficulty-dots {
    display: flex;
    gap: 3px;
    /* Reduced from 4px */
}

.difficulty-dots .dot {
    width: 7px;
    /* Reduced from 8px */
    height: 7px;
    /* Reduced from 8px */
    border-radius: 50%;
    background-color: #e0e0e0;
}

.difficulty-dots .dot.filled {
    background-color: var(--primary-color);
}

.difficulty-val {
    font-size: 0.9rem;
    font-weight: 700;
    color: #333333;
    margin-left: auto;
    flex-shrink: 0;
    min-width: 40px;
    text-align: right;
}

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

@media (max-width: 600px) {
    .trips-grid {
        grid-template-columns: 1fr;
    }
    
    /* Smaller hero text */
    .hero-title {
        font-size: clamp(2rem, 10vw, 2.5rem);
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    /* Section padding */
    .about-us,
    .why-choose-us,
    .cta-section {
        padding: 40px 0;
    }
    
    /* Section titles */
    .section-title {
        font-size: clamp(2rem, 8vw, 2.5rem);
        text-align: center;
    }
    
    .sub-heading {
        font-size: 0.9rem;
    }
    
    /* Stats grid single column */
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Tire Divider Decorations --- */
.tire-divider {
    width: 100%;
    height: 300px;
    background-repeat: repeat-x;
    background-size: auto 100%;
    background-position: center;
    pointer-events: none;
    opacity: 1;
}

.hero {
    overflow: hidden;
    /* Ensure track is cropped to the fold */
}

.hero-bottom {
    position: absolute;
    bottom: -20px;
    /* Slight bleed down but hero overflow crops it */
    left: 0;
    z-index: 5;
    filter: brightness(0.1) contrast(1.2);
    /* Dark gritty look on sand */
}

.reel-showcase {
    position: relative;
    z-index: 2;
}

/* --- Infinite Adventure Gallery --- */
.adventure-gallery {
    padding: 100px 0;
    background-color: #0a0a0a;
    overflow: hidden;
}

.gallery-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.gallery-track {
    display: flex;
    gap: 20px;
    width: max-content;
}

.gallery-item {
    flex: 0 0 500px;
    /* Increased from 400px */
    height: 320px;
    /* Increased from 250px */
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    transition: transform 0.4s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8);
    transition: filter 0.4s ease;
}

.gallery-item:hover {
    transform: scale(1.02);
}

.gallery-item:hover img {
    filter: brightness(1.1);
}

/* Animations */
.scroll-left {
    animation: scroll-left 40s linear infinite;
}

.scroll-right {
    animation: scroll-right 40s linear infinite;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 10px));
        /* Half of the track + half the gap */
    }
}

@keyframes scroll-right {
    0% {
        transform: translateX(calc(-50% - 10px));
    }

    100% {
        transform: translateX(0);
    }
}

/* Pause on hover */
.gallery-track:hover {
    animation-play-state: paused;
}

/* --- Gallery Section Adjustments --- */
.adventure-gallery .section-header {
    margin-bottom: 60px;
}

.adventure-gallery .section-title {
    color: #ffffff;
}

.adventure-gallery .section-header p {
    color: #888888;
}

/* --- Footer Styles --- */
.footer {
    background-color: #050505;
    color: #ffffff;
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-logo img {
    height: 80px;
    width: auto;
}

.footer-brand p {
    color: #888888;
    line-height: 1.7;
    max-width: 350px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 700;
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col ul li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-col ul a {
    text-decoration: none;
    color: #888888;
    transition: var(--transition);
    font-size: 0.9rem;
}

.footer-col ul a:hover {
    color: #ffffff;
    padding-left: 5px;
}

.footer-col ul span {
    color: #888888;
    font-size: 0.9rem;
}

.contact-icon {
    flex-shrink: 0;
    color: #888888;
}

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

.footer-bottom p {
    color: #555555;
    font-size: 0.75rem;
    letter-spacing: 1px;
}

.footer-secondary-links {
    display: flex;
    gap: 24px;
}

.footer-secondary-links a {
    text-decoration: none;
    color: #555555;
    font-size: 0.75rem;
    transition: var(--transition);
}

.footer-secondary-links a:hover {
    color: #ffffff;
}

@media (max-width: 968px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .footer-links-grid {
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .footer-links-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* --- Reviews Section --- */
.reviews {
    padding: 120px 0;
    background-color: #ffffff;
    color: #0a0a0a;
}

.reviews .section-header {
    margin-bottom: 60px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.review-card {
    background: #fcfcfc;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    /* Changed from 'all' to specific properties to avoid GSAP conflict */
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.2);
}

.review-stars {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.review-text {
    font-style: italic;
    color: #444444;
    margin-bottom: 30px;
    line-height: 1.8;
    flex-grow: 1;
    font-size: 1.05rem;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.review-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info strong {
    display: block;
    font-family: var(--font-body);
    font-weight: 700;
    color: #000000;
    font-size: 1rem;
}

.author-info span {
    font-size: 0.8rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

@media (max-width: 968px) {
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .review-card {
        padding: 30px;
    }
}

/* ===============================
   WhatsApp Widget
   =============================== */
.whatsapp-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}

.whatsapp-float-btn {
    width: 70px;
    height: 70px;
    background: #000000;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
}

.whatsapp-float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.notification-badge {
    position: absolute;
    top: 5px;
    right: 5px;
    background: #FF3B30;
    color: white;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
}

/* Pulse animation removed */

.whatsapp-chat-box {
    position: absolute;
    bottom: 90px;
    right: 0;
    width: 350px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transform: translateY(20px) scale(0.9);
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.whatsapp-chat-box.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

.chat-header {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    padding: 20px;
    border-radius: 20px 20px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header-content {
    display: flex;
    gap: 12px;
    align-items: center;
}

.avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #333333, #000000);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    color: white;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.header-text h4 {
    margin: 0;
    color: white;
    font-size: 16px;
    font-weight: 600;
}

.header-text p {
    margin: 4px 0 0 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
}

.close-chat {
    background: transparent;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s ease;
}

.close-chat:hover {
    background: rgba(255, 255, 255, 0.2);
}

.chat-body {
    padding: 20px;
    background: #F0F0F0;
}

.chat-message {
    background: white;
    padding: 16px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.chat-message .greeting {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 8px 0;
}

.chat-message p {
    margin: 0 0 12px 0;
    color: #333;
    line-height: 1.5;
    font-size: 14px;
}

.timestamp {
    font-size: 11px;
    color: #999;
    text-align: right;
    display: block;
}

.chat-footer {
    padding: 20px;
    background: white;
    border-radius: 0 0 20px 20px;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #333333, #000000);
    color: white;
    padding: 14px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* Mobile Responsive */
@media (max-width: 480px) {
    .whatsapp-chat-box {
        width: 90vw;
        right: 5vw;
    }

    .whatsapp-float-btn {
        width: 60px;
        height: 60px;
    }
}

/* Social Media Icons in Nav */
.nav-links .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: all 0.3s ease;
}

.nav-links .social-icon:hover {
    color: var(--primary-color);
    transform: scale(1.15);
}

/* ===============================
   ABOUT PAGE STYLES
   =============================== */

/* About Hero Section */
.about-page-hero {
    padding: 180px 0 80px;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background-color: #000000;
}

.about-page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/ebike-tofo-tours-hero-mozambique.webp') center center / cover no-repeat;
    filter: blur(20px);
    z-index: 0;
}

.about-page-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 1);
    z-index: 1;
}

.about-page-hero .container {
    position: relative;
    z-index: 2;
}

.about-page-hero .image-text {
    font-size: clamp(2rem, 15vw, 32rem);
    background: url('images/ebike-tofo-tours-hero-mozambique.webp') center 65% / cover no-repeat;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    background-attachment: fixed;
}

.about-page-hero .sub-heading,
.about-page-hero .image-text-subtitle,
.about-page-hero .image-text-description {
    color: #ffffff;
}

/* Contact Page Hero */
.contact-page-hero {
    padding: 180px 0 80px;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background-color: #000000;
}

.contact-page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/atm-ride-ebike-tour-tofo-mozambique.webp') center center / cover no-repeat;
    filter: blur(20px);
    z-index: 0;
}

.contact-page-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 1);
    z-index: 1;
}

.contact-page-hero .container {
    position: relative;
    z-index: 2;
}

.contact-page-hero .image-text {
    font-size: clamp(2rem, 15vw, 32rem);
    background: url('images/atm-ride-ebike-tour-tofo-mozambique.webp') center 65% / cover no-repeat;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    background-attachment: fixed;
}

.contact-page-hero .sub-heading,
.contact-page-hero .image-text-subtitle,
.contact-page-hero .image-text-description {
    color: #ffffff;
}

/* Gallery Page Hero */
.gallery-page-hero {
    padding: 180px 0 80px;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background-color: #000000;
}

.gallery-page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/whale-watching-ebike-tour-tofo-mozambique.webp') center center / cover no-repeat;
    filter: blur(20px);
    z-index: 0;
}

.gallery-page-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 1);
    z-index: 1;
}

.gallery-page-hero .container {
    position: relative;
    z-index: 2;
}

.gallery-page-hero .image-text {
    font-size: clamp(2rem, 15vw, 32rem);
    background: url('images/whale-watching-ebike-tour-tofo-mozambique.webp') center 65% / cover no-repeat;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    background-attachment: fixed;
}

.gallery-page-hero .sub-heading,
.gallery-page-hero .image-text-subtitle,
.gallery-page-hero .image-text-description {
    color: #ffffff;
}

/* Story Section */
.story-section {
    padding: 100px 0;
    background-color: #ffffff;
}

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

.story-text {
    font-size: 1.1rem;
    color: #444444;
    margin-bottom: 25px;
    line-height: 1.8;
}

.story-section .section-title {
    color: #333333;
}

.story-section .accent {
    color: #000000;
}

/* Full Width Banner */
.full-width-banner {
    width: 100%;
    height: 500px;
    background: url('images/ebike-tofo-tours-riders-local-kids-mozambique.webp') center center / cover no-repeat;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    pointer-events: none;
}

@media (max-width: 968px) {
    .full-width-banner {
        height: 350px;
        background-attachment: scroll;
    }
}

/* Values Section */
.values-section {
    padding: 100px 0;
    background-color: #f8f8f8;
    color: #0a0a0a;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.value-card {
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000000;
    border-radius: 50%;
    color: #ffffff;
}

.value-card h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 20px;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.value-card p {
    font-size: 1rem;
    color: #666666;
    line-height: 1.7;
}

/* Mission Section */
.mission-section {
    background-color: #0a0a0a;
    color: #ffffff;
    overflow: hidden;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    min-height: 700px;
}

.mission-image {
    position: relative;
    height: 100%;
    width: 100%;
    overflow: hidden;
    border-radius: 0 40px 40px 0;
}

.mission-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

.mission-image:hover img {
    transform: scale(1.15);
}

.mission-content {
    padding: 60px 80px;
    max-width: 700px;
}

.mission-text {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 20px;
    line-height: 1.7;
}

.mission-cta {
    margin-top: 40px;
}

/* About Stats Section */
.about-stats-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.stats-grid-large {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.stat-card {
    text-align: center;
    padding: 40px 20px;
    background: #f8f8f8;
    border-radius: 20px;
    transition: transform 0.4s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
}

.stat-num-large {
    font-family: var(--font-heading);
    font-size: 4rem;
    color: #000000;
    line-height: 1;
    display: block;
    margin-bottom: 10px;
}

.stat-label-large {
    font-size: 1rem;
    text-transform: uppercase;
    color: #333333;
    letter-spacing: 1px;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.stat-desc {
    font-size: 0.9rem;
    color: #888888;
    margin: 0;
}

/* CTA Section */
.cta-section {
    padding: 120px 0;
    background: 
        linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
        url('images/beach-ride-ebike-tour-tofo-mozambique.webp') center center / cover no-repeat;
    background-attachment: fixed;
    text-align: center;
    position: relative;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: #ffffff;
    margin-bottom: 30px;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-text {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 40px;
    line-height: 1.7;
}

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

/* Responsive Adjustments */
@media (max-width: 968px) {
    .about-page-hero,
    .contact-page-hero,
    .gallery-page-hero {
        padding: 100px 0 60px;
        min-height: 40vh;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .mission-grid {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .mission-image {
        border-radius: 40px 40px 0 0;
        min-height: 400px;
    }

    .mission-content {
        padding: 60px 40px;
    }

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

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

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 600px) {
    .stats-grid-large {
        grid-template-columns: 1fr;
    }
}

/* --- Contact Page Styles --- */
/* Contact Hero */
.contact-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.contact-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.contact-hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
    z-index: 1;
}

.contact-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-hero-content {
    max-width: 900px;
    padding: 80px 40px 0 40px;
    z-index: 10;
    color: #ffffff;
    text-align: center;
}

.contact-hero-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 0.9;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #000000;
}

.contact-hero-content h1 .accent {
    color: #ffffff;
}

.contact-hero-content p {
    font-size: clamp(1rem, 2vw, 1.3rem);
    font-weight: 400;
    margin-top: 20px;
}

/* Contact Info Section */
.contact-info-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.contact-info-card {
    background: #f8f8f8;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-info-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000000;
    border-radius: 50%;
    color: #ffffff;
}

.contact-info-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-info-card p {
    font-size: 1rem;
    color: #666666;
    line-height: 1.6;
    margin: 5px 0;
}

.contact-info-card a {
    color: #000000;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-info-card a:hover {
    color: #333333;
}

.contact-info-card .small-text {
    font-size: 0.85rem;
    color: #888888;
    margin-top: 8px;
}

/* Contact Form Section */
.contact-form-section {
    padding: 100px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), 
                url('images/ebike-tofo-tours-hero-mozambique.webp') center center / cover no-repeat;
    background-attachment: fixed;
    position: relative;
}

.contact-form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contact-form-info {
    position: sticky;
    top: 120px;
}

.contact-form-info .sub-heading {
    color: #ffffff;
}

.contact-form-info .section-title {
    color: #ffffff;
}

.form-intro {
    font-size: 1.1rem;
    color: #ffffff;
    line-height: 1.8;
    margin-top: 20px;
    margin-bottom: 40px;
}

.contact-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1rem;
    color: #ffffff;
}

.contact-feature svg {
    flex-shrink: 0;
    color: #ffffff;
}

.whatsapp-book-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #000000;
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    margin-top: 30px;
    transition: all 0.3s ease;
}

.whatsapp-book-btn:hover {
    background: #25D366;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.whatsapp-book-btn svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

/* Form Styles */
.contact-form {
    background: #ffffff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group-full {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 600;
    font-size: 0.95rem;
    color: #333333;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px 18px;
    font-size: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: var(--font-body);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background-color: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #000000;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999999;
}

.btn-submit {
    grid-column: 1 / -1;
    padding: 18px 40px;
    font-size: 1.1rem;
    cursor: pointer;
    border: none;
    margin-top: 10px;
}

/* Map Section */
.map-section {
    width: 100%;
}

.map-container {
    width: 100%;
    height: 450px;
    position: relative;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(30%);
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.faq-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-section .section-title {
    color: #000000;
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: #ffffff;
    border: 2px solid #f0f0f0;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: #000000;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f8f8f8;
}

.faq-question span {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: #000000;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 25px 30px;
}

.faq-answer p {
    font-size: 1rem;
    color: #666666;
    line-height: 1.8;
    margin: 0;
}

/* Contact Page Responsive */
@media (max-width: 1200px) {
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 968px) {
    .contact-hero {
        height: 50vh;
    }

    .contact-form-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form-info {
        position: static;
    }

    .contact-form {
        grid-template-columns: 1fr;
        padding: 40px 30px;
    }

    .faq-accordion {
        gap: 15px;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-question span {
        font-size: 1.1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 20px 20px;
    }
}

@media (max-width: 600px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .map-container {
        height: 300px;
    }
}

/* --- Gallery Page Styles --- */
/* Gallery Hero */
.gallery-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.gallery-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.gallery-hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
    z-index: 1;
}

.gallery-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-hero-content {
    max-width: 900px;
    padding: 80px 40px 0 40px;
    z-index: 10;
    color: #ffffff;
    text-align: center;
}

.gallery-hero-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 0.9;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #000000;
}

.gallery-hero-content h1 .accent {
    color: #ffffff;
}

.gallery-hero-content p {
    font-size: clamp(1rem, 2vw, 1.3rem);
    font-weight: 400;
    margin-top: 20px;
}

/* Gallery Section */
.gallery-section {
    padding: 80px 0 100px;
    background-color: #ffffff;
}

.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 60px;
}

.filter-btn {
    padding: 12px 30px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    background-color: #f8f8f8;
    color: #666666;
    border: 2px solid transparent;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background-color: #e8e8e8;
    color: #000000;
}

.filter-btn.active {
    background-color: #000000;
    color: #ffffff;
    border-color: #000000;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 16px;
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.gallery-item.hidden {
    display: none;
}

.gallery-item img,
.gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img,
.gallery-item:hover video {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Gallery CTA */
.gallery-cta {
    padding: 100px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), 
                url('images/atm-ride-ebike-tour-tofo-mozambique.webp') center center / cover no-repeat;
    background-attachment: fixed;
    position: relative;
    text-align: center;
}

.gallery-cta-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: #ffffff;
    margin-bottom: 25px;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gallery-cta-content p {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 40px;
    line-height: 1.7;
}

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

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.lightbox.active {
    display: flex;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
    position: relative;
}

.lightbox-content img,
.lightbox-content video {
    max-width: 100%;
    max-height: 90vh;
    width: auto;
    height: auto;
    display: block;
    border-radius: 8px;
}

.lightbox-content video {
    display: none;
}

.lightbox-content video.active {
    display: block;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    z-index: 10001;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    z-index: 10001;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

/* Gallery Page Responsive */
@media (max-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 968px) {
    .gallery-hero {
        height: 50vh;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 15px;
    }

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

    .gallery-cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .lightbox-close {
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
    }

    .lightbox-nav {
        width: 40px;
        height: 40px;
    }

    .lightbox-prev {
        left: 15px;
    }

    .lightbox-next {
        right: 15px;
    }
}

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

    .gallery-filter {
        flex-wrap: wrap;
    }

    .filter-btn {
        padding: 10px 20px;
        font-size: 1rem;
    }
}

/* === PAGE TRANSITION === */
.page-transition-curtain {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.page-transition-curtain img {
    width: 200px;
    height: auto;
    opacity: 0;
}