 :root {
            --royal-gold: #F3A42D;
            --festival-flame: #D94716;
            --savannah-green: #137964;
            --ink: #2C3E50;
            --muted: #666;
            --bg: #FAF8F5;
            --footer-ink: #242A2F;
            --shadow: 0 8px 24px rgba(0,0,0,.12);
            --radius: 14px;
            --container: 1200px;
            --header-h: 74px;
            --footer-gold: #f5b657;
            --adinkra-color: #f5b657;
            --new-bg-color: #fbe9cd;
        }

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

        html, body {
            height: 100%;
            background-color: var(--new-bg-color);
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Archivo', sans-serif;
            color: var(--ink);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

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

        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0,0,0,0);
            white-space: nowrap;
            border: 0;
        }

        /* Page Loader */
        .page-loader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--new-bg-color);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            transition: opacity 0.5s ease-out, visibility 0.5s;
        }

        .page-loader.hidden {
            opacity: 0;
            visibility: hidden;
        }

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

        .akwaaba-loader {
            width: 120px;
            height: 120px;
            margin: 0 auto 20px;
            background: url('images/Logo-black.png') center/contain no-repeat;
            position: relative;
        }

        .akwaaba-loader::after {
            content: '';
            position: absolute;
            top: -10px;
            left: -10px;
            right: -10px;
            bottom: -10px;
            border: 3px solid transparent;
            border-top-color: var(--royal-gold);
            border-radius: 50%;
            animation: spin 1.5s linear infinite;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* WhatsApp Button */
        .whatsapp-float {
            position: fixed;
            width: 60px;
            height: 60px;
            bottom: 25px;
            right: 25px;
            background-color: #25d366;
            color: #FFF;
            border-radius: 50px;
            text-align: center;
            font-size: 30px;
            box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
            z-index: 100;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .whatsapp-float:hover {
            background-color: #128C7E;
            transform: scale(1.1);
        }

        /* Cookie Consent */
        .cookie-consent {
            position: fixed;
            bottom: 20px;
            left: 20px;
            right: 20px;
            max-width: 500px;
            padding: 20px;
            background: white;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            z-index: 1000;
            display: none;
            animation: slideInUp 0.5s ease;
        }

        @keyframes slideInUp {
            from { transform: translateY(100px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }

        .cookie-consent p {
            margin-bottom: 15px;
            color: var(--ink);
        }

        .cookie-buttons {
            display: flex;
            gap: 10px;
        }

        .cookie-btn {
            padding: 8px 16px;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            border: none;
        }

        .cookie-accept {
            background: var(--savannah-green);
            color: white;
        }

        .cookie-decline {
            background: #f0f0f0;
            color: var(--ink);
        }

        /* Header - Updated for transparency */
        .header {
            position: fixed;
            inset: 0 0 auto 0;
            height: var(--header-h);
            background: transparent;
            z-index: 1000;
            display: flex;
            align-items: center;
            transition: background .3s ease;
        }

        .header.scrolled {
            background: rgba(0,0,0,.9);
            backdrop-filter: saturate(140%) blur(4px);
        }

        .nav-container {
            max-width: var(--container);
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: .6rem;
            text-decoration: none;
        }

        .logo img {
            height: 32px;
        }

        .logo__text {
            color: #fff;
            font-weight: 800;
            letter-spacing: .3px;
        }

        .right-rail {
            display: flex;
            align-items: center;
            gap: 18px;
        }

        .nav-menu {
            list-style: none;
            display: flex;
            gap: 22px;
        }

        .nav-menu a {
            color: #fff;
            text-decoration: none;
            font-weight: 700;
            font-size: .98rem;
            opacity: .95;
            padding: 8px 4px;
            border-radius: 8px;
        }

        .nav-menu a:hover {
            color: var(--royal-gold);
        }

        .book-now-btn {
            background: var(--royal-gold);
            color: #101418;
            text-decoration: none;
            padding: 10px 18px;
            border-radius: 999px;
            font-weight: 800;
            letter-spacing: .3px;
            box-shadow: 0 6px 20px rgba(243,164,45,.35);
            transition: .25s transform, .25s background;
            border: 0;
            display: inline-flex;
            align-items: center;
            gap: .5rem;
        }

        .book-now-btn:hover {
            background: var(--festival-flame);
            color: #fff;
            transform: translateY(-1px);
        }

        .menu-toggle {
            display: none;
            color: #fff;
            font-size: 1.4rem;
            cursor: pointer;
            background: none;
            border: 0;
        }

        /* Hero Carousel - Updated to start from top */
        .hero {
            position: relative;
            height: 100vh;
            overflow: hidden;
        }

        .slides {
            position: absolute;
            inset: 0;
        }

        .slide {
            position: absolute;
            inset: 0;
            opacity: 0;
            transition: opacity .8s ease-in-out;
        }

        .slide.active {
            opacity: 1;
        }

        .slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(.72);
            transform: scale(1.04);
        }

        .hero::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, rgba(0,0,0,.25), rgba(0,0,0,.55) 60%, rgba(0,0,0,.65));
            pointer-events: none;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            height: 100%;
            display: grid;
            place-items: center;
            text-align: center;
            color: #fff;
            padding: 0 20px;
        }

        .hero h1 {
            font-size: clamp(34px,5vw,58px);
            font-weight: 800;
            margin-bottom: 12px;
        }

        .hero p {
            font-size: clamp(16px,1.5vw,18px);
            max-width: 760px;
            margin: 0 auto 24px;
            opacity: .95;
        }

        .cta-bar {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .btn-primary {
            background: var(--royal-gold);
            color: #101418;
            border: 0;
            padding: 14px 24px;
            border-radius: 999px;
            font-weight: 800;
            cursor: pointer;
            transition: .25s;
            box-shadow: 0 8px 22px rgba(243,164,45,.35);
        }

        .btn-primary:hover {
            background: var(--festival-flame);
            color: #fff;
        }

        .btn-outline {
            background: transparent;
            color: #fff;
            border: 2px solid #fff;
            box-shadow: none;
        }

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

        .dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255,255,255,.55);
            cursor: pointer;
            border: 1px solid rgba(255,255,255,.6);
        }

        .dot.active {
            background: #fff;
        }

        /* Sections */
        section {
            scroll-margin-top: calc(var(--header-h) + 16px);
        }

        .container {
            max-width: var(--container);
            margin: 0 auto;
            padding: 0 20px;
        }

        .section-title {
            text-align: center;
            font-size: 2rem;
            margin-bottom: 10px;
            font-weight: 800;
        }

        .section-subtitle {
            text-align: center;
            max-width: 740px;
            margin: 0 auto 40px;
            color: var(--muted);
        }

        /* Discover Services - Now before Why We're Different */
        .services {
            background: #f5b657;
            padding: 72px 20px;
            border-radius: 18px;
            margin: 40px 8px 0;
        }

        .services .section-title {
            color: #2C3E50;
        }

        .services .section-subtitle {
            color: #2C3E50;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
            gap: 20px;
            margin-top: 8px;
        }

        .service-card {
            background: #fff;
            border-radius: 12px;
            padding: 24px 18px;
            text-align: left;
            box-shadow: 0 10px 22px rgba(0,0,0,.08);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            gap: 12px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            cursor: pointer;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }

        .service-image {
            width: 100%;
            height: 160px;
            object-fit: cover;
            border-radius: 8px;
            margin-bottom: 12px;
        }

        .service-icon img {
            width: 40px;
            height: 40px;
            filter: brightness(0) saturate(100%) invert(84%) sepia(53%) saturate(516%) hue-rotate(333deg) brightness(102%) contrast(96%);
        }

        .service-card h3 {
            font-size: 1.08rem;
            line-height: 1.35;
            color: #2C3E50;
        }

        .service-card p {
            color: #555;
            font-size: .95rem;
        }

        .learn-more-btn {
            background: var(--savannah-green);
            color: white;
            border: none;
            border-radius: 6px;
            padding: 8px 12px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            transition: background 0.3s;
            font-size: 0.9rem;
            margin-top: 8px;
            width: 100%;
        }

        .learn-more-btn:hover {
            background: #0f5a4a;
        }

        /* Service Popup Modal */
        .service-popup {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(10px);
            z-index: 2000;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .service-popup.active {
            display: flex;
            opacity: 1;
        }

        .popup-content {
            background: rgba(255, 255, 255, 0.95);
            border-radius: var(--radius);
            width: 90%;
            max-width: 800px;
            max-height: 90vh;
            overflow-y: auto;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            transform: translateY(20px);
            transition: transform 0.4s ease;
            position: relative;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .service-popup.active .popup-content {
            transform: translateY(0);
        }

        .popup-header {
            background: linear-gradient(135deg, var(--savannah-green), #0f5a4a);
            color: white;
            padding: 20px;
            position: relative;
            border-radius: var(--radius) var(--radius) 0 0;
        }

        .close-popup {
            position: absolute;
            right: 15px;
            top: 15px;
            background: rgba(255, 255, 255, 0.2);
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background-color 0.2s;
            backdrop-filter: blur(5px);
        }

        .close-popup:hover {
            background-color: rgba(255, 255, 255, 0.3);
        }

        .popup-body {
            padding: 25px;
        }

        .service-details {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin-bottom: 25px;
        }

        .service-image-large {
            width: 100%;
            border-radius: var(--radius);
            height: 250px;
            object-fit: cover;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
        }

        .service-info h2 {
            color: var(--savannah-green);
            margin-bottom: 15px;
            font-size: 1.8rem;
        }

        .service-info p {
            margin-bottom: 15px;
            line-height: 1.7;
        }

        .service-features {
            margin-top: 20px;
        }

        .service-features h3 {
            margin-bottom: 15px;
            color: var(--ink);
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .feature-list {
            list-style: none;
        }

        .feature-list li {
            padding: 10px 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }

        .feature-list li:last-child {
            border-bottom: none;
        }

        .feature-list li i {
            color: var(--savannah-green);
            margin-top: 3px;
            flex-shrink: 0;
        }

        .feature-list li strong {
            color: #2C3E50;
            display: block;
            margin-bottom: 3px;
        }

        .popup-footer {
            display: flex;
            justify-content: flex-end;
            gap: 15px;
            margin-top: 25px;
            padding-top: 20px;
            border-top: 1px solid rgba(0, 0, 0, 0.1);
        }

        .btn-secondary {
            background: #f0f0f0;
            color: var(--ink);
            border: none;
            border-radius: 6px;
            padding: 10px 20px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
        }

        .btn-secondary:hover {
            background: #e0e0e0;
        }

        .btn-primary {
            background: var(--royal-gold);
            color: #101418;
            border: none;
            border-radius: 6px;
            padding: 10px 20px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
            box-shadow: 0 4px 12px rgba(243, 164, 45, 0.3);
        }

        .btn-primary:hover {
            background: var(--festival-flame);
            color: #fff;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .service-details {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .service-image-large {
                height: 200px;
            }
            
            .popup-body {
                padding: 20px;
            }
            
            .popup-footer {
                flex-direction: column;
            }
        }

        /* Animation for feature items */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .feature-list li {
            animation: fadeInUp 0.5s ease forwards;
            opacity: 0;
        }

        .feature-list li:nth-child(1) { animation-delay: 0.1s; }
        .feature-list li:nth-child(2) { animation-delay: 0.2s; }
        .feature-list li:nth-child(3) { animation-delay: 0.3s; }
        .feature-list li:nth-child(4) { animation-delay: 0.4s; }
        .feature-list li:nth-child(5) { animation-delay: 0.5s; }

        /* Why We're Different - Now after Services */
        .why {
            background: var(--new-bg-color);
            padding: 72px 0;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
            gap: 20px;
        }

        .feature {
            background: #fff;
            text-align: center;
            padding: 30px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }

        .feature .icon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--royal-gold);
            color: #101418;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            margin: 0 auto 12px;
            font-weight: 800;
        }

        .feature h3, .feature p {
            color: #2C3E50;
        }

        /* About - Added margin to create space */
        .about {
            padding: 72px 0;
            color: #fff;
            background: linear-gradient(135deg, var(--savannah-green), #0f5a4a);
            margin-top: 40px;
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1.2fr .8fr;
            gap: 30px;
            align-items: center;
        }

        .about .card {
            background: rgba(0,0,0,.18);
            border: 1px solid rgba(255,255,255,.12);
            border-radius: var(--radius);
            padding: 22px;
            box-shadow: 0 10px 30px rgba(0,0,0,.15);
        }

        .about h3 {
            font-size: 1.25rem;
            margin-bottom: 10px;
        }

        .about img {
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            transition: transform 0.3s ease;
        }

        .about img:hover {
            transform: scale(1.02);
        }

        /* Team */
        .team {
            padding: 72px 0;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
            gap: 20px;
        }

        .team-member {
            text-align: center;
            background: var(--royal-gold);
            border-radius: var(--radius);
            padding: 20px;
            color: #101418;
            transition: transform 0.3s ease;
        }

        .team-member:hover {
            transform: translateY(-5px);
        }

        .team-member img {
            width: 100%;
            border-radius: var(--radius);
            margin-bottom: 10px;
            height: 200px;
            object-fit: cover;
        }

        /* Contact Us */
        .contact-us {
            background: #fff;
            padding: 72px 20px;
            text-align: center;
        }

        .contact-us .section-title {
            font-size: 2rem;
            margin-bottom: 10px;
            font-weight: 800;
            color: #2C3E50;
        }

        .contact-us .section-subtitle {
            color: #666;
            margin-bottom: 30px;
            font-size: 1rem;
        }

        .contact-form {
            max-width: 680px;
            margin: 0 auto 40px;
        }

        .contact-form .form-row {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
            justify-content: center;
            margin-bottom: 15px;
        }

        .contact-form .field {
            flex: 1 1 260px;
            text-align: left;
        }

        .contact-form label {
            display: block;
            font-weight: 700;
            font-size: .92rem;
            margin: 0 0 6px 6px;
            color: #2C3E50;
        }

        .contact-form input, .contact-form textarea {
            width: 100%;
            padding: 14px 12px;
            border: 1px solid #ddd;
            border-radius: 12px;
            font-size: 1rem;
            outline: none;
            transition: border .25s;
            background: #f5f5f5;
            font-family: inherit;
        }

        .contact-form textarea {
            min-height: 120px;
            resize: vertical;
        }

        .contact-form input:focus, .contact-form textarea:focus {
            border-color: var(--savannah-green);
        }

        .btn-submit {
            width: 100%;
            max-width: 520px;
            margin: 0 auto;
            display: block;
            padding: 14px 0;
            border: none;
            border-radius: 28px;
            background: var(--savannah-green);
            color: #fff;
            font-weight: 800;
            cursor: pointer;
            transition: background .25s;
        }

        .btn-submit:hover {
            background: #0f5a4a;
        }

        .contact-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
            gap: 20px;
            margin-top: 40px;
        }

        .info-box {
            position: relative;
            background: #f0f0f0;
            border-radius: 10px;
            padding: 44px 20px 24px;
            text-align: center;
            transition: transform 0.3s ease;
        }

        .info-box:hover {
            transform: translateY(-5px);
        }

        .info-box .icon {
            position: absolute;
            top: -26px;
            left: 50%;
            transform: translateX(-50%);
            width: 64px;
            height: 64px;
            border-radius: 50%;
            background: var(--savannah-green);
            color: #fff;
            display: grid;
            place-items: center;
            font-size: 26px;
            box-shadow: 0 8px 18px rgba(19,121,100,.25);
        }

        .info-box h3 {
            margin-bottom: 8px;
            font-weight: 800;
            color: #2C3E50;
            letter-spacing: .3px;
        }

        .info-box p {
            color: #666;
            line-height: 1.55;
        }

        /* Clickable elements in contact info */
        .clickable-heading {
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .clickable-heading:hover {
            color: var(--savannah-green);
        }

        .phone-link {
            color: #666;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .phone-link:hover {
            color: var(--savannah-green);
        }

        .map-link {
            color: #666;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .map-link:hover {
            color: var(--savannah-green);
        }

        /* Loading animation */
        .loader {
            display: none;
            width: 48px;
            height: 48px;
            border: 5px solid #FFF;
            border-bottom-color: var(--savannah-green);
            border-radius: 50%;
            animation: rotation 1s linear infinite;
            margin: 20px auto;
        }

        @keyframes rotation {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* Toast notification */
        .toast {
            visibility: hidden;
            min-width: 250px;
            background-color: var(--savannah-green);
            color: #fff;
            text-align: center;
            border-radius: 8px;
            padding: 16px;
            position: fixed;
            z-index: 10000;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            opacity: 0;
            transition: opacity 0.5s, bottom 0.5s;
        }

        .toast.show {
            visibility: visible;
            opacity: 1;
            bottom: 50px;
        }

        /* Footer */
        .footer {
            background: var(--footer-gold);
            color: var(--footer-ink);
            padding: 44px 0 20px;
        }

        .footer .wrap {
            max-width: var(--container);
            margin: 0 auto;
            padding: 0 20px;
        }

        .footer-top {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 26px;
            align-items: flex-start;
            margin-bottom: 14px;
        }

        .footer-brand {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .footer-brand img {
            height: 30px;
        }

        .footer strong.brand {
            color: #0F141A;
        }

        .footer p.address {
            color: #1a2025;
            margin-top: 8px;
        }

        .socials {
            display: flex;
            gap: 12px;
            align-items: center;
            margin-top: 10px;
        }

        .socials a {
            width: 38px;
            height: 38px;
            border-radius: 10px;
            display: inline-grid;
            place-items: center;
            color: #0F141A;
            text-decoration: none;
            background: #fff;
            border: 1px solid rgba(0,0,0,.06);
            transition: transform 0.3s ease;
        }

        .socials a:hover {
            transform: translateY(-3px);
        }

        .nl-compact {
            justify-self: end;
            max-width: 360px;
            width: 100%;
        }

        .nl-compact h4 {
            font-size: 1.05rem;
            font-weight: 800;
            color: #0F141A;
            margin-bottom: 6px;
        }

        .nl-form {
            display: flex;
            gap: 8px;
            align-items: center;
            width: 100%;
            background: #fff;
            border: 1px solid rgba(0,0,0,.08);
            border-radius: 12px;
            padding: 6px;
        }

        .nl-form input[type="email"] {
            flex: 1 1 auto;
            border: 0;
            outline: none;
            font-size: .98rem;
            padding: 10px 10px;
            border-radius: 10px;
        }

        .nl-form button {
            white-space: nowrap;
            border: 0;
            background: var(--savannah-green);
            color: #fff;
            border-radius: 10px;
            padding: 10px 14px;
            font-weight: 800;
            cursor: pointer;
            transition: background .25s;
        }

        .nl-form button:hover {
            background: #0f5a4a;
        }

        .nl-msg {
            font-size: .88rem;
            margin-top: 6px;
            color: #0F141A;
        }

        .footer-bottom {
            border-top: 1px solid rgba(0,0,0,.1);
            margin-top: 16px;
            padding-top: 12px;
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            color: #0F141A;
            font-size: .95rem;
        }

        .footer-bottom a {
            color: #0F141A;
            text-decoration: none;
            font-weight: 700;
        }

        .footer-bottom a:hover {
            text-decoration: underline;
        }

        /* Back to top button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--royal-gold);
            color: #101418;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
            z-index: 999;
        }

        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            transform: translateY(-5px);
            background: var(--festival-flame);
            color: #fff;
        }

        /* Responsive */
        @media (max-width:992px) {
            .about-grid {
                grid-template-columns: 1fr;
            }
            .footer-top {
                grid-template-columns: 1fr;
                gap: 18px;
            }
            .nl-compact {
                justify-self: start;
                max-width: 100%;
            }
        }

        @media (max-width:768px) {
            .nav-menu {
                position: fixed;
                right: 14px;
                top: calc(var(--header-h) + 8px);
                background: #0f1115;
                padding: 12px;
                border-radius: 12px;
                display: none;
                flex-direction: column;
                gap: 10px;
                box-shadow: 0 10px 30px rgba(0,0,0,.35);
            }
            .nav-menu.show {
                display: flex;
            }
            .menu-toggle {
                display: block;
            }
            .right-rail {
                gap: 12px;
            }
            .book-now-btn {
                padding: 10px 14px;
            }
            .hero {
                height: 88vh;
            }
            .back-to-top {
                bottom: 20px;
                right: 20px;
                width: 40px;
                height: 40px;
            }
            .cookie-consent {
                left: 10px;
                right: 10px;
                bottom: 10px;
            }
        }

        /* Request Modal Styles - Updated for request system */
        .request-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.85);
            z-index: 2000;
            overflow-y: auto;
            padding: 20px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .request-modal.active {
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 1;
        }

        .request-content {
            background: white;
            border-radius: var(--radius);
            width: 100%;
            max-width: 600px;
            max-height: 90vh;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            box-shadow: 0 20px 40px rgba(0,0,0,0.3);
            transform: translateY(20px);
            transition: transform 0.4s ease;
        }

        .request-modal.active .request-content {
            transform: translateY(0);
        }

        .request-header {
            background: var(--savannah-green);
            color: white;
            padding: 15px 20px;
            position: relative;
            text-align: center;
            flex-shrink: 0;
        }

        .close-modal {
            position: absolute;
            right: 15px;
            top: 15px;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background-color 0.2s;
        }

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

        .request-steps {
            display: flex;
            justify-content: space-between;
            padding: 15px 20px;
            border-bottom: 1px solid #eee;
            position: relative;
            flex-shrink: 0;
        }

        .request-steps::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 10%;
            right: 10%;
            height: 2px;
            background: #eee;
            transform: translateY(-50%);
            z-index: 1;
        }

        .step {
            display: flex;
            flex-direction: column;
            align-items: center;
            flex: 1;
            position: relative;
            z-index: 2;
        }

        .step-number {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background: #eee;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            margin-bottom: 6px;
            transition: all 0.3s ease;
            position: relative;
            font-size: 0.9rem;
        }

        .step.active .step-number {
            background: var(--royal-gold);
            color: white;
            box-shadow: 0 0 0 3px rgba(243, 164, 45, 0.3);
        }

        .step.completed .step-number {
            background: var(--savannah-green);
            color: white;
        }

        .step.completed .step-number::after {
            content: '✓';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        .step-text {
            font-size: 0.75rem;
            text-align: center;
            color: var(--muted);
            font-weight: 500;
        }

        .step.active .step-text {
            color: var(--ink);
            font-weight: 600;
        }

        .request-body {
            padding: 20px;
            overflow-y: auto;
            flex-grow: 1;
        }

        .request-form {
            display: none;
            animation: fadeIn 0.4s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .request-form.active {
            display: block;
        }

        .form-title {
            margin-bottom: 15px;
            color: var(--ink);
            font-size: 1.2rem;
            text-align: center;
        }

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

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

        .form-control {
            width: 100%;
            padding: 10px 12px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-family: inherit;
            font-size: 0.95rem;
            transition: border 0.3s ease, box-shadow 0.3s ease;
        }

        .form-control:focus {
            border-color: var(--savannah-green);
            outline: none;
            box-shadow: 0 0 0 3px rgba(19, 121, 100, 0.1);
        }

        .form-control.error {
            border-color: var(--festival-flame);
        }

        .error-message {
            color: var(--festival-flame);
            font-size: 0.8rem;
            margin-top: 4px;
            display: none;
        }

        .form-control.error + .error-message {
            display: block;
        }

        .service-options {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            gap: 12px;
            margin-top: 12px;
            margin-bottom: 10px;
        }

        .service-option {
            border: 2px solid #eee;
            border-radius: 8px;
            padding: 15px 10px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
            background: #f9f9f9;
            position: relative;
        }

        .service-option:hover {
            border-color: var(--royal-gold);
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }

        .service-option.selected {
            border-color: var(--savannah-green);
            background: rgba(19, 121, 100, 0.05);
            box-shadow: 0 4px 10px rgba(19, 121, 100, 0.1);
        }

        .service-option img {
            width: 40px;
            height: 40px;
            margin: 0 auto 10px;
            display: block;
            object-fit: contain;
        }

        .service-option h4 {
            margin-bottom: 6px;
            font-size: 0.9rem;
            color: var(--ink);
        }

        .service-option p {
            font-size: 0.8rem;
            color: var(--muted);
            margin: 0;
            line-height: 1.3;
        }

        .request-footer {
            display: flex;
            justify-content: space-between;
            padding: 15px 20px;
            border-top: 1px solid #eee;
            background: #f9f9f9;
            flex-shrink: 0;
        }

        .btn-prev, .btn-next {
            padding: 10px 18px;
            border-radius: 999px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            min-width: 100px;
            font-size: 0.9rem;
        }

        .btn-prev {
            background: #f0f0f0;
            color: var(--ink);
            opacity: 0;
            pointer-events: none;
            display: none;
        }

        .btn-prev.active {
            opacity: 1;
            pointer-events: all;
            display: block;
        }

        .btn-prev:hover {
            background: #e0e0e0;
        }

        .btn-next {
            background: var(--royal-gold);
            color: white;
        }

        .btn-next:hover {
            background: var(--festival-flame);
        }

        .btn-next:disabled {
            background: #ccc;
            cursor: not-allowed;
        }

        /* Gender selection */
        .gender-options {
            display: flex;
            gap: 15px;
            margin-top: 12px;
        }

        .gender-option {
            flex: 1;
            border: 2px solid #eee;
            border-radius: 8px;
            padding: 12px 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
            background: #f9f9f9;
        }

        .gender-option:hover {
            border-color: var(--royal-gold);
        }

        .gender-option.selected {
            border-color: var(--savannah-green);
            background: rgba(19, 121, 100, 0.05);
        }

        /* Checkbox for multiple service selection */
        .service-checkbox {
            display: none;
        }

        .service-option .checkmark {
            position: absolute;
            top: 5px;
            right: 5px;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: #ddd;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 12px;
            opacity: 0;
            transition: all 0.3s ease;
        }

        .service-option.selected .checkmark {
            opacity: 1;
            background: var(--savannah-green);
        }

        /* Confirmation Screen */
        .confirmation-screen {
            text-align: center;
            padding: 20px;
        }

        .confirmation-icon {
            font-size: 3rem;
            color: var(--savannah-green);
            margin-bottom: 15px;
        }

        .confirmation-message {
            margin-bottom: 20px;
        }

        .confirmation-message p {
            margin-bottom: 8px;
            font-size: 0.95rem;
        }

        /* Date and Time Fields */
        .date-time-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }

        .days-calculator {
            background: rgba(19, 121, 100, 0.05);
            border-radius: 8px;
            padding: 12px;
            margin-top: 10px;
            text-align: center;
            font-weight: 600;
            color: var(--savannah-green);
            display: none;
        }

        .days-calculator.active {
            display: block;
        }

        /* Summary Details */
        .summary-details {
            background: rgba(19, 121, 100, 0.05);
            border-radius: 8px;
            padding: 15px;
            margin-top: 15px;
            text-align: left;
        }

        .summary-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 8px;
            padding-bottom: 8px;
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }

        .summary-item:last-child {
            border-bottom: none;
            margin-bottom: 0;
        }

        .summary-item span:first-child {
            font-weight: 600;
            color: var(--ink);
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .request-content {
                margin: 10px;
                width: calc(100% - 20px);
                max-height: 95vh;
            }
            
            .service-options {
                grid-template-columns: 1fr;
            }
            
            .request-body {
                padding: 15px;
            }
            
            .request-steps::before {
                left: 15%;
                right: 15%;
            }
            
            .step-text {
                font-size: 0.7rem;
            }
            
            .btn-prev, .btn-next {
                min-width: 80px;
                padding: 8px 12px;
                font-size: 0.85rem;
            }
            
            .gender-options {
                flex-direction: column;
            }
            
            .date-time-grid {
                grid-template-columns: 1fr;
            }
        }