
        /* Modern CSS Reset */
        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        /* --- THEME DEFINITIONS --- */
        :root {
            /* Light Mode Colors (Default) */
            --bg-body: #ffffff;
            --text-main: #2d3436;
            --bg-header: #ebe3d1; /* Muted, less bright cream (used by cards) */
            --header-bar-bg: #1E3F20; /* Deep forest green header */
            --bg-nav: #2e7d32; /* Solid green nav bar, UWA-style */
            --bg-nav-rgb: 46, 125, 50;
            --text-nav: #ffffff;
            --accent: #008000; /* Solid green, per uploaded reference */
            --accent-rgb: 0, 128, 0;
            --nav-highlight: #f39c12; /* Orange ring for the nav tab highlight */
            --nav-highlight-rgb: 243, 156, 18;
            --nav-hover-orange: #b5651d; /* Dull/muted orange for nav link hover */
        }

        [data-theme="dark"] {
            /* Dark Mode Colors */
            --bg-body: #121212;
            --text-main: #e0e0e0;
            --bg-header: #1e1e1e;
            --header-bar-bg: #142b16;
            --bg-nav: #1b5e20; /* Deeper green nav bar for dark mode */
            --bg-nav-rgb: 27, 94, 32;
            --text-nav: #d1d1d1;
            --accent: #008000; /* Solid green, per uploaded reference */
            --accent-rgb: 0, 128, 0;
            --nav-highlight: #f5a623; /* Slightly warmer orange for dark bg */
            --nav-highlight-rgb: 245, 166, 35;
            --nav-hover-orange: #c17a37; /* Dull/muted orange for nav link hover, dark bg */
        }

        /* --- BASIC STYLES --- */
        body {
            font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
            background-color: var(--bg-body);
            color: var(--text-main);
            line-height: 1.6;
            transition: background-color 0.3s ease, color 0.3s ease;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        /* --- HEADER SECTION --- */
        .main-header {
            position: relative;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 0.75rem 1rem;
            padding: 1rem 5%;
            background-color: var(--header-bar-bg); /* Deep forest green header background */
            border-bottom: 1px solid rgba(0,0,0,0.05);
            overflow: hidden;
            isolation: isolate; /* keeps the ::before contained to this header, never bleeding into the nav bar below */
        }

        .main-header::before {
            content: "";
            position: absolute;
            inset: 0;
            background-color: var(--header-bar-bg); /* Deep forest green header background */
            z-index: -2;
        }

        .main-header::after {
            content: "";
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.18); /* subtle scrim for crisp text/icon contrast */
            z-index: -1;
        }

        /* Logo and Page Name (Left Side) */
        .logo-container {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .header-text {
            display: flex;
            flex-direction: column;
        }

        .site-logo {
            height: clamp(48px, 9vw, 64px); /* Scales smoothly, same proportions at every size */
            width: clamp(48px, 9vw, 64px);
            flex-shrink: 0;
            border-radius: 50%; /* The badge logo is already circular, so this just keeps edges clean */
            object-fit: contain; /* Show the whole badge (bird, mountain, tent, banner) uncropped */
            background: #ffffff; /* White plate behind the badge so it reads clearly on the green nav */
            padding: 2px;
            border: 2px solid var(--accent); /* Thin green border */
            box-shadow: 0 0 0 3px rgba(var(--accent-rgb), 0.15);
            transition: transform 0.25s ease, box-shadow 0.25s ease;
        }

        .logo-container:hover .site-logo {
            transform: scale(1.06) rotate(-2deg);
            box-shadow: 0 0 0 5px rgba(var(--accent-rgb), 0.2);
        }

        .page-name {
            font-size: clamp(1.1rem, 3.2vw, 1.8rem);
            font-weight: 700;
            color: #ffffff; /* White reads cleanly against the forest-green header */
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: color 0.3s ease;
        }

        .org-motto {
            font-size: clamp(0.7rem, 2vw, 0.85rem);
            font-weight: 400;
            color: #ffffff;
            opacity: 0.85;
            margin-top: 2px;
        }

        /* Actions: Socials and Toggle (Right Side) */
        .header-actions {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-left: auto; /* keeps this pinned to the right, even if it wraps to its own line */
        }

        .social-icons {
            display: flex;
            gap: 14px;
            font-size: 1.3rem;
        }

        /* Real / brand-colored social icons instead of plain black */
        .social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: clamp(32px, 7vw, 38px);
            height: clamp(32px, 7vw, 38px);
            border-radius: 50%;
            background: rgba(0,0,0,0.04);
            transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
        }

        [data-theme="dark"] .social-link {
            background: rgba(255,255,255,0.06);
        }

        .social-link i {
            transition: transform 0.2s ease;
        }

        .social-link.whatsapp i { color: #25D366; }
        [data-theme="dark"]
        .social-link.facebook i { color: #1877F2; }
        .social-link.gmail i { color: #EA4335; }
        .social-link.instagram i {
            background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .social-link:hover {
            transform: translateY(-3px) scale(1.08);
            background: rgba(var(--accent-rgb), 0.12);
            box-shadow: 0 4px 10px rgba(0,0,0,0.12);
        }

        .social-link:hover i {
            transform: scale(1.05);
        }

        .theme-toggle-btn {
            background: none;
            border: none;
            cursor: pointer;
            font-size: 1.4rem;
            color: #1a73e8;
            padding: 5px 8px;
            border-radius: 5px;
            transition: background-color 0.2s, color 0.2s;
        }

        .theme-toggle-btn:hover {
            background-color: rgba(26, 115, 232, 0.1);
            color: #1558b0;
        }

        /* Small confirmation toast shown when the share link is copied */
        .share-toast {
            position: fixed;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%) translateY(20px);
            background: var(--bg-nav);
            color: var(--text-nav);
            padding: 0.7rem 1.3rem;
            border-radius: 999px;
            font-size: 0.9rem;
            font-weight: 600;
            box-shadow: 0 6px 20px rgba(0,0,0,0.25);
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.25s ease, transform 0.25s ease;
            z-index: 999;
        }

        .share-toast.show {
            opacity: 1;
            transform: translateX(-50%) translateY(0);
        }

        /* --- NAVIGATION BAR (glassy) --- */
        .main-nav {
            position: sticky;
            top: 0;
            z-index: 50;
            display: flex;
            align-items: center;
            background: var(--bg-nav); /* Solid green bar, UWA-style, instead of glassy/blurred */
            border-bottom: 1px solid rgba(255,255,255,0.08);
            box-shadow: 0 4px 20px rgba(0,0,0,0.15);
        }

        .nav-links {
            position: relative; /* anchor for the moving glass highlight */
            list-style: none;
            display: flex;
            flex: 1 1 auto;
            flex-wrap: nowrap;
            justify-content: center;
            align-items: center;
            gap: 0.15rem;
            padding: 0.4rem 5%;
            min-width: 0; /* allow flex children to shrink below content size instead of overflowing */
        }

        .nav-links .nav-item,
        .nav-links > li {
            flex-shrink: 1;
            min-width: 0;
        }

        /* Inquire Now CTA button, pinned to the far right of the nav bar */
        .nav-inquire-btn {
            flex-shrink: 0;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            white-space: nowrap;
            margin-right: 5%;
            padding: 0.55rem 1.4rem;
            background: #f2b705; /* Gold pill, matching the "UWA RATES" style button */
            color: #1a232e;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.6px;
            font-size: clamp(0.72rem, 1.6vw, 0.85rem);
            border-radius: 999px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.25);
            transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
        }

        .nav-inquire-btn:hover,
        .nav-inquire-btn:focus-visible {
            transform: translateY(-2px) scale(1.04);
            box-shadow: 0 6px 18px rgba(var(--accent-rgb), 0.5);
            background: var(--nav-highlight);
        }

        /* Hamburger toggle — hidden on desktop, shown on mobile */
        .nav-toggle {
            display: none;
            position: absolute;
            top: 65%;
            left: 5%;
            transform: translateY(-50%);
            width: 46px;
            height: 46px;
            align-items: center;
            justify-content: center;
            background: var(--accent);
            border: none;
            border-radius: 10px;
            color: #ffffff;
            font-size: 1.5rem;
            cursor: pointer;
            z-index: 10;
            box-shadow: 0 2px 10px rgba(0,0,0,0.3);
            transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
        }

        .nav-toggle:hover,
        .nav-toggle:focus-visible {
            background: var(--nav-highlight);
            color: #ffffff;
        }

        @media (max-width: 768px) {
            .main-nav {
                position: sticky; /* keeps containing-block context for the dropdown */
                justify-content: space-between;
            }

            /* Hamburger: taken out of absolute positioning on mobile so it sits as a
               normal flex item pinned to the far left, with a fully solid (non-glassy)
               background that isn't affected by the nav bar's backdrop blur. */
            .nav-toggle {
                display: flex;
                position: static;
                top: auto;
                left: auto;
                transform: none;
                margin-left: 0;
                background: var(--accent);
                backdrop-filter: none;
                -webkit-backdrop-filter: none;
                isolation: isolate;
            }

            /* Inquire Now stays pinned to the far right of the nav bar on mobile */
            .nav-inquire-btn {
                margin-left: 0;
                order: 2;
            }

            .nav-links {
                display: none;
                flex-direction: column;
                gap: 0;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                padding: 0.5rem 5% 1rem;
                background: rgba(var(--bg-nav-rgb), 0.97);
                backdrop-filter: blur(14px) saturate(160%);
                -webkit-backdrop-filter: blur(14px) saturate(160%);
                box-shadow: 0 10px 20px rgba(0,0,0,0.25);
            }

            .nav-links.nav-open {
                display: flex;
            }

            .nav-link {
                width: 100%;
                text-align: center;
            }

            .nav-link-wrap {
                width: 100%;
                justify-content: center;
            }

            .nav-link-wrap .nav-link {
                flex: 1 1 auto;
                padding-right: clamp(0.85rem, 3vw, 1.5rem);
            }
        }

        .nav-link {
            position: relative;
            z-index: 2;
            display: block;
            padding: clamp(0.6rem, 1.8vw, 1rem) clamp(0.6rem, 2.4vw, 1.5rem);
            color: var(--text-nav);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: clamp(0.68rem, 1.6vw, 0.9rem);
            border-radius: 999px;
            white-space: nowrap;
            transition: color 0.2s ease, transform 0.2s ease;
        }

        .nav-link:hover,
        .nav-link:focus-visible {
            background: var(--nav-hover-orange);
            color: #ffffff;
            transform: translateY(-2px);
        }

        .nav-link.active-tab {
            background: var(--accent);
            color: #ffffff;
        }

        /* --- TAB PANELS (nav switches content instead of scrolling) --- */
        .tab-panel {
            display: none;
        }

        .tab-panel.active {
            display: block;
            animation: tab-fade-in 0.25s ease;
        }

        @keyframes tab-fade-in {
            from { opacity: 0; transform: translateY(6px); }
            to   { opacity: 1; transform: translateY(0); }
        }

        /* --- PHOTO-LINK: wraps content photos so they open full-size in a new tab --- */
        .photo-link {
            display: block;
            position: relative;
            cursor: zoom-in;
        }

        .photo-link img {
            transition: filter 0.2s ease;
        }

        .photo-link:hover img,
        .photo-link:focus-visible img {
            filter: brightness(0.85);
        }

        .photo-link::after {
            content: "\f00e";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            position: absolute;
            top: 0.5rem;
            right: 0.5rem;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background: rgba(0, 0, 0, 0.55);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            opacity: 0;
            transition: opacity 0.2s ease;
            pointer-events: none;
        }

        .photo-link:hover::after,
        .photo-link:focus-visible::after {
            opacity: 1;
        }

        /* --- PLACEHOLDER CARDS (used on Services / Gallery / About until real content/photos are added) --- */
        .placeholder-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 1.25rem;
            padding: 2rem 5%;
        }

        .placeholder-card {
            background: var(--bg-header);
            border: 1px dashed rgba(var(--accent-rgb), 0.4);
            border-radius: 14px;
            padding: 2rem 1.25rem;
            text-align: center;
            color: var(--text-main);
        }

        .placeholder-card i {
            font-size: 2rem;
            color: var(--accent);
            margin-bottom: 0.75rem;
            display: block;
        }

        .placeholder-card h3 {
            font-size: 1.05rem;
            margin-bottom: 0.4rem;
        }

        .placeholder-card p {
            font-size: 0.9rem;
            opacity: 0.85;
        }

        #about .placeholder-grid {
            grid-template-columns: 1fr;
            max-width: 700px;
            margin: 0 auto;
        }

        #vision.placeholder-card,
        #mission.placeholder-card,
        #motto.placeholder-card {
            background: #1565C0;
            border-color: rgba(255, 255, 255, 0.35);
            color: #ffffff;
        }

        #vision.placeholder-card i,
        #mission.placeholder-card i,
        #motto.placeholder-card i {
            color: #ffffff;
        }

        #vision.placeholder-card p,
        #mission.placeholder-card p,
        #motto.placeholder-card p {
            color: #ffffff;
            opacity: 0.92;
        }

        .placeholder-card.gallery-photo {
            padding: 0;
            overflow: hidden;
            display: block;
            width: 100%;
            font: inherit;
            cursor: zoom-in;
            border: none;
            position: relative;
        }

        .placeholder-card.gallery-photo::after {
            content: "\f00e"; /* fa-magnifying-glass */
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            color: #ffffff;
            background: rgba(0,0,0,0.25);
            opacity: 0;
            transition: opacity 0.2s ease;
        }

        .placeholder-card.gallery-photo:hover::after,
        .placeholder-card.gallery-photo:focus-visible::after {
            opacity: 1;
        }

        .placeholder-card.gallery-photo img {
            width: 100%;
            height: auto;
            aspect-ratio: 0.9662 / 1; /* Gallery image height increased by a further 20% (so more of each photo/feature is visible) */
            object-fit: cover;
            display: block;
            transition: transform 0.3s ease;
        }

        .placeholder-card.gallery-photo:hover img {
            transform: scale(1.04);
        }

        /* --- SERVICE / STAFF ROWS (heading + info flowing down, image on the right) --- */
        .service-list {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            padding: 2rem 5%;
        }

        .service-row {
            display: flex;
            align-items: center;
            gap: 2rem;
            background: var(--bg-header);
            border: 1px solid rgba(var(--accent-rgb), 0.25);
            border-radius: 14px;
            padding: 1.75rem;
        }

        .service-row-content {
            flex: 1 1 55%;
        }

        .service-row-content h3 {
            font-size: 1.15rem;
            color: var(--accent);
            margin-bottom: 0.5rem;
        }

        .service-row-content p {
            font-size: 0.95rem;
            opacity: 0.85;
        }

        .service-row-media {
            flex: 0 0 clamp(180px, 40%, 340px);
        }

        .service-row-media-placeholder {
            width: 100%;
            aspect-ratio: 4 / 3;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 0.4rem;
            background: var(--bg-body);
            border: 1px dashed rgba(var(--accent-rgb), 0.4);
            border-radius: 10px;
            color: var(--accent);
            text-align: center;
            padding: 0.5rem;
        }

        .service-row-media-placeholder i {
            font-size: 1.6rem;
        }

        .service-row-media-placeholder span {
            font-size: 0.75rem;
            opacity: 0.8;
        }

        .service-row-media img {
            width: 100%;
            aspect-ratio: 4 / 3;
            object-fit: cover;
            border-radius: 10px;
            border: 1px solid rgba(var(--accent-rgb), 0.25);
            display: block;
        }

        .service-row-media-duo {
            flex-basis: clamp(280px, 60%, 480px);
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0.75rem;
        }

        .service-row-media-duo .photo-link {
            display: block;
        }

        @media (max-width: 640px) {
            .service-row {
                flex-direction: column;
                text-align: center;
            }

            .service-row-media {
                flex-basis: auto;
                width: 80%;
            }

            .service-row-media-duo {
                width: 100%;
                grid-template-columns: 1fr 1fr;
            }
        }

        /* --- ABOUT US: remove borders from tiles and description rows --- */
        #about .placeholder-card,
        #about .service-row,
        #about .service-row-media-placeholder,
        #about .service-row-media img {
            border: none;
        }

        .tab-section-heading {
            padding: 2rem 5% 0;
        }

        .tab-section-heading h2 {
            font-size: clamp(1.4rem, 3vw, 2rem);
            color: var(--text-main);
        }

        .tab-section-heading p {
            margin-top: 0.5rem;
            opacity: 0.85;
            max-width: 700px;
        }

        /* --- MAPS TAB --- */
        .map-embed-wrap {
            margin: 1.5rem 5% 2.5rem;
            border-radius: 14px;
            overflow: hidden;
            border: 1px solid rgba(var(--accent-rgb), 0.25);
            box-shadow: 0 8px 24px rgba(0,0,0,0.12);
        }

        .map-preview-link {
            display: block;
            width: 60%;
            margin: 0 auto 1.5rem;
            border-radius: 14px;
            overflow: hidden;
            border: 1px solid rgba(var(--accent-rgb), 0.25);
            box-shadow: 0 8px 24px rgba(0,0,0,0.12);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .map-preview-link:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 28px rgba(0,0,0,0.18);
        }

        .map-preview-img {
            display: block;
            width: 100%;
            height: auto;
        }

        @media (max-width: 768px) {
            .map-preview-link {
                width: 75%;
            }
        }

        .map-embed-wrap iframe {
            width: 100%;
            height: 420px;
            border: 0;
            display: block;
        }

        .map-directions-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            margin: 0 5% 1rem;
            padding: 0.75rem 1.5rem;
            border-radius: 10px;
            background: var(--accent);
            color: #ffffff;
            font-weight: 600;
            transition: filter 0.2s ease, transform 0.2s ease;
        }

        .map-directions-btn:hover {
            filter: brightness(0.94);
            transform: translateY(-2px);
        }

        /* --- PACKAGES DROPDOWN MENU --- */
        .nav-item {
            position: relative;
        }

        .nav-link-wrap {
            display: inline-flex;
            align-items: center;
            border-radius: 999px;
            transition: background-color 0.2s ease;
        }

        .nav-item:hover .nav-link-wrap,
        .nav-item.dropdown-open .nav-link-wrap {
            background: var(--nav-hover-orange);
        }

        .nav-link-wrap .nav-link {
            padding-right: 0.3rem;
        }

        .nav-item:hover .nav-link-wrap .nav-link,
        .nav-item.dropdown-open .nav-link-wrap .nav-link {
            color: #ffffff;
            transform: none;
        }

        .nav-caret {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: none;
            border: none;
            cursor: pointer;
            width: 1.8em;
            height: 1.8em;
            margin-right: clamp(0.5rem, 2vw, 0.9rem);
            padding: 0;
            color: var(--text-nav);
            font-size: clamp(0.72rem, 1.8vw, 0.9rem);
            border-radius: 50%;
            transition: transform 0.25s ease, color 0.2s ease, background-color 0.2s ease;
        }

        .nav-caret:hover,
        .nav-caret:focus-visible {
            background: rgba(255,255,255,0.15);
        }

        .nav-item:hover .nav-caret,
        .nav-item.dropdown-open .nav-caret {
            color: #ffffff;
            transform: rotate(180deg);
        }

        .nav-dropdown {
            list-style: none;
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%) translateY(6px);
            width: max-content;
            max-width: min(360px, 90vw);
            background: rgba(0, 0, 0, 0.97);
            backdrop-filter: blur(14px) saturate(160%);
            -webkit-backdrop-filter: blur(14px) saturate(160%);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 12px;
            padding: 0.5rem;
            box-shadow: 0 14px 34px rgba(0,0,0,0.3);
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
            z-index: 60;
        }

        .nav-item:hover .nav-dropdown,
        .nav-item:focus-within .nav-dropdown,
        .nav-item.dropdown-open .nav-dropdown {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
            transform: translateX(-50%) translateY(0);
        }

        .nav-dropdown-link {
            display: block;
            padding: 0.55rem 0.85rem;
            border-radius: 8px;
            color: var(--text-nav);
            font-size: 0.8rem;
            font-weight: 500;
            line-height: 1.4;
            text-transform: none;
            letter-spacing: normal;
            white-space: normal;
            transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
        }

        .nav-dropdown-link:hover,
        .nav-dropdown-link:focus-visible {
            background: var(--nav-hover-orange);
            color: #ffffff;
            transform: translateX(3px);
        }

        .nav-dropdown-extra {
            display: none;
        }

        .nav-dropdown.show-all .nav-dropdown-extra {
            display: block;
        }

        .nav-dropdown-more-item {
            border-top: 1px solid rgba(255,255,255,0.1);
            margin-top: 0.3rem;
            padding-top: 0.3rem;
        }

        .nav-dropdown-more {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            width: 100%;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0.5rem 0.85rem;
            border-radius: 8px;
            color: var(--nav-hover-orange);
            font-size: 0.78rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: background-color 0.2s ease, color 0.2s ease;
        }

        .nav-dropdown-more i {
            font-size: 0.7em;
            transition: transform 0.25s ease;
        }

        .nav-dropdown-more:hover,
        .nav-dropdown-more:focus-visible {
            background: var(--nav-hover-orange);
            color: #ffffff;
        }

        .nav-dropdown.show-all .nav-dropdown-more i {
            transform: rotate(180deg);
        }

        @media (max-width: 768px) {
            .nav-dropdown {
                position: static;
                transform: none;
                width: auto;
                max-width: none;
                background: transparent;
                border: none;
                box-shadow: none;
                padding: 0;
                max-height: 0;
                overflow: hidden;
                opacity: 1;
                visibility: visible;
                pointer-events: auto;
                transition: max-height 0.3s ease;
            }

            .nav-item.dropdown-open .nav-dropdown {
                max-height: 700px;
                padding: 0.25rem 0 0.5rem;
            }

            .nav-dropdown-link {
                text-align: center;
            }

            .nav-caret {
                pointer-events: auto;
                padding: 0.3rem;
            }
        }

        /* Bounce-expand animation played when a tab is tapped/clicked */
        @keyframes tab-bounce {
            0%   { transform: scale(1); }
            35%  { transform: scale(1.22); }
            60%  { transform: scale(0.94); }
            80%  { transform: scale(1.08); }
            100% { transform: scale(1); }
        }

        .nav-link.tab-bounce {
            animation: tab-bounce 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
            color: var(--accent);
        }

        /* Bounce played on the whole glassy bar when a tab is tapped */
        @keyframes bar-bounce {
            0%   { transform: scale(1); }
            30%  { transform: scale(1.015); }
            55%  { transform: scale(0.995); }
            80%  { transform: scale(1.005); }
            100% { transform: scale(1); }
        }

        .main-nav.bar-bounce {
            animation: bar-bounce 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        /* Container for demo content */
        .demo-content {
            padding: 2rem 5%;
            text-align: center;
        }

        .welcome-heading {
            font-size: clamp(1.6rem, 4vw, 2.4rem);
            font-weight: 800;
            color: var(--text-main);
            margin-bottom: 0.5rem;
        }

        .welcome-slogan {
            font-size: clamp(1.05rem, 2.4vw, 1.35rem);
            font-weight: 600;
            font-style: italic;
            color: var(--accent);
            letter-spacing: 0.3px;
            margin-bottom: 1.25rem;
        }

        .welcome-briefing {
            max-width: 720px;
            margin: 0 auto;
            font-size: clamp(1rem, 2vw, 1.15rem);
            line-height: 1.75;
            color: var(--text-main);
            opacity: 0.92;
        }

        /* --- BIO / SERVICES SECTION --- */
        .bio-section {
            padding: 1rem 5% 3rem;
            max-width: 1100px;
            margin: 0 auto;
            text-align: left;
        }

        .bio-intro {
            text-align: center;
            font-size: clamp(1rem, 2vw, 1.2rem);
            line-height: 1.7;
            max-width: 780px;
            margin: 0 auto 2.5rem;
            color: var(--text-main);
        }

        .bio-intro strong {
            color: var(--accent);
        }

        .services-grid {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            max-width: 900px;
            margin: 0 auto;
        }

        /* Reusable padded wrapper (matches .bio-section spacing) for sections outside .bio-section */
        .content-block {
            padding: 1rem 5% 3rem;
        }

        .price-control {
            display: inline-flex;
            align-items: stretch;
            flex: 1 1 auto;
            border-radius: 8px;
            overflow: hidden;
        }

        .price-control .pkg-price-btn {
            flex: 1 1 auto;
            border-radius: 8px 0 0 8px;
            border-right: none;
        }

        .price-currency-select {
            flex: 0 0 auto;
            font-family: inherit;
            font-size: 0.72rem;
            font-weight: 700;
            color: #ffffff;
            background: #0d47a1;
            border: 1.5px solid #1565c0;
            border-left: 1px solid rgba(255,255,255,0.35);
            border-radius: 0 8px 8px 0;
            padding: 0 0.35rem;
            cursor: pointer;
        }

        .price-currency-select:hover {
            background: #093170;
        }

        .price-currency-select:focus-visible {
            outline: 2px solid #ffffff;
            outline-offset: -2px;
        }

        .service-card {
            display: flex;
            flex-direction: row;
            align-items: stretch;
            width: 100%;
            background: none;
            box-shadow: none;
            border-bottom: 1px solid rgba(var(--accent-rgb), 0.15);
            padding-bottom: 1.5rem;
            scroll-margin-top: 90px;
        }

        .service-card:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }

        @media (max-width: 640px) {
            .service-card {
                flex-direction: column;
            }
        }

        .service-card:hover {
            transform: none;
            box-shadow: none;
        }

        .service-photo-placeholder {
            position: relative;
            width: 100%;
            flex: 0 0 48%;
            aspect-ratio: 16 / 9;
            border-radius: 12px;
            overflow: hidden;
            background: repeating-linear-gradient(
                135deg,
                rgba(var(--accent-rgb), 0.08),
                rgba(var(--accent-rgb), 0.08) 10px,
                rgba(var(--accent-rgb), 0.14) 10px,
                rgba(var(--accent-rgb), 0.14) 20px
            );
            border-bottom: none;
            border-left: none;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 0.4rem;
            color: var(--accent);
        }

        @media (max-width: 640px) {
            .service-photo-placeholder {
                flex: 0 0 auto;
                aspect-ratio: 16 / 10;
                border-left: none;
                border-bottom: none;
            }
        }

        .service-photo-placeholder i {
            font-size: 1.6rem;
            opacity: 0.7;
        }

        .service-photo-placeholder span {
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            opacity: 0.75;
        }

        .service-photo-placeholder.has-photo {
            background: none;
            border-bottom: none;
            padding: 0;
            align-self: flex-start;
            aspect-ratio: 16 / 9;
        }

        .service-photo-placeholder.has-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* Packages tab only: desktop images enlarged 20% (48% -> 57.6% of the card row). */
        @media (min-width: 641px) {
            #packages .service-photo-placeholder {
                flex: 0 0 57.6%;
            }
        }

        @media (max-width: 640px) {
            .service-photo-placeholder.has-photo {
                align-self: stretch;
                aspect-ratio: 16 / 9;
            }
        }

        .service-body {
            flex: 1 1 auto;
            min-width: 0;
            padding: 1.25rem 1.4rem 1.5rem;
        }

        .service-title {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 1.05rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: var(--text-main);
        }

        .service-title i {
            color: var(--accent);
            font-size: 1.1rem;
        }

        .service-desc {
            font-size: 0.92rem;
            line-height: 1.55;
            color: var(--text-main);
            opacity: 0.9;
        }

        .service-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-top: 1rem;
        }

        /* Packages tab only, mobile: price sits on its own line right after the
           description, with View Photos / Book Online as a button row below it. */
        @media (max-width: 640px) {
            #packages .service-buttons {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 0.5rem;
            }

            #packages .price-control {
                grid-column: 1 / -1;
            }
        }

        .service-btn {
            flex: 1 1 auto;
            text-align: center;
            padding: 0.5rem 0.75rem;
            font-size: 0.8rem;
            font-weight: 600;
            border-radius: 8px;
            border: 1.5px solid var(--accent);
            color: var(--accent);
            background: transparent;
            transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
            white-space: nowrap;
        }

        .service-btn:hover {
            background: var(--accent);
            color: #ffffff;
            transform: translateY(-2px);
        }

        .service-btn-primary {
            background: var(--accent);
            color: #ffffff;
        }

        .service-btn-primary:hover {
            background: transparent;
            color: var(--accent);
        }

        .pkg-price-btn {
            background: #1565c0;
            border-color: #1565c0;
            color: #ffffff;
        }

        .pkg-price-btn:hover {
            background: #0d47a1;
            border-color: #0d47a1;
            color: #ffffff;
        }

        /* --- PACKAGE PRICE / PHOTOS MODAL --- */
        .pkg-modal-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.55);
            align-items: center;
            justify-content: center;
            padding: 1.25rem;
            z-index: 1000;
        }

        .pkg-modal-overlay.is-visible {
            display: flex;
        }

        .pkg-modal {
            position: relative;
            width: 100%;
            max-width: 420px;
            background: var(--bg-header);
            color: var(--text-main);
            border-radius: 12px;
            border: 1.5px solid var(--accent);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
            padding: 1.75rem 1.5rem 1.5rem;
        }

        .pkg-modal-close {
            position: absolute;
            top: 0.6rem;
            right: 0.6rem;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            border: none;
            background: transparent;
            color: var(--text-main);
            font-size: 1.1rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background-color 0.2s ease;
        }

        .pkg-modal-close:hover {
            background: rgba(var(--accent-rgb), 0.15);
        }

        .pkg-modal-icon {
            font-size: 1.4rem;
            color: var(--accent);
            margin-bottom: 0.5rem;
        }

        .pkg-modal-title {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 0.6rem;
            padding-right: 1.5rem;
        }

        .pkg-modal-body {
            font-size: 0.92rem;
            line-height: 1.55;
            opacity: 0.95;
        }

        .pkg-modal-body a {
            color: var(--accent);
            font-weight: 600;
            text-decoration: underline;
        }

        /* --- GALLERY PHOTO LIGHTBOX --- */
        .lightbox-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.92);
            z-index: 1100;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .lightbox-overlay.is-visible {
            display: flex;
        }

        .lightbox-toolbar {
            position: absolute;
            top: 0;
            right: 0;
            display: flex;
            gap: 0.5rem;
            padding: 1rem;
            z-index: 2;
        }

        .lightbox-btn {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            border: none;
            background: rgba(255, 255, 255, 0.12);
            color: #ffffff;
            font-size: 1.05rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background-color 0.2s ease, transform 0.2s ease;
            text-decoration: none;
        }

        .lightbox-btn:hover {
            background: rgba(255, 255, 255, 0.25);
            transform: translateY(-1px);
        }

        .lightbox-btn.is-active {
            background: var(--accent);
        }

        .lightbox-stage {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: auto;
            padding: 4.5rem 4rem 3.5rem;
        }

        .lightbox-img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            border-radius: 6px;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
            cursor: zoom-in;
            transition: transform 0.25s ease;
            transform: scale(1);
        }

        .lightbox-img.is-zoomed {
            max-width: none;
            max-height: none;
            width: auto;
            height: auto;
            transform: scale(1.9);
            cursor: zoom-out;
        }

        .lightbox-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 2;
            width: 46px;
            height: 46px;
            border-radius: 50%;
            border: none;
            background: rgba(255, 255, 255, 0.12);
            color: #ffffff;
            font-size: 1.15rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background-color 0.2s ease, transform 0.2s ease;
        }

        .lightbox-arrow:hover {
            background: rgba(255, 255, 255, 0.25);
        }

        .lightbox-arrow-prev {
            left: 1rem;
        }

        .lightbox-arrow-next {
            right: 1rem;
        }

        .lightbox-caption {
            position: absolute;
            bottom: 1rem;
            left: 50%;
            transform: translateX(-50%);
            color: #ffffff;
            font-size: 0.9rem;
            opacity: 0.85;
            text-align: center;
            max-width: 80%;
            padding: 0 1rem;
        }

        .lightbox-toast {
            position: absolute;
            bottom: 3.25rem;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(255, 255, 255, 0.95);
            color: #1a1a1a;
            font-size: 0.85rem;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.2s ease;
        }

        .lightbox-toast.is-visible {
            opacity: 1;
        }

        @media (max-width: 640px) {
            .lightbox-stage {
                padding: 4rem 1rem 3.5rem;
            }

            .lightbox-arrow {
                width: 38px;
                height: 38px;
                font-size: 1rem;
            }

            .lightbox-arrow-prev { left: 0.4rem; }
            .lightbox-arrow-next { right: 0.4rem; }

            .lightbox-btn {
                width: 38px;
                height: 38px;
                font-size: 0.95rem;
            }
        }

        /* --- HERO IMAGE SLIDER --- */
        .hero-slider {
            position: relative;
            width: 100%;
            height: 82.8vh; /* Slider image height increased by 20% (69vh -> 82.8vh) */
            min-height: 442px; /* +20% */
            max-height: 773px; /* +20% */
            overflow: hidden;
            isolation: isolate;
            background: var(--bg-nav); /* fallback while images load */
        }

        .hero-slide {
            position: absolute;
            inset: 0;
            background-color: #0d1410; /* fallback while the photo loads */
            background-size: cover; /* fills the slide edge-to-edge, no empty bars */
            background-repeat: no-repeat;
            background-position: center;
            opacity: 0;
            transition: opacity 1.2s ease;
        }

        .hero-slide.active {
            opacity: 1;
        }

        .hero-slide::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.05) 45%);
        }

        .hero-slide-label {
            position: absolute;
            bottom: 34px;
            left: 50%;
            transform: translateX(-50%);
            color: #ffffff;
            font-weight: 600;
            font-size: clamp(0.85rem, 2vw, 1.1rem);
            letter-spacing: 1px;
            text-shadow: 0 2px 8px rgba(0,0,0,0.6);
            z-index: 2;
        }

        .hero-dots {
            position: absolute;
            bottom: 14px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 8px;
            z-index: 3;
        }

        .hero-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255,255,255,0.5);
            border: none;
            padding: 0;
            cursor: pointer;
            transition: background-color 0.2s ease, transform 0.2s ease;
        }

        .hero-dot.active {
            background: #ffffff;
            transform: scale(1.3);
        }

        .hero-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 3;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            border: none;
            background: rgba(0,0,0,0.35);
            color: #ffffff;
            font-size: 1.1rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background-color 0.2s ease, transform 0.2s ease;
        }

        .hero-arrow:hover {
            background: rgba(0,0,0,0.6);
            transform: translateY(-50%) scale(1.08);
        }

        .hero-arrow:focus-visible {
            outline: 2px solid #ffffff;
            outline-offset: 2px;
        }

        .hero-arrow-prev {
            left: 16px;
        }

        .hero-arrow-next {
            right: 16px;
        }

        @media (max-width: 600px) {
            .hero-arrow {
                width: 36px;
                height: 36px;
                font-size: 0.95rem;
            }
            .hero-arrow-prev { left: 8px; }
            .hero-arrow-next { right: 8px; }
        }

        /* --- ABOUT US: STAFF / TEAM CARDS --- */
        .staff-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 1.5rem;
            width: min(1200px, 90%);
            margin: 0 auto;
            padding: 1.5rem 0 2rem;
        }

        @media (max-width: 1000px) {
            .staff-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
                width: 90%;
            }
        }

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

        .staff-card {
            background: var(--bg-header);
            border: 1px solid rgba(var(--accent-rgb), 0.25);
            border-radius: 14px;
            overflow: hidden;
            text-align: center;
        }

        .staff-card-photo {
            width: 100%;
            aspect-ratio: 4 / 5;
            overflow: hidden;
        }

        .staff-card-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center 20%;
            display: block;
        }

        .staff-card-body {
            padding: 1.25rem;
        }


        .staff-placeholder .placeholder-photo {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 0.55rem;
            background: linear-gradient(135deg, rgba(21, 101, 192, 0.12), rgba(21, 101, 192, 0.03));
            border-bottom: 1px dashed rgba(var(--accent-rgb), 0.35);
            color: var(--accent);
            font-weight: 600;
            letter-spacing: 0.02em;
        }

        .staff-placeholder-icon {
            width: 72px;
            height: 72px;
            border-radius: 50%;
            display: grid;
            place-items: center;
            border: 2px dashed rgba(var(--accent-rgb), 0.5);
            font-size: 2rem;
        }

        .staff-placeholder-note {
            margin: 0;
            color: var(--text-muted);
            font-size: 0.88rem;
        }

        .staff-card-body h3 {
            font-size: 1.1rem;
            color: var(--text-main);
            margin-bottom: 0.2rem;
        }

        .staff-role {
            font-size: 0.9rem;
            color: var(--accent);
            font-weight: 600;
            margin-bottom: 0.85rem;
        }

        .staff-contact {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            font-size: 0.85rem;
        }

        .staff-contact li {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            color: var(--text-main);
            opacity: 0.85;
        }

        .staff-contact i {
            color: var(--accent);
            width: 1em;
        }

        .staff-contact img.contact-brand-icon {
            width: 16px;
            height: 16px;
        }

        .staff-contact a {
            color: inherit;
            word-break: break-word;
        }

        .staff-contact a:hover {
            color: var(--accent);
        }

        /* --- BOOKING / CONTACT SECTION --- */
        .booking-section {
            padding: 1rem 5% 3rem;
            max-width: 1100px;
            margin: 0 auto;
            text-align: left;
            scroll-margin-top: 70px;
        }

        .booking-heading {
            text-align: center;
            font-size: clamp(1.6rem, 4vw, 2.4rem);
            font-weight: 800;
            color: var(--text-main);
            margin-bottom: 0.5rem;
        }

        .booking-subheading {
            text-align: center;
            font-size: clamp(1rem, 2vw, 1.2rem);
            line-height: 1.7;
            max-width: 780px;
            margin: 0 auto 2.5rem;
            color: var(--text-main);
            opacity: 0.92;
        }

        .booking-subheading strong {
            color: var(--accent);
        }

        .booking-grid {
            display: grid;
            grid-template-columns: 1.35fr 1fr;
            gap: 1.75rem;
            align-items: start;
        }

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

        .booking-card {
            background: var(--bg-header);
            border-radius: 14px;
            box-shadow: 0 4px 16px rgba(0,0,0,0.08);
            padding: 1.75rem 1.5rem;
        }

        .form-group {
            margin-bottom: 1.15rem;
        }

        .form-group label {
            display: block;
            font-weight: 600;
            font-size: 0.9rem;
            margin-bottom: 0.35rem;
            color: var(--text-main);
        }

        .required-mark { color: #e74c3c; }
        .optional-mark { font-weight: 400; font-size: 0.8rem; opacity: 0.7; }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }

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

        .form-control {
            width: 100%;
            padding: 0.65rem 0.85rem;
            font-size: 0.95rem;
            font-family: inherit;
            color: var(--text-main);
            background: var(--bg-body);
            border: 1.5px solid rgba(0,0,0,0.15);
            border-radius: 8px;
            transition: border-color 0.2s ease, box-shadow 0.2s ease;
        }

        [data-theme="dark"] .form-control {
            border-color: rgba(255,255,255,0.2);
            color-scheme: dark;
        }

        .form-control:focus {
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(var(--accent-rgb), 0.15);
        }

        .form-group.has-error .form-control {
            border-color: #e74c3c;
            box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.12);
        }

        .error-message {
            display: none;
            color: #e74c3c;
            font-size: 0.8rem;
            font-weight: 500;
            margin-top: 0.3rem;
        }

        .form-group.has-error .error-message {
            display: block;
        }

        .form-submit-btn {
            width: 100%;
            margin-top: 0.25rem;
            padding: 0.8rem 1rem;
            font-size: 1rem;
            font-weight: 700;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            border-radius: 10px;
            border: 2px solid var(--accent);
            background: var(--accent);
            color: #ffffff;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.55rem;
            transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
        }

        .form-submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 18px rgba(var(--accent-rgb), 0.25);
            filter: brightness(0.94);
        }

        .form-submit-btn:active {
            transform: translateY(0);
        }

        .booking-form-success {
            display: none;
            text-align: center;
            padding: 2.5rem 1.25rem 1.5rem;
        }

        .booking-form-success.is-visible {
            display: block;
        }

        .success-check {
            width: 76px;
            height: 76px;
            margin: 0 auto 1.1rem;
            border-radius: 50%;
            background: var(--accent);
            color: #ffffff;
            font-size: 2.1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 20px rgba(var(--accent-rgb), 0.35);
            animation: success-pop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        @keyframes success-pop {
            0%   { transform: scale(0.5); opacity: 0; }
            60%  { transform: scale(1.08); }
            100% { transform: scale(1); opacity: 1; }
        }

        .success-title {
            font-size: 1.35rem;
            font-weight: 800;
            color: var(--text-main);
            margin-bottom: 0.5rem;
        }

        .success-text {
            font-size: 1rem;
            line-height: 1.6;
            color: var(--text-main);
            opacity: 0.92;
            max-width: 420px;
            margin: 0 auto;
        }

        .success-hint {
            font-size: 0.88rem;
            opacity: 0.8;
            max-width: 420px;
            margin: 0.85rem auto 1rem;
        }

        .success-actions {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 0.6rem;
            margin-bottom: 1.1rem;
        }

        .success-actions .service-btn {
            flex: 1 1 200px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.45rem;
        }

        .success-reset {
            background: none;
            border: none;
            cursor: pointer;
            color: var(--accent);
            font-size: 0.9rem;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            padding: 0.4rem 0.75rem;
            border-radius: 8px;
            transition: background-color 0.2s ease, color 0.2s ease;
        }

        .success-reset:hover {
            background: rgba(var(--accent-rgb), 0.12);
        }

        .contact-heading {
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--text-main);
            margin-bottom: 0.75rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .contact-heading i {
            color: var(--accent);
        }

        .contact-intro {
            font-size: 0.92rem;
            line-height: 1.6;
            opacity: 0.9;
            margin-bottom: 1.25rem;
        }

        .contact-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .contact-list li {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-size: 0.95rem;
        }

        .contact-icon-wrap {
            flex-shrink: 0;
            width: 38px;
            height: 38px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(var(--accent-rgb), 0.12);
            color: var(--accent);
            font-size: 1rem;
        }

        .contact-icon-wrap .icon-whatsapp { color: #25D366; }
        .contact-icon-wrap .icon-location { color: var(--nav-highlight, #f39c12); }
        .contact-icon-wrap img { width: 18px; height: 18px; }

        .contact-list a {
            color: var(--text-main);
            transition: color 0.2s ease;
        }

        .contact-list a:hover {
            color: var(--accent);
        }

        .contact-list small {
            opacity: 0.75;
        }

        .contact-divider {
            border-top: 1px solid rgba(127,127,127,0.25);
            margin: 1.4rem 0;
        }

        .contact-mini-heading {
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--text-main);
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .contact-mini-heading i {
            color: var(--accent);
        }

        .contact-hours {
            font-size: 0.92rem;
            line-height: 1.7;
            opacity: 0.9;
        }

        .contact-officer-name {
            font-size: 0.92rem;
            font-weight: 600;
            opacity: 0.9;
            margin-bottom: 0.6rem;
        }

        .contact-cta {
            margin-top: 1.5rem;
        }

        .contact-cta .service-btn {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 0.7rem 1rem;
        }

        /* --- FOOTER --- */
        .main-footer {
            position: relative;
            background: #ebe3d1; /* fallback while the image loads (no more black) */
            color: var(--text-nav);
            margin-top: 2rem;
            overflow: hidden;
            isolation: isolate; /* keeps the footer's own stacking context self-contained */
        }

        /* Blurred background photo layer */
        .main-footer::before {
            content: "";
            position: absolute;
            inset: 0;
            background-image: url('../images/hero-summit-clouds.jpg'); /* First image used in the hero slider */
            background-size: cover;
            background-position: center;
            filter: blur(3px);
            transform: scale(1.1); /* hides the soft blurred edge from peeking in */
            z-index: 0;
        }

        /* Dark overlay above the blurred image, below all footer content */
        .main-footer::after {
            content: "";
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.6);
            z-index: 1;
            pointer-events: none;
        }

        .footer-columns {
            position: relative;
            z-index: 2;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 2.5rem;
            padding: 3rem 5% 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-col {
            flex: 1 1 260px;
        }

        .footer-heading {
            font-size: 1.05rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--accent);
            margin-bottom: 1rem;
        }

        .footer-contact-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.65rem;
            font-size: 0.95rem;
            color: #ffffff;
        }

        .footer-contact-list li {
            display: flex;
            align-items: flex-start;
            gap: 0.5rem;
        }

        .footer-icon {
            width: 16px;
            height: 16px;
            flex-shrink: 0;
            margin-top: 0.2rem;
        }

        i.footer-icon {
            width: auto;
            height: auto;
            font-size: 1rem;
        }

        i.footer-icon.icon-whatsapp { color: #25D366; }
        i.footer-icon.icon-location { color: var(--nav-highlight, #f39c12); }

        .footer-contact-list a {
            color: #ffffff;
            transition: color 0.2s ease;
        }

        .footer-contact-list a:hover {
            color: var(--accent);
        }

        /* Follow Us icons (reuse the brand colors from the header) */
        .footer-social-icons {
            display: flex;
            gap: 14px;
            font-size: 1.3rem;
        }

        .footer-social-icons .social-link {
            background: rgba(255,255,255,0.08);
        }

        /* Bottom bar: terms, copyright, company email, credit */
        .footer-bottom {
            position: relative;
            z-index: 2;
            border-top: 1px solid rgba(255,255,255,0.22);
            padding: 1.25rem 5%;
            text-align: center;
            font-size: 0.85rem;
            color: rgba(255,255,255,0.9);
        }

        .footer-bottom a {
            color: rgba(255,255,255,0.95);
            transition: color 0.2s ease;
        }

        .footer-bottom a:hover {
            color: var(--accent);
        }

        .footer-bottom .divider {
            margin: 0 0.5rem;
            opacity: 0.5;
        }

        .footer-credit {
            margin-top: 0.4rem;
            font-size: 0.8rem;
            color: rgba(255,255,255,0.78);
        }

        /* --- FLOATING WHATSAPP BUTTON --- */
        .floating-whatsapp {
            position: fixed;
            bottom: 24px;
            right: 24px;
            z-index: 100;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: #25D366;
            color: #ffffff;
            font-size: 2rem;
            box-shadow: 0 4px 14px rgba(0,0,0,0.3);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .floating-whatsapp:hover {
            transform: scale(1.08);
            box-shadow: 0 6px 20px rgba(0,0,0,0.4);
        }

        .floating-whatsapp::before {
            content: "";
            position: absolute;
            inset: 0;
            border-radius: 50%;
            background: #25D366;
            opacity: 0.55;
            animation: whatsapp-pulse 2.2s ease-out infinite;
            z-index: -1;
        }

        @keyframes whatsapp-pulse {
            0%   { transform: scale(1); opacity: 0.55; }
            100% { transform: scale(1.7); opacity: 0; }
        }

        /* Floating WhatsApp button scales fluidly instead of jumping at a breakpoint */
        .floating-whatsapp {
            width: clamp(48px, 10vw, 60px);
            height: clamp(48px, 10vw, 60px);
            font-size: clamp(1.6rem, 4vw, 2rem);
            bottom: clamp(16px, 4vw, 24px);
            right: clamp(16px, 4vw, 24px);
        }

        /* --- FLOATING FAQ BUTTON (bottom-left, mirrors the WhatsApp button) --- */
        .floating-faq {
            position: fixed;
            bottom: clamp(16px, 4vw, 24px);
            left: clamp(16px, 4vw, 24px);
            z-index: 100;
            display: flex;
            align-items: center;
            justify-content: center;
            width: clamp(48px, 10vw, 60px);
            height: clamp(48px, 10vw, 60px);
            border-radius: 50%;
            background: var(--accent);
            color: #ffffff;
            font-size: clamp(1.4rem, 3.4vw, 1.7rem);
            box-shadow: 0 4px 14px rgba(0,0,0,0.3);
            transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
        }

        .floating-faq:hover,
        .floating-faq:focus-visible {
            transform: scale(1.08);
            box-shadow: 0 6px 20px rgba(0,0,0,0.4);
            background: var(--nav-highlight);
        }

        /* Respect users who prefer less motion (accessibility, all devices) */
        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after {
                animation-duration: 0.001ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.001ms !important;
                scroll-behavior: auto !important;
            }
        }

        /* Fallback for browsers without backdrop-filter support (e.g. older Firefox) */
        @supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
            .main-nav {
                background: rgb(var(--bg-nav-rgb));
            }
        }

        /* Visible keyboard focus for accessibility across all browsers */
        a:focus-visible,
        button:focus-visible {
            outline: 2px solid var(--accent);
            outline-offset: 2px;
        }

        /* Prevent horizontal scroll on very narrow viewports */
        html, body {
            max-width: 100%;
            overflow-x: hidden;
        }

        img {
            max-width: 100%;
            height: auto;
        }

        /* --- FAQ TAB (accordion of common questions & answers) --- */
        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 0.9rem;
            padding: 0.5rem 5% 2.5rem;
            max-width: 900px;
        }

        .faq-item {
            background: var(--bg-header);
            border: 1px solid rgba(var(--accent-rgb), 0.3);
            border-radius: 12px;
            overflow: hidden;
        }

        .faq-item summary {
            list-style: none;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            padding: 1rem 1.25rem;
            cursor: pointer;
            font-weight: 600;
            color: var(--text-main);
        }

        .faq-item summary::-webkit-details-marker {
            display: none;
        }

        .faq-item summary .faq-caret {
            flex-shrink: 0;
            color: var(--accent);
            transition: transform 0.2s ease;
        }

        .faq-item[open] summary .faq-caret {
            transform: rotate(180deg);
        }

        .faq-item summary:hover,
        .faq-item summary:focus-visible {
            color: var(--accent);
        }

        .faq-answer {
            padding: 0 1.25rem 1.1rem;
            opacity: 0.9;
            font-size: 0.95rem;
        }

        .faq-cta {
            margin: 0 5% 2.5rem;
            padding: 1.25rem 1.5rem;
            background: rgba(var(--accent-rgb), 0.08);
            border: 1px dashed rgba(var(--accent-rgb), 0.4);
            border-radius: 12px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
        }

        .faq-cta p {
            margin: 0;
        }

        .faq-cta a {
            background: var(--accent);
            color: #fff;
            padding: 0.6rem 1.25rem;
            border-radius: 8px;
            font-weight: 600;
            white-space: nowrap;
            transition: filter 0.2s ease;
        }

        .faq-cta a:hover {
            filter: brightness(1.08);
        }
    
/* RMS UI refinement — navigation and action buttons only.
   All other existing page styling remains unchanged. */
.main-nav {
    background: #123B2A;
    border-bottom: 1px solid rgba(214, 168, 79, 0.28);
    box-shadow: 0 4px 18px rgba(18, 59, 42, 0.22);
}

.nav-links {
    gap: 0.25rem;
}

.nav-link {
    color: #ffffff;
    border-radius: 8px;
    font-weight: 600;
    letter-spacing: 0.6px;
    transition: background-color 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.nav-link:hover,
.nav-link:focus-visible {
    background: #2F6B45;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.16);
}

.nav-link.active-tab {
    background: #D6A84F;
    color: #ffffff;
    box-shadow: 0 3px 10px rgba(214, 168, 79, 0.24);
}

.nav-inquire-btn {
    background: #D6A84F;
    color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.2);
}

.nav-inquire-btn:hover,
.nav-inquire-btn:focus-visible {
    background: #e3bd6d;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(214, 168, 79, 0.3);
}

.nav-toggle {
    background: #2F6B45;
    border-radius: 8px;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
    background: #D6A84F;
    color: #ffffff;
}

.nav-caret {
    color: #ffffff;
}

.nav-caret:hover,
.nav-caret:focus-visible {
    color: #D6A84F;
}

.nav-dropdown-more,
.nav-dropdown-link {
    border-radius: 6px;
}

/* Action buttons only */
.service-btn,
.map-directions-btn,
.form-submit-btn {
    border-radius: 8px;
    transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.service-btn {
    border-color: #2F6B45;
    color: #2F6B45;
}

.service-btn:hover {
    background: #2F6B45;
    border-color: #2F6B45;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(18, 59, 42, 0.18);
}

.service-btn-primary,
.form-submit-btn,
.map-directions-btn {
    background: #123B2A;
    border-color: #ffffff;
    color: #ffffff;
}

.service-btn-primary:hover,
.form-submit-btn:hover,
.map-directions-btn:hover {
    background: #2F6B45;
    border-color: #2F6B45;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 5px 14px rgba(18, 59, 42, 0.22);
    filter: none;
}

.pkg-price-btn {
    background: #D6A84F;
    border-color: #D6A84F;
    color: #ffffff;
}

.pkg-price-btn:hover {
    background: #e3bd6d;
    border-color: #e3bd6d;
    color: #ffffff;
}

@media (max-width: 768px) {
    .nav-links {
        background: #123B2A;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
}

/* Email links: show a Gmail brand icon inside the round social-link badge. */
.gmail-email-icon,
.social-icon-img {
    width: 18px;
    height: 18px;
    display: inline-block;
    vertical-align: -4px;
    margin-right: 6px;
    object-fit: contain;
}

.social-link .social-icon-img {
    width: 1.1rem;
    height: 1.1rem;
    margin-right: 0;
    vertical-align: 0;
    object-fit: contain;
}

/* Interactive feedback for navigation and action controls */
.nav-inquire-btn,
.service-btn,
.map-directions-btn,
.form-submit-btn,
.pkg-price-btn,
.theme-toggle-btn,
.social-link {
    -webkit-tap-highlight-color: rgba(214, 168, 79, 0.22);
    will-change: transform, box-shadow;
}

.nav-inquire-btn:hover,
.service-btn:hover,
.map-directions-btn:hover,
.form-submit-btn:hover,
.pkg-price-btn:hover,
.theme-toggle-btn:hover,
.social-link:hover {
    transform: translateY(-2px) scale(1.02);
}

.nav-inquire-btn:active,
.service-btn:active,
.map-directions-btn:active,
.form-submit-btn:active,
.pkg-price-btn:active,
.theme-toggle-btn:active,
.social-link:active {
    transform: translateY(1px) scale(0.96);
    box-shadow: 0 2px 5px rgba(18, 59, 42, 0.20);
    transition-duration: 70ms;
}

.nav-inquire-btn:focus-visible,
.service-btn:focus-visible,
.map-directions-btn:focus-visible,
.form-submit-btn:focus-visible,
.pkg-price-btn:focus-visible,
.theme-toggle-btn:focus-visible,
.social-link:focus-visible {
    outline: 3px solid rgba(214, 168, 79, 0.55);
    outline-offset: 3px;
}

/* =========================================================
   MOBILE-ONLY REDESIGN
   Desktop styles above remain unchanged.
   ========================================================= */
@media (max-width: 768px) {
    /* Sticky photographic glass header using the supplied image. */
    .main-header {
        position: sticky;
        top: 0;
        z-index: 70;
        min-height: 88px;
        padding: 0.7rem 4.5rem 0.7rem 0.75rem;
        flex-wrap: nowrap;
        gap: 0.65rem;
        background: rgba(18, 59, 42, 0.62) url('../images/mobile-header-bg.png') center 42% / cover no-repeat;
        border-bottom: 1px solid rgba(255, 255, 255, 0.22);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
        backdrop-filter: blur(14px) saturate(135%);
        -webkit-backdrop-filter: blur(14px) saturate(135%);
        isolation: isolate;
    }

    .main-header::before {
        background: linear-gradient(90deg, rgba(8, 35, 24, 0.84), rgba(18, 59, 42, 0.54));
        z-index: -2;
    }

    .main-header::after {
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.10), rgba(0, 0, 0, 0.30));
        z-index: -1;
    }

    .logo-container {
        min-width: 0;
        flex: 1 1 auto;
        gap: 10px;
    }

    .site-logo {
        width: 58px;
        height: 58px;
        padding: 1px;
        border: 2px solid rgba(255, 255, 255, 0.9);
        box-shadow: 0 3px 14px rgba(0, 0, 0, 0.25);
    }

    .header-text {
        min-width: 0;
    }

    .page-name {
        font-size: clamp(0.78rem, 4vw, 1.05rem);
        line-height: 1.12;
        letter-spacing: 0.25px;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.55);
    }

    .org-motto {
        max-width: 52vw;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        font-size: 0.67rem;
        text-shadow: 0 1px 5px rgba(0, 0, 0, 0.55);
    }

    /* Keep only the theme control in the mobile header actions. */
    .header-actions {
        position: absolute;
        top: 50%;
        right: 4.15rem;
        transform: translateY(-50%);
        margin: 0;
        gap: 0;
    }

    .header-actions .social-icons,
    .header-actions #share-btn {
        display: none;
    }

    /* iOS/Material-style night switch: 52x30 track, 48px touch target. */
    #theme-toggle.theme-toggle-btn {
        position: relative;
        display: inline-flex;
        align-items: center;
        justify-content: flex-start;
        width: 52px;
        height: 48px;
        min-width: 52px;
        padding: 9px 10px;
        border: 0;
        border-radius: 999px;
        background: transparent;
        color: #17202a;
        box-shadow: none;
        font-size: 0;
        cursor: pointer;
        transition: transform 180ms ease;
        -webkit-tap-highlight-color: transparent;
    }

    #theme-toggle.theme-toggle-btn::before {
        content: "";
        position: absolute;
        left: 0;
        top: 9px;
        width: 52px;
        height: 30px;
        border: 1.5px solid #16a34a;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.94);
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.22);
        transition: background-color 300ms ease, border-color 300ms ease;
    }

    #theme-toggle.theme-toggle-btn::after {
        content: "";
        position: absolute;
        top: 12px;
        left: 3px;
        width: 24px;
        height: 24px;
        border-radius: 50%;
        background: #ffffff;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
        transition: transform 300ms ease, background-color 300ms ease;
    }

    #theme-toggle.theme-toggle-btn .fas {
        position: relative;
        z-index: 2;
        display: block;
        margin-left: 6px;
        color: #17202a;
        font-size: 0.78rem;
        line-height: 1;
        transition: color 300ms ease, transform 300ms ease;
    }

    #theme-toggle.theme-toggle-btn:hover,
    #theme-toggle.theme-toggle-btn:focus-visible,
    #theme-toggle.theme-toggle-btn:active {
        transform: none;
        box-shadow: none;
    }

    #theme-toggle.theme-toggle-btn:active::after {
        transform: scale(0.92);
    }

    [data-theme="dark"] #theme-toggle.theme-toggle-btn::before {
        background: #16a34a;
        border-color: #16a34a;
    }

    [data-theme="dark"] #theme-toggle.theme-toggle-btn::after {
        transform: translateX(22px);
    }

    [data-theme="dark"] #theme-toggle.theme-toggle-btn .fas {
        color: #ffffff;
        transform: translateX(22px);
    }

    /* Mobile hamburger stays on the right and remains easy to tap. */
    .main-nav {
        position: relative;
        top: auto;
        min-height: 50px;
        justify-content: flex-end;
        background: rgba(18, 59, 42, 0.88);
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
        box-shadow: 0 5px 16px rgba(0, 0, 0, 0.18);
        backdrop-filter: blur(12px) saturate(140%);
        -webkit-backdrop-filter: blur(12px) saturate(140%);
    }

    .nav-toggle {
        position: static;
        order: 3;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 48px;
        height: 48px;
        min-width: 48px;
        margin: 0 0.45rem 0 auto;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.10);
        color: #ffffff;
        border: 1px solid rgba(255, 255, 255, 0.18);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }

    .nav-toggle:hover,
    .nav-toggle:focus-visible {
        background: rgba(214, 168, 79, 0.9);
    }

    .nav-links {
        top: 100%;
        padding: 0.55rem 0.75rem 0.9rem;
        background: rgba(15, 23, 42, 0.94);
        border-top: 1px solid rgba(255, 255, 255, 0.10);
        border-radius: 0 0 16px 16px;
        backdrop-filter: blur(18px) saturate(145%);
        -webkit-backdrop-filter: blur(18px) saturate(145%);
        box-shadow: 0 14px 28px rgba(0, 0, 0, 0.28);
    }

    .nav-links.nav-open {
        display: flex;
    }

    .nav-link {
        min-height: 46px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0.7rem 0.8rem;
        border-radius: 10px;
    }

    .nav-link-wrap {
        min-height: 46px;
    }

    .nav-caret {
        min-width: 46px;
        min-height: 46px;
        border-radius: 10px;
    }

    .nav-dropdown-link,
    .nav-dropdown-more {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav-inquire-btn {
        order: 2;
        margin: 0 0 0 0.45rem;
        min-height: 44px;
        padding: 0.55rem 0.85rem;
        font-size: 0.82rem;
        border-radius: 10px;
    }

    /* Mobile content cards use the existing information but breathe better. */
    .demo-content,
    .content-section,
    .section-content,
    .legal-page {
        width: 100%;
        max-width: 100%;
    }

    .hero-slider {
        min-height: 58vh;
    }

    .hero-slide-label {
        max-width: 88%;
        padding: 0.65rem 0.9rem;
        font-size: 0.82rem;
        border-radius: 999px;
    }

    /* Dark-mode mobile surfaces. */
    [data-theme="dark"] body {
        background: #0F172A;
        color: #ffffff;
    }

    [data-theme="dark"] .main-header {
        background-image: linear-gradient(rgba(15, 23, 42, 0.62), rgba(15, 23, 42, 0.72)), url('../images/mobile-header-bg.png');
        background-blend-mode: normal;
    }

    [data-theme="dark"] .main-nav {
        background: rgba(15, 23, 42, 0.92);
    }

    [data-theme="dark"] .nav-links {
        background: rgba(15, 23, 42, 0.97);
    }

    /* Smooth mobile theme transition. */
    body,
    .main-header,
    .main-nav,
    .nav-links,
    .nav-link,
    .nav-dropdown,
    .card,
    .service-card,
    .package-card,
    .faq-item,
    .theme-toggle-btn::before,
    .theme-toggle-btn::after {
        transition: background-color 300ms ease, color 300ms ease, border-color 300ms ease, box-shadow 300ms ease;
    }
}

