       /* =========================
   THEME COLORS (EDIT HERE)
========================= */
:root{
  --primary:#0f766e;   /* main eco green */
  --secondary:#14b8a6; /* light teal */
  --dark:#0b1f1c;
  --light:#ffffff;
  --gray:#e5e7eb;
  --text-muted: #64748b;
  --radius-card: 16px; /* Slightly reduced for tighter card layout */
  --radius-pill: 999px;
  --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}


/* RESET */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Arial, sans-serif;
  text-decoration: none;
}

        /* Modern Box Sizing reset */
        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background-color: #f8fafc;
        }


html {
  scroll-behavior: smooth;
}

/* Optional: Offset for fixed/sticky headers */
:target {
  scroll-margin-top: 80px; 
}
/* =====================================================
   KIJIWENI ECO SAFARIS HEADER
===================================================== */

/* HEADER */
.kes-header{
    width:100%;
}

.kes-navbar{
    position:sticky;
    top:0;
    z-index:9999;

    background:rgba(255,255,255,.97);
    backdrop-filter:blur(12px);
}

/* =========================
   TOPBAR
========================= */
.kes-topbar{
    background:var(--dark);
    color:#fff;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:10px 5%;
    font-size:14px;

    transition:
        transform .4s ease,
        opacity .4s ease;

    will-change: transform;
}

.kes-topbar.hide{
    max-height:0;
    opacity:0;
    padding-top:0;
    padding-bottom:0;
}

/* LEFT & RIGHT */
.kes-top-left,
.kes-top-right{
    display:flex;
    align-items:center;
    gap:20px;
}

/* LINKS */
.kes-topbar a{
    color:#fff;

    display:flex;
    align-items:center;
    gap:8px;

    transition:.3s ease;
}

.kes-topbar a:hover{
    color:var(--secondary);
}

.kes-top-right a:hover{
    transform:translateY(-2px);
}

/* =========================
   NAVBAR
========================= */
.kes-navbar{
    background:rgba(255,255,255,.97);

    backdrop-filter:blur(12px);

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:14px 5%;

    box-shadow:0 2px 15px rgba(0,0,0,.06);

    transition:.3s ease;
}

/* LOGO */
.kes-logo img{
    width:60px;
    height:60px;
    object-fit:contain;
    display:block;
}

/* NAV LINKS */
.kes-nav-links{
    display:flex;
    align-items:center;
    justify-content:center;

    gap:30px;

    flex:1;

    list-style:none;
}

.kes-nav-links li a{
    color:var(--dark);

    font-weight:600;
    font-size:15px;

    position:relative;

    padding:5px 0;

    transition:.3s ease;
}

/* HOVER LINE */
.kes-nav-links li a::after{
    content:"";

    position:absolute;
    left:0;
    bottom:-6px;

    width:0%;
    height:3px;

    background:var(--secondary);

    border-radius:20px;

    transition:.3s ease;
}

.kes-nav-links li a:hover{
    color:var(--primary);
}

.kes-nav-links li a:hover::after{
    width:100%;
}

/* BUTTON */
.kes-book-btn{
    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

    color:#fff;

    padding:12px 24px;

    border-radius:999px;

    font-weight:700;

    transition:.3s ease;

    box-shadow:
    0 0 10px rgba(20,184,166,.4),
    0 0 20px rgba(20,184,166,.25);
}

.kes-book-btn:hover{
    transform:translateY(-3px);

    box-shadow:
    0 0 15px rgba(20,184,166,.7),
    0 0 30px rgba(20,184,166,.5);
}

/* =========================
   MENU BUTTON
========================= */
.kes-menu-btn{
    display:none;

    font-size:28px;

    color:var(--primary);

    cursor:pointer;

    z-index:10001;
}

/* =========================
   MOBILE MENU
========================= */
.kes-mobile-menu{
    position:fixed;

    top:0;
    left:-100%;

    width:300px;
    max-width:85%;

    height:100vh;

    background:
    linear-gradient(
        180deg,
        #0f766e 0%,
        #0c5f58 45%,
        #0b1f1c 100%
    );

    padding:90px 30px;

    transition:.4s ease;

    z-index:10000;

    overflow-y:auto;
}

.kes-mobile-menu.active{
    left:0;
}

