@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Satisfy&display=swap');

:root {
    --primary-green: #112d11;
    --accent-green: #2d5a27;
    --accent-yellow: rgb(216, 179, 32);
    --dark-yellow: #ceac24;
    --light-grey: #f4f4f4;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: var(--accent-yellow);
    border: 2px solid #1a1a1a;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #f1c40f; /* Slightly brighter yellow on hover */
    box-shadow: inset 0 0 5px rgba(255,255,255,0.3);
}

html, body {
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--white);
    background-color: #1a1a1a; /* Even lighter for smoother contrast */
    position: relative;
}


body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(64, 76, 65, 0.696) 0%, transparent 80%);
    pointer-events: none;
    z-index: 900; /* Lower than header */
}

svg.lucide {
    stroke-width: 2.5px;
}

/* Top Bar */
.top-bar {
    background: linear-gradient(115deg, #000000 0%, #e2c044 44.5%, #f40858 45.5%, #163016 100%);
    color: var(--white);
    padding: 12px 0;
    position: relative;
    z-index: 1001;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

/* Shimmering Shine Animation */
.top-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    animation: topBarShimmer 5s infinite ease-in-out;
}

@keyframes topBarShimmer {
    0% { left: -150%; }
    30% { left: 150%; }
    100% { left: 150%; }
}

.top-bar-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
}

.top-bar-content span {
    display: flex;
    align-items: center;
    gap: 8px;
    /* 3D Text Effect */
    color: #ffffff;
    text-shadow: 
        0 1px 0 rgba(0,0,0,0.2),
        0 2px 0 rgba(0,0,0,0.2),
        0 3px 0 rgba(0,0,0,0.2),
        1px 1px 1px rgba(0,0,0,0.5),
        0px 0px 5px rgba(255,255,255,0.2);
    transition: var(--transition);
}

.top-bar-content span:hover {
    transform: translateY(-1px);
    text-shadow: 
        0 1px 0 rgba(0,0,0,0.3),
        0 2px 0 rgba(0,0,0,0.3),
        0 4px 0 rgba(0,0,0,0.3),
        1px 3px 5px rgba(0,0,0,0.6);
}

.top-bar-content .separator {
    opacity: 0.5;
    font-weight: 300;
}

.top-bar-content svg {
    width: 15px;
    height: 15px;
    stroke-width: 2.5px;
    filter: drop-shadow(0 0 3px rgba(255,255,255,0.4));
}

/* Mobile adjustments for Top Bar */
@media (max-width: 768px) {
    .top-bar-content {
        flex-direction: column;
        gap: 5px;
        font-size: 0.65rem;
        padding: 0 10px;
    }
    .top-bar-content .separator {
        display: none;
    }
}

/* Navigation */
.navbar {
    background: #ffffff;
    padding: 2px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000; /* Above theme */
    height: 69px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-container img {
    height: 65px;
    width: 65px;
}

.logo-text h1 {
    font-size: 1.1rem;
    color: var(--accent-green);
    font-weight: 800;
    line-height: 1;
}

.logo-text p {
    font-size: 0.7rem;
    color: #666;
    font-weight: 500;
}

.nav-links {
    display: flex;
    gap: 25px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    padding-bottom: 4px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-yellow);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--accent-yellow);
}

.nav-actions {
    display: flex;
    gap: 10px;
}

/* ==========================================================================
   HIGH-ULTRA DUAL-SPLIT BUTTON SYSTEM (SITE-WIDE)
   ========================================================================== */
.btn-hero, .btn-nav, .btn-primary, .btn-secondary, .service-btn, .zone-btn, .stay-btn, .mobile-btn, .footer-btn, .btn-submit, .btn-yellow, .btn-white, .action-link, .btn-cta-final, .btn-yellow-final, .btn-green-final, .btn-stay-yellow-large, .btn-book-zone, .btn-explore-more, .btn-stay-yellow, .btn-stay-green, .btn-cta-yellow, .btn-cta-green, .btn-view-details, .btn-check-availability {
    position: relative;
    overflow: hidden;
    /* Cinematic Dual-Split Background */
    background: linear-gradient(135deg, #0a1a0a 0%, #112d11 49%, #f2c011 51%, #d9ac0d 100%);
    background-size: 200% 100%;
    background-position: 0% 0%;
    color: #ffffff !important;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    border: none;
    border-radius: 2px;
    padding: 12px 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
    cursor: pointer;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.4);
    font-size: 0.80rem;
}

