:root {
    --forest-deep: #1a3c34;
    --forest-mid: #2c5e4f;
    --moss: #4a7c59;
    --earth: #8b5e34;
    --ochre: #d4a373;
    --cream: #fefae0;
    --mist: #f8f9fa;
    --white: #ffffff;
    --dark: #121212;
    --text-main: #333333;
    --text-light: #666666;

    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Outfit', sans-serif;

    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);

    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--font-sans);
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--mist);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-serif);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

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

.section {
    padding: 100px 0;
}

.section-light {
    background-color: var(--white);
}

.section-dark {
    background-color: var(--forest-deep);
    color: var(--white);
}

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

.grid {
    display: grid;
    gap: 30px;
}

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

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.items-center {
    align-items: center;
}

.rounded {
    border-radius: 12px;
}

.shadow {
    box-shadow: var(--shadow-md);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--earth);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--forest-mid);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--forest-deep);
}

.btn-whatsapp {
    background-color: #25D366;
    color: var(--white);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.8rem;
}

.btn-block {
    display: block;
    width: 100%;
}

/* Navbar */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

header.scrolled {
    background-color: rgba(26, 60, 52, 0.95);
    backdrop-filter: blur(10px);
    padding: 10px 0;
    box-shadow: var(--shadow-md);
}

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

.logo img {
    height: 50px;
}

.desktop-nav ul {
    display: flex;
    align-items: center;
    gap: 25px;
}

.desktop-nav a {
    color: var(--white);
    font-weight: 400;
    font-size: 0.95rem;
}

.desktop-nav a:hover {
    color: var(--ochre);
}

.lang-switch {
    display: flex;
    gap: 10px;
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 600;
}

.lang-switch a.active {
    color: var(--ochre);
}

/* Hero */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    color: var(--white);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1;
    transform: scale(1.05);
    animation: slowZoom 20s infinite alternate;
}

@keyframes slowZoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.1);
    }
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease forwards;
}

.hero .subtitle {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeInUp 1s ease 0.3s forwards;
}

.hero-btns {
    display: flex;
    gap: 20px;
    opacity: 0;
    animation: fadeInUp 1s ease 0.6s forwards;
}

.hero-trust {
    margin-top: 60px;
    display: flex;
    gap: 30px;
    font-size: 0.9rem;
    opacity: 0;
    animation: fadeInUp 1s ease 0.9s forwards;
}

.trust-item span {
    color: var(--ochre);
    margin-right: 5px;
}

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

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

/* Experience Cards */
.experience-previews {
    padding: 80px 0;
    /* Clear padding below hero */
    position: relative;
    z-index: 10;
}

.exp-card {
    position: relative;
    height: 340px;
    border-radius: 24px;
    overflow: hidden;
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    box-shadow: var(--shadow-md);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
}

.exp-card-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.exp-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    z-index: -1;
}

.exp-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

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