/* MOBILE LOGO */
.kes-mobile-logo{
    text-align:center;
    margin-bottom:30px;
}

.kes-mobile-logo img{
    width:85px;
    height:85px;
    object-fit:contain;
}

/* MOBILE LINKS */
.kes-mobile-menu a{
    display:block;

    color:#fff;

    font-size:18px;
    font-weight:600;

    margin-bottom:22px;

    transition:.3s ease;
}

.kes-mobile-menu a:hover{
    color:var(--secondary);
    padding-left:8px;
}

/* MOBILE BUTTON */
.kes-mobile-btn{
    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

    display:inline-block !important;

    padding:14px 22px;

    border-radius:999px;

    margin-top:20px;
}

/* OVERLAY */
.kes-overlay{
    position:fixed;
    inset:0;

    background:rgba(0,0,0,.45);

    opacity:0;
    visibility:hidden;

    transition:.3s ease;

    z-index:9998;

    pointer-events:none;
}

.kes-overlay.active{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
}

/* =========================
   RESPONSIVE
========================= */
@media(max-width:992px){

    .kes-nav-links,
    .kes-book-btn{
        display:none;
    }

    .kes-menu-btn{
        display:block;
    }
}

@media(max-width:768px){

    .kes-topbar{
        display:none;
    }

    .kes-navbar{
        padding:14px 5%;
    }

    .kes-logo img{
        width:55px;
        height:55px;
    }
}




        .popular-trips {
            padding-block: 60px;
            padding-inline: max(15px, 4%);
        }

        .section-header {
            max-width: 700px;
            margin-inline: auto;
            margin-bottom: 45px;
            text-align: center;

            .section-tag {
                display: inline-block;
                color: var(--secondary);
                font-size: 0.7rem;
                font-weight: 700;
                letter-spacing: 2px;
                margin-bottom: 10px;
            }

            h2 {
                font-size: clamp(1.8rem, 4vw, 2.75rem);
                color: var(--dark);
                margin-bottom: 12px;
                line-height: 1.15;
                font-weight: 800;
            }

            p {
                color: var(--text-muted);
                font-size: 0.95rem;
                line-height: 1.6;
            }
        }

        /* Forces exactly 4 columns on laptops/desktops and allows downsizing gracefully */
        .trips-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px; /* Snug gap for 4-in-a-row */
        }

        /* Responsive Breakpoints explicitly handling column reductions */
        @media (max-width: 1100px) {
            .trips-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
        }

        @media (max-width: 600px) {
            .trips-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Compact Modern Card Nesting */
        .trip-card {
            background: var(--light);
            border-radius: var(--radius-card);
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
            transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
            border: 1px solid rgba(15, 118, 110, 0.06);
            display: flex;
            flex-direction: column;

            &:hover {
                transform: translateY(-6px);
                box-shadow: 0 15px 35px rgba(15, 118, 110, 0.1);

                .trip-image img {
                    transform: scale(1.05);
                }
            }

            .trip-image {
                position: relative;
                height: 190px; /* Adjusted height slightly for balanced title placement */
                overflow: hidden;

                img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    transition: transform 0.5s ease;
                }

                &::after {
                    content: "";
                    position: absolute;
                    inset: 0;
                    /* Darker bottom gradient gradient overlay to protect text legibility */
                    background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.3) 40%, transparent 70%);
                    z-index: 1;
                }

                h3 {
                    position: absolute;
                    bottom: 0;
                    left: 0;
                    width: 100%;
                    padding: 16px;
                    color: var(--light);
                    font-size: 1.15rem; 
                    line-height: 1.25;
                    font-weight: 700;
                    z-index: 2;
                    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
                }
            }

            .trip-badge {
                position: absolute;
                top: 12px;
                left: 12px;
                background: var(--primary);
                color: white;
                padding: 4px 10px;
                border-radius: var(--radius-pill);
                font-size: 0.68rem;
                font-weight: 600;
                z-index: 2;
            }

            .trip-content {
                padding: 16px; /* Tightened internal padding */
                display: flex;
                flex-direction: column;
                flex-grow: 1;

                p {
                    color: var(--text-muted);
                    line-height: 1.5;
                    margin-bottom: 16px;
                    font-size: 0.85rem; /* Scaled text down for legibility inside small cards */
                }
            }

            .trip-meta {
                display: flex;
                flex-direction: column;
                gap: 5px;
                margin-bottom: 14px;
                color: var(--text-muted);
                font-size: 0.8rem;

                span {
                    display: flex;
                    align-items: center;
                    gap: 6px;
                    white-space: nowrap;
                    overflow: hidden;
                    text-overflow: ellipsis; /* Gracefully truncates long strings if necessary */
                }

                i {
                    color: var(--primary);
                    width: 14px;
                }
            }

            .trip-footer {
                display: flex;
                justify-content: space-between;
                align-items: center;
                margin-top: auto;
                padding-top: 12px;
                border-top: 1px solid var(--gray);
            }
        }

        .price {
            small {
                display: block;
                color: #94a3b8;
                font-size: 0.6rem;
                letter-spacing: 0.5px;
                font-weight: 700;
            }
            strong {
                color: var(--primary);
                font-size: 1.25rem;
                font-weight: 800;
            }
        }

        .btn-trip {
            text-decoration: none;
            color: var(--primary);
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            gap: 4px;
            font-size: 0.85rem;
            transition: color 0.2s ease;

            &:hover {
                color: var(--secondary);
                span { transform: translateX(2px); }
            }
            span { transition: transform 0.2s ease; }
        }

        .section-action {
            text-align: center;
            margin-top: 45px;
        }

        .view-all-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 28px;
            border: 2px solid var(--primary);
            border-radius: var(--radius-pill);
            text-decoration: none;
            color: var(--primary);
            font-weight: 700;
            font-size: 0.9rem;
            transition: var(--transition-smooth);

            &:hover {
                background: var(--primary);
                color: white;
                box-shadow: 0 8px 16px rgba(15, 118, 110, 0.12);
            }
        }


