  
        .flatrack-row {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
        }

        .flatrack-row .appt-field {
            margin-bottom: 20px;
        }

        @media(max-width:768px) {
            .flatrack-row {
                grid-template-columns: 1fr;
            }
        }

        .page-hero h1 {
            margin-top: 0 !important;
        }

        /* ── Trust bar ── */
        .appt-trust-bar {
            background: white;
            border-bottom: 1px solid var(--clr-border);
            padding: 18px 0;
        }

        .appt-trust-list {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
        }

        .appt-trust-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--clr-secondary);
        }

        .appt-trust-item i {
            width: 32px;
            height: 32px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.9rem;
            flex-shrink: 0;
        }

        .appt-trust-item.orange i {
            background: var(--clr-warm);
            color: var(--clr-primary);
        }

        .appt-trust-item.green i {
            background: #ECFDF5;
            color: #059669;
        }

        .appt-trust-item.blue i {
            background: #EFF6FF;
            color: #3B82F6;
        }

        .appt-trust-item.purple i {
            background: #F5F3FF;
            color: #7C3AED;
        }

        /* ── Page layout ── */
        .appt-page {
            padding: 60px 0 80px;
            background: #F8F9FC;
        }

        .appt-grid {
            display: grid;
            grid-template-columns: 1fr 380px;
            gap: 32px;
            align-items: start;
        }

        /* ── Form card ── */
        .appt-card {
            background: #fff;
            border-radius: 20px;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
            overflow: hidden;
        }

        .appt-card-header {
            background: linear-gradient(135deg, var(--clr-primary), #FF8C5A);
            padding: 28px 32px;
            color: white;
        }

        .appt-card-header h2 {
            font-family: var(--font-display);
            font-size: 1.5rem;
            margin-bottom: 6px;
            color: #fff;
        }

        .appt-card-header p {
            opacity: 0.85;
            font-size: 0.9rem;
            margin-bottom: 0 !important;
        }

        .appt-card-body {
            padding: 32px;
        }

        /* ── Step indicator ── */
        .appt-steps {
            display: flex;
            align-items: center;
            margin-bottom: 32px;
            gap: 0;
        }

        .appt-step {
            display: flex;
            align-items: center;
            gap: 10px;
            flex: 1;
        }

        .appt-step-num {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: var(--clr-warm);
            color: var(--clr-primary);
            font-size: 0.85rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: all 0.3s;
        }

        .appt-step.active .appt-step-num {
            background: var(--clr-primary);
            color: white;
            box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.2);
        }

        .appt-step-label {
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--clr-gray);
        }

        .appt-step.active .appt-step-label {
            color: var(--clr-primary);
        }

        .appt-step-line {
            flex: 1;
            height: 2px;
            background: var(--clr-border);
            margin: 0 8px;
        }

        /* ── Notices ── */
        .appt-notice {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 14px 18px;
            border-radius: 12px;
            margin-bottom: 24px;
            font-size: 0.88rem;
            line-height: 1.5;
        }

        .appt-notice.blue {
            background: #EFF6FF;
            border: 1px solid #BFDBFE;
            color: #1E40AF;
        }

        .appt-notice.amber {
            background: #FFFBEB;
            border: 1px solid #FDE68A;
            color: #92400E;
        }

        .appt-notice i {
            margin-top: 2px;
            flex-shrink: 0;
        }

        .appt-fee-badge {
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: linear-gradient(135deg, var(--clr-warm), #FFF3EE);
            border: 1px solid rgba(255, 107, 53, 0.2);
            border-radius: 12px;
            padding: 16px 20px;
            margin-bottom: 28px;
        }

        .appt-fee-label {
            font-size: 0.9rem;
            color: var(--clr-gray);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .appt-fee-amount {
            font-size: 1.6rem;
            font-weight: 800;
            color: var(--clr-primary);
        }

        /* ── Form section titles ── */
        .appt-form-section {
            border-top: 1px solid var(--clr-border);
            padding-top: 24px;
            margin-top: 8px;
            margin-bottom: 20px;
        }

        .appt-form-section-title {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.78rem;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: var(--clr-gray);
            margin-bottom: 18px;
        }

        .appt-form-section-title::after {
            content: '';
            flex: 1;
            height: 1px;
            background: var(--clr-border);
        }

        /* ── Form fields ── */
        .appt-field {
            margin-bottom: 20px;
        }

        .appt-field label {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 0.83rem;
            font-weight: 600;
            color: var(--clr-secondary);
            margin-bottom: 7px;
        }

        .appt-field label .req {
            color: var(--clr-primary);
            font-size: 0.9rem;
            line-height: 1;
        }

        .appt-field label .tag {
            font-size: 0.72rem;
            font-weight: 500;
            background: #EFF6FF;
            color: #3B82F6;
            padding: 1px 7px;
            border-radius: 99px;
        }

        .appt-input {
            width: 100%;
            padding: 11px 14px;
            border: 1.5px solid var(--clr-border);
            border-radius: 10px;
            font-family: var(--font-body);
            font-size: 0.92rem;
            color: var(--clr-secondary);
            background: #FAFAFA;
            transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
            -webkit-appearance: none;
            appearance: none;
        }

        .appt-input:focus {
            outline: none;
            border-color: var(--clr-primary);
            box-shadow: 0 0 0 3.5px rgba(255, 107, 53, 0.12);
            background: #fff;
        }

        select.appt-input {
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 12px center;
            padding-right: 36px;
            cursor: pointer;
        }

        .appt-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        .appt-input-group {
            display: flex;
            gap: 10px;
            align-items: flex-start;
        }

        .appt-input-group .appt-input {
            flex: 1;
        }

        /* ── OTP row ── */
        #a_otpRow {
            display: none;
        }

        .otp-input {
            letter-spacing: 8px;
            font-size: 1.3rem;
            text-align: center;
            font-weight: 700;
        }

        #a_otpMsg {
            font-size: 0.82rem;
            margin-top: 6px;
            display: block;
        }

        /* ── Verified badge ── */
        #a_verifiedBadge {
            display: none;
            background: #ECFDF5;
            border: 1px solid #A7F3D0;
            padding: 11px 16px;
            border-radius: 10px;
            margin-bottom: 20px;
            font-size: 0.88rem;
            font-weight: 600;
            color: #065F46;
            align-items: center;
            gap: 8px;
        }

        /* ── Error box ── */
        #a_bookingError {
            display: none;
            background: #FEF2F2;
            color: #991B1B;
            padding: 14px 18px;
            border-radius: 10px;
            border: 1px solid #FECACA;
            margin-bottom: 20px;
            font-size: 0.88rem;
            line-height: 1.5;
        }

        /* ── Submit button ── */
        .appt-submit-btn {
            width: 100%;
            justify-content: center;
            padding: 15px 24px;
            font-size: 1rem;
            border-radius: 12px;
            font-weight: 700;
            letter-spacing: 0.02em;
        }

        /* ── Success state ── */
        #appt-step2 {
            display: none;
            text-align: center;
            padding: 56px 24px;
        }

        .appt-success-icon {
            width: 88px;
            height: 88px;
            border-radius: 50%;
            background: linear-gradient(135deg, #ECFDF5, #D1FAE5);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
            font-size: 2.5rem;
            color: #059669;
            box-shadow: 0 0 0 12px rgba(5, 150, 105, 0.08);
        }

        #appt-step2 h3 {
            font-family: var(--font-display);
            font-size: 1.6rem;
            color: var(--clr-secondary);
            margin-bottom: 10px;
        }

        #appt-step2 p {
            color: var(--clr-gray);
            max-width: 340px;
            margin: 0 auto 28px;
            line-height: 1.6;
        }

        /* ═══════════════════════════════════════════
                                                                                                                   SIDEBAR
                                                                                                                ═══════════════════════════════════════════ */
        .appt-sidebar {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .why-appt-card {
            background: #fff;
            border-radius: 20px;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
            overflow: hidden;
        }

        .why-appt-card-header {
            padding: 22px 26px 18px;
            border-bottom: 1px solid var(--clr-border);
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .why-appt-card-icon {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            background: var(--clr-warm);
            color: var(--clr-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
        }

        .why-appt-card-header h3 {
            font-size: 1rem;
            font-weight: 700;
            color: var(--clr-secondary);
            margin: 0;
        }

        .why-appt-list {
            padding: 20px 26px;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .why-appt-item {
            display: flex;
            gap: 14px;
            align-items: flex-start;
        }

        .why-appt-item-icon {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-size: 0.95rem;
        }

        .why-appt-item-icon.orange {
            background: var(--clr-warm);
            color: var(--clr-primary);
        }

        .why-appt-item-icon.green {
            background: #ECFDF5;
            color: #059669;
        }

        .why-appt-item-icon.blue {
            background: #EFF6FF;
            color: #3B82F6;
        }

        .why-appt-item-icon.purple {
            background: #F5F3FF;
            color: #7C3AED;
        }

        .why-appt-item-text h4 {
            font-size: 0.9rem;
            margin-bottom: 3px;
            color: var(--clr-secondary);
        }

        .why-appt-item-text p {
            font-size: 0.82rem;
            color: var(--clr-gray);
            line-height: 1.55;
            margin: 0;
        }

        .appt-stats {
            background: #fff;
            border-radius: 16px;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
            padding: 20px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px;
        }

        .appt-stat {
            background: var(--clr-warm);
            border-radius: 12px;
            padding: 16px;
            text-align: center;
        }

        .appt-stat-num {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--clr-primary);
            font-family: var(--font-display);
        }

        .appt-stat-label {
            font-size: 0.72rem;
            color: var(--clr-gray);
            font-weight: 600;
            margin-top: 2px;
        }

        .help-appt-card {
            background: linear-gradient(135deg, var(--clr-secondary) 0%, #2D1B69 100%);
            border-radius: 20px;
            padding: 28px;
            color: white;
        }

        .help-appt-card h3 {
            font-size: 1.05rem;
            margin-bottom: 10px;
            color: #fff;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .help-appt-card p {
            opacity: 0.75;
            font-size: 0.88rem;
            line-height: 1.55;
            margin-bottom: 20px;
        }

        .btn-white-outline {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            width: 100%;
            padding: 12px 20px;
            border: 1.5px solid rgba(255, 255, 255, 0.35);
            border-radius: 10px;
            color: white;
            font-weight: 600;
            font-size: 0.9rem;
            text-decoration: none;
            transition: background 0.2s, border-color 0.2s;
            margin-bottom: 10px;
        }

        .btn-white-outline:hover {
            background: rgba(255, 255, 255, 0.12);
            border-color: rgba(255, 255, 255, 0.6);
            color: white;
        }

        .btn-whatsapp {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            width: 100%;
            padding: 12px 20px;
            background: #25D366;
            border: none;
            border-radius: 10px;
            color: white;
            font-weight: 600;
            font-size: 0.9rem;
            text-decoration: none;
            transition: background 0.2s;
        }

        .btn-whatsapp:hover {
            background: #1DAA52;
            color: white;
        }

        /* ═══════════════════════════════════════════
                                                                                                                   RESPONSIVE
                                                                                                                ═══════════════════════════════════════════ */
        @media (max-width: 960px) {
            .appt-grid {
                grid-template-columns: 1fr;
            }

            .appt-card {
                order: 1;
            }

            .appt-sidebar {
                order: 2;
            }



            .appt-sidebar .why-appt-card {
                display: none;
            }

            .appt-trust-list {
                gap: 20px 32px;
            }
        }

        @media (max-width: 640px) {
            .appt-card-body {
                padding: 20px;
            }

            .appt-row {
                grid-template-columns: 1fr;
                gap: 0;
            }

            .appt-page {
                padding: 32px 0 60px;
            }

            .appt-card-header {
                padding: 22px 20px;
            }

            .appt-stats {
                grid-template-columns: 1fr 1fr;
            }

            .appt-trust-list {
                gap: 14px 24px;
            }

            .appt-trust-item span {
                display: none;
            }

            .appt-input {
                font-size: 16px;
            }

            .appt-input-group {
                flex-direction: column;
            }

            .appt-input-group .appt-input {
                width: 100%;
            }

            #a_sendOtpBtn {
                width: 100%;
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .appt-steps {
                display: none;
            }

            .appt-form-section-title {
                font-size: 0.72rem;
            }
        }
   