.exp-card-content {
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.exp-card-badge {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.exp-card-text h3 {
    font-size: 1.5rem;
    margin-bottom: 4px;
    letter-spacing: -0.5px;
}

.exp-card-text p {
    font-size: 0.9rem;
    opacity: 0.85;
    font-weight: 300;
}

/* Why Choose Section */
.why-section {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
    background: #f8f9f5;
    /* Soft background to blend the illustration */
}

.why-bg-bird {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 42%;
    /* Reduced width to prevent overlapping text */
    height: 100%;
    min-height: 500px;
    background-image:
        linear-gradient(to right, #f8f9f5 0%, rgba(248, 249, 245, 0.9) 15%, rgba(248, 249, 245, 0.3) 50%, rgba(248, 249, 245, 0) 100%),
        linear-gradient(to bottom, rgba(248, 249, 245, 0.05), rgba(248, 249, 245, 0.15)),
        url('https://instagram.fesm2-1.fna.fbcdn.net/v/t51.82787-15/611277004_17850698742603718_7144993239524772021_n.webp?_nc_cat=100&ig_cache_key=MzgwMTU3MzkyNjU5NDUzNzcwMg%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkNBUk9VU0VMX0lURU0ueHBpZHMuMTQ0MC5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=W7-9PXF5rMcQ7kNvwFVQBL5&_nc_oc=Adqt99b40nmZQs3iIBoi7lYdeRsdt8hBzXNdrOocuz6c0XPDO6MbdUF88CotNGP05W9U0PqnXNSmeXzGrCS2n-QA&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=instagram.fesm2-1.fna&_nc_gid=ai3fRMd-jH0Y3c3-ov1tFA&_nc_ss=7a22e&oh=00_Af4iy9S6RNO0ajdRXWtxy5JUpUupmjD09UxWez42D5oQpQ&oe=6A0DC523');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center right;
    opacity: 0.95;
    pointer-events: none;
    z-index: 0;
}

.why-header {
    margin-bottom: 60px;
    /* Reduced from 80px */
    max-width: 700px;
    position: relative;
    z-index: 2;
}

.section-kicker {
    display: block;
    text-transform: uppercase;
    color: var(--moss);
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.why-section .section-title {
    font-size: 3.2rem;
    /* Slightly smaller for better balance */
    line-height: 1.1;
    color: var(--forest-deep);
    margin: 0;
}

.why-grid {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 40px;
    /* Increased gap for cleaner cards */
}

.why-item {
    padding: 20px 0;
}

.why-icon-box {
    width: 60px;
    height: 60px;
    background: var(--mist);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 25px;
    transition: var(--transition);
}

.why-item:hover .why-icon-box {
    background: var(--moss);
    color: var(--white);
    transform: rotate(10deg);
}

.why-item h4 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--forest-deep);
}

.why-item p {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* Home Ticker */
.home-ticker {
    width: 100%;
    overflow: hidden;
    background: rgba(26, 60, 52, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 2.2rem 0;
}

.ticker-track {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
}

.ticker-content {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    animation: tickerMove 35s linear infinite;
}

.ticker-content span {
    display: inline-block;
    font-size: clamp(3rem, 7vw, 7rem);
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.88);
    padding-right: 2rem;
}

@keyframes tickerMove {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-33.333%);
    }
}

/* Guide Section */
.guide-section {
    position: relative;
}

.guide-img img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 20px;
}