/* Glossy Shimmer Shine Effect */
.btn-hero::before, .btn-nav::before, .btn-primary::before, .btn-secondary::before, .service-btn::before, .zone-btn::before, .stay-btn::before, .mobile-btn::before, .footer-btn::before, .btn-submit::before, .btn-yellow::before, .btn-white::before, .action-link::before, .btn-cta-final::before, .btn-yellow-final::before, .btn-green-final::before, .btn-stay-yellow-large::before, .btn-book-zone::before, .btn-explore-more::before, .btn-stay-yellow::before, .btn-stay-green::before, .btn-cta-yellow::before, .btn-cta-green::before, .btn-view-details::before, .btn-check-availability::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 150%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: 0.8s ease-in-out;
    z-index: 1;
}

/* Hover States: Metallic Fusion */
.btn-hero:hover, .btn-nav:hover, .btn-primary:hover, .btn-secondary:hover, .service-btn:hover, .zone-btn:hover, .stay-btn:hover, .mobile-btn:hover, .footer-btn:hover, .btn-submit:hover, .btn-yellow:hover, .btn-white:hover, .action-link:hover, .btn-cta-final:hover, .btn-yellow-final:hover, .btn-green-final:hover, .btn-stay-yellow-large:hover, .btn-book-zone:hover, .btn-explore-more:hover, .btn-stay-yellow:hover, .btn-stay-green:hover, .btn-cta-yellow:hover, .btn-cta-green:hover, .btn-view-details:hover, .btn-check-availability:hover {
    background-position: 100% 0%;
    transform: translateY(-8px) scale(1.04);
    box-shadow: 0 15px 35px rgba(242, 192, 17, 0.4);
    letter-spacing: 1.5px;
}

.btn-hero:hover::before, .btn-nav:hover::before, .btn-primary:hover::before, .btn-secondary:hover::before, .service-btn:hover::before, .zone-btn:hover::before, .stay-btn:hover::before, .mobile-btn:hover::before, .footer-btn:hover::before, .btn-submit:hover::before, .btn-yellow:hover::before, .btn-white:hover::before, .action-link:hover::before, .btn-cta-final:hover::before, .btn-yellow-final:hover::before, .btn-green-final:hover::before, .btn-stay-yellow-large:hover::before, .btn-book-zone:hover::before, .btn-explore-more:hover::before, .btn-stay-yellow:hover::before, .btn-stay-green:hover::before, .btn-cta-yellow:hover::before, .btn-cta-green:hover::before, .btn-view-details:hover::before, .btn-check-availability:hover::before {
    left: 150%;
}

.btn-nav, .btn-hero, .btn-cta-yellow, .btn-cta-green-light {
    padding: 10px 22px !important;
    font-size: 0.80rem !important;
    gap: 8px !important;
    letter-spacing: 0.8px !important;
}

.btn-nav i, .btn-nav svg, .btn-hero i, .btn-hero svg, .btn-cta-yellow i, .btn-cta-yellow svg, .btn-cta-green-light i, .btn-cta-green-light svg {
    width: 16px !important;
    height: 16px !important;
}
.hero {
    position: relative;
    height: 90vh;
    min-height: 600px;
    background: url('assets/hero_bg.png') center/cover no-repeat;
    display: flex;
    align-items: flex-start;
    padding: 80px 8% 0;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Multi-layered cinematic gradient */
    background: 
        linear-gradient(to right, rgba(103, 109, 103, 0.85) 0%, rgba(39, 48, 39, 0.4) 40%, transparent 70%),
        linear-gradient(to top, rgba(85, 84, 84, 0.6) 0%, transparent 30%),
        radial-gradient(circle at 80% 20%, rgba(249, 230, 178, 0.15) 0%, transparent 50%);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.1); /* Extra layer of depth */
    z-index: 2;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-content {
    position: relative;
    z-index: 905;
    max-width: 650px;
}

