
        html, body { margin: 0; padding: 0; background: #050505; background-image: none; }
        body { font-family: Manrope, sans-serif; color: #10223a; overflow-x: hidden; }
        h1, h2, h3 { font-family: "Playfair Display", serif; letter-spacing: -0.02em; }
        header { background: #ffffff !important; backdrop-filter: blur(18px); border-bottom: 1px solid rgba(148, 163, 184, 0.2); }
        .animate-fade-in-up { animation: fade-in-up 0.9s ease-out both; }
        .animate-fade-in-up-delayed { animation: fade-in-up 1s ease-out both; }
        .animate-rise { animation: rise 1.1s ease-out both; }
        .nav-link { transition: color 0.25s ease, background-color 0.25s ease; }
        .nav-link:hover { color: #0a4d8f; }
        .button-primary { transition: transform 0.25s ease, box-shadow 0.25s ease; }
        .button-primary:hover { transform: translateY(-1px); box-shadow: 0 24px 60px rgba(10, 77, 143, 0.24); }
        .button-secondary { transition: background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease; }
        .button-secondary:hover { transform: translateY(-1px); background-color: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.25); }

        footer {
            position: relative;
            z-index: 9999;
        }
        /* Footer social icon buttons */
        footer .social-links {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        footer .social-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 2.5rem;
            height: 2.5rem;
            background: transparent;
            border: 0;
            padding: 0;
            border-radius: 9999px;
        }
        footer .social-icon img {
            display: block;
            width: 1.75rem;
            height: 1.75rem;
            object-fit: contain;
        }
        @media (max-width: 767px) {
            footer .social-icon {
                width: 2.5rem;
                height: 2.5rem;
            }
            footer .social-icon img {
                width: 1.75rem;
                height: 1.75rem;
            }
        }

        /* reveal on scroll (default visible to avoid blank page if JS fails) */
        .reveal,
        .reveal-fade {
            opacity: 1 !important;
            transform: none !important;
            transition: none !important;
        }
        .reveal-delay {
            /* kept for compatibility with JS-driven animations */
        }

        /* floating image */
        .float {
            animation: float 6s ease-in-out infinite;
        }
        @keyframes float {
            0% { transform: translateY(0); }
            50% { transform: translateY(-8px); }
            100% { transform: translateY(0); }
        }

        @keyframes fade-in-up { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
        @keyframes rise { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
        .gradient-ring {
            background: radial-gradient(circle at top left, rgba(59, 130, 246, 0.18), transparent 38%),
                        radial-gradient(circle at bottom right, rgba(15, 123, 255, 0.2), transparent 34%);
        }
        .hero-text {
            position: relative;
            z-index: 1;
        }
        .service-card {
            background: #ffffff;
            border: 1px solid rgba(148, 163, 184, 0.2);
            box-shadow: 0 24px 80px rgba(15, 23, 42, 0.08);
        }
        .service-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 34px 110px rgba(15, 23, 42, 0.12);
        }
        .step-card {
            position: relative;
            overflow: hidden;
            background: radial-gradient(circle at top left, rgba(59, 130, 246, 0.08), transparent 35%),
                        rgba(255, 255, 255, 0.94);
            border: 1px solid rgba(148, 163, 184, 0.18);
            box-shadow: 0 30px 80px rgba(15, 23, 42, 0.08);
            backdrop-filter: blur(12px);
            transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
            padding: 5rem 2.5rem 2rem 4rem;
            text-align: center;
        }
        .step-card::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(255,255,255,0.45), rgba(255,255,255,0.03));
            pointer-events: none;
        }
        .step-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 42px 120px rgba(15, 23, 42, 0.14);
            border-color: rgba(37, 99, 235, 0.24);
        }
        .step-card + .step-card {
            margin-top: 1.5rem;
        }
        .step-card__marker {
            position: absolute;
            left: 1.75rem;
            top: 1.5rem;
            width: 3rem;
            height: 3rem;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 9999px;
            background: linear-gradient(135deg, #2563eb, #3b82f6);
            color: #ffffff;
            font-weight: 700;
            box-shadow: 0 14px 32px rgba(37, 99, 235, 0.2);
        }
        .step-card__sub {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: #2563eb;
            font-size: 0.78rem;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            font-weight: 700;
        }
        .how-it-works-timeline {
            position: relative;
            padding-left: 1.75rem;
            padding-top: 1rem;
            display: grid;
            gap: 1.5rem;
        }
        .how-it-works-timeline::before {
            content: "";
            position: absolute;
            left: 1.5rem;
            top: 3rem;
            bottom: 1rem;
            width: 4px;
            border-radius: 9999px;
            background: linear-gradient(180deg, rgba(37, 99, 235, 0.36), rgba(37, 99, 235, 0));
        }
        @media (max-width: 767px) {
            .how-it-works-timeline {
                padding-left: 0.75rem;
                gap: 1rem;
            }
            .how-it-works-timeline::before {
                left: 0.5rem;
                top: 2.2rem;
                bottom: 0.5rem;
                width: 3px;
            }
            .step-card {
                padding: 1.25rem 1.15rem 1.1rem 1.15rem;
                text-align: left;
            }
            .step-card__marker {
                position: static;
                width: 2.5rem;
                height: 2.5rem;
                margin-bottom: 0.65rem;
                font-size: 0.95rem;
            }
            .step-card__sub {
                display: block;
                font-size: 0.72rem;
                letter-spacing: 0.14em;
                margin-bottom: 0.45rem;
            }
        }
        .how-it-works-highlights {
            display: grid;
            gap: 1rem;
        }
        .how-it-works-highlight {
            background: rgba(59, 130, 246, 0.06);
            border: 1px solid rgba(59, 130, 246, 0.14);
            border-radius: 1.5rem;
            padding: 1.25rem 1.5rem;
            box-shadow: 0 18px 45px rgba(15, 23, 42, 0.05);
        }
        .how-it-works-highlight p:first-child {
            font-weight: 700;
            color: #1d4ed8;
        }
        .how-it-works-highlight p:last-child {
            margin-top: 0.75rem;
            color: #475569;
        }
        .hero-badge {
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(12px);
        }
        .hero-line {
            opacity: 1;
            transform: translateY(0px);
            transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
        }
        .hero-line.line-hidden {
            opacity: 0;
            transform: translateY(18px);
        }
        .hero-line.line-fadeout {
            opacity: 0;
            transform: translateY(-14px);
        }
        .hero-image-card {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        .hero-image-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at top right, rgba(14, 165, 233, 0.18), transparent 24%),
                        radial-gradient(circle at bottom left, rgba(56, 189, 248, 0.12), transparent 22%);
            pointer-events: none;
            opacity: 0.9;
        }
        .hero-image-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 40px 80px rgba(15, 23, 42, 0.18);
        }
        .scrollbar-none {
            -ms-overflow-style: none;
            scrollbar-width: none;
        }
        .scrollbar-none::-webkit-scrollbar {
            display: none;
        }
        #ideaCarouselSection {
            overscroll-behavior-y: auto;
            overscroll-behavior-x: contain;
        }
        .carousel-track {
            --stage-card-width: min(920px, calc(100vw - 16rem));
            touch-action: pan-x pan-y;
            -webkit-overflow-scrolling: touch;
            scroll-padding-left: 50%;
            scroll-padding-right: 50%;
            scroll-behavior: smooth;
            perspective: 1400px;
            transform-style: preserve-3d;
            transform: rotateX(2deg);
            padding-left: max(2.5rem, calc((100% - var(--stage-card-width)) / 2));
            padding-right: max(2.5rem, calc((100% - var(--stage-card-width)) / 2));
            box-sizing: border-box;
            overflow-x: auto;
            overflow-y: hidden;
            cursor: default;
            user-select: none;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
        }
        .carousel-card {
            transform-origin: center center;
            backface-visibility: hidden;
            position: relative;
            will-change: transform, opacity, filter, box-shadow;
            transition:
                transform 680ms cubic-bezier(0.22, 1, 0.36, 1),
                opacity 680ms cubic-bezier(0.22, 1, 0.36, 1),
                filter 680ms cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 680ms cubic-bezier(0.22, 1, 0.36, 1);
            flex: 0 0 var(--stage-card-width);
            width: var(--stage-card-width);
            min-width: var(--stage-card-width) !important;
            max-width: var(--stage-card-width);
            margin-left: 0;
            margin-right: 0;
            transform: rotateY(0deg) translateZ(-150px) scale(0.84);
            opacity: 0.24;
            filter: blur(2.8px) saturate(0.9);
            box-shadow: 0 10px 28px rgba(15, 23, 42, 0.12);
            z-index: 1;
            isolation: isolate;
        }
        @media (max-width: 767px) {
            .carousel-track {
                --stage-card-width: calc(100vw - 5.5rem);
                padding-left: 2.75rem;
                padding-right: 2.75rem;
            }
        }
        .carousel-card.active {
            transform: rotateY(0deg) translateZ(52px) scale(1);
            opacity: 1;
            filter: blur(0);
            box-shadow: 0 40px 96px rgba(15, 23, 42, 0.28), 0 0 0 1px rgba(255, 255, 255, 0.24) inset;
            z-index: 20;
        }
        .carousel-card.is-prev {
            transform: rotateY(34deg) translateZ(-120px) scale(0.89);
            opacity: 0.52;
            filter: blur(2.2px) saturate(0.88);
            box-shadow: 0 18px 46px rgba(15, 23, 42, 0.16);
            z-index: 4;
        }
        .carousel-card.is-next {
            transform: rotateY(-34deg) translateZ(-120px) scale(0.89);
            opacity: 0.52;
            filter: blur(2.2px) saturate(0.88);
            box-shadow: 0 18px 46px rgba(15, 23, 42, 0.16);
            z-index: 4;
        }
        .carousel-card.is-far-left {
            transform: rotateY(62deg) translateZ(-215px) scale(0.76);
            opacity: 0.26;
            filter: blur(3.2px) saturate(0.84);
            box-shadow: 0 10px 28px rgba(15, 23, 42, 0.1);
            z-index: 2;
        }
        .carousel-card.is-far-right {
            transform: rotateY(-62deg) translateZ(-215px) scale(0.76);
            opacity: 0.26;
            filter: blur(3.2px) saturate(0.84);
            box-shadow: 0 10px 28px rgba(15, 23, 42, 0.1);
            z-index: 2;
        }
        .carousel-card::after {
            content: "";
            position: absolute;
            inset: 0;
            pointer-events: none;
            border-radius: inherit;
            opacity: 0;
            transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1);
            background:
                radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.34), transparent 40%),
                linear-gradient(120deg, rgba(255, 255, 255, 0.16), rgba(15, 23, 42, 0.08));
        }
        .carousel-card.active::after {
            opacity: 0.75;
        }
        .carousel-card > * {
            transition: opacity 540ms cubic-bezier(0.22, 1, 0.36, 1), transform 540ms cubic-bezier(0.22, 1, 0.36, 1);
        }
        .carousel-card.is-prev > *,
        .carousel-card.is-next > * {
            opacity: 0.82;
            transform: translateY(4px);
        }
        .carousel-card.is-far-left > *,
        .carousel-card.is-far-right > * {
            opacity: 0.62;
            transform: translateY(8px);
        }
        .carousel-card.active > * {
            opacity: 1;
            transform: translateY(0);
        }
        .carousel-track {
            user-select: none;
            -webkit-user-select: none;
        }
        #date::-webkit-calendar-picker-indicator {
            opacity: 1;
            display: block;
            pointer-events: auto;
            cursor: pointer;
            color: #ffffff;
            -webkit-filter: invert(1) grayscale(0) contrast(100%);
            filter: invert(1) grayscale(0) contrast(100%);
        }
        .relative .pointer-events-none svg {
            stroke: #ffffff;
            color: #ffffff;
            opacity: 1;
        }
        #date::-moz-calendar-picker-indicator {
            opacity: 0;
            pointer-events: none;
        }
        .hero-stat {
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-left: 4px solid rgba(37, 99, 235, 0.72);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
            transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
            min-height: 140px;
        }
        .hero-stat:hover {
            transform: translateY(-2px);
            background: rgba(255, 255, 255, 0.12);
            border-color: rgba(37, 99, 235, 0.9);
        }
        .page-hero {
            background: radial-gradient(circle at 14% 8%, rgba(196, 154, 58, 0.24), transparent 16%),
                        radial-gradient(circle at 92% 12%, rgba(13, 148, 136, 0.2), transparent 24%),
                        radial-gradient(circle at 56% 90%, rgba(10, 77, 143, 0.45), transparent 34%),
                        linear-gradient(140deg, #021426 0%, #092a4e 42%, #103c64 100%);
        }
        .section-panel {
            background: linear-gradient(180deg, rgba(4, 23, 45, 0.96), rgba(9, 42, 78, 0.86));
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 24px 64px rgba(15, 23, 42, 0.18);
        }
        .stack-cards {
            display: flex;
            justify-content: center;
            gap: 0;
            overflow-x: auto;
            padding-bottom: 1rem;
            -ms-overflow-style: none;
            scrollbar-width: none;
        }
        .stack-cards::-webkit-scrollbar {
            display: none;
        }
        .stack-card {
            width: 250px;
            min-height: 360px;
            flex: 0 0 auto;
            transition: transform 0.35s ease, box-shadow 0.35s ease;
            position: relative;
            z-index: 1;
        }
        .stack-card + .stack-card {
            margin-left: -56px;
        }
        .stack-card:hover {
            transform: translateY(-12px);
            z-index: 30;
            box-shadow: 0 22px 64px rgba(0, 0, 0, 0.55);
        }
        .stack-card:hover ~ .stack-card {
            transform: translateX(48px);
        }
        .stack-card .indicator-line {
            height: 5px;
            width: 7rem;
            overflow: hidden;
            border-radius: 9999px;
            background: #2e3033;
            margin-bottom: 1.25rem;
        }
        .stack-card .indicator-bar {
            width: 0;
            height: 100%;
            background: linear-gradient(90deg, rgba(0,154,217,1) 0%, rgba(217,147,0,1) 65%, rgba(255,186,0,1) 100%);
            transition: width 350ms ease;
        }
        .stack-card:hover .indicator-bar {
            width: 100%;
        }
        @media (max-width: 1023px) {
            .stack-cards {
                display: grid;
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 1rem;
                overflow: visible;
            }
            .stack-card,
            .stack-card + .stack-card {
                width: 100%;
                margin-left: 0;
            }
            .stack-card:hover ~ .stack-card {
                transform: none;
            }
        }
        @media (max-width: 639px) {
            .stack-cards {
                grid-template-columns: 1fr;
            }
            .stack-card {
                min-height: auto;
            }
        }
        main {
            height: auto;
            overflow: visible;
            -webkit-overflow-scrolling: touch;
        }
        main > section,
        main > footer {
            position: relative;
            z-index: 1;
        }
        @media (max-width: 767px) {
            main > section,
            main > footer {
                position: relative;
            }
        }

        /* Requirements Section Styles */
        .requirements-summary-card {
            background: #ffffff;
            border: 1px solid rgba(148, 163, 184, 0.2);
            padding: 1.5rem;
            border-radius: 1.5rem;
            min-height: 190px;
            box-shadow: 0 24px 80px rgba(15, 23, 42, 0.08);
            transition: all 0.3s ease;
        }
        .requirements-summary-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 34px 110px rgba(15, 23, 42, 0.12);
            border-color: rgba(37, 99, 235, 0.16);
        }
        .requirements-panel {
            background: #ffffff;
            border: 1px solid rgba(148, 163, 184, 0.2);
            border-radius: 1.75rem;
            padding: 2rem;
            box-shadow: 0 24px 80px rgba(15, 23, 42, 0.08);
        }
        .requirements-overview {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 1.5rem;
        }
        @media (max-width: 767px) {
            .requirements-overview {
                grid-template-columns: 1fr;
            }
        }
        .requirements-item {
            display: flex;
            gap: 1rem;
            padding: 1.25rem;
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.04), rgba(13, 148, 136, 0.04));
            border: 1px solid rgba(59, 130, 246, 0.08);
            border-radius: 1.25rem;
            transition: all 0.3s ease;
        }
        .requirements-item:hover {
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(13, 148, 136, 0.08));
            border-color: rgba(59, 130, 246, 0.16);
        }
        .requirements-item-icon {
            font-size: 1.75rem;
            line-height: 1;
            flex-shrink: 0;
        }
        .requirements-collapsible {
            margin-top: 1.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(148, 163, 184, 0.2);
        }
        #collapsibleContent {
            max-height: 0;
            opacity: 0;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
            visibility: hidden;
            display: block;
        }
        #collapsibleContent.expanded {
            max-height: 2000px;
            opacity: 1;
            visibility: visible;
            display: block;
            overflow: visible;
        }
        .requirements-cost-block {
            margin-top: 0.25rem;
            padding: 1.25rem 1.5rem;
            border-radius: 1.25rem;
            background: rgba(239, 246, 255, 0.85);
            border: 1px solid rgba(59, 130, 246, 0.12);
        }
        .requirements-view-more-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.875rem 1.5rem;
            background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(13, 148, 136, 0.08));
            border: 1.5px solid rgba(37, 99, 235, 0.24);
            border-radius: 0.875rem;
            color: #0a4d8f;
            font-size: 0.9375rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .requirements-view-more-btn:hover {
            background: linear-gradient(135deg, rgba(37, 99, 235, 0.14), rgba(13, 148, 136, 0.12));
            border-color: rgba(37, 99, 235, 0.4);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(37, 99, 235, 0.16);
        }
        .requirements-view-more-btn .btn-icon {
            transition: transform 0.3s ease;
            display: inline-block;
        }
        .requirements-view-more-btn.expanded .btn-icon {
            transform: rotate(180deg);
        }

        /* WhatsApp floating button — pinned bottom-right viewport */
        .whatsapp-widget {
            position: fixed !important;
            inset: auto 24px 24px auto !important;
            top: auto !important;
            left: auto !important;
            right: calc(24px + env(safe-area-inset-right, 0px)) !important;
            bottom: calc(24px + env(safe-area-inset-bottom, 0px)) !important;
            z-index: 1000001 !important;
            margin: 0 !important;
            padding: 0 !important;
            pointer-events: none;
        }

        /* Book widget – sits above the WhatsApp button */
        .book-widget {
            bottom: calc(24px + 56px + 16px + env(safe-area-inset-bottom, 0px)) !important;
        }

        @media (max-width: 480px) {
            .whatsapp-widget {
                right: calc(16px + env(safe-area-inset-right, 0px)) !important;
                bottom: calc(16px + env(safe-area-inset-bottom, 0px)) !important;
            }
            .book-widget {
                bottom: calc(16px + 56px + 12px + env(safe-area-inset-bottom, 0px)) !important;
            }
            .whatsapp-widget__menu {
                width: 220px;
            }
        }

        .whatsapp-widget__btn,
        .whatsapp-widget__menu {
            pointer-events: auto;
        }
        .whatsapp-widget__btn {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 56px;
            height: 56px;
            border: none;
            border-radius: 50%;
            background: #25D366;
            color: #fff;
            cursor: pointer;
            box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
            transition: transform 0.25s ease, box-shadow 0.25s ease;
        }
        .whatsapp-widget__btn:hover {
            transform: scale(1.08);
            box-shadow: 0 12px 36px rgba(37, 211, 102, 0.55);
        }
        .whatsapp-widget__btn svg {
            width: 28px;
            height: 28px;
            fill: currentColor;
        }
        .whatsapp-widget__menu {
            position: absolute;
            bottom: calc(100% + 12px);
            right: 0;
            width: 240px;
            background: #fff;
            border-radius: 16px;
            border: 1px solid rgba(148, 163, 184, 0.25);
            box-shadow: 0 20px 60px rgba(15, 23, 42, 0.14);
            opacity: 0;
            visibility: hidden;
            transform: translateY(8px) scale(0.96);
            transform-origin: bottom right;
            transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
            overflow: hidden;
        }
        .whatsapp-widget__menu.is-open {
            opacity: 1;
            visibility: visible;
            transform: translateY(0) scale(1);
        }
        .whatsapp-widget__title {
            padding: 14px 16px 10px;
            font-size: 13px;
            font-weight: 700;
            color: #0f172a;
            border-bottom: 1px solid rgba(148, 163, 184, 0.2);
            letter-spacing: 0.01em;
        }
        .whatsapp-widget__list {
            list-style: none;
            margin: 0;
            padding: 6px;
        }
        .whatsapp-widget__item a {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 12px;
            border-radius: 10px;
            font-size: 13px;
            font-weight: 600;
            color: #334155;
            text-decoration: none;
            transition: background-color 0.2s ease, color 0.2s ease;
        }
        .whatsapp-widget__item a:hover {
            background: rgba(10, 77, 143, 0.08);
            color: #0a4d8f;
        }
        .whatsapp-widget__item-icon {
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: rgba(37, 211, 102, 0.12);
            color: #25D366;
        }
        .whatsapp-widget__item-icon svg {
            width: 16px;
            height: 16px;
            fill: currentColor;
        }

        /* Book widget specific styles (overrides for feather icons) */
        .book-widget .whatsapp-widget__btn {
            background: #ffffff;
            box-shadow: 0 8px 28px rgba(15, 23, 42, 0.16);
        }
        .book-widget .whatsapp-widget__btn:hover {
            box-shadow: 0 12px 36px rgba(15, 23, 42, 0.2);
        }
        .book-widget .whatsapp-widget__btn img {
            width: 28px;
            height: 28px;
            object-fit: contain;
        }
        .book-widget .whatsapp-widget__item-icon {
            background: rgba(10, 77, 143, 0.12);
            color: #0a4d8f;
        }
        /* Ensure feather calendar-check icons are visible */
        .book-widget .whatsapp-widget__btn svg,
        .book-widget .whatsapp-widget__item-icon svg {
            stroke: white !important;
            fill: none !important;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }
        .book-widget .whatsapp-widget__item-icon svg {
            stroke: #0a4d8f !important;
        }

        /* More menu accordion */
        .mobile-nav-more-wrap {
            position: relative;
            flex: 1 1 0;
            min-width: 0;
            display: flex;
            justify-content: center;
        }
        .mobile-top-navbar,
        .mobile-nav-items,
        .mobile-nav-more-wrap {
            overflow: visible;
        }
        .mobile-nav-more-menu {
            position: absolute;
            top: calc(100% + 10px);
            right: 0;
            width: 280px;
            max-height: min(70vh, 420px);
            overflow-x: hidden;
            overflow-y: auto;
            background: #fff;
            border-radius: 12px;
            border: 1px solid rgba(148, 163, 184, 0.22);
            box-shadow: 0 24px 64px rgba(15, 23, 42, 0.16);
            opacity: 0;
            visibility: hidden;
            transform: translateY(-6px) scale(0.98);
            transform-origin: top right;
            transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
            z-index: 1000002;
        }
        .mobile-nav-more-menu.is-open {
            opacity: 1;
            visibility: visible;
            transform: translateY(0) scale(1);
        }
        .more-menu-list {
            list-style: none;
            margin: 0;
            padding: 8px 0;
        }
        .more-menu-link > a {
            display: block;
            padding: 14px 18px;
            font-size: 15px;
            font-weight: 500;
            color: #0f172a;
            text-decoration: none;
            transition: color 0.2s ease, background-color 0.2s ease;
        }
        .more-menu-link > a:hover,
        .more-menu-link > a:focus-visible {
            color: #0a4d8f;
            background: rgba(10, 77, 143, 0.04);
            outline: none;
        }
        .more-menu-accordion__trigger {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            padding: 14px 18px;
            border: none;
            background: transparent;
            font-size: 15px;
            font-weight: 500;
            color: #0f172a;
            text-align: left;
            cursor: pointer;
            transition: color 0.2s ease, background-color 0.2s ease;
        }
        .more-menu-accordion__trigger:hover,
        .more-menu-accordion__trigger:focus-visible {
            background: rgba(10, 77, 143, 0.04);
            outline: none;
        }
        .more-menu-accordion.is-open .more-menu-accordion__trigger {
            color: #0a4d8f;
        }
        .more-menu-chevron {
            flex-shrink: 0;
            margin-left: 12px;
            font-size: 11px;
            line-height: 1;
            color: #64748b;
            transition: transform 0.22s ease, color 0.22s ease;
        }
        .more-menu-accordion.is-open .more-menu-chevron {
            transform: rotate(90deg);
            color: #0a4d8f;
        }
        .more-menu-sublist {
            list-style: none;
            margin: 0;
            padding: 0 0 10px 0;
            display: none;
        }
        .more-menu-accordion.is-open .more-menu-sublist {
            display: block;
        }
        .more-menu-sublist a {
            display: block;
            position: relative;
            padding: 9px 18px 9px 38px;
            font-size: 14px;
            font-weight: 400;
            color: #475569;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        .more-menu-sublist a::before {
            content: "";
            position: absolute;
            left: 22px;
            top: 50%;
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: #cbd5e1;
            transform: translateY(-50%);
        }
        .more-menu-sublist a:hover,
        .more-menu-sublist a:focus-visible,
        .more-menu-sublist a.is-active {
            color: #0a4d8f;
            outline: none;
        }
        .more-menu-sublist a.is-active::before {
            background: #0a4d8f;
        }
        @media (max-width: 480px) {
            .mobile-nav-more-menu {
                width: 260px;
                right: -4px;
            }
        }
    