/* =========================================================
   MOBILE HOME HERO — REFERENCE DESIGN
   Desktop layout remains unchanged.
   ========================================================= */
.mobile-home-hero { display: none; }

@media (max-width: 768px) {
    /* Clean white mobile header matching the supplied reference. */
    .main-header {
        position: sticky;
        top: 0;
        min-height: 124px;
        height: 124px;
        padding: 0 4.75rem 0 1.25rem;
        background: #ffffff;
        border-bottom: 2px solid #d8e2e9;
        box-shadow: 0 2px 8px rgba(0,0,0,.08);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .main-header::before,
    .main-header::after { display: none; }

    .logo-container {
        gap: 12px;
        width: 100%;
        color: #111111;
    }

    .site-logo { display: none; }

    .logo-container::before {
        content: "";
        display: block;
        flex: 0 0 82px;
        width: 82px;
        height: 82px;
        background: url('../images/mobile-logo.png') center / contain no-repeat;
    }

    .header-text { min-width: 0; }

    .page-name {
        margin: 0;
        color: #111111;
        font-size: clamp(1.35rem, 5.3vw, 2rem);
        font-weight: 800;
        line-height: 1.05;
        letter-spacing: .2px;
        text-shadow: none;
        white-space: normal;
        max-width: 48vw;
    }

    .org-motto {
        margin: 8px 0 0;
        max-width: none;
        color: #159447;
        font-size: clamp(.95rem, 3.8vw, 1.2rem);
        font-weight: 700;
        letter-spacing: 1.1px;
        line-height: 1;
        text-shadow: none;
    }

    /* The mobile header shows the brand motto instead of the email address. */
    .org-motto { font-size: 0; }
    .org-motto::after {
        content: "Discover the beauty of the Rwenzori's";
        font-size: clamp(.95rem, 3.8vw, 1.2rem);
    }

    /* Keep only the night switch in the header actions. */
    .header-actions {
        position: absolute;
        top: 50%;
        right: 5.8rem;
        transform: translateY(-50%);
        margin: 0;
    }

    .header-actions .social-icons,
    .header-actions #share-btn { display: none; }

    #theme-toggle.theme-toggle-btn {
        width: 58px;
        height: 48px;
        min-width: 58px;
        padding: 9px 8px;
        background: transparent;
        border: 0;
        box-shadow: none;
        color: #159447;
    }

    #theme-toggle.theme-toggle-btn::before {
        left: 0;
        top: 9px;
        width: 58px;
        height: 32px;
        border: 2px solid #159447;
        background: #ffffff;
        box-shadow: none;
    }

    #theme-toggle.theme-toggle-btn::after {
        top: 12px;
        left: 30px;
        width: 26px;
        height: 26px;
        background: #1f1f1f;
        box-shadow: 0 1px 4px rgba(0,0,0,.18);
    }

    #theme-toggle.theme-toggle-btn .fas {
        position: absolute;
        left: 8px;
        margin: 0;
        color: #a5dfc2;
        font-size: .85rem;
    }

    [data-theme="dark"] #theme-toggle.theme-toggle-btn::before { background: #ffffff; border-color: #159447; }
    [data-theme="dark"] #theme-toggle.theme-toggle-btn::after { transform: translateX(-30px); background: #159447; }
    [data-theme="dark"] #theme-toggle.theme-toggle-btn .fas { color: #ffffff; transform: none; }

    /* The navigation bar is visually collapsed; its hamburger remains in the header. */
    .main-nav {
        position: absolute;
        top: 0;
        right: 0;
        width: 66px;
        height: 124px;
        min-height: 0;
        padding: 0;
        background: transparent;
        border: 0;
        box-shadow: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        z-index: 80;
    }

    .nav-toggle {
        position: absolute;
        top: 38px;
        right: 8px;
        display: inline-flex;
        width: 48px;
        height: 48px;
        min-width: 48px;
        margin: 0;
        padding: 0;
        background: transparent;
        color: #202020;
        border: 0;
        border-radius: 8px;
        box-shadow: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .nav-toggle:hover,
    .nav-toggle:focus-visible,
    .nav-toggle:active {
        background: rgba(21,148,71,.08);
        color: #159447;
    }

    .nav-toggle .fas { font-size: 2rem; }
    .nav-inquire-btn { display: none; }

    .nav-links {
        top: 124px;
        right: 8px;
        left: auto;
        width: min(88vw, 360px);
        max-height: calc(100svh - 138px);
        overflow-y: auto;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
        background: #000000;
        border: 1px solid rgba(255,255,255,.12);
        border-radius: 0 0 14px 14px;
        box-shadow: 0 12px 28px rgba(0,0,0,.4);
        z-index: 200;
    }

    .nav-links.nav-open { display: flex; }

    /* Mobile hamburger menu: show every main navigation tab in one scrollable panel. */
    .nav-links > li { width: 100%; }
    .nav-links > li > .nav-link,
    .nav-links .nav-link-wrap .nav-link {
        min-height: 48px;
        display: flex;
        align-items: center;
    }

    /* Dropdown submenus and their carets are not shown on mobile — each tab link
       navigates straight to its section instead of expanding a nested list. */
    .nav-links .nav-caret { display: none; }
    .nav-links .nav-dropdown { display: none !important; }

    /* Mobile users get the new static hero instead of the desktop slider. */
    .hero-slider { display: none !important; }

    .mobile-home-hero {
        position: relative;
        display: block;
        min-height: calc(100svh - 124px);
        height: calc(100svh - 124px);
        overflow: hidden;
        isolation: isolate;
        background: #111 url('../images/mobile-equator.png') center top / cover no-repeat;
    }

    .mobile-home-hero::before {
        content: "";
        position: absolute;
        inset: 0;
        z-index: -1;
        background: linear-gradient(to bottom, rgba(0,0,0,.02) 0%, rgba(0,0,0,.04) 35%, rgba(0,0,0,.84) 78%, #050505 100%);
    }

    .mobile-home-hero__content {
        position: absolute;
        inset: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-end;
        padding: 0 6.5% 7.5%;
        text-align: center;
        color: #ffffff;
    }

    .mobile-home-hero__badge {
        display: inline-flex;
        align-items: center;
        gap: .65rem;
        margin-bottom: 1rem;
        padding: .75rem 1.35rem;
        border-radius: 999px;
        background: #159447;
        color: #bff4d2;
        font-size: clamp(.9rem, 3.2vw, 1.15rem);
        font-weight: 800;
        letter-spacing: .7px;
        box-shadow: 0 5px 18px rgba(0,0,0,.25);
    }

    .mobile-home-hero__badge i { color: #d4f8df; }

    .mobile-home-hero h2 {
        max-width: 760px;
        margin: 0 0 1rem;
        font-family: Georgia, 'Times New Roman', serif;
        font-size: clamp(2rem, 7vw, 3.6rem);
        line-height: 1.02;
        font-weight: 800;
        text-shadow: 0 3px 10px rgba(0,0,0,.7);
    }

    .mobile-home-hero h2 em {
        display: inline-block;
        color: #61e58f;
        font-weight: 500;
        font-style: italic;
    }

    .mobile-home-hero__content > p {
        max-width: 760px;
        margin: 0 0 1.25rem;
        font-size: clamp(1rem, 3.7vw, 1.35rem);
        line-height: 1.48;
        text-shadow: 0 2px 7px rgba(0,0,0,.8);
    }

    .mobile-home-hero__btn {
        width: min(92%, 720px);
        min-height: 72px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: .8rem;
        margin: .35rem 0;
        border-radius: 999px;
        font-size: clamp(1.05rem, 4vw, 1.35rem);
        font-weight: 700;
        text-decoration: none;
        transition: transform .18s ease, background-color .18s ease, box-shadow .18s ease;
    }

    .mobile-home-hero__btn:active { transform: scale(.98); }

    .mobile-home-hero__btn--primary {
        background: #16a34a;
        color: #ffffff;
        box-shadow: 0 8px 24px rgba(0,0,0,.25);
    }

    .mobile-home-hero__btn--primary:hover { background: #19b653; transform: translateY(-2px); }

    .mobile-home-hero__btn--secondary {
        background: rgba(0,0,0,.12);
        color: #ffffff;
        border: 2px solid rgba(255,255,255,.35);
    }

    .mobile-home-hero__btn--secondary:hover { background: rgba(255,255,255,.08); transform: translateY(-2px); }

    .mobile-home-hero__btn i { color: #42d979; }
    .mobile-home-hero__btn--primary i { color: #ffffff; }

    /* The existing desktop home content follows the new mobile hero when scrolled. */
    .demo-content { padding-top: 2rem; }
}

@media (max-width: 560px) {
    .main-header { min-height: 100px; height: 100px; padding-left: .7rem; padding-right: 4.5rem; }
    .logo-container { gap: 8px; }
    .logo-container::before { flex-basis: 62px; width: 62px; height: 62px; }
    .page-name { font-size: clamp(.92rem, 4.7vw, 1.25rem); max-width: 48vw; line-height: 1.08; }
    .org-motto::after { font-size: clamp(.78rem, 3.6vw, 1rem); }
    .header-actions { right: 4.35rem; }
    #theme-toggle.theme-toggle-btn { width: 52px; min-width: 52px; }
    #theme-toggle.theme-toggle-btn::before { width: 52px; }
    #theme-toggle.theme-toggle-btn::after { left: 26px; }
    #theme-toggle.theme-toggle-btn .fas { left: 6px; }
    .main-nav { height: 100px; width: 58px; }
    .nav-toggle { top: 26px; right: 3px; }
    .nav-links { top: 100px; }
    .mobile-home-hero { min-height: calc(100svh - 100px); height: calc(100svh - 100px); }
    .mobile-home-hero__content { padding-bottom: 5%; }
    .mobile-home-hero__badge { margin-bottom: .7rem; padding: .65rem 1.1rem; }
    .mobile-home-hero h2 { font-size: clamp(1.7rem, 7.2vw, 2.45rem); margin-bottom: .65rem; }
    .mobile-home-hero__content > p { font-size: clamp(.9rem, 3.8vw, 1.05rem); line-height: 1.38; margin-bottom: .75rem; }
    .mobile-home-hero__btn { min-height: 58px; font-size: 1rem; }
}


/* Desktop header color matched to the mobile header reference. */
@media (min-width: 769px) {
    .main-header {
        background: #ffffff;
        border-bottom: 2px solid #d8e2e9;
        box-shadow: 0 2px 8px rgba(0,0,0,.08);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .main-header::before,
    .main-header::after {
        display: none;
    }

    .page-name {
        color: #111111;
    }

    .org-motto {
        color: #111111;
        opacity: 0.72;
    }
}

/* --- ABOUT US: Rwenzori mountain background --- */
#about {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background: #1b2730;
}

#about::before {
    content: "";
    position: absolute;
    inset: -10px;
    z-index: -2;
    background: url('../images/about-rwenzori-bg.jpg') center center / cover no-repeat;
    filter: blur(2.5px);
    transform: scale(1.015);
}

#about::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: rgba(0, 0, 0, 0.27);
    pointer-events: none;
}

#about > * {
    position: relative;
    z-index: 1;
}

#about .tab-section-heading h2,
#about .tab-section-heading p {
    color: #ffffff;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.75);
}

#about .tab-section-heading p {
    opacity: 1;
}