.hero-content > * {
    opacity: 0;
    animation: slideInLeft 0.8s ease-out forwards;
}

.hero-content .tagline { animation-delay: 0.1s; }
.hero-content h2 { animation-delay: 0.3s; }
.hero-content .script-text { animation-delay: 0.5s; }
.hero-content p { animation-delay: 0.7s; }
.hero-content .hero-actions { animation-delay: 0.9s; }

.tagline {
    display: inline-block;
    padding: 6px 16px;
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 25px;
    color: var(--accent-yellow);
    background: rgba(0,0,0,0.3);
}

.hero-content h2 {
    font-size: 4.5rem;
    line-height: 1;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-content h2 span {
    color: var(--accent-yellow);
}

.script-text {
    font-family: 'Satisfy', cursive;
    color: var(--white);
    font-size: 3rem;
    display: block;
    margin-top: -10px;
    margin-bottom: 25px;
    text-transform: none;
    font-weight: 400;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: rgba(255,255,255,0.9);
}

.hero-content p span {
    color: var(--accent-yellow);
    font-weight: 700;
}

.hero-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-hero {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition);
}

.btn-hero i {
    width: 18px;
    height: 18px;
}

.btn-hero:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    filter: brightness(1.05);
}

.btn-hero-yellow {
    background-color: var(--accent-yellow);
    color: #333;
}

.btn-hero-grey {
    background-color: #e0e0e0;
    color: #333;
}

/* Services Section */
.services {
    padding: 80px 5%;
    background: linear-gradient(to right, #dcf1f9, #e4dff2);
    position: relative;
    z-index: 901; /* Bypasses the body::after overlay effect */
    color: #333;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    color: var(--primary-green);
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.section-header p {
    color: #555;
    font-size: 0.95rem;
    font-weight: 500;
}

.services-grid{
    display:grid !important;
    grid-template-columns:repeat(3,1fr) !important;
    gap:20px !important;
}

@media(max-width:991px){

    .services-grid{
        grid-template-columns:repeat(2,1fr) !important;
    }

}

@media(max-width:767px){

    .services-grid{
        grid-template-columns:1fr !important;
    }

}
.service-card {
    background: #fdfdfd;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.card-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .card-image img {
    transform: scale(1.08);
}

.card-content {
    padding: 25px 20px;
    text-align: center;
    background: #faf7f2;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.card-content h3 {
    color: var(--primary-green);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.card-content p {
    color: #666;
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 0;
}

/* Safari Zones Section */
.safari-zones {
    padding: 80px 5%;
    background-color: #f2f4ef;
    position: relative;
    z-index: 902;
    color: #333;
}

.zone-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: fit-content;
    margin: 0 auto 20px;
    padding: 6px 14px;
    background-color: #e5eadc;
    color: var(--accent-green);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    border: 1px solid rgba(45, 90, 39, 0.2);
}

.zone-badge i, .zone-badge svg {
    width: 14px;
    height: 14px;
}

.zones-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1450px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .zones-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .zones-grid {
        grid-template-columns: 1fr;
    }
}

.zone-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
}

.zone-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.zone-image {
    height: 220px;
    position: relative;
    overflow: hidden;
}

.zone-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.zone-card:hover .zone-image img {
    transform: scale(1.05);
}

.badge-left, .badge-right {
    position: absolute;
    top: 15px;
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    backdrop-filter: blur(4px);
}

.badge-left {
    left: 15px;
    background: rgba(17, 45, 17, 0.85);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
}

.badge-right {
    right: 15px;
    background: rgba(255, 255, 255, 0.9);
    color: #c9302c;
    border: 1px solid rgba(201, 48, 44, 0.3);
}

.zone-content {
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    background: #fbfbfa;
}

.zone-content h3 {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-green);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.zone-content h3 svg, .zone-content h3 i {
    width: 18px;
    height: 18px;
}