.kicker {
    display: block;
    text-transform: uppercase;
    color: var(--ochre);
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.guide-name {
    font-size: 3rem;
    margin-bottom: 5px;
}

.guide-title {
    font-style: italic;
    color: var(--cream);
    margin-bottom: 25px;
}

.guide-stats {
    margin: 30px 0;
}

.guide-stats li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.guide-stats span {
    color: var(--ochre);
}

/* Species Highlights Background */
.species-highlights {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.species-highlights .container,
.species-marquee {
    position: relative;
    z-index: 2;
}

.species-bg-left {
    position: absolute;
    left: 0;
    top: 0;
    width: 42%;
    height: 100%;
    min-height: 520px;

    background-image:
        linear-gradient(to left,
            #f8f9f5 0%,
            rgba(248, 249, 245, 0.9) 15%,
            rgba(248, 249, 245, 0.35) 50%,
            rgba(248, 249, 245, 0) 100%),
        linear-gradient(to bottom,
            rgba(248, 249, 245, 0.05),
            rgba(248, 249, 245, 0.15)),
        url('https://instagram.fesm2-1.fna.fbcdn.net/v/t51.82787-15/610623652_17850698724603718_639601487547475953_n.webp?_nc_cat=105&ig_cache_key=MzgwMTU3MzkyNjU4NjExMjMxOA%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkNBUk9VU0VMX0lURU0ueHBpZHMuMTQ0MC5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=tcC8DnZKbwoQ7kNvwEQ1zUI&_nc_oc=AdpJpPZRkQsfZtiRFewGPOIRW_qjBoLUNppuAnXAe7PnGORqvmiNB1Ec0qZQNJ3xbEn0uvrgnNXk2bBrJzV0t2kf&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=instagram.fesm2-1.fna&_nc_gid=X830WYGcTltzAUFcU-PTDA&_nc_ss=7a22e&oh=00_Af4p-i8s86pA7pb2C31iSmKPIdYJZ9jDc7L-1ApihrtjvQ&oe=6A0DAA9E');

    background-size: cover;
    background-repeat: no-repeat;
    background-position: center left;

    opacity: 0.95;
    pointer-events: none;
    z-index: 0;
}

/* Marquee System */
.marquee-row {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 2rem 0;
}

.marquee-track {
    display: flex;
    width: max-content;
    gap: 2rem;
    animation-duration: 60s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.marquee-row:hover .marquee-track {
    animation-play-state: paused;
}

.marquee-left .marquee-track {
    animation-name: marqueeLeft;
}

.marquee-right .marquee-track {
    animation-name: marqueeRight;
}

@keyframes marqueeLeft {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes marqueeRight {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }
}

/* Species Marquee Cards */
.species-marquee-card {
    flex: 0 0 200px;
    text-align: center;
}

.species-img-wrapper {
    width: 200px;
    height: 200px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 15px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.species-marquee-card:hover .species-img-wrapper {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.species-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.species-marquee-card h4 {
    font-size: 1.1rem;
    color: var(--forest-deep);
}

/* Tour Marquee Cards */
.tour-marquee-card {
    flex: 0 0 340px;
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.tour-marquee-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.tour-marquee-img {
    height: 220px;
    background-size: cover;
    background-position: center;
}

.tour-marquee-info {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.tour-marquee-info h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--forest-deep);
}

.tour-marquee-info p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 20px;
    flex-grow: 1;
}

.tour-marquee-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--mist);
    padding-top: 15px;
}

.tour-marquee-footer .price {
    font-weight: 700;
    color: var(--earth);
    font-size: 1.1rem;
}

.mb-60 {
    margin-bottom: 60px;
}

.featured-cta {
    margin-top: 3rem;
}

.featured-cta .btn {
    min-width: 220px;
}

/* Tour Modals */
.tour-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 1100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.tour-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.tour-modal {
    background: var(--white);
    border-radius: 20px;
    width: 100%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    display: flex;
    flex-direction: column;
    transform: translateY(20px);
    transition: transform 0.4s ease;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.tour-modal-overlay.active .tour-modal {
    transform: translateY(0);
}

.tour-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--forest-deep);
    transition: var(--transition);
}

.tour-modal-close:hover {
    background: var(--moss);
    color: var(--white);
    transform: scale(1.1);
}

.tour-modal-img {
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
}

.tour-modal-content {
    padding: 2.5rem;
}

.tour-modal-content h3 {
    font-size: 2rem;
    color: var(--forest-deep);
    margin-bottom: 1rem;
}

.tour-modal-desc {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.tour-detail-meta {
    background: var(--mist);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.meta-item {
    margin-bottom: 1rem;
    font-size: 0.95rem;
    display: flex;
    flex-direction: column;
}

.meta-item:last-child {
    margin-bottom: 0;
}

.meta-item strong {
    color: var(--forest-deep);
    margin-bottom: 0.25rem;
}

.tour-modal-actions {
    display: flex;
    gap: 1rem;
}

.tour-modal-actions .btn {
    flex: 1;
    text-align: center;
}

/* Pause marquee animation if body has modal-open */
body.modal-open .marquee-track {
    animation-play-state: paused !important;
}

@media (min-width: 768px) {
    .tour-modal {
        flex-direction: row;
    }

    .tour-modal-img {
        width: 45%;
        height: auto;
        min-height: 400px;
    }

    .tour-modal-content {
        width: 55%;
        padding: 3rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .meta-item {
        flex-direction: row;
        align-items: flex-start;
    }

    .meta-item strong {
        min-width: 140px;
        margin-bottom: 0;
    }
}

/* Testimonials */
.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    position: relative;
}

.quote {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.author h5 {
    color: var(--ochre);
}

/* Subpages */
.hero-sub {
    height: 60vh;
    display: flex;
    align-items: center;
    color: var(--white);
    background-size: cover;
    background-position: center;
}

.hero-sub h1 {
    font-size: 3.5rem;
}

.included-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--mist);
    border-radius: 10px;
}

.included-item .check {
    color: var(--moss);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Contact */
.contact-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
}

.contact-card .icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 15px;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 40px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
}

/* Footer */
footer {
    background-color: var(--forest-deep);
    color: var(--white);
    padding-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
}

.footer-brand img {
    height: 60px;
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--cream);
    opacity: 0.8;
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 25px;
    color: var(--ochre);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a:hover {
    color: var(--ochre);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.6;
}

/* Mobile Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 30px;
    height: 2px;
    background-color: var(--white);
    transition: var(--transition);
}

/* Premium Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 85%;
    max-width: 400px;
    height: 100vh;
    background: rgba(18, 62, 48, 0.96);
    /* Elegant dark forest */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.4);
    padding: 8rem 2.5rem 2rem;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    overflow-y: auto;
}

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