/* =========================
   HERO SECTION STYLES
========================= */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 85vh; /* Falls back gracefully on desktop */
    display: flex;
    align-items: center;
    padding: 60px 5%;
    
    /* BACKGROUND IMAGE SETUP */
    background:
      linear-gradient(rgba(0,0,0,0.45),rgba(0,0,0,0.45)),
      url('https://images.unsplash.com/photo-1516426122078-c23e76319801?q=80&w=1400&auto=format&fit=crop') center/cover;
    background-attachment: scroll; /* Changed from fixed to maximize mobile compatibility */
    overflow: hidden;
}

/* Dark Tint Overlay to ensure high text contrast */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right, 
        rgba(11, 31, 28, 0.85) 0%, 
        rgba(11, 31, 28, 0.4) 100%
    );
    z-index: 1;
}

/* Layout container */
.hero-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2; /* Keeps text above the dark overlay */
}

.hero-content {
    max-width: 700px; /* Limits width so lines don't stretch too wide on desktop */
    color: var(--light);
}

/* TYPOGRAPHY */
.hero-title {
    font-size: 3rem; /* Dynamic sizing */
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

/* Elegant gold accent from your image */
.highlight-text {
    color: #cda242; /* Custom premium gold color */
}

.hero-description {
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
}

/* HERO BUTTONS */
.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap; /* Wraps cleanly onto new lines on small mobile devices */
}

.btn {
    display: inline-block;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    text-align: center;
}

/* Filled Gold Button */
.btn-filled {
    background-color: #cda242;
    color: var(--dark);
    border: 2px solid #cda242;
}

.btn-filled:hover {
    background-color: transparent;
    color: #cda242;
    transform: translateY(-3px);
}

/* Outline Glass Button */
.btn-outline {
    background-color: transparent;
    color: var(--light);
    border: 2px solid var(--light);
}

.btn-outline:hover {
    background-color: var(--light);
    color: var(--dark);
    transform: translateY(-3px);
}

/* =====================================
   MOBILE RESPONSIVENESS (MEDIA QUERIES)
===================================== */

/* Tablet View Adjustments */
@media (max-width: 768px) {
    .hero-section {
        min-height: 70vh;
        padding: 50px 5%;
    }
    
    .hero-title {
        font-size: 2.3rem;
    }
    
    .hero-description {
        font-size: 1.05rem;
        margin-bottom: 25px;
    }
}