.zone-desc {
    color: #666;
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

.zone-tags-group {
    margin-bottom: 15px;
}

.zone-tags-group h4 {
    font-size: 0.75rem;
    color: #444;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    font-weight: 700;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.tags span {
    background: #eeeee8;
    color: #555;
    font-size: 0.7rem;
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: 600;
    border: 1px solid #e2e2da;
}

.zone-price {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    padding-top: 15px;
    margin-bottom: 20px;
    font-size: 0.8rem;
    color: #555;
    border-top: 1px dashed #ddd;
}

.zone-price strong {
    color: var(--primary-green);
    font-size: 0.95rem;
}

.zone-price svg, .zone-price i {
    width: 14px;
    height: 14px;
    color: var(--accent-green);
}

.btn-book-zone {
    width: 100%;
}

.btn-book-zone:hover i, .btn-book-zone:hover svg {
    transform: rotate(10deg) scale(1.1);
}

.explore-more-container {
    text-align: center;
    margin-top: 40px;
}

/* Stays Section */
.stays-section {
    padding: 80px 5%;
    background-color: #fcfdfa;
    position: relative;
    z-index: 903;
    color: #333;
}

.stays-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

@media (max-width: 992px) {
    .stays-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
}

.stay-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.06);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.stay-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.stay-image {
    height: 260px;
    position: relative;
    overflow: hidden;
}

.stay-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.stay-card:hover .stay-image img {
    transform: scale(1.05);
}

.stay-badge-left, .stay-badge-right {
    position: absolute;
    top: 15px;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.stay-badge-left {
    left: 15px;
}

.stay-badge-right {
    right: 15px;
}

.stay-badge-right strong {
    font-size: 1rem;
    color: #112d11;
}

.stay-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.stay-content h3 {
    color: var(--primary-green);
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.stay-content h3 span {
    font-size: 1rem;
    font-weight: 600;
    color: #555;
}

.stay-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.stars {
    display: flex;
    color: #f5b913;
}

.stars svg {
    width: 16px;
    height: 16px;
    fill: #f5b913;
    color: #f5b913;
}

.review-count {
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
}

.stay-location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: #777;
    margin-bottom: 15px;
}

.stay-location svg {
    width: 16px;
    height: 16px;
    color: #d4ac0d;
}

.stay-desc {
    color: #555;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.stay-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.stay-tags span {
    background: #fdfdfc;
    color: #444;
    font-size: 0.75rem;
    padding: 6px 12px;
    border-radius: 50px;
    font-weight: 600;
    border: 1px solid #e8ede0;
}

.stay-amenities {
    font-size: 0.85rem;
    color: #555;
    margin-bottom: 25px;
}

.stay-amenities strong {
    color: #333;
}

.stay-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: auto;
}

.btn-stay-yellow-large {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 40px;
    border-radius: 2px;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.80rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    background: linear-gradient(135deg, #0a1a0a 0%, #112d11 49%, #f2c011 51%, #d9ac0d 100%);
    background-size: 200% 100%;
    background-position: 0% 0%;
    color: #ffffff !important;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border: none;
}

.btn-stay-yellow-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 150%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: 0.8s;
}

.btn-stay-yellow-large:hover {
    background-position: 100% 0%;
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 15px 40px rgba(242, 192, 17, 0.4);
}

.btn-stay-yellow-large:hover::before {
    left: 150%;
}

/* River Rafting Section */
.rafting-section {
    padding: 80px 5%;
    background-color: #f6f5ef;
    position: relative;
    z-index: 904;
    color: #333;
}

.rafting-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1400px;
    margin: 0 auto 60px;
    align-items: center;
}

@media (max-width: 992px) {
    .rafting-content-grid {
        grid-template-columns: 1fr;
    }
}

.rafting-text h3 {
    color: var(--primary-green);
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.rafting-text p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.rafting-text h4 {
    color: #333;
    font-size: 1rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.rafting-highlights {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.rafting-highlights li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #444;
    font-weight: 500;
}

.rafting-highlights li svg {
    width: 16px;
    height: 16px;
    color: #d4ac0d;
}

.rafting-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.rafting-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.rafting-image:hover img {
    transform: scale(1.03);
}

.distance-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .distance-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .distance-cards-grid {
        grid-template-columns: 1fr;
    }
}

.distance-card {
    background: #f6f5ef; /* Warm ivory/beige background */
    border: 1px solid #e8e6df;
    padding: 25px 20px;
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
}

.distance-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    border-color: #dcdad0;
}

