        /* ================================================================
       CSS CUSTOM PROPERTIES — konsisten dengan halaman lain
       ================================================================ */
        :root {
            --c-nav: #CC8896;
            --c-accent: #E8758A;
            --c-accent-hov: #D4607A;
            --c-pink-light: #FCE8EC;
            --c-pink-mid: #F1A8B5;
            --c-bg: #F0F3F8;
            --c-white: #FFFFFF;
            --c-dark: #1A1A2E;
            --c-medium: #4E4E6A;
            --c-muted: #8E8EA0;
            --c-card-bg: #1A1A1A;
            --radius: 12px;
            --shadow-sm: 0 4px 15px rgba(0, 0, 0, .06);
            --shadow-md: 0 8px 30px rgba(0, 0, 0, .09);
            --ease: cubic-bezier(.4, 0, .2, 1);
            --ease-bounce: cubic-bezier(.34, 1.56, .64, 1);
            --dur: .3s;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        body {
            font-family: 'Outfit', sans-serif;
            background: var(--c-bg);
            color: var(--c-dark);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        button {
            cursor: pointer;
            font-family: inherit;
        }

        img,
        svg {
            display: block;
            max-width: 100%;
        }

        ::-webkit-scrollbar {
            width: 7px;
        }

        ::-webkit-scrollbar-track {
            background: var(--c-pink-light);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--c-pink-mid);
            border-radius: 4px;
        }

        @keyframes ripple {
            to {
                transform: scale(5);
                opacity: 0
            }
        }

        @keyframes pulseRing {

            0%,
            100% {
                transform: scale(1);
                opacity: .9
            }

            50% {
                transform: scale(1.35);
                opacity: .4
            }
        }

        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(22px)
            }

            to {
                opacity: 1;
                transform: none
            }
        }

        @keyframes slideInR {
            from {
                opacity: 0;
                transform: translateX(18px)
            }

            to {
                opacity: 1;
                transform: none
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0
            }

            to {
                opacity: 1
            }
        }

        @keyframes checkPop {
            0% {
                transform: scale(0) rotate(-20deg);
                opacity: 0
            }

            70% {
                transform: scale(1.2) rotate(5deg)
            }

            100% {
                transform: scale(1) rotate(0);
                opacity: 1
            }
        }

        @keyframes spin {
            to {
                transform: rotate(360deg)
            }
        }

        .js-reveal {
            opacity: 0;
            transform: translateY(28px);
            transition: opacity .65s var(--ease), transform .65s var(--ease);
        }

        .js-reveal.is-visible {
            opacity: 1;
            transform: none;
        }

        /* ================================================================
       ANNOUNCEMENT BAR
       ================================================================ */
        .bar {
            background: linear-gradient(90deg, var(--c-nav), #E8A0AE, var(--c-nav));
            color: #fff;
            text-align: center;
            padding: 9px 20px;
            font-size: 13px;
            font-weight: 500;
            letter-spacing: .4px;
        }

        .bar a {
            color: #fff;
            text-decoration: underline;
            margin-left: 6px;
        }

        /* ================================================================
       NAVBAR
       ================================================================ */
        .navbar {
            position: sticky;
            top: 0;
            z-index: 900;
            background: var(--c-nav);
            box-shadow: 0 2px 16px rgba(204, 136, 150, .28);
            transition: background var(--dur) var(--ease), box-shadow var(--dur);
        }

        .navbar.is-scrolled {
            background: rgba(204, 136, 150, .88);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            box-shadow: 0 4px 24px rgba(204, 136, 150, .38);
        }

        .nav-inner {
            max-width: 1380px;
            margin: 0 auto;
            padding: 11px 24px;
            display: flex;
            align-items: center;
            gap: 18px;
        }

        .nav-links {
            list-style: none;
            display: flex;
            gap: 2px;
        }

        .nav-links>li {
            position: relative;
        }

        .nav-links a {
            display: block;
            color: #fff;
            font-size: 12.5px;
            font-weight: 600;
            letter-spacing: .8px;
            text-transform: uppercase;
            padding: 7px 12px;
            border-radius: 6px;
            transition: background var(--dur);
            white-space: nowrap;
        }

        .nav-links a:hover,
        .nav-links a.nav-active {
            background: rgba(255, 255, 255, .22);
        }

        .has-drop:hover .drop-menu {
            opacity: 1;
            transform: translateY(0) scale(1);
            pointer-events: all;
        }

        .drop-menu {
            position: absolute;
            top: calc(100% + 8px);
            left: -8px;
            background: var(--c-white);
            border-radius: 10px;
            box-shadow: 0 12px 40px rgba(0, 0, 0, .12);
            min-width: 200px;
            padding: 8px 0;
            opacity: 0;
            transform: translateY(-10px) scale(.96);
            pointer-events: none;
            transition: all .22s var(--ease);
            z-index: 50;
        }

        .drop-menu a {
            display: block;
            color: var(--c-medium);
            font-size: 13.5px;
            font-weight: 500;
            padding: 10px 18px;
            letter-spacing: normal;
            text-transform: none;
            transition: background .18s, color .18s;
        }

        .drop-menu a:hover {
            background: var(--c-pink-light);
            color: var(--c-accent);
        }

        .logo {
            font-family: 'Dancing Script', cursive;
            font-size: 30px;
            font-weight: 700;
            color: #fff;
            white-space: nowrap;
            transition: transform var(--dur) var(--ease-bounce);
            text-shadow: 0 2px 8px rgba(0, 0, 0, .12);
        }

        .logo:hover {
            transform: scale(1.04);
            color: #000;
        }

        .nav-search {
            flex: 1;
            max-width: 380px;
            position: relative;
        }

        .nav-search input {
            width: 100%;
            padding: 9.5px 42px 9.5px 16px;
            border: 2px solid rgba(255, 255, 255, .45);
            border-radius: 22px;
            background: rgba(255, 255, 255, .88);
            font-size: 13.5px;
            font-family: inherit;
            outline: none;
            transition: border-color var(--dur), background var(--dur), box-shadow var(--dur);
            color: var(--c-dark);
        }

        .nav-search input:focus {
            border-color: #fff;
            background: #fff;
            box-shadow: 0 0 0 3px rgba(255, 255, 255, .28);
        }

        .nav-search input::placeholder {
            color: #aaa;
        }

        .nav-search-btn {
            position: absolute;
            right: 13px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: var(--c-nav);
            font-size: 15px;
            transition: transform var(--dur) var(--ease-bounce);
        }

        .nav-search-btn:hover {
            transform: translateY(-50%) scale(1.22);
        }

        .nav-actions {
            display: flex;
            gap: 10px;
            margin-left: auto;
        }

        .nav-action-btn {
            display: flex;
            align-items: center;
            gap: 6px;
            background: rgba(255, 255, 255, .2);
            color: #fff;
            border: 1.5px solid rgba(255, 255, 255, .38);
            padding: 7px 14px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 500;
            transition: background var(--dur), transform var(--dur) var(--ease-bounce), box-shadow var(--dur);
        }

        .nav-action-btn:hover {
            background: rgba(255, 255, 255, .32);
            transform: translateY(-2px);
            box-shadow: 0 5px 14px rgba(0, 0, 0, .1);
        }

        .badge {
            background: var(--c-dark);
            color: #fff;
            min-width: 18px;
            height: 18px;
            border-radius: 9px;
            font-size: 10.5px;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0 4px;
        }

        .user-dropdown {
            position: relative;
        }

        .user-dropdown:hover .user-drop-menu,
        .user-dropdown.active .user-drop-menu {
            opacity: 1;
            transform: translateY(0) scale(1);
            pointer-events: all;
        }

        .user-drop-menu {
            position: absolute;
            top: calc(100% + 8px);
            right: 0;
            background: var(--c-white);
            border-radius: 10px;
            box-shadow: 0 12px 40px rgba(0, 0, 0, .12);
            min-width: 180px;
            padding: 8px 0;
            opacity: 0;
            transform: translateY(-10px) scale(.96);
            pointer-events: none;
            transition: all .22s var(--ease);
            z-index: 50;
        }

        .user-drop-menu a {
            display: block;
            color: var(--c-medium);
            font-size: 13.5px;
            font-weight: 500;
            padding: 10px 18px;
            transition: background .18s, color .18s;
            text-transform: none;
            letter-spacing: normal;
        }

        .user-drop-menu a:hover {
            background: var(--c-pink-light);
            color: var(--c-accent);
        }

        .user-drop-divider {
            height: 1px;
            background: #f0f0f5;
            margin: 6px 14px;
        }

        .user-drop-menu .logout-link {
            color: #ff4d4f;
        }

        .user-drop-menu .logout-link:hover {
            background: #fff1f0;
            color: #ff4d4f;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            background: none;
            border: none;
            padding: 5px;
        }

        .hline {
            width: 23px;
            height: 2.5px;
            background: #fff;
            border-radius: 2px;
            transition: all .3s var(--ease);
            transform-origin: center;
        }

        .hamburger.is-open .hline:nth-child(1) {
            transform: translateY(7.5px) rotate(45deg);
        }

        .hamburger.is-open .hline:nth-child(2) {
            opacity: 0;
            transform: scaleX(0);
        }

        .hamburger.is-open .hline:nth-child(3) {
            transform: translateY(-7.5px) rotate(-45deg);
        }

        /* ================================================================
       BREADCRUMB
       ================================================================ */
        .breadcrumb-wrap {
            max-width: 1380px;
            margin: 0 auto;
            padding: 16px 24px 10px;
        }

        .breadcrumb-nav {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 4px;
            font-size: 13px;
            color: var(--c-muted);
        }

        .breadcrumb-nav a {
            color: var(--c-medium);
            font-weight: 500;
            transition: color var(--dur);
        }

        .breadcrumb-nav a:hover {
            color: var(--c-accent);
        }

        .breadcrumb-nav .bc-sep {
            margin: 0 3px;
            color: var(--c-pink-mid);
        }

        .breadcrumb-nav .bc-current {
            color: var(--c-accent);
            font-weight: 600;
        }

        /* ================================================================
       CONTACT BANNER
       ================================================================ */
        .cu-banner {
            max-width: 1380px;
            margin: 0 auto 28px;
            padding: 0 24px;
        }

        .cu-banner-inner {
            background: linear-gradient(135deg, var(--c-nav) 0%, var(--c-accent) 50%, #F1A8B5 100%);
            border-radius: var(--radius);
            padding: 40px 48px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            position: relative;
            overflow: hidden;
            animation: fadeUp .45s var(--ease) both;
        }

        .cu-banner-inner::before {
            content: '✉ ✆ ✉ ✆';
            position: absolute;
            top: -8px;
            right: 24px;
            font-size: 88px;
            letter-spacing: 20px;
            color: rgba(255, 255, 255, .07);
            pointer-events: none;
            white-space: nowrap;
        }

        .cu-banner-inner::after {
            content: '';
            position: absolute;
            bottom: -40px;
            left: -40px;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: rgba(255, 255, 255, .05);
            pointer-events: none;
        }

        .cu-banner-text {
            position: relative;
            z-index: 1;
        }

        .cu-banner-title {
            font-family: 'Playfair Display', serif;
            font-size: 34px;
            font-weight: 700;
            color: #fff;
            line-height: 1.2;
            margin-bottom: 8px;
            text-shadow: 0 2px 8px rgba(0, 0, 0, .12);
        }

        .cu-banner-sub {
            font-size: 14px;
            color: rgba(255, 255, 255, .85);
            margin-bottom: 18px;
        }

        .cu-banner-chips {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
        }

        .cu-chip {
            display: flex;
            align-items: center;
            gap: 7px;
            background: rgba(255, 255, 255, .18);
            border: 1.5px solid rgba(255, 255, 255, .3);
            backdrop-filter: blur(6px);
            padding: 7px 16px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 600;
            color: #fff;
        }

        .cu-banner-ico {
            position: relative;
            z-index: 1;
            font-size: 80px;
            line-height: 1;
            flex-shrink: 0;
            filter: drop-shadow(0 4px 14px rgba(0, 0, 0, .15));
        }

        /* ================================================================
       PAGE LAYOUT
       ================================================================ */
        .cu-page-wrap {
            max-width: 1380px;
            margin: 0 auto 52px;
            padding: 0 24px;
        }

        .cu-layout {
            display: grid;
            grid-template-columns: 1fr 340px;
            gap: 22px;
            align-items: start;
        }

        /* ================================================================
       CONTACT FORM CARD
       ================================================================ */
        .cu-form-card {
            background: var(--c-white);
            border-radius: var(--radius);
            box-shadow: var(--shadow-sm);
            overflow: hidden;
            animation: fadeUp .5s var(--ease) .05s both;
        }

        .cu-card-hd {
            background: var(--c-card-bg);
            padding: 16px 24px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .cu-card-hd .hd-ico {
            font-size: 18px;
        }

        .cu-card-hd h2 {
            font-family: 'Playfair Display', serif;
            font-size: 16px;
            font-weight: 700;
            color: #fff;
        }

        .cu-form-body {
            padding: 28px;
        }

        /* Form elements */
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-bottom: 18px;
        }

        .form-group {
            margin-bottom: 18px;
        }

        .form-group:last-of-type {
            margin-bottom: 0;
        }

        .form-label {
            display: block;
            font-size: 12px;
            font-weight: 700;
            color: var(--c-muted);
            text-transform: uppercase;
            letter-spacing: .6px;
            margin-bottom: 7px;
        }

        .form-label .req {
            color: var(--c-accent);
            margin-left: 2px;
        }

        .form-input,
        .form-select,
        .form-textarea {
            width: 100%;
            padding: 11px 14px;
            border: 1.5px solid #e4e4f0;
            border-radius: 9px;
            font-size: 13.5px;
            font-family: inherit;
            color: var(--c-dark);
            outline: none;
            background: var(--c-white);
            transition: border-color var(--dur), box-shadow var(--dur), background var(--dur);
        }

        .form-input:focus,
        .form-select:focus,
        .form-textarea:focus {
            border-color: var(--c-accent);
            box-shadow: 0 0 0 3px rgba(232, 117, 138, .1);
            background: #fff;
        }

        .form-input::placeholder,
        .form-textarea::placeholder {
            color: #bbb;
        }

        .form-input.error,
        .form-textarea.error {
            border-color: #ff4d4f;
            box-shadow: 0 0 0 3px rgba(255, 77, 79, .08);
        }

        .form-select {
            appearance: none;
            -webkit-appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%238E8EA0' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 14px center;
            padding-right: 36px;
            cursor: pointer;
        }

        .form-textarea {
            resize: vertical;
            min-height: 130px;
            line-height: 1.6;
        }

        /* Error messages */
        .field-error {
            font-size: 11.5px;
            color: #ff4d4f;
            margin-top: 5px;
            display: none;
        }

        .field-error.show {
            display: block;
        }

        /* Alert errors (server) */
        .alert-error {
            background: #fff1f0;
            border: 1.5px solid #ffa39e;
            border-radius: 9px;
            padding: 12px 16px;
            margin-bottom: 20px;
            font-size: 13.5px;
            color: #ff4d4f;
        }

        .alert-error ul {
            margin-left: 18px;
            margin-top: 4px;
        }

        .alert-error ul li {
            margin-bottom: 3px;
        }

        /* Submit button */
        .submit-btn {
            width: 100%;
            padding: 13px 20px;
            border-radius: 22px;
            background: var(--c-accent);
            color: #fff;
            border: none;
            font-size: 14px;
            font-weight: 700;
            font-family: inherit;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            transition: all var(--dur) var(--ease-bounce);
            position: relative;
            overflow: hidden;
            margin-top: 6px;
        }

        .submit-btn:hover {
            background: var(--c-accent-hov);
            transform: translateY(-3px);
            box-shadow: 0 8px 24px rgba(232, 117, 138, .42);
        }

        .submit-btn:disabled {
            opacity: .65;
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }

        .ripple-el {
            position: absolute;
            border-radius: 50%;
            background: rgba(255, 255, 255, .32);
            pointer-events: none;
            transform: scale(0);
            animation: ripple .55s var(--ease) forwards;
        }

        /* Spinner */
        .spinner {
            width: 18px;
            height: 18px;
            border: 2.5px solid rgba(255, 255, 255, .4);
            border-top-color: #fff;
            border-radius: 50%;
            animation: spin .7s linear infinite;
            display: none;
        }

        .spinner.show {
            display: block;
        }

        /* ── SUCCESS STATE ───────────────────────────────────────── */
        .cu-success {
            display: none;
            text-align: center;
            padding: 52px 28px;
            animation: fadeIn .5s var(--ease) both;
        }

        .cu-success.show {
            display: block;
        }

        .success-ico {
            font-size: 72px;
            display: block;
            margin-bottom: 20px;
            animation: checkPop .5s var(--ease-bounce) .1s both;
        }

        .cu-success h3 {
            font-family: 'Playfair Display', serif;
            font-size: 22px;
            color: var(--c-dark);
            margin-bottom: 10px;
        }

        .cu-success p {
            font-size: 14px;
            color: var(--c-muted);
            line-height: 1.7;
            margin-bottom: 24px;
        }

        .btn-send-again {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            padding: 11px 26px;
            border-radius: 22px;
            background: var(--c-pink-light);
            color: var(--c-accent);
            border: 1.5px solid var(--c-pink-mid);
            font-size: 13.5px;
            font-weight: 700;
            font-family: inherit;
            cursor: pointer;
            transition: all var(--dur) var(--ease-bounce);
        }

        .btn-send-again:hover {
            background: var(--c-pink-mid);
            color: #fff;
            transform: translateY(-2px);
        }

        /* ================================================================
       SIDEBAR CARDS
       ================================================================ */
        .cu-sidebar {
            animation: slideInR .5s var(--ease) both;
        }

        .cs-card {
            background: var(--c-white);
            border-radius: var(--radius);
            box-shadow: var(--shadow-sm);
            overflow: hidden;
            margin-bottom: 16px;
        }

        .cs-card:last-child {
            margin-bottom: 0;
        }

        .cs-card-hd {
            background: var(--c-card-bg);
            padding: 14px 18px;
            display: flex;
            align-items: center;
            gap: 9px;
        }

        .cs-card-hd .hd-ico {
            font-size: 16px;
        }

        .cs-card-hd h3 {
            font-family: 'Playfair Display', serif;
            font-size: 15px;
            font-weight: 700;
            color: #fff;
        }

        .cs-card-body {
            padding: 18px 20px;
        }

        /* Contact info items */
        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 13px;
            padding: 12px 0;
            border-bottom: 1px solid #f0f0f8;
        }

        .contact-item:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }

        .contact-item:first-child {
            padding-top: 0;
        }

        .ci-icon {
            width: 38px;
            height: 38px;
            border-radius: 10px;
            background: var(--c-pink-light);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 17px;
            flex-shrink: 0;
        }

        .ci-content {
            flex: 1;
            min-width: 0;
        }

        .ci-label {
            font-size: 11px;
            font-weight: 700;
            color: var(--c-muted);
            text-transform: uppercase;
            letter-spacing: .5px;
            margin-bottom: 3px;
        }

        .ci-value {
            font-size: 13.5px;
            font-weight: 600;
            color: var(--c-dark);
            line-height: 1.5;
        }

        .ci-value a {
            color: var(--c-accent);
            transition: color var(--dur);
        }

        .ci-value a:hover {
            color: var(--c-accent-hov);
            text-decoration: underline;
        }

        /* Business hours */
        .hours-list {
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .hours-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 9px 0;
            border-bottom: 1px solid #f0f0f8;
            font-size: 13px;
        }

        .hours-row:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }

        .hours-row:first-child {
            padding-top: 0;
        }

        .hours-day {
            color: var(--c-medium);
            font-weight: 500;
        }

        .hours-time {
            font-weight: 700;
            color: var(--c-dark);
        }

        .hours-time.closed {
            color: var(--c-muted);
            font-weight: 500;
            font-size: 12px;
        }

        .hours-time.open {
            color: #52c41a;
        }

        .day-badge {
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }

        .today-dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--c-accent);
            display: inline-block;
        }

        /* Social links */
        .social-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 9px;
        }

        .social-link {
            display: flex;
            align-items: center;
            gap: 9px;
            padding: 10px 13px;
            border-radius: 9px;
            border: 1.5px solid #f0f0f8;
            font-size: 13px;
            font-weight: 600;
            color: var(--c-medium);
            transition: all .22s var(--ease);
            text-decoration: none;
        }

        .social-link:hover {
            border-color: var(--c-pink-mid);
            color: var(--c-accent);
            background: var(--c-pink-light);
            transform: translateY(-2px);
        }

        .social-link .sl-ico {
            font-size: 18px;
            flex-shrink: 0;
        }

        /* WhatsApp CTA */
        .wa-cta {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 16px;
            background: linear-gradient(135deg, #25D366, #128C7E);
            border-radius: 10px;
            color: #fff;
            text-decoration: none;
            transition: all var(--dur) var(--ease-bounce);
        }

        .wa-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 22px rgba(37, 211, 102, .38);
        }

        .wa-cta .wa-ico {
            font-size: 30px;
            flex-shrink: 0;
        }

        .wa-cta-text .wa-title {
            font-size: 13.5px;
            font-weight: 700;
            margin-bottom: 2px;
        }

        .wa-cta-text .wa-sub {
            font-size: 12px;
            opacity: .88;
        }

        /* ================================================================
       MAP SECTION
       ================================================================ */
        .map-section {
            margin-bottom: 28px;
            animation: fadeUp .55s var(--ease) .12s both;
        }

        .map-section-hd {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 14px;
        }

        .map-section-hd h2 {
            font-family: 'Playfair Display', serif;
            font-size: 22px;
            font-weight: 700;
            color: var(--c-dark);
            position: relative;
            padding-bottom: 10px;
        }

        .map-section-hd h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 44px;
            height: 3px;
            background: linear-gradient(90deg, var(--c-accent), var(--c-pink-mid));
            border-radius: 3px;
        }

        .map-wrap {
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            height: 300px;
            background: #e8eaf0;
            position: relative;
        }

        .map-wrap iframe {
            width: 100%;
            height: 100%;
            border: 0;
            display: block;
        }

        /* ================================================================
       FAQ SECTION
       ================================================================ */
        .faq-section {
            margin-bottom: 28px;
            animation: fadeUp .6s var(--ease) .15s both;
        }

        .faq-section-hd {
            margin-bottom: 18px;
        }

        .faq-section-hd h2 {
            font-family: 'Playfair Display', serif;
            font-size: 22px;
            font-weight: 700;
            color: var(--c-dark);
            position: relative;
            padding-bottom: 10px;
        }

        .faq-section-hd h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 44px;
            height: 3px;
            background: linear-gradient(90deg, var(--c-accent), var(--c-pink-mid));
            border-radius: 3px;
        }

        .faq-section-hd p {
            font-size: 14px;
            color: var(--c-muted);
            margin-top: 10px;
        }

        .faq-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
        }

        .faq-item {
            background: var(--c-white);
            border-radius: var(--radius);
            box-shadow: var(--shadow-sm);
            overflow: hidden;
            border: 1.5px solid transparent;
            transition: border-color var(--dur), box-shadow var(--dur);
        }

        .faq-item.open {
            border-color: var(--c-pink-mid);
            box-shadow: var(--shadow-pink);
        }

        .faq-q {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            padding: 16px 18px;
            cursor: pointer;
            user-select: none;
        }

        .faq-q-text {
            font-size: 14px;
            font-weight: 600;
            color: var(--c-dark);
            line-height: 1.4;
        }

        .faq-arrow {
            width: 28px;
            height: 28px;
            flex-shrink: 0;
            background: var(--c-pink-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 13px;
            color: var(--c-accent);
            font-weight: 700;
            transition: transform var(--dur) var(--ease-bounce), background var(--dur);
        }

        .faq-item.open .faq-arrow {
            transform: rotate(180deg);
            background: var(--c-accent);
            color: #fff;
        }

        .faq-a {
            max-height: 0;
            overflow: hidden;
            transition: max-height .4s var(--ease), padding .3s;
            padding: 0 18px;
        }

        .faq-a-inner {
            padding-bottom: 16px;
            font-size: 13.5px;
            color: var(--c-medium);
            line-height: 1.75;
        }

        .faq-item.open .faq-a {
            max-height: 200px;
        }

        /* ================================================================
       FOOTER
       ================================================================ */
        .footer {
            background: var(--c-dark);
            color: #fff;
            padding: 56px 0 0;
            margin-top: 42px;
        }

        .footer-inner {
            max-width: 1380px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 44px;
            padding-bottom: 48px;
        }

        .f-logo {
            font-family: 'Dancing Script', cursive;
            font-size: 34px;
            font-weight: 700;
            color: #fff;
            display: block;
            margin-bottom: 14px;
        }

        .f-about p {
            font-size: 13px;
            color: rgba(255, 255, 255, .55);
            line-height: 1.82;
            margin-bottom: 18px;
        }

        .f-contact-f {
            display: flex;
            align-items: flex-start;
            gap: 9px;
            margin-bottom: 11px;
            font-size: 13px;
            color: rgba(255, 255, 255, .65);
        }

        .f-contact-f .ico {
            color: var(--c-pink-mid);
            flex-shrink: 0;
            margin-top: 2px;
            font-size: 14px;
        }

        .footer h4 {
            font-size: 14.5px;
            font-weight: 700;
            margin-bottom: 18px;
            padding-bottom: 10px;
            position: relative;
        }

        .footer h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 28px;
            height: 2.5px;
            background: var(--c-pink-mid);
            border-radius: 2px;
        }

        .f-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 9px;
        }

        .f-links a {
            color: rgba(255, 255, 255, .55);
            font-size: 13px;
            display: flex;
            align-items: center;
            gap: 6px;
            transition: color var(--dur), padding-left var(--dur);
        }

        .f-links a::before {
            content: '›';
            color: var(--c-pink-mid);
        }

        .f-links a:hover {
            color: var(--c-pink-mid);
            padding-left: 4px;
        }

        .social-row {
            display: flex;
            gap: 10px;
            margin-bottom: 22px;
        }

        .soc-btn {
            width: 38px;
            height: 38px;
            border-radius: 9px;
            background: rgba(255, 255, 255, .1);
            border: 1.5px solid rgba(255, 255, 255, .18);
            color: rgba(255, 255, 255, .65);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 15px;
            font-weight: 700;
            transition: background var(--dur), border-color var(--dur), color var(--dur), transform var(--dur) var(--ease-bounce);
        }

        .soc-btn:hover {
            background: var(--c-accent);
            border-color: var(--c-accent);
            color: #fff;
            transform: translateY(-3px);
        }

        .pay-row {
            display: flex;
            gap: 7px;
            flex-wrap: wrap;
        }

        .pay-chip {
            background: rgba(255, 255, 255, .12);
            border-radius: 6px;
            padding: 4px 10px;
            font-size: 11px;
            font-weight: 700;
            color: rgba(255, 255, 255, .78);
            letter-spacing: .5px;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, .1);
            padding: 18px 0;
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 12.5px;
            color: rgba(255, 255, 255, .38);
            flex-wrap: wrap;
            gap: 10px;
        }

        .footer-bottom a {
            color: var(--c-pink-mid);
        }

        .secure-chips {
            display: flex;
            gap: 10px;
            align-items: center;
        }

        .secure-chip {
            display: flex;
            align-items: center;
            gap: 4px;
            background: rgba(255, 255, 255, .08);
            border-radius: 5px;
            padding: 4px 9px;
            font-size: 11px;
        }

        /* ================================================================
       FLOATING BUTTONS
       ================================================================ */
        .wa-wrap {
            position: fixed;
            bottom: 28px;
            right: 28px;
            z-index: 800;
        }

        .wa-btn {
            width: 54px;
            height: 54px;
            border-radius: 50%;
            background: #25D366;
            color: #fff;
            font-size: 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 6px 20px rgba(37, 211, 102, .38);
            transition: transform var(--dur) var(--ease-bounce), box-shadow var(--dur);
            position: relative;
            text-decoration: none;
        }

        .wa-btn::before {
            content: '';
            position: absolute;
            inset: -7px;
            border: 2px solid rgba(37, 211, 102, .38);
            border-radius: 50%;
            animation: pulseRing 2.4s ease infinite;
        }

        .wa-btn:hover {
            transform: scale(1.14);
            box-shadow: 0 10px 28px rgba(37, 211, 102, .5);
        }

        .wa-tip {
            position: absolute;
            right: 66px;
            top: 50%;
            transform: translateY(-50%);
            background: var(--c-dark);
            color: #fff;
            padding: 7px 13px;
            border-radius: 8px;
            font-size: 12.5px;
            white-space: nowrap;
            opacity: 0;
            pointer-events: none;
            transition: opacity var(--dur), right var(--dur);
        }

        .wa-tip::after {
            content: '';
            position: absolute;
            right: -6px;
            top: 50%;
            transform: translateY(-50%);
            border: 6px solid transparent;
            border-left-color: var(--c-dark);
            border-right-width: 0;
        }

        .wa-wrap:hover .wa-tip {
            opacity: 1;
            right: 70px;
        }

        .btt {
            position: fixed;
            bottom: 28px;
            right: 96px;
            z-index: 800;
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: var(--c-accent);
            color: #fff;
            border: none;
            font-size: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 14px rgba(232, 117, 138, .32);
            opacity: 0;
            transform: translateY(16px);
            transition: opacity var(--dur), transform var(--dur) var(--ease-bounce), box-shadow var(--dur);
        }

        .btt.show {
            opacity: 1;
            transform: translateY(0);
        }

        .btt:hover {
            transform: translateY(-4px) scale(1.1);
            box-shadow: 0 8px 22px rgba(232, 117, 138, .4);
        }

        /* ================================================================
       TOAST & COOKIE
       ================================================================ */
        .toast-stack {
            position: fixed;
            bottom: 28px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 2000;
            display: flex;
            flex-direction: column-reverse;
            align-items: center;
            gap: 8px;
            pointer-events: none;
        }

        .toast-msg {
            background: var(--c-dark);
            color: #fff;
            padding: 10px 22px;
            border-radius: 24px;
            font-size: 13.5px;
            font-weight: 500;
            box-shadow: 0 6px 20px rgba(0, 0, 0, .2);
            opacity: 0;
            transform: translateY(14px);
            transition: all .32s var(--ease-bounce);
            white-space: nowrap;
        }

        .toast-msg.in {
            opacity: 1;
            transform: translateY(0);
        }

        .cookie-bar {
            position: fixed;
            bottom: 24px;
            left: 24px;
            max-width: 500px;
            background: var(--c-dark);
            color: #fff;
            border-radius: var(--radius);
            padding: 20px 24px;
            z-index: 1500;
            box-shadow: 0 10px 38px rgba(0, 0, 0, .18);
            display: flex;
            align-items: center;
            gap: 16px;
            flex-wrap: wrap;
            transform: translateY(20px);
            opacity: 0;
            transition: all .5s var(--ease-bounce);
        }

        .cookie-bar.show {
            transform: translateY(0);
            opacity: 1;
        }

        .cookie-bar p {
            font-size: 13px;
            color: rgba(255, 255, 255, .72);
            flex: 1;
            min-width: 200px;
            line-height: 1.6;
        }

        .cookie-bar a {
            color: var(--c-pink-mid);
        }

        .cookie-ok {
            background: var(--c-accent);
            color: #fff;
            border: none;
            padding: 9px 20px;
            border-radius: 18px;
            font-size: 13px;
            font-weight: 700;
            font-family: inherit;
            cursor: pointer;
            transition: all .3s var(--ease-bounce);
            white-space: nowrap;
        }

        .cookie-ok:hover {
            transform: scale(1.06);
        }

        /* ================================================================
       MOBILE MENU
       ================================================================ */
        .mob-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, .4);
            z-index: 1050;
            opacity: 0;
            pointer-events: none;
            transition: opacity .3s;
        }

        .mob-overlay.open {
            opacity: 1;
            pointer-events: all;
        }

        .mob-panel {
            position: fixed;
            top: 0;
            left: -290px;
            bottom: 0;
            width: 280px;
            background: var(--c-white);
            z-index: 1060;
            box-shadow: 6px 0 30px rgba(0, 0, 0, .1);
            transition: left .4s var(--ease);
            display: flex;
            flex-direction: column;
        }

        .mob-panel.open {
            left: 0;
        }

        .mob-hd {
            background: var(--c-nav);
            padding: 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .mob-logo {
            font-family: 'Dancing Script', cursive;
            font-size: 24px;
            color: #fff;
            font-weight: 700;
        }

        .mob-close-btn {
            background: none;
            border: none;
            color: #fff;
            font-size: 22px;
            cursor: pointer;
            transition: transform .3s;
        }

        .mob-close-btn:hover {
            transform: rotate(90deg);
        }

        .mob-nav-list {
            list-style: none;
            padding: 14px 0;
            flex: 1;
            overflow-y: auto;
        }

        .mob-nav-list li a {
            display: block;
            padding: 13px 22px;
            font-size: 14.5px;
            font-weight: 600;
            color: var(--c-medium);
            border-left: 3px solid transparent;
            transition: all .2s;
        }

        .mob-nav-list li a:hover {
            border-left-color: var(--c-accent);
            color: var(--c-accent);
            background: var(--c-pink-light);
        }

        .mob-hr {
            height: 1px;
            background: #f0f0f5;
            margin: 6px 16px;
        }

        /* ================================================================
       RESPONSIVE
       ================================================================ */
        @media(max-width:1100px) {
            .cu-layout {
                grid-template-columns: 1fr 300px;
            }
        }

        @media(max-width:860px) {
            .cu-layout {
                grid-template-columns: 1fr;
            }

            .cu-sidebar {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 16px;
            }

            .cu-sidebar .cs-card {
                margin-bottom: 0;
            }

            .faq-grid {
                grid-template-columns: 1fr;
            }

            .nav-links {
                display: none;
            }

            .hamburger {
                display: flex;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 32px;
            }

            .cu-banner-inner {
                flex-direction: column;
                text-align: center;
                padding: 28px 24px;
            }

            .cu-banner-ico {
                font-size: 56px;
            }

            .cu-banner-title {
                font-size: 26px;
            }

            .cu-banner-chips {
                justify-content: center;
            }

            .form-row {
                grid-template-columns: 1fr;
                gap: 0;
            }
        }

        @media(max-width:640px) {
            .cu-sidebar {
                grid-template-columns: 1fr;
            }
        }

        @media(max-width:560px) {
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
        }

        @media(max-width:400px) {
            .nav-inner {
                flex-wrap: wrap;
            }

            .nav-search {
                order: 3;
                max-width: 100%;
                flex: 0 0 100%;
            }
        }
   