/* Smartphone View Adjustments */
@media (max-width: 480px) {
    .hero-section {
        min-height: 60vh;
        text-align: center; /* Centers content for better visual symmetry on tiny phones */
        justify-content: center;
    }
    
    .hero-overlay {
        background: rgba(11, 31, 28, 0.75); /* Darkens evenly on small screens for text clarity */
    }

    .hero-title {
        font-size: 1.9rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .hero-buttons {
        flex-direction: column; /* Stacks buttons on top of each other */
        gap: 12px;
        width: 100%;
    }
    
    .btn {
        width: 100%; /* Makes buttons full-width for easy tapping */
        padding: 12px 20px;
    }
}


/* --- Why Choose Us Section Styles --- */
        .why-choose-us {
            padding-block: 60px 80px;
            padding-inline: max(15px, 4%);
            background-color: #ffffff; /* Contrast background switch from the grid */
            border-top: 1px solid var(--gray);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px; /* Slightly wider spacing for text-heavy feature cards */
        }

        /* Responsive configuration matching your grid layout */
        @media (max-width: 1100px) {
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 24px;
            }
        }

        @media (max-width: 600px) {
            .features-grid {
                grid-template-columns: 1fr;
            }
        }

        .feature-card {
            background: #f8fafc; /* Subtle grey contrast inside white background section */
            padding: 32px 24px;
            border-radius: var(--radius-card);
            border: 1px solid rgba(15, 118, 110, 0.04);
            transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-smooth);
            text-align: left;

            &:hover {
                transform: translateY(-5px);
                box-shadow: 0 12px 30px rgba(15, 118, 110, 0.06);
                border-color: rgba(20, 184, 166, 0.3);

                .feature-icon {
                    background: var(--primary);
                    color: var(--light);
                    transform: scale(1.05);
                }
            }

            .feature-icon {
                display: inline-flex;
                align-items: center;
                justify-content: center;
                width: 50px;
                height: 50px;
                background: rgba(15, 118, 110, 0.08);
                color: var(--primary);
                border-radius: 12px;
                font-size: 1.35rem;
                margin-bottom: 20px;
                transition: transform var(--transition-smooth), background var(--transition-smooth), color var(--transition-smooth);
            }

            h3 {
                color: var(--dark);
                font-size: 1.15rem;
                font-weight: 700;
                margin-bottom: 12px;
                line-height: 1.3;
            }

            p {
                color: var(--text-muted);
                font-size: 0.88rem;
                line-height: 1.6;
            }
        }

        /* --- Adventure Gallery Section Styles --- */
        .adventure-gallery {
            padding-block: 60px 80px;
            padding-inline: max(15px, 4%);
            background-color: #f8fafc; /* Matches the trip cards canvas background */
            border-top: 1px solid var(--gray);
        }

        /* Bento Box Grid Setup */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            grid-auto-rows: 180px; /* Base structural grid row block height */
            gap: 16px;
        }

        .gallery-item {
            position: relative;
            border-radius: var(--radius-card);
            overflow: hidden;
            background-color: var(--gray);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
            
            /* Span configurations for asymmetric rows */
            &.item-tall {
                grid-row: span 2;
            }
            &.item-wide {
                grid-column: span 2;
            }

            img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
                display: block;
            }

            /* Dark Overlay Layer - Initially hidden, fades in on hover */
            &::after {
                content: "";
                position: absolute;
                inset: 0;
                background: linear-gradient(to top, rgba(11, 31, 28, 0.9) 0%, rgba(11, 31, 28, 0.4) 50%, transparent 100%);
                opacity: 0;
                transition: opacity var(--transition-smooth);
                z-index: 1;
            }

            /* Captions inside the overlay layer */
            .gallery-overlay {
                position: absolute;
                bottom: 0;
                left: 0;
                width: 100%;
                padding: 20px;
                z-index: 2;
                transform: translateY(10px);
                opacity: 0;
                transition: transform var(--transition-smooth), opacity var(--transition-smooth);

                h4 {
                    color: var(--light);
                    font-size: 1.15rem;
                    font-weight: 700;
                    margin-bottom: 4px;
                }

                span {
                    color: var(--secondary);
                    font-size: 0.75rem;
                    font-weight: 600;
                    text-transform: uppercase;
                    letter-spacing: 1px;
                }
            }

            /* Interactive Hover Dynamics */
            &:hover {
                img {
                    transform: scale(1.06);
                }

                &::after {
                    opacity: 1;
                }

                .gallery-overlay {
                    transform: translateY(0);
                    opacity: 1;
                }
            }
        }

        /* Gallery Responsive Breakpoints */
        @media (max-width: 992px) {
            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
                grid-auto-rows: 200px;
            }
            /* Reset specific spans on tablets to avoid weird gaps */
            .gallery-item.item-wide {
                grid-column: span 1;
            }
        }

        @media (max-width: 500px) {
            .gallery-grid {
                grid-template-columns: 1fr;
                grid-auto-rows: 220px;
            }
            .gallery-item.item-tall {
                grid-row: span 1;
            }
        }

        /* --- Testimonials Section Styles --- */
        .testimonials {
            padding-block: 60px 80px;
            padding-inline: max(15px, 4%);
            background-color: #ffffff; /* Alternating white background pattern */
            border-top: 1px solid var(--gray);
        }

        /* 4 columns layout keeping continuity with your trip items structure */
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }

        @media (max-width: 1100px) {
            .testimonials-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
        }

        @media (max-width: 650px) {
            .testimonials-grid {
                grid-template-columns: 1fr;
            }
        }

        .testimonial-card {
            background: #f8fafc; /* Subtle grey block shading */
            border-radius: var(--radius-card);
            padding: 24px;
            border: 1px solid rgba(15, 118, 110, 0.04);
            display: flex;
            flex-direction: column;
            position: relative;
            overflow: hidden;
            transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);

            &:hover {
                transform: translateY(-5px);
                box-shadow: 0 12px 30px rgba(15, 118, 110, 0.05);
                
                .quote-icon {
                    transform: scale(1.1) rotate(-10deg);
                    color: rgba(20, 184, 166, 0.1); /* Changes color accent subtly on card interaction */
                }
            }

            .rating {
                color: var(--secondary); /* Uses matching bright brand color token */
                font-size: 0.8rem;
                margin-bottom: 14px;
                display: flex;
                gap: 3px;
            }

            .testimonial-text {
                color: var(--dark);
                font-size: 0.88rem;
                line-height: 1.6;
                font-style: italic;
                margin-bottom: 24px;
                position: relative;
                z-index: 2;
            }

            .client-profile {
                display: flex;
                align-items: center;
                gap: 12px;
                margin-top: auto; /* Keeps profiles lined up horizontally across cards */
                position: relative;
                z-index: 2;

                img {
                    width: 42px;
                    height: 42px;
                    border-radius: 50%;
                    object-fit: cover;
                    border: 2px solid var(--light);
                    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
                }

                .client-info {
                    display: flex;
                    flex-direction: column;

                    strong {
                        color: var(--dark);
                        font-size: 0.9rem;
                        font-weight: 700;
                    }

                    .client-meta {
                        color: var(--text-muted);
                        font-size: 0.72rem;
                        margin-top: 2px;
                    }
                }
            }

            /* Faded Decorative Quote Icon in the corner */
            .quote-icon {
                position: absolute;
                top: 20px;
                right: 20px;
                font-size: 3rem;
                color: rgba(15, 118, 110, 0.04);
                z-index: 1;
                pointer-events: none;
                transition: transform var(--transition-smooth), color var(--transition-smooth);
            }
        }

        /* --- Book Now Section Styles --- */
        .book-now-section {
            padding-block: 80px;
            padding-inline: max(15px, 4%);
            background-color: var(--dark); /* Uses deep corporate green background for strong visual finish */
            position: relative;
            overflow: hidden;
            
            /* Subtle abstract geometric accent in background */
            &::before {
                content: "";
                position: absolute;
                top: -10%;
                right: -10%;
                width: 400px;
                height: 400px;
                background: radial-gradient(circle, rgba(20, 184, 166, 0.15) 0%, transparent 70%);
                z-index: 1;
                pointer-events: none;
            }
        }

        .booking-container {
            max-width: 1200px;
            margin-inline: auto;
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 50px;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .booking-info {
            color: var(--light);

            .section-tag {
                color: var(--secondary);
                font-size: 0.75rem;
                font-weight: 700;
                letter-spacing: 2px;
                margin-bottom: 12px;
                display: inline-block;
            }

            h2 {
                font-size: clamp(2rem, 3.5vw, 2.5rem);
                font-weight: 800;
                line-height: 1.2;
                margin-bottom: 20px;
            }

            p {
                color: #94a3b8; /* Light gray muted tone for better readability on dark background */
                font-size: 1rem;
                line-height: 1.6;
                margin-bottom: 35px;
            }
        }

        .contact-quick-links {
            display: flex;
            flex-direction: column;
            gap: 20px;

            .link-item {
                display: flex;
                align-items: center;
                gap: 16px;

                i {
                    width: 44px;
                    height: 44px;
                    background: rgba(255, 255, 255, 0.06);
                    color: var(--secondary);
                    border-radius: 50%;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    font-size: 1.1rem;
                }

                small {
                    display: block;
                    color: #64748b;
                    font-size: 0.75rem;
                    text-transform: uppercase;
                    letter-spacing: 0.5px;
                }

                strong {
                    font-size: 1.05rem;
                    color: var(--light);
                }
            }
        }

        /* Form Card Structure styling */
        .booking-form-card {
            background: var(--light);
            border-radius: var(--radius-card);
            padding: 40px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);

            h3 {
                color: var(--dark);
                font-size: 1.4rem;
                font-weight: 800;
                margin-bottom: 24px;
            }
        }

        /* Reusable Form Inputs Framework styling */
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 6px;
            margin-bottom: 18px;
            width: 100%;

            label {
                font-size: 0.78rem;
                font-weight: 700;
                color: var(--dark);
                text-transform: uppercase;
                letter-spacing: 0.5px;
            }

            input, select {
                padding: 12px 16px;
                border: 1px solid var(--gray);
                border-radius: 8px;
                font-size: 0.92rem;
                color: var(--dark);
                background-color: #f8fafc;
                font-family: inherit;
                transition: border-color 0.2s ease, box-shadow 0.2s ease;

                &:focus {
                    outline: none;
                    border-color: var(--primary);
                    box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.12);
                    background-color: var(--light);
                }
            }

            select {
                cursor: pointer;
                appearance: none;
                /* Background chevron layout helper for cross-browser native select styling */
                background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230b1f1c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
                background-repeat: no-repeat;
                background-position: right 16px center;
                background-size: 14px;
                padding-right: 40px;
            }
        }

        .form-row {
            display: flex;
            gap: 16px;
        }

        .btn-submit {
            width: 100%;
            background: var(--primary);
            color: var(--light);
            border: none;
            padding: 14px;
            border-radius: 8px;
            font-size: 0.95rem;
            font-weight: 700;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            transition: background var(--transition-smooth), transform 0.1s ease;
            margin-top: 8px;

            &:hover {
                background: var(--secondary);
            }

            &:active {
                transform: scale(0.99);
            }
        }

        /* Responsiveness adjustments for Booking component block Layouts */
        @media (max-width: 992px) {
            .booking-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            .booking-info p {
                margin-bottom: 25px;
            }
        }

        @media (max-width: 550px) {
            .form-row {
                flex-direction: column;
                gap: 0;
            }
            .booking-form-card {
                padding: 24px;
            }
        }

        /* --- Footer Section Styles --- */
        .main-footer {
            background-color: #050e0d; /* Slightly darker shade than var(--dark) for a structured bottom anchor */
            color: #94a3b8;
            padding-top: 80px;
            border-top: 1px solid rgba(20, 184, 166, 0.1);
            font-size: 0.9rem;
        }

        .footer-container {
            max-width: 1200px;
            margin-inline: auto;
            padding-inline: max(15px, 4%);
            display: grid;
            grid-template-columns: 1.3fr 0.8fr 0.8fr 1.1fr;
            gap: 40px;
            padding-bottom: 50px;
        }

        .footer-column {
            h4 {
                color: var(--light);
                font-size: 1.1rem;
                font-weight: 700;
                margin-bottom: 24px;
                position: relative;

                /* Small gold/teal accent under header titles */
                &::after {
                    content: "";
                    position: absolute;
                    bottom: -8px;
                    left: 0;
                    width: 35px;
                    height: 2px;
                    background-color: var(--secondary);
                }
            }
        }

        .brand-info {
            .footer-logo {
                max-width: 160px; /* Perfectly scales your asset image file */
                height: auto;
                margin-bottom: 20px;
                display: block;
            }

            p {
                line-height: 1.6;
                margin-bottom: 24px;
            }
        }

        .footer-socials {
            display: flex;
            gap: 12px;

            a {
                width: 36px;
                height: 36px;
                background-color: rgba(255, 255, 255, 0.04);
                color: var(--light);
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 0.9rem;
                text-decoration: none;
                transition: var(--transition-smooth);

                &:hover {
                    background-color: var(--primary);
                    color: var(--light);
                    transform: translateY(-3px);
                }
            }
        }

        .footer-links {
            list-style: none;

            li {
                margin-bottom: 12px;

                a {
                    color: #94a3b8;
                    text-decoration: none;
                    transition: color 0.2s ease, padding-left 0.2s ease;
                    display: inline-block;

                    &:hover {
                        color: var(--secondary);
                        padding-left: 4px;
                    }
                }
            }
        }

        .contact-info {
            p {
                display: flex;
                align-items: flex-start;
                gap: 12px;
                margin-bottom: 16px;
                line-height: 1.5;

                i {
                    color: var(--secondary);
                    margin-top: 3px;
                }
            }

            .footer-badges {
                display: flex;
                gap: 8px;
                margin-top: 24px;
                flex-wrap: wrap;

                .badge-tag {
                    font-size: 0.72rem;
                    background: rgba(20, 184, 166, 0.08);
                    color: var(--secondary);
                    padding: 4px 10px;
                    border-radius: 4px;
                    font-weight: 600;
                    border: 1px solid rgba(20, 184, 166, 0.15);
                    display: inline-flex;
                    align-items: center;
                    gap: 5px;
                }
            }
        }

        /* Bottom copyright framework styles */
        .footer-bottom {
            background-color: #030a09;
            padding-block: 24px;
            border-top: 1px solid rgba(255, 255, 255, 0.03);
            font-size: 0.8rem;
        }

        .bottom-container {
            max-width: 1200px;
            margin-inline: auto;
            padding-inline: max(15px, 4%);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 16px;
        }

        .bottom-links {
            display: flex;
            gap: 24px;

            a {
                color: #64748b;
                text-decoration: none;
                transition: color 0.2s ease;

                &:hover {
                    color: var(--secondary);
                }
            }
        }

        /* Footer Breakpoints Adjustments */
        @media (max-width: 992px) {
            .footer-container {
                grid-template-columns: repeat(2, 1fr);
                gap: 40px;
            }
        }

        @media (max-width: 550px) {
            .footer-container {
                grid-template-columns: 1fr;
                gap: 35px;
            }
            .bottom-container {
                flex-direction: column;
                text-align: center;
            }
            .bottom-links {
                justify-content: center;
                gap: 16px;
            }
        }

        /* --- Floating WhatsApp Button Styles --- */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background-color: #25d366; /* Official WhatsApp Green */
            color: #ffffff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
            z-index: 9999; /* Keeps it above all sections, including the footer */
            text-decoration: none;
            transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 0.3s ease, box-shadow 0.3s ease;

            &:hover {
                transform: scale(1.1);
                background-color: #20ba5a;
                box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
            }

            &:active {
                transform: scale(0.95);
            }
        }

        /* Subtle ambient ring animation to attract clicks */
        .whatsapp-pulse {
            position: absolute;
            inset: 0;
            border-radius: 50%;
            border: 2px solid #25d366;
            opacity: 0;
            animation: whatsapp-ping 2s infinite ease-in-out;
            pointer-events: none;
            z-index: -1;
        }

        @keyframes whatsapp-ping {
            0% {
                transform: scale(1);
                opacity: 0.8;
            }
            100% {
                transform: scale(1.4);
                opacity: 0;
            }
        }

        /* Responsive placement for smaller screens so it doesn't block text content */
        @media (max-width: 600px) {
            .whatsapp-float {
                bottom: 20px;
                right: 20px;
                width: 52px;
                height: 52px;
                font-size: 28px;
            }
        }