.distance-card h4 {
    color: var(--primary-green);
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.distance-card strong {
    display: block;
    color: #333;
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.distance-card p {
    color: #666;
    font-size: 0.85rem;
    line-height: 1.4;
    margin: 0;
}

/* River Rafting CTA Section */
.rafting-cta-section {
    padding: 25px 5%;
    background-color: rgb(234, 236, 231);
    position: relative;
    z-index: 904;
    text-align: center;
}

.rafting-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.rafting-cta-content h2 {
    color: var(--primary-green);
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.rafting-cta-content p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 35px;
}

/* Standard CTA Groupings already handled by button system */
.cta-actions, .cta-btns-group {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* Adventure Section */
.adventure-section {
    padding: 80px 5%;
    background-color: #f6f5ef;
    position: relative;
    z-index: 905;
    color: #333;
}

.adventure-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .adventure-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .adventure-grid {
        grid-template-columns: 1fr;
    }
}

.adventure-card {
    background: #f6f5ef;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid #e8e6df;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.adventure-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-color: #dcdad0;
}

.adventure-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.adventure-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.adventure-card:hover .adventure-image img {
    transform: scale(1.05);
}

.adventure-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 100%);
    pointer-events: none;
}

.adventure-title-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
    font-size: 1.5rem;
    font-weight: 800;
    z-index: 2;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.4);
}

.adventure-content {
    padding: 25px 20px;
    flex-grow: 1;
}

.adventure-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Pricing Section */
.pricing-section {
    padding: 20px 5% 80px;
    background-color: #f6f5ef;
    position: relative;
    z-index: 906;
    color: #333;
}

.pricing-header {
    text-align: center;
    margin-bottom: 40px;
}

.pricing-header h2 {
    color: #112d11;
    font-size: 1.8rem;
    font-weight: 800;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

.pricing-card {
    background: #f6f5ef;
    border-radius: 8px;
    border: 1px solid #e8e6df;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    transition: var(--transition);
}

.pricing-card.full-width {
    grid-column: 1 / -1;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    border-color: #dcdad0;
}

.pricing-card-header h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #444;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.pricing-card-header h3 svg {
    width: 20px;
    height: 20px;
    color: #666;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
}

.pricing-table th, .pricing-table td {
    padding: 12px 5px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.9rem;
    color: #555;
}

.pricing-table th {
    font-weight: 700;
    color: #333;
    text-align: left;
}

.pricing-table tbody tr {
    transition: all 0.3s ease;
    cursor: pointer;
}

.pricing-table tbody tr:hover {
    background-color: rgba(242, 192, 17, 0.15); /* Soft golden highlight */
}

.pricing-table tbody tr:hover td {
    color: #112d11;
    border-color: transparent;
}

.pricing-table tr:last-child td {
    border-bottom: none;
}

.text-right {
    text-align: right !important;
}

.pricing-footer {
    max-width: 1000px;
    margin: 40px auto 0;
}

.pricing-note {
    color: #8c5d1e;
    font-size: 0.9rem;
    margin-bottom: 25px;
}

.pricing-note strong {
    font-weight: 700;
}

/* Exclusive Services Section */
.exclusive-services {
    padding: 80px 5%;
    background-color: #fcfdfa;
    position: relative;
    z-index: 907;
}

.exclusive-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 40px auto 0;
}

@media (max-width: 768px) {
    .exclusive-grid {
        grid-template-columns: 1fr;
    }
}

.exclusive-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height: 350px;
    transition: var(--transition);
}

.exclusive-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.exclusive-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.exclusive-card:hover img {
    transform: scale(1.1);
}

.exclusive-card .exclusive-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 40%, rgba(0,0,0,0) 100%);
    z-index: 2;
    transition: all 0.4s ease;
}

.exclusive-card:hover .exclusive-overlay {
    background: rgba(0,0,0,0.7);
}

.exclusive-title {
    color: white;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 5px;
    transition: transform 0.4s ease;
}