.mobile-menu ul {
    list-style: none;
    padding: 0;
}

.mobile-menu li {
    margin-bottom: 5px;
}

.mobile-menu a {
    display: block;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--white);
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition);
    letter-spacing: 0.5px;
}

.mobile-menu a:hover,
.mobile-menu a.active {
    color: var(--ochre);
    transform: translateX(8px);
}

.lang-switch-mobile {
    display: flex;
    gap: 1.5rem;
    margin: 2rem 0;
}

.lang-switch-mobile a {
    font-size: 0.95rem;
    border-bottom: none;
    padding: 0;
    opacity: 0.6;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.lang-switch-mobile a.active {
    opacity: 1;
    color: var(--ochre);
    font-weight: 700;
}

.mobile-menu .btn-whatsapp {
    margin-top: 1.5rem;
    background: #25D366;
    color: var(--white);
    border: none;
    border-radius: 999px;
    padding: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    text-transform: none;
    transform: none !important;
    /* Disable slide on hover for button */
}

/* Menu Overlay */
body.menu-open::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

body.menu-open::before {
    opacity: 1;
    visibility: visible;
}

body.menu-open {
    overflow: hidden;
}

.mobile-menu-toggle {
    position: relative;
    z-index: 1001;
    /* Ensure it stays above the menu */
}

/* Responsive */
@media (max-width: 992px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .why-section .section-title {
        font-size: 2.8rem;
    }

    .desktop-nav {
        display: none;
    }

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

    .home-ticker {
        padding: 1.4rem 0;
    }

    .ticker-content span {
        font-size: clamp(2rem, 13vw, 4rem);
    }
}

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

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

    .hero {
        min-height: auto !important;
        height: auto !important;
        padding: 8.5rem 1.5rem 4rem !important;
        display: flex;
        align-items: flex-start;
        background-position: 58% center;
        overflow: visible !important;
    }

    .hero::before {
        background: linear-gradient(to bottom,
                rgba(0, 0, 0, 0.55),
                rgba(0, 0, 0, 0.65));
    }

    .hero-content {
        padding-top: 2rem;
        padding-bottom: 3rem;
        max-width: 100%;
        text-align: left;
    }

    .hero h1 {
        font-size: clamp(2.6rem, 11vw, 3.4rem);
        line-height: 1.05;
        margin-bottom: 1.4rem;
    }

    .hero-subtitle {
        font-size: 1.05rem;
        line-height: 1.55;
        margin-bottom: 2rem;
    }

    .hero-btns {
        display: flex !important;
        flex-direction: column !important;
        gap: 1rem !important;
        width: 100%;
        margin-top: 2rem !important;
        margin-bottom: 2rem !important;
    }

    .hero-btns .btn {
        width: 100% !important;
        max-width: 100% !important;
        min-height: 58px;
        flex-shrink: 0;
        display: flex !important;
        align-items: center;
        justify-content: center;
        text-align: center;
        border-radius: 999px;
        padding: 1rem 1.25rem;
    }

    .hero-trust {
        display: none !important;
    }

    .section {
        padding: 60px 0;
    }

    .guide-img img {
        height: 400px;
    }

    .experience-previews {
        padding: 40px 0;
    }

    .why-bg-bird {
        opacity: 0.18;
        width: 100%;
    }

    .why-header {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .why-section .section-title {
        font-size: 2.2rem;
    }

    .why-item {
        text-align: center;
    }

    .why-icon-box {
        margin-left: auto;
        margin-right: auto;
    }

    .final-cta {
        padding: 5rem 1.5rem;
        min-height: auto;
    }

    .final-cta h2 {
        font-size: clamp(2rem, 8vw, 2.8rem);
        line-height: 1.15;
        margin-bottom: 1rem;
    }

    .final-cta p {
        font-size: 1.05rem;
        line-height: 1.5;
        margin-bottom: 2rem;
    }

    .cta-btns {
        display: flex !important;
        flex-direction: column !important;
        gap: 1rem !important;
        align-items: center;
        width: 100%;
    }

    .cta-btns .btn {
        width: 100%;
        max-width: 320px;
        min-height: 58px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 !important;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 10rem;
    }

    .hero h1 {
        font-size: clamp(2.45rem, 12vw, 3.1rem);
    }
}

/* Contact Page Enhancements */
.contact-hero {
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.contact-main-section {
    background: radial-gradient(circle at top right, rgba(254, 250, 224, 0.4), rgba(248, 249, 250, 1)),
        url('https://images.unsplash.com/photo-1542332213-9b5a5a3fab35?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    background-blend-mode: overlay;
}

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

.contact-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 30px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.contact-card-highlight {
    background: var(--forest-deep);
    color: var(--white);
    border-color: var(--forest-deep);
}

.contact-card-highlight h4,
.contact-card-highlight p {
    color: var(--white);
}

.contact-card-highlight .link-arrow {
    color: var(--ochre);
}

.contact-card-icon {
    width: 50px;
    height: 50px;
    background: var(--mist);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-card-highlight .contact-card-icon {
    background: rgba(255, 255, 255, 0.1);
}

.contact-card-text h4 {
    margin-bottom: 5px;
    font-size: 1.2rem;
    color: var(--forest-deep);
}

.contact-card-text p {
    margin-bottom: 10px;
    color: var(--text-light);
    font-size: 0.95rem;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: 28px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.form-header {
    margin-bottom: 30px;
}

.form-header h3 {
    font-size: 1.8rem;
    color: var(--forest-deep);
    margin-bottom: 10px;
}

.form-header p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.form-group label {
    font-weight: 600;
    color: var(--forest-deep);
    margin-bottom: 8px;
    display: block;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    background: var(--mist);
    transition: var(--transition);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--moss);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(74, 124, 89, 0.1);
}

@media (max-width: 768px) {
    .contact-form-wrapper {
        padding: 25px;
    }
}

/* Birdwatching Page Enhancements */
.intro-badges {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.intro-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    padding: 10px 15px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    font-size: 0.95rem;
    color: var(--forest-deep);
    font-weight: 500;
}

.badge-icon {
    font-size: 1.2rem;
}

.section-mist {
    background: radial-gradient(circle at center, rgba(254, 250, 224, 0.3), rgba(248, 249, 250, 1));
}

.premium-included-grid {
    gap: 20px;
}

.premium-included-card {
    background: var(--white);
    padding: 24px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.premium-included-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.check-icon {
    width: 28px;
    height: 28px;
    background: rgba(74, 124, 89, 0.1);
    color: var(--moss);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.premium-included-card p {
    margin: 0;
    font-size: 1.05rem;
    color: var(--forest-deep);
    padding-top: 2px;
}

/* Night Walks Page Enhancements */
.section-dark-premium {
    background: radial-gradient(circle at center, #1a3c34 0%, #112621 100%);
    color: var(--white);
}

.section-dark-deep {
    background: #0f1c18;
    color: var(--white);
}

.premium-details-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.night-details-premium {
    display: flex;
    flex-direction: column;
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.night-details-premium li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
}

.detail-icon {
    font-size: 1.3rem;
    background: rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.night-species-grid {
    gap: 25px;
}

.night-species-card {
    height: 300px;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.night-species-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.night-species-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
    padding: 30px 25px 25px;
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
}

.night-species-overlay h4 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--white);
}

.night-species-overlay p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

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

@media (max-width: 480px) {
    .night-species-grid {
        grid-template-columns: 1fr;
    }
}

margin: 0;
font-size: 1.05rem;
color: var(--forest-deep);
padding-top: 2px;
}

.premium-tours-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.premium-tour-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.premium-tour-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.tour-img-col {
    height: 250px;
    background-size: cover;
    background-position: center;
}

.tour-info-col {
    padding: 35px;
    display: flex;
    flex-direction: column;
}

.tour-info-col h3 {
    font-size: 1.6rem;
    color: var(--forest-deep);
    margin-bottom: 10px;
}

.tour-info-col p {
    color: var(--text-light);
    font-size: 1.05rem;
    margin-bottom: 25px;
    flex-grow: 1;
}

.tour-actions {
    display: flex;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid var(--mist);
}

@media (min-width: 768px) {
    .premium-tour-card {
        flex-direction: row;
        height: 320px;
    }

    .tour-img-col {
        width: 45%;
        height: 100%;
    }

    .tour-info-col {
        width: 55%;
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .premium-included-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* Map Section Styles */
.map-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-top: 40px;
}

.map-wrapper iframe {
    width: 100%;
    height: 520px;
    border: none;
    filter: contrast(1.05) saturate(1.1) brightness(0.95);
    display: block;
}

.map-floating-card {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 24px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    max-width: 320px;
    z-index: 10;
}

.map-floating-card h4 {
    font-size: 1.25rem;
    color: var(--forest-deep);
    margin-bottom: 8px;
}

.map-floating-card p {
    font-size: 0.95rem;
    color: var(--text-main);
    margin-bottom: 16px;
}

.map-floating-card .btn {
    width: 100%;
    text-align: center;
}

@media (max-width: 768px) {
    .map-wrapper iframe {
        height: 400px;
    }

    .map-floating-card {
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        max-width: none;
        text-align: center;
        padding: 20px;
    }
}

/* Final CTA Styles */
.final-cta {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    padding: 80px 0;
}

.final-cta h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.final-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto 40px;
}

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

.btn-whatsapp {
    background-color: #25D366;
    color: var(--white);
    border: none;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    color: var(--white);
    box-shadow: var(--shadow-md);
}

/* Experiences Page Enhancements */
.premium-exp-card {
    height: 420px;
    border-radius: 24px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.premium-exp-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.premium-exp-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.8) 100%);
    padding: 40px 30px 30px;
    display: flex;
    flex-direction: column;
    color: var(--white);
}

.exp-icon {
    font-size: 2rem;
    margin-bottom: auto;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.premium-exp-overlay h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.premium-exp-overlay p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.custom-tour-cta {
    border-radius: 32px;
    background-size: cover;
    background-position: center;
    padding: 60px 40px;
    color: var(--white);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.custom-tour-content {
    max-width: 600px;
    margin: 0 auto;
}

.custom-tour-content h2 {
    color: var(--white);
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.custom-tour-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 35px;
}

.custom-tour-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: left;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 25px;
}

.custom-tour-bullets li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
}

.bullet-icon {
    font-size: 1.2rem;
}

/* Gallery Page Enhancements */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.gallery-filter-btn {
    border-color: var(--moss);
    color: var(--forest-deep);
    background: transparent;
    transition: var(--transition);
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
    background: var(--moss);
    color: var(--white);
    border-color: var(--moss);
}

.gallery-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    grid-auto-flow: dense;
}

/* Make some items taller for masonry feel */
.gallery-grid-premium .gallery-item-premium:nth-child(3n+1) {
    grid-row: span 2;
}

.gallery-item-premium {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, opacity 0.3s ease, box-shadow 0.3s ease;
    background: var(--dark);
    min-height: 250px;
}

.gallery-item-premium:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.gallery-item-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    display: block;
}

.gallery-item-premium:hover .gallery-item-img {
    transform: scale(1.08);
}

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
}

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

.gallery-item-category {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--sand);
    margin-bottom: 5px;
    font-weight: 600;
}

.gallery-item-title {
    color: var(--white);
    font-size: 1.3rem;
    margin: 0;
}

/* Lightbox */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lightbox-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 3rem;
    cursor: pointer;
    line-height: 1;
    z-index: 10000;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
    color: var(--white);
    margin-top: 15px;
    font-size: 1.2rem;
    text-align: center;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    padding: 20px 25px;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--forest-deep);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--moss);
}

.faq-icon {
    position: relative;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background-color: var(--forest-deep);
    transition: transform 0.3s ease;
}

/* Horizontal line */
.faq-icon::before {
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    transform: translateY(-50%);
}

/* Vertical line */
.faq-icon::after {
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    transform: translateX(-50%);
}

.faq-item.active .faq-icon::after {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
}

.faq-item.active .faq-question {
    color: var(--moss);
}

.faq-answer {
    padding: 0 25px 25px 25px;
    color: var(--text-main);
    font-size: 1.05rem;
    line-height: 1.7;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

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