#about .placeholder-grid {
    background: transparent;
}

#about #vision.placeholder-card,
#about #mission.placeholder-card,
#about #motto.placeholder-card {
    background: rgba(21, 101, 192, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

#about .staff-card {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* Conversion and booking usability improvements. */
.conversion-strip{display:flex;align-items:center;justify-content:space-between;gap:1.5rem;margin:1.5rem auto;padding:1.35rem 1.5rem;max-width:1120px;border-radius:14px;background:linear-gradient(135deg,#0c426b,#0b6fae);color:#fff;box-shadow:0 12px 28px rgba(7,47,76,.18)}
.conversion-strip h2{margin:.25rem 0 .45rem;font-size:clamp(1.25rem,2.4vw,1.8rem)}
.conversion-strip p{margin:0;max-width:620px;color:#e8f5fc;line-height:1.55}.conversion-eyebrow{font-size:.72rem;letter-spacing:.12em;font-weight:800;color:#9ed8f2}.conversion-actions{display:flex;align-items:center;justify-content:flex-end;gap:.6rem;flex-wrap:wrap}.conversion-btn,.conversion-link{display:inline-flex;align-items:center;gap:.45rem;min-height:42px;padding:.65rem .9rem;border-radius:8px;text-decoration:none;font-weight:800;white-space:nowrap}.conversion-btn{border:1px solid rgba(255,255,255,.6);color:#fff;background:rgba(255,255,255,.12)}.conversion-btn:hover{background:rgba(255,255,255,.22)}.conversion-btn-primary{background:#fff;color:#0b5e91}.conversion-link{color:#fff}.conversion-link:hover{text-decoration:underline}
.booking-form-success{scroll-margin-top:1rem}.booking-form-success:focus{outline:3px solid #76c7f2;outline-offset:3px}
.form-control:focus,.nav-link:focus-visible,.service-btn:focus-visible,.theme-toggle-btn:focus-visible,.nav-toggle:focus-visible{outline:3px solid #76c7f2;outline-offset:2px}
@media(max-width:760px){.conversion-strip{margin:1rem .75rem;padding:1.1rem;display:block}.conversion-actions{justify-content:flex-start;margin-top:1rem}.conversion-btn,.conversion-link{white-space:normal}.booking-grid{grid-template-columns:1fr!important}.booking-card{padding:1rem}.form-row{grid-template-columns:1fr!important}.success-actions{display:grid;grid-template-columns:1fr;gap:.6rem}.success-actions .service-btn{width:100%;justify-content:center}.booking-heading{font-size:clamp(1.5rem,8vw,2.2rem)}}
.success-reference{margin:.6rem 0;padding:.65rem .8rem;border-radius:8px;background:rgba(0,128,0,.1);color:var(--accent);font-weight:800;letter-spacing:.03em}

/* Consistent black Gmail-style envelope symbols across all contact areas. */
.gmail-symbol,.social-link.gmail i{color:#000!important;-webkit-text-fill-color:#000!important;filter:none}
.social-link.gmail{color:#000!important}

/* Custom 404 page. */
.error-page { min-height:100vh; background:linear-gradient(135deg,#10291a 0%,#1e3f20 52%,#2e7d32 100%); color:#20342b; }
.error-shell { display:grid; place-items:center; min-height:100vh; padding:30px 18px; }
.error-card { display:grid; grid-template-columns:minmax(0,1fr) minmax(320px,.9fr); width:min(1060px,100%); overflow:hidden; border-radius:22px; background:#fff; box-shadow:0 24px 70px rgba(0,0,0,.28); }
.error-copy { display:flex; flex-direction:column; justify-content:center; padding:clamp(28px,6vw,70px); }
.error-brand { display:inline-flex; align-items:center; gap:11px; width:max-content; color:#1e3f20; font-weight:800; font-size:clamp(.8rem,1.5vw,1rem); text-transform:uppercase; letter-spacing:.04em; }
.error-brand img { width:45px; height:45px; object-fit:contain; border-radius:50%; background:#fff; border:2px solid #2e7d32; }
.error-code { margin:48px 0 10px; color:#b5651d; font-size:.82rem; font-weight:800; letter-spacing:.18em; }
.error-copy h1 { margin:0; color:#173b22; font-size:clamp(2.5rem,6vw,5.4rem); line-height:.98; letter-spacing:-.055em; }
.error-lead { margin:22px 0 7px; color:#274c35; font-size:clamp(1.1rem,2vw,1.45rem); font-weight:700; }
.error-text { max-width:500px; margin:0; color:#60726a; font-size:1rem; line-height:1.7; }
.error-actions { display:flex; flex-wrap:wrap; gap:11px; margin-top:28px; }
.error-button { display:inline-flex; align-items:center; justify-content:center; min-height:46px; padding:0 18px; border:1px solid #c8d8cb; border-radius:7px; color:#1e5d2a; background:#f4f8f4; font-weight:800; transition:transform .2s ease,background .2s ease,box-shadow .2s ease; }
.error-button:hover { transform:translateY(-2px); background:#e8f2e9; box-shadow:0 7px 16px rgba(30,63,32,.12); }
.error-button-primary { border-color:#2e7d32; color:#fff; background:#2e7d32; }
.error-button-primary:hover { color:#fff; background:#1e5d2a; }
.error-links { display:flex; flex-wrap:wrap; gap:16px; margin-top:26px; }
.error-links a { color:#6d7d73; font-size:.9rem; font-weight:700; text-decoration:underline; text-underline-offset:3px; }
.error-links a:hover { color:#1e5d2a; }
.error-image-wrap { position:relative; min-height:570px; overflow:hidden; background:#183b20; }
.error-image-wrap::after { content:""; position:absolute; inset:0; background:linear-gradient(180deg,rgba(9,33,17,.02),rgba(9,33,17,.6)); }
.error-image { display:block; width:100%; height:100%; min-height:570px; object-fit:cover; }
.error-image-caption { position:absolute; z-index:1; right:26px; bottom:24px; left:26px; color:#fff; font-size:1rem; font-weight:700; line-height:1.45; text-shadow:0 2px 8px rgba(0,0,0,.5); }
@media(max-width:780px){
  .error-card { grid-template-columns:1fr; }
  .error-copy { order:2; padding:30px 24px 34px; }
  .error-image-wrap, .error-image { min-height:310px; height:310px; }
  .error-code { margin-top:30px; }
}
@media(max-width:430px){
  .error-shell { padding:0; }
  .error-card { border-radius:0; min-height:100vh; }
  .error-copy { padding:25px 20px 30px; }
  .error-image-wrap, .error-image { min-height:270px; height:270px; }
  .error-actions { flex-direction:column; }
  .error-button { width:100%; }
  .error-links { gap:10px 14px; }
}

/* Unified public-site theme surfaces. These overrides apply on desktop and mobile. */
:root {
    --theme-surface: #ffffff;
    --theme-surface-raised: #f7fbf8;
    --theme-surface-muted: #eef4ef;
    --theme-border: rgba(18, 59, 42, 0.16);
    --theme-muted: #60726a;
    --theme-input: #ffffff;
    --theme-link: #1e5d2a;
}

[data-theme="dark"] {
    --theme-surface: #18241c;
    --theme-surface-raised: #203126;
    --theme-surface-muted: #111a14;
    --theme-border: rgba(210, 235, 218, 0.22);
    --theme-muted: #b8c9bd;
    --theme-input: #101a13;
    --theme-link: #8ee0a5;
    color-scheme: dark;
}

[data-theme="dark"] body {
    background: #0f172a;
    color: #eef7f0;
}

[data-theme="dark"] .main-header {
    background: #142b16;
    background-image: none;
}

[data-theme="dark"] .main-nav,
[data-theme="dark"] .nav-links,
[data-theme="dark"] .nav-dropdown {
    background-color: #10291a;
    border-color: var(--theme-border);
}

[data-theme="dark"] .nav-link,
[data-theme="dark"] .nav-caret,
[data-theme="dark"] .nav-dropdown-link,
[data-theme="dark"] .nav-dropdown-more {
    color: #eef7f0;
}

[data-theme="dark"] .tab-section-heading h2,
[data-theme="dark"] .welcome-heading,
[data-theme="dark"] .welcome-briefing,
[data-theme="dark"] .bio-intro,
[data-theme="dark"] .booking-heading,
[data-theme="dark"] .contact-heading,
[data-theme="dark"] .contact-list a,
[data-theme="dark"] .contact-mini-heading,
[data-theme="dark"] .staff-card-body h3,
[data-theme="dark"] .faq-item summary,
[data-theme="dark"] .faq-answer,
[data-theme="dark"] .legal-page,
[data-theme="dark"] .legal-page h1,
[data-theme="dark"] .legal-page h2,
[data-theme="dark"] .legal-page h3 {
    color: #eef7f0;
}

[data-theme="dark"] .tab-section-heading p,
[data-theme="dark"] .contact-intro,
[data-theme="dark"] .contact-hours,
[data-theme="dark"] .contact-officer-name,
[data-theme="dark"] .faq-answer,
[data-theme="dark"] .booking-subheading,
[data-theme="dark"] .legal-page p,
[data-theme="dark"] .legal-page li,
[data-theme="dark"] .theme-muted {
    color: var(--theme-muted);
}

[data-theme="dark"] .placeholder-card,
[data-theme="dark"] .staff-card,
[data-theme="dark"] .booking-card,
[data-theme="dark"] .faq-item,
[data-theme="dark"] .map-embed-wrap,
[data-theme="dark"] .content-section,
[data-theme="dark"] .section-content,
[data-theme="dark"] .legal-page {
    background-color: var(--theme-surface);
    border-color: var(--theme-border);
    color: #eef7f0;
    box-shadow: 0 8px 24px rgba(0,0,0,.22);
}

[data-theme="dark"] #about .staff-card {
    background: var(--theme-surface);
    border-color: var(--theme-border);
}

[data-theme="dark"] #vision.placeholder-card,
[data-theme="dark"] #mission.placeholder-card,
[data-theme="dark"] #motto.placeholder-card {
    background: #174f70;
    color: #ffffff;
}

[data-theme="dark"] .service-card {
    border-color: var(--theme-border);
}

[data-theme="dark"] .form-control,
[data-theme="dark"] .price-currency-select,
[data-theme="dark"] input,
[data-theme="dark"] select,
[data-theme="dark"] textarea {
    background-color: var(--theme-input);
    border-color: var(--theme-border);
    color: #eef7f0;
}

[data-theme="dark"] .form-control::placeholder,
[data-theme="dark"] input::placeholder,
[data-theme="dark"] textarea::placeholder {
    color: #9eb2a4;
    opacity: 1;
}

[data-theme="dark"] .price-currency-select {
    background: #0d4770;
    border-color: #2d7dab;
}

[data-theme="dark"] .price-currency-select:hover {
    background: #126494;
}

[data-theme="dark"] .share-toast,
[data-theme="dark"] .lightbox-toast {
    background: #203126;
    color: #eef7f0;
    border: 1px solid var(--theme-border);
}

[data-theme="dark"] .conversion-strip {
    box-shadow: 0 12px 28px rgba(0,0,0,.28);
}

[data-theme="dark"] .error-page {
    background: linear-gradient(135deg,#07130b 0%,#10291a 52%,#173f24 100%);
}

[data-theme="dark"] .error-card {
    background: #18241c;
    color: #eef7f0;
}

[data-theme="dark"] .error-brand,
[data-theme="dark"] .error-copy h1 {
    color: #eef7f0;
}

[data-theme="dark"] .error-lead {
    color: #bde6c8;
}

[data-theme="dark"] .error-text,
[data-theme="dark"] .error-links a {
    color: #b8c9bd;
}

[data-theme="dark"] .error-button {
    border-color: #47634e;
    color: #d8f2df;
    background: #203126;
}

[data-theme="dark"] .error-button:hover {
    background: #2a4131;
}

[data-theme="dark"] .error-button-primary {
    color: #ffffff;
    background: #2e7d32;
    border-color: #4cae63;
}


/* Verified customer feedback and service ratings */
.feedback-widget {
    margin-top: 1.25rem;
    padding: 1rem;
    border: 1px solid var(--border-color, rgba(21, 68, 49, .18));
    border-radius: 14px;
    background: var(--surface-muted, rgba(255, 255, 255, .72));
}
.feedback-widget h4 { margin: 0 0 .55rem; color: var(--heading-color, #173d2b); }
.feedback-summary { display: flex; align-items: center; gap: .65rem; flex-wrap: wrap; min-height: 1.5rem; }
.feedback-stars { color: #d79400; letter-spacing: .08em; white-space: nowrap; }
.feedback-count, .feedback-empty, .feedback-loading { color: var(--muted-color, #5e6d64); font-size: .9rem; }
.feedback-reviews { display: grid; gap: .65rem; margin-top: .75rem; }
.feedback-review { padding: .7rem .8rem; border-radius: 10px; background: var(--surface-color, #fff); border: 1px solid var(--border-color, rgba(21, 68, 49, .12)); }
.feedback-review-head { display: flex; align-items: center; justify-content: space-between; gap: .6rem; flex-wrap: wrap; }
.feedback-review p { margin: .45rem 0 0; color: var(--text-color, #2d3e35); font-size: .93rem; line-height: 1.5; }
.feedback-toggle { margin-top: .8rem; cursor: pointer; }
.feedback-form { display: grid; gap: .7rem; margin-top: .8rem; padding-top: .8rem; border-top: 1px solid var(--border-color, rgba(21, 68, 49, .14)); }
.feedback-form label, .feedback-rating-fieldset { display: grid; gap: .35rem; }
.feedback-form input, .feedback-form textarea { width: 100%; box-sizing: border-box; padding: .7rem .75rem; border: 1px solid var(--border-color, #c8d5cd); border-radius: 8px; background: var(--surface-color, #fff); color: var(--text-color, #1d2a23); font: inherit; }
.feedback-rating-fieldset { border: 0; padding: 0; margin: 0; }
.feedback-rating-fieldset legend { font-weight: 700; color: var(--heading-color, #173d2b); }
.feedback-rating-options { display: flex; flex-wrap: wrap; gap: .7rem; }
.feedback-rating-options label { display: inline-flex; align-items: center; gap: .25rem; font-size: .9rem; cursor: pointer; }
.feedback-status { min-height: 1.3rem; margin: .4rem 0 0; font-size: .9rem; }
.feedback-status.success { color: #166534; }
.feedback-status.error { color: #a32121; }
.feedback-form button:disabled { opacity: .6; cursor: wait; }
[data-theme="dark"] .feedback-widget { background: var(--surface-muted, #1e2c24); border-color: rgba(190, 218, 198, .22); }
[data-theme="dark"] .feedback-review { background: var(--surface-color, #17231c); border-color: rgba(190, 218, 198, .18); }
[data-theme="dark"] .feedback-review p, [data-theme="dark"] .feedback-count, [data-theme="dark"] .feedback-empty, [data-theme="dark"] .feedback-loading { color: var(--text-color, #dbe9df); }
[data-theme="dark"] .feedback-form input, [data-theme="dark"] .feedback-form textarea { background: #142019; color: #e3f0e6; border-color: #496252; }
@media (max-width: 640px) {
    .feedback-review-head { align-items: flex-start; flex-direction: column; gap: .25rem; }
    .feedback-rating-options { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
}


/* Final high-contrast dark-mode text pass. Keep all public copy readable on deep surfaces. */
[data-theme="dark"] {
    --text-main: #f4fff6;
    --theme-muted: #c6d8cc;
    --theme-link: #9af0b1;
}

[data-theme="dark"] .service-title,
[data-theme="dark"] .service-desc,
[data-theme="dark"] .service-row-content,
[data-theme="dark"] .service-row-content h3,
[data-theme="dark"] .service-row-content p,
[data-theme="dark"] .staff-card-body,
[data-theme="dark"] .staff-card-body h3,
[data-theme="dark"] .staff-contact,
[data-theme="dark"] .staff-contact a,
[data-theme="dark"] .contact-list,
[data-theme="dark"] .contact-list li,
[data-theme="dark"] .contact-mini-heading,
[data-theme="dark"] .pkg-modal-title,
[data-theme="dark"] .pkg-modal-body,
[data-theme="dark"] .pkg-modal-body p,
[data-theme="dark"] .pkg-modal-body li,
[data-theme="dark"] .section-content,
[data-theme="dark"] .section-content p,
[data-theme="dark"] .section-content li,
[data-theme="dark"] .booking-card label,
[data-theme="dark"] .booking-card legend,
[data-theme="dark"] .feedback-widget h4,
[data-theme="dark"] .feedback-review p,
[data-theme="dark"] .feedback-rating-fieldset legend {
    color: #f0fff3;
}

[data-theme="dark"] .service-desc,
[data-theme="dark"] .service-row-content p,
[data-theme="dark"] .staff-contact,
[data-theme="dark"] .contact-list,
[data-theme="dark"] .pkg-modal-body,
[data-theme="dark"] .section-content p,
[data-theme="dark"] .section-content li,
[data-theme="dark"] .booking-subheading,
[data-theme="dark"] .feedback-count,
[data-theme="dark"] .feedback-empty,
[data-theme="dark"] .feedback-loading {
    color: #c6d8cc;
    opacity: 1;
}

[data-theme="dark"] .service-card,
[data-theme="dark"] .service-row,
[data-theme="dark"] .booking-card,
[data-theme="dark"] .contact-card,
[data-theme="dark"] .staff-card,
[data-theme="dark"] .faq-item,
[data-theme="dark"] .legal-page,
[data-theme="dark"] .feedback-widget,
[data-theme="dark"] .feedback-review {
    background-color: #18241c;
    border-color: rgba(220, 246, 226, .28);
}

[data-theme="dark"] .service-card a:not(.service-btn),
[data-theme="dark"] .service-row a:not(.service-btn),
[data-theme="dark"] .section-content a,
[data-theme="dark"] .legal-page a,
[data-theme="dark"] .contact-list a,
[data-theme="dark"] .staff-contact a,
[data-theme="dark"] .feedback-widget a {
    color: #9af0b1;
}

[data-theme="dark"] .service-card a:not(.service-btn):hover,
[data-theme="dark"] .service-row a:not(.service-btn):hover,
[data-theme="dark"] .section-content a:hover,
[data-theme="dark"] .legal-page a:hover,
[data-theme="dark"] .contact-list a:hover,
[data-theme="dark"] .staff-contact a:hover {
    color: #d7ffe0;
}

[data-theme="dark"] .service-btn,
[data-theme="dark"] .feedback-toggle {
    color: #dfffe6;
    border-color: #65c77d;
    background: #1d4f2a;
}

[data-theme="dark"] .service-btn:hover,
[data-theme="dark"] .feedback-toggle:hover {
    color: #ffffff;
    background: #2c7040;
    border-color: #9af0b1;
}

[data-theme="dark"] .service-btn-primary,
[data-theme="dark"] .error-button-primary {
    color: #ffffff;
    background: #249446;
    border-color: #7fe496;
}

[data-theme="dark"] .service-btn-primary:hover,
[data-theme="dark"] .error-button-primary:hover {
    color: #ffffff;
    background: #35b957;
}

[data-theme="dark"] .form-control,
[data-theme="dark"] .price-currency-select,
[data-theme="dark"] input,
[data-theme="dark"] select,
[data-theme="dark"] textarea,
[data-theme="dark"] .feedback-form input,
[data-theme="dark"] .feedback-form textarea {
    color: #f4fff6;
    background: #101a13;
    border-color: #63836b;
}

[data-theme="dark"] .form-control::placeholder,
[data-theme="dark"] input::placeholder,
[data-theme="dark"] textarea::placeholder,
[data-theme="dark"] .feedback-form input::placeholder,
[data-theme="dark"] .feedback-form textarea::placeholder {
    color: #b8cdbd;
    opacity: 1;
}

[data-theme="dark"] .error-copy h1,
[data-theme="dark"] .error-brand,
[data-theme="dark"] .error-lead,
[data-theme="dark"] .error-text,
[data-theme="dark"] .error-links a,
[data-theme="dark"] .error-button {
    text-shadow: none;
}

[data-theme="dark"] .error-text,
[data-theme="dark"] .error-links a {
    color: #d3e8d8;
}


/* =========================================================
   DARK MODE ONLY — Rwenzori Forest Night redesign
   All rules in this block are scoped to data-theme="dark".
   No public content, links, pricing, imagery, or functionality changes.
   ========================================================= */
[data-theme="dark"] {
    --night-bg: #09120d;
    --night-bg-soft: #0e1b13;
    --night-surface: #14251a;
    --night-surface-raised: #1a3021;
    --night-surface-muted: #102017;
    --night-border: rgba(188, 226, 197, .19);
    --night-border-strong: rgba(188, 226, 197, .34);
    --night-text: #f2faf4;
    --night-text-soft: #c4d8c9;
    --night-text-faint: #9db7a5;
    --night-green: #64ce7e;
    --night-green-bright: #8ae6a0;
    --night-gold: #f0c36d;
    --night-gold-soft: #ffe0a0;
    --night-danger: #ff9b93;
    --night-shadow: 0 18px 50px rgba(0, 0, 0, .30);
    --theme-surface: var(--night-surface);
    --theme-surface-raised: var(--night-surface-raised);
    --theme-surface-muted: var(--night-surface-muted);
    --theme-border: var(--night-border);
    --theme-muted: var(--night-text-soft);
    --theme-input: #0d1911;
    --theme-link: var(--night-green-bright);
    --bg-body: var(--night-bg);
    --text-main: var(--night-text);
    --bg-header: var(--night-surface);
    --header-bar-bg: #0c1c12;
    --bg-nav: #0a1810;
    --text-nav: var(--night-text);
    --accent: var(--night-green);
    --nav-highlight: var(--night-gold);
    color-scheme: dark;
}

[data-theme="dark"] body {
    background:
        radial-gradient(circle at 12% -8%, rgba(71, 145, 87, .13), transparent 31rem),
        radial-gradient(circle at 95% 18%, rgba(240, 195, 109, .06), transparent 24rem),
        var(--night-bg);
    color: var(--night-text);
}

[data-theme="dark"] .main-header {
    background: linear-gradient(115deg, #0b1d12 0%, #10291a 55%, #102016 100%);
    border-bottom: 1px solid var(--night-border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .22);
}

[data-theme="dark"] .page-name { color: var(--night-text); letter-spacing: .07em; }
[data-theme="dark"] .org-motto { color: var(--night-gold-soft); opacity: .92; }
[data-theme="dark"] .site-logo { background: #f7fff8; border-color: var(--night-green); box-shadow: 0 0 0 4px rgba(100, 206, 126, .12); }
[data-theme="dark"] .header-actions { gap: 12px; }
[data-theme="dark"] .theme-toggle-btn { color: var(--night-gold); }
[data-theme="dark"] .theme-toggle-btn:hover { color: #fff4d4; background: rgba(240, 195, 109, .12); }
[data-theme="dark"] .social-link { background: rgba(255, 255, 255, .065); border: 1px solid rgba(255, 255, 255, .08); }

[data-theme="dark"] .main-nav {
    background: rgba(8, 23, 14, .94);
    border-bottom-color: var(--night-border);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .25);
    backdrop-filter: blur(16px) saturate(130%);
    -webkit-backdrop-filter: blur(16px) saturate(130%);
}
[data-theme="dark"] .nav-link { color: var(--night-text-soft); }
[data-theme="dark"] .nav-link:hover,
[data-theme="dark"] .nav-link:focus-visible { background: rgba(100, 206, 126, .14); color: var(--night-green-bright); }
[data-theme="dark"] .nav-link.active-tab,
[data-theme="dark"] .nav-item.dropdown-open .nav-link-wrap .nav-link { background: rgba(100, 206, 126, .18); color: #f3fff5; }
[data-theme="dark"] .nav-caret { color: var(--night-text-soft); }
[data-theme="dark"] .nav-dropdown { background: #102219; border: 1px solid var(--night-border); box-shadow: var(--night-shadow); }
[data-theme="dark"] .nav-dropdown-link,
[data-theme="dark"] .nav-dropdown-more { color: var(--night-text-soft); }
[data-theme="dark"] .nav-dropdown-link:hover,
[data-theme="dark"] .nav-dropdown-more:hover { color: #fff; background: rgba(100, 206, 126, .14); }
[data-theme="dark"] .nav-inquire-btn { color: #1b160a; background: var(--night-gold); box-shadow: 0 8px 22px rgba(240, 195, 109, .18); }
[data-theme="dark"] .nav-inquire-btn:hover,
[data-theme="dark"] .nav-inquire-btn:focus-visible { color: #1b160a; background: var(--night-gold-soft); }

[data-theme="dark"] .tab-panel,
[data-theme="dark"] .demo-content,
[data-theme="dark"] main,
[data-theme="dark"] section { color: var(--night-text); }
[data-theme="dark"] .tab-section-heading h2,
[data-theme="dark"] .welcome-heading,
[data-theme="dark"] .booking-heading,
[data-theme="dark"] .contact-heading,
[data-theme="dark"] .service-title,
[data-theme="dark"] .service-row-content h3,
[data-theme="dark"] .faq-item summary,
[data-theme="dark"] .legal-page h1,
[data-theme="dark"] .legal-page h2,
[data-theme="dark"] .legal-page h3 { color: var(--night-text); }
[data-theme="dark"] .tab-section-heading p,
[data-theme="dark"] .bio-intro,
[data-theme="dark"] .welcome-briefing,
[data-theme="dark"] .booking-subheading,
[data-theme="dark"] .contact-intro,
[data-theme="dark"] .service-desc,
[data-theme="dark"] .service-row-content p,
[data-theme="dark"] .faq-answer,
[data-theme="dark"] .legal-page p,
[data-theme="dark"] .legal-page li { color: var(--night-text-soft); opacity: 1; }
[data-theme="dark"] strong,
[data-theme="dark"] .bio-intro strong { color: #f7fff8; }
[data-theme="dark"] .bio-intro strong,
[data-theme="dark"] .service-title i,
[data-theme="dark"] .contact-heading i,
[data-theme="dark"] .faq-item summary::marker { color: var(--night-green-bright); }

[data-theme="dark"] .service-card,
[data-theme="dark"] .service-row,
[data-theme="dark"] .booking-card,
[data-theme="dark"] .contact-card,
[data-theme="dark"] .staff-card,
[data-theme="dark"] .placeholder-card,
[data-theme="dark"] .faq-item,
[data-theme="dark"] .content-section,
[data-theme="dark"] .section-content,
[data-theme="dark"] .legal-page,
[data-theme="dark"] .map-embed-wrap,
[data-theme="dark"] .feedback-widget,
[data-theme="dark"] .feedback-review {
    background: linear-gradient(145deg, var(--night-surface-raised), var(--night-surface));
    border-color: var(--night-border);
    box-shadow: 0 14px 38px rgba(0, 0, 0, .22);
}
[data-theme="dark"] .service-card:hover,
[data-theme="dark"] .service-row:hover,
[data-theme="dark"] .staff-card:hover,
[data-theme="dark"] .feedback-review:hover { border-color: var(--night-border-strong); box-shadow: 0 18px 46px rgba(0, 0, 0, .30); }
[data-theme="dark"] .service-row-content,
[data-theme="dark"] .service-body,
[data-theme="dark"] .staff-card-body { color: var(--night-text); }
[data-theme="dark"] .staff-card-body small,
[data-theme="dark"] .staff-contact,
[data-theme="dark"] .contact-hours,
[data-theme="dark"] .contact-officer-name,
[data-theme="dark"] .theme-muted,
[data-theme="dark"] .feedback-count,
[data-theme="dark"] .feedback-empty,
[data-theme="dark"] .feedback-loading { color: var(--night-text-faint); }

[data-theme="dark"] .service-btn,
[data-theme="dark"] .feedback-toggle,
[data-theme="dark"] .error-button {
    color: var(--night-green-bright);
    background: rgba(100, 206, 126, .10);
    border: 1px solid rgba(100, 206, 126, .48);
}
[data-theme="dark"] .service-btn:hover,
[data-theme="dark"] .feedback-toggle:hover,
[data-theme="dark"] .error-button:hover { color: #f5fff7; background: rgba(100, 206, 126, .20); border-color: var(--night-green-bright); }
[data-theme="dark"] .service-btn-primary,
[data-theme="dark"] .error-button-primary {
    color: #102014;
    background: var(--night-green);
    border-color: var(--night-green);
    box-shadow: 0 8px 20px rgba(100, 206, 126, .16);
}
[data-theme="dark"] .service-btn-primary:hover,
[data-theme="dark"] .error-button-primary:hover { color: #07120b; background: var(--night-green-bright); }
[data-theme="dark"] .price-currency-select { color: #f7fff8; background: #173b25; border-color: rgba(138, 230, 160, .55); }
[data-theme="dark"] .price-currency-select:hover { background: #215332; }

[data-theme="dark"] .form-control,
[data-theme="dark"] input,
[data-theme="dark"] select,
[data-theme="dark"] textarea,
[data-theme="dark"] .feedback-form input,
[data-theme="dark"] .feedback-form textarea {
    color: var(--night-text);
    background: #0d1911;
    border-color: rgba(188, 226, 197, .38);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .025);
}
[data-theme="dark"] .form-control:focus,
[data-theme="dark"] input:focus,
[data-theme="dark"] select:focus,
[data-theme="dark"] textarea:focus { border-color: var(--night-green); box-shadow: 0 0 0 3px rgba(100, 206, 126, .18); outline: none; }
[data-theme="dark"] input::placeholder,
[data-theme="dark"] textarea::placeholder,
[data-theme="dark"] .form-control::placeholder { color: #a9c0ae; opacity: 1; }
[data-theme="dark"] .required-mark { color: #ff9b93; }
[data-theme="dark"] .form-error { color: var(--night-danger); }

[data-theme="dark"] .feedback-widget { background: linear-gradient(145deg, #1b3022, #122219); }
[data-theme="dark"] .feedback-widget h4,
[data-theme="dark"] .feedback-rating-fieldset legend { color: var(--night-text); }
[data-theme="dark"] .feedback-review { background: #102017; }
[data-theme="dark"] .feedback-review p { color: var(--night-text-soft); }
[data-theme="dark"] .feedback-stars { color: var(--night-gold); text-shadow: 0 0 12px rgba(240, 195, 109, .18); }
[data-theme="dark"] .feedback-status.success { color: #91e9a7; }
[data-theme="dark"] .feedback-status.error { color: #ffaaa2; }

[data-theme="dark"] .conversion-strip { background: linear-gradient(135deg, #123f27, #14593a 58%, #1b4c37); border: 1px solid rgba(138, 230, 160, .22); box-shadow: var(--night-shadow); }
[data-theme="dark"] .conversion-strip p { color: #dff7e4; }
[data-theme="dark"] .conversion-eyebrow { color: var(--night-gold-soft); }
[data-theme="dark"] .conversion-btn { color: #effff2; border-color: rgba(255, 255, 255, .38); background: rgba(255, 255, 255, .10); }
[data-theme="dark"] .conversion-btn-primary { color: #142017; background: var(--night-gold); }
[data-theme="dark"] .conversion-link { color: var(--night-gold-soft); }

[data-theme="dark"] .main-footer { background: #07110b; border-top: 1px solid var(--night-border); }
[data-theme="dark"] .footer-heading,
[data-theme="dark"] .footer-contact-list,
[data-theme="dark"] .footer-contact-list a,
[data-theme="dark"] .footer-bottom,
[data-theme="dark"] .footer-bottom a { color: var(--night-text-soft); }
[data-theme="dark"] .footer-heading { color: var(--night-text); }
[data-theme="dark"] .footer-contact-list a:hover,
[data-theme="dark"] .footer-bottom a:hover { color: var(--night-green-bright); }
[data-theme="dark"] .floating-faq { background: var(--night-surface-raised); color: var(--night-green-bright); border: 1px solid var(--night-border); }
[data-theme="dark"] .floating-whatsapp { box-shadow: 0 8px 22px rgba(0, 0, 0, .35); }

[data-theme="dark"] .error-page { background: radial-gradient(circle at 18% 0%, rgba(100, 206, 126, .16), transparent 30rem), linear-gradient(145deg, #07110b, #0d2315 58%, #12341f); }
[data-theme="dark"] .error-card { background: linear-gradient(145deg, #1b3022, #122219); border: 1px solid var(--night-border); box-shadow: var(--night-shadow); }
[data-theme="dark"] .error-brand,
[data-theme="dark"] .error-copy h1 { color: var(--night-text); }
[data-theme="dark"] .error-code { color: var(--night-gold); }
[data-theme="dark"] .error-lead { color: var(--night-green-bright); }
[data-theme="dark"] .error-text,
[data-theme="dark"] .error-links a { color: var(--night-text-soft); }

[data-theme="dark"] #theme-toggle.theme-toggle-btn::before { background: #193a25; border-color: var(--night-green); }
[data-theme="dark"] #theme-toggle.theme-toggle-btn::after { background: var(--night-gold); box-shadow: 0 0 0 4px rgba(240, 195, 109, .14); }
[data-theme="dark"] #theme-toggle.theme-toggle-btn .fas { color: #17301f; }
[data-theme="dark"] .nav-toggle { color: var(--night-text); background: rgba(100, 206, 126, .10); border: 1px solid rgba(100, 206, 126, .28); }
[data-theme="dark"] .nav-toggle:hover,
[data-theme="dark"] .nav-toggle:focus-visible { color: #fff; background: rgba(100, 206, 126, .20); }

@media (max-width: 768px) {
    [data-theme="dark"] .main-header { background: linear-gradient(145deg, #0b1d12, #13271a); border-bottom-color: var(--night-border); }
    [data-theme="dark"] .logo-container { color: var(--night-text); }
    [data-theme="dark"] .page-name { color: var(--night-text); }
    [data-theme="dark"] .org-motto { color: var(--night-gold-soft); }
    [data-theme="dark"] .nav-links { background: #0b1910; border-color: var(--night-border-strong); }
    [data-theme="dark"] .nav-links .nav-link { color: var(--night-text-soft); }
    [data-theme="dark"] .nav-links .nav-link:hover,
    [data-theme="dark"] .nav-links .nav-link:focus-visible { color: #fff; background: rgba(100, 206, 126, .16); }
    [data-theme="dark"] .mobile-home-hero { background-color: #07110b; }
}


/* Footer reviews access and dedicated reviews page */
.footer-review-intro { margin: 0 0 .7rem; color: #dbe9df; font-size: .9rem; line-height: 1.5; }
.footer-review-summary { min-height: 1.4rem; margin: 0 0 .75rem; color: #f0c36d; font-weight: 700; font-size: .9rem; }
.footer-reviews-button { display: inline-flex; align-items: center; justify-content: center; min-height: 42px; padding: .6rem .9rem; border-radius: 8px; background: #2f6b45; color: #fff; font-weight: 800; text-decoration: none; transition: background .2s ease, transform .2s ease; }
.footer-reviews-button:hover, .footer-reviews-button:focus-visible { background: #3e8759; color: #fff; transform: translateY(-1px); }
.reviews-page { min-height: 60vh; padding: clamp(2.5rem, 6vw, 5rem) 5% clamp(3rem, 7vw, 6rem); background: var(--bg-body); }
.reviews-hero, .reviews-content { width: min(1080px, 100%); margin-inline: auto; }
.reviews-hero { padding: clamp(1.8rem, 4vw, 3.5rem); border: 1px solid rgba(30, 93, 42, .16); border-radius: 20px; background: linear-gradient(135deg, #edf7ef, #fff); box-shadow: 0 16px 40px rgba(21, 68, 49, .10); }
.reviews-hero h1 { margin: .35rem 0 .7rem; color: #173b22; font-size: clamp(2rem, 5vw, 4rem); line-height: 1.05; }
.reviews-hero p { max-width: 700px; margin: 0; color: #60726a; font-size: 1.05rem; line-height: 1.65; }
.reviews-summary { display: flex; align-items: center; gap: .75rem; flex-wrap: wrap; margin-top: 1.35rem; }
.reviews-summary .feedback-stars { font-size: 1.35rem; }
.reviews-content { margin-top: 1.5rem; padding: clamp(1.25rem, 3vw, 2rem); border: 1px solid rgba(30, 93, 42, .16); border-radius: 18px; background: #fff; box-shadow: 0 12px 32px rgba(21, 68, 49, .08); }
.reviews-section-heading { display: flex; align-items: end; justify-content: space-between; gap: 1rem; margin-bottom: 1rem; }
.reviews-section-heading h2 { margin: .25rem 0 0; color: #173b22; font-size: clamp(1.4rem, 3vw, 2.2rem); }
.all-reviews-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; margin-top: 1.25rem; }
.all-review-card { padding: 1rem; border: 1px solid #dbe7de; border-radius: 14px; background: #f8fcf9; }
.all-review-card p { margin: .75rem 0 .45rem; color: #344b3b; line-height: 1.6; }
.all-review-card time { color: #7a8c80; font-size: .82rem; }
.all-review-head { display: flex; align-items: flex-start; justify-content: space-between; gap: .75rem; }
.all-review-target { display: block; margin-top: .2rem; color: #5f8068; font-size: .85rem; }
.reviews-submit-form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .85rem; margin-top: 1rem; padding: 1rem; border: 1px solid #dbe7de; border-radius: 14px; background: #f8fcf9; }
.reviews-submit-form label { display: grid; gap: .35rem; color: #294b35; font-weight: 700; }
.reviews-submit-form label:last-of-type { grid-column: 1 / -1; }
.reviews-submit-form input, .reviews-submit-form select, .reviews-submit-form textarea { width: 100%; box-sizing: border-box; padding: .7rem .75rem; border: 1px solid #c8d8cb; border-radius: 8px; background: #fff; color: #20382a; font: inherit; }
.reviews-submit-form button { grid-column: 1 / -1; justify-self: start; }
.reviews-submit-status { min-height: 1.4rem; margin: .4rem 0 0; color: #60726a; }
.reviews-submit-status.success { color: #237345; }
.reviews-submit-status.error { color: #a32121; }
@media (max-width: 700px) {
    .reviews-section-heading { align-items: flex-start; flex-direction: column; }
    .all-reviews-list { grid-template-columns: 1fr; }
    .reviews-submit-form { grid-template-columns: 1fr; }
    .reviews-submit-form label:last-of-type, .reviews-submit-form button { grid-column: auto; }
}
[data-theme="dark"] .footer-review-intro { color: var(--night-text-soft); }
[data-theme="dark"] .footer-review-summary { color: var(--night-gold-soft); }
[data-theme="dark"] .footer-reviews-button { background: var(--night-green); color: #102014; }
[data-theme="dark"] .footer-reviews-button:hover, [data-theme="dark"] .footer-reviews-button:focus-visible { background: var(--night-green-bright); color: #08150c; }
[data-theme="dark"] .reviews-page { background: var(--night-bg); }
[data-theme="dark"] .reviews-hero { border-color: var(--night-border); background: linear-gradient(145deg, #1b3022, #122219); box-shadow: var(--night-shadow); }
[data-theme="dark"] .reviews-hero h1, [data-theme="dark"] .reviews-section-heading h2 { color: var(--night-text); }
[data-theme="dark"] .reviews-hero p { color: var(--night-text-soft); }
[data-theme="dark"] .reviews-content { border-color: var(--night-border); background: linear-gradient(145deg, var(--night-surface-raised), var(--night-surface)); box-shadow: var(--night-shadow); }
[data-theme="dark"] .all-review-card, [data-theme="dark"] .reviews-submit-form { border-color: var(--night-border); background: #102017; }
[data-theme="dark"] .all-review-card p, [data-theme="dark"] .reviews-submit-form label { color: var(--night-text-soft); }
[data-theme="dark"] .all-review-target, [data-theme="dark"] .all-review-card time, [data-theme="dark"] .reviews-submit-status { color: var(--night-text-faint); }
[data-theme="dark"] .reviews-submit-form input, [data-theme="dark"] .reviews-submit-form select, [data-theme="dark"] .reviews-submit-form textarea { border-color: var(--night-border-strong); background: #0d1911; color: var(--night-text); }


/* Dark mode header requested as a white brand surface. Other dark-mode surfaces remain unchanged. */
[data-theme="dark"] .main-header {
    background: #ffffff;
    background-image: none;
    border-bottom: 2px solid #d8e2e9;
    box-shadow: 0 3px 14px rgba(0, 0, 0, .16);
}
[data-theme="dark"] .main-header::before,
[data-theme="dark"] .main-header::after { display: none; }
[data-theme="dark"] .logo-container,
[data-theme="dark"] .page-name { color: #111827; }
[data-theme="dark"] .org-motto { color: #176b39; opacity: 1; }
[data-theme="dark"] .site-logo { background: #ffffff; border-color: #2f6b45; box-shadow: 0 0 0 4px rgba(47, 107, 69, .12); }
[data-theme="dark"] .header-actions .theme-toggle-btn { color: #1f5f3a; }
[data-theme="dark"] .header-actions .theme-toggle-btn:hover,
[data-theme="dark"] .header-actions .theme-toggle-btn:focus-visible { color: #124628; background: rgba(47, 107, 69, .10); }
[data-theme="dark"] #theme-toggle.theme-toggle-btn::before { background: #f5fbf6; border-color: #2f6b45; }
[data-theme="dark"] #theme-toggle.theme-toggle-btn::after { background: #f0b84d; box-shadow: 0 0 0 4px rgba(240, 184, 77, .18); }
[data-theme="dark"] #theme-toggle.theme-toggle-btn .fas { color: #173b25; }
[data-theme="dark"] .nav-toggle { color: #173b25; background: rgba(47, 107, 69, .08); border-color: rgba(47, 107, 69, .28); }
[data-theme="dark"] .nav-toggle:hover,
[data-theme="dark"] .nav-toggle:focus-visible { color: #124628; background: rgba(47, 107, 69, .16); }
@media (max-width: 768px) {
    [data-theme="dark"] .main-header { background: #ffffff; }
    [data-theme="dark"] .page-name { color: #111827; }
    [data-theme="dark"] .org-motto { color: #176b39; }
}