.exclusive-details {
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
    opacity: 0;
    max-height: 0;
    transform: translateY(30px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.exclusive-card:hover .exclusive-details {
    opacity: 1;
    max-height: 100px;
    transform: translateY(0);
    margin-top: 10px;
}

.exclusive-card:hover .exclusive-title {
    transform: translateY(-5px);
}

/* Reviews Section */
.reviews-section {
    padding: 0px 5%;
    background-color: #ffffff;
    position: relative;
    z-index: 908;
    text-align: center;
}

.google-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 50px;
    font-size: 1.2rem;
    font-weight: 500;
    color: #444;
}

.google-logo-text {
    height: 24px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

.review-card {
    text-align: left;
    padding: 20px;
    transition: var(--transition);
}

.review-card:hover {
    background-color: #fafafa;
    border-radius: 12px;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer-info h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.rating-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 4px;
}

.stars {
    display: flex;
    gap: 2px;
}

.star-filled {
    width: 14px;
    height: 14px;
    fill: #f2c011;
    color: #f2c011;
}

.review-time {
    font-size: 0.8rem;
    color: #999;
}

.review-body p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.review-footer {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
}

.google-g-icon {
    width: 16px;
    height: 16px;
}

.posted-on {
    font-size: 0.8rem;
    color: #666;
}

.google-blue {
    color: #4285F4;
    font-weight: 600;
}

/* FAQ Section */
.faq-section {
    padding: 80px 5%;
    background-color: #f6f5ef;
    position: relative;
    z-index: 909;
}

.faq-container {
    max-width: 800px;
    margin: 40px auto 60px;
}

.faq-item {
    background: #ffffff;
    border: 1px solid #e8e6df;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item summary {
    padding: 18px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: #333;
    list-style: none;
    outline: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary i {
    width: 20px;
    height: 20px;
    color: #999;
    transition: transform 0.3s ease;
}

.faq-item[open] summary i {
    transform: rotate(180deg);
}

.faq-content {
    padding: 0 25px 20px;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

.faq-cta {
    max-width: 100%;
    margin: 0 auto;
    background-color: var(--primary-green);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    color: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.faq-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.faq-cta p {
    margin-bottom: 30px;
    opacity: 0.9;
}

.faq-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-cta-green-light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition);
    background-color: #ffffff;
    color: var(--primary-green);
}

.btn-cta-green-light:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

/* Cinematic Footer Styles */
.footer {
    background: #081108;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    padding-top: 120px;
    margin-top: auto; /* Sticky footer fix */
    width: 100%;
}

.footer-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.footer-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

.footer-wave .shape-fill {
    fill: #1a1a1a; /* Matches body bg */
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 5% 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1.2fr 1fr;
    gap: 60px;
}

.footer-brand .footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 25px;
}

.footer-brand .footer-logo-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 15px;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.3));
}

.footer-brand h2 {
    color: var(--white);
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1;
    margin-bottom: 4px;
}

.footer-brand .tagline {
    color: var(--accent-yellow);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-about {
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 400px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, #0a1a0a 0%, #112d11 100%);
    border: 1px solid rgba(242, 192, 17, 0.2);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-yellow);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: 0.5s;
}

.social-link:hover {
    background: linear-gradient(135deg, var(--accent-yellow) 0%, #d9ac0d 100%);
    color: #000;
    border-color: var(--accent-yellow);
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 10px 20px rgba(242, 192, 17, 0.2);
}

.social-link:hover::before {
    left: 100%;
}

.footer-nav-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.footer-col h3, .footer-cta-col h3 {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h3::after, .footer-cta-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent-yellow);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.95rem;
    transition: 0.3s;
    display: block;
}

.footer-links a:hover {
    color: var(--accent-yellow);
    transform: translateX(8px);
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 18px;
    border-radius: 2px;
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: var(--white);
    transition: all 0.3s ease;
}

.contact-card i {
    width: 24px;
    height: 24px;
    color: var(--accent-yellow);
}

.contact-card .label {
    display: block;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 2px;
}

.contact-card .value {
    font-size: 1.05rem;
    font-weight: 700;
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: var(--accent-yellow);
    transform: scale(1.02);
}

.disclaimer-text {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    font-style: italic;
    line-height: 1.4;
}

.footer-bottom {
    background: #040904;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-legal {
    display: flex;
    gap: 30px;
}

.footer-legal a, .developer a {
    color: var(--accent-yellow);
    text-decoration: none;
    transition: 0.3s;
    font-weight: 600;
}

.footer-legal a:hover, .developer a:hover {
    color: var(--white);
    text-decoration: underline;
}
/* Scroll to Top Button */
.scroll-top-btn {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-yellow) 0%, var(--dark-yellow) 100%);
    color: #112d11;
    border: none;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2500;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(242, 192, 17, 0.3);
}

.scroll-top-btn.active {
    opacity: 1;
    visibility: visible;
    bottom: 40px;
}

.scroll-top-btn:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(242, 192, 17, 0.5);
    background: linear-gradient(135deg, #ffffff 0%, var(--accent-yellow) 100%);
}

.scroll-top-btn svg {
    width: 24px;
    height: 24px;
}

@media (max-width: 768px) {
    .scroll-top-btn {
        right: 20px;
        bottom: 20px;
        width: 44px;
        height: 44px;
    }
    .scroll-top-btn.active {
        bottom: 30px;
    }
}
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .footer {
        padding-top: 100px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .footer-bottom-container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .footer-nav-group {
        gap: 20px;
    }
}


/* Social Sidebar */
.social-sidebar {
    position: fixed;
    left: 20px;
    bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 2000;
}

.social-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #0a1a0a 0%, #112d11 100%);
    border: 1px solid rgba(242, 192, 17, 0.3);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-yellow);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: 0.5s;
}
.social-icon:hover::before {
    left: 100%;
}

.social-icon svg {
    width: 22px;
    height: 22px;
    stroke-width: 2.5px;
}

/* Mobile Menu Styles */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--primary-green);
    cursor: pointer;
    padding: 5px;
    transition: var(--transition);
}

.mobile-menu-btn i {
    width: 30px;
    height: 30px;
}

.mobile-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    z-index: 10000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    visibility: hidden;
    overflow-y: auto;
}

.mobile-overlay.active {
    right: 0;
    visibility: visible;
}

.mobile-menu-content {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    padding: 20px 6%;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 30px;
}

.close-menu {
    background: #f5f5f5;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    cursor: pointer;
}

.mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-nav-links li a {
    text-decoration: none;
    color: #333;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 14px 18px;
    border-radius: 10px;
    transition: var(--transition);
}

.mobile-nav-links li a i {
    width: 20px;
    height: 20px;
    color: var(--accent-green);
}

.mobile-nav-links li a:hover {
    background-color: #f6f5ef;
    color: var(--primary-green);
    transform: translateX(5px);
}

.mobile-menu-actions {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 40px;
    padding-bottom: 20px;
}

.mobile-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 12px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    background: linear-gradient(to right, #112d11, #d9ac0d);
    color: white !important;
    transition: var(--transition);
    border: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.mobile-btn:active {
    transform: scale(0.96);
}

.mobile-btn i {
    width: 22px;
    height: 22px;
    stroke-width: 2.5px;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .hero-content h2 {
        font-size: 3.5rem;
    }
    .nav-links {
        display: none;
    }
    .services-grid, .zones-grid, .stays-grid, .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid, .zones-grid, .stays-grid, .reviews-grid, .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .hero-content h2 {
        font-size: 2.8rem;
    }
    
    .rafting-content-grid {
        grid-template-columns: 1fr;
    }
    
    .distance-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .script-text {
        font-size: 2.2rem;
        margin-top: 5px;
    }
}

@media (max-width: 600px) {
    .top-bar {
        padding: 3px 10px;
        min-height: 18px;
        height: auto;
    }

    .top-bar-content {
        flex-direction: column;
        gap: 1px;
        padding: 1px 0;
    }

    .top-bar-content span {
        font-size: 0.55rem;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 1px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #ffffff;
        text-shadow: 0 1px 2px rgba(0,0,0,0.5);
    }

    .top-bar-content i {
        width: 9px;
        height: 9px;
        margin-right: 3px;
        color: var(--accent-yellow);
        stroke-width: 3px;
    }

    .top-bar-content .separator {
        display: none;
    }

    .navbar {
        height: 65px;
        padding: 0 5%;
    }

    .logo-container img {
        height: 45px;
        width: 45px;
    }

    .logo-text {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .logo-text h1 {
        font-size: 0.82rem;
        letter-spacing: -0.3px;
        line-height: 1.1;
    }

    .script-text {
        font-size: 1.8rem;
        margin-top: 5px;
    }

    .logo-text p {
        font-size: 0.58rem;
        margin-top: -2px;
    }

    .nav-actions {
        display: none; /* Hide buttons on mobile as requested */
    }

    .mobile-menu-btn {
        display: block; /* Show hamburger menu */
    }

    .hero {
        padding: 40px 6%;
        height: auto;
        min-height: 450px;
        display: flex;
        align-items: center;
    }

    .hero-content h2 {
        font-size: 2.1rem;
        line-height: 1.1;
    }
    
    .hero-content p {
        font-size: 0.9rem;
    }

    .hero-actions {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .btn-hero {
        width: 100%;
        justify-content: center;
        padding: 14px;
        background-position: 0% 0% !important;
    }

    .hero-actions a:first-child {
        background-position: 100% 0% !important;
        box-shadow: 0 15px 35px rgba(242, 192, 17, 0.4) !important;
    }

    .section-header {
        text-align: left;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 25px;
    }

    .section-header h2 {
        font-size: 1.55rem;
    }

    .section-header p {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    /* Compact Cards for Mobile */
    .zone-content {
        padding: 18px 15px;
    }

    .stay-content {
        padding: 20px 15px;
    }

    .stay-content h3 {
        font-size: 1.25rem;
        margin-bottom: 6px;
    }

    .stay-rating {
        margin-bottom: 8px;
    }

    .stay-location {
        margin-bottom: 12px;
    }

    .stay-desc {
        margin-bottom: 12px;
        font-size: 0.82rem;
        line-height: 1.4;
    }

    .stay-tags {
        margin-bottom: 15px;
        gap: 6px;
    }

    .stay-amenities {
        margin-bottom: 18px;
        font-size: 0.82rem;
    }

    .zone-desc {
        margin-bottom: 15px;
        line-height: 1.4;
        font-size: 0.82rem;
    }

    .tags span {
        padding: 3px 8px;
        font-size: 0.68rem;
    }

    .zone-tags-group {
        margin-bottom: 12px;
    }

    .zone-price {
        padding-top: 12px;
        margin-bottom: 15px;
    }

    .services, .zones, .stays-section, .rafting-section, .pricing-section, .faq-section, .reviews-section, .adventure-section, .distance-section {
        padding: 45px 5% !important;
    }

    .distance-cards-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .exclusive-card {
        height: 260px;
    }

    .social-sidebar {
        display: none; /* Hide fixed sidebar on mobile to prevent overlapping content */
    }

    .rafting-cta-section {
        text-align: left;
    }

    .cta-actions {
        justify-content: flex-start;
    }

    .faq-cta {
        display: flex;
        flex-direction: column;
        gap: 12px;
        align-items: center;
        width: 100%;
        margin-top: 25px;
    }

    .faq-cta a {
        width: 100%;
        justify-content: center;
        margin: 0 !important;
        padding: 14px 25px !important;
        background-position: 0% 0% !important;
    }

    .faq-cta a:first-child {
        background-position: 100% 0% !important;
        box-shadow: 0 15px 35px rgba(242, 192, 17, 0.4) !important;
        letter-spacing: 1.5px !important;
    }
}

@media (max-width: 420px) {
    .logo-text h1 {
        font-size: 0.75rem;
    }
    .logo-text p {
        font-size: 0.5rem;
    }
    .logo-container {
        gap: 8px;
    }
    .logo-container img {
        height: 40px;
        width: 40px;
    }

    /* Create space between badges on tiny screens */
    .stay-badge-left, .stay-badge-right {
        font-size: 0.68rem;
        padding: 4px 10px;
        top: 12px;
    }
    .stay-badge-left { left: 10px; }
    .stay-badge-right { right: 10px; }
    
    .stay-badge-right strong {
        font-size: 0.8rem;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



