/* Contact page dark luxury theme */
        body {
            background-color: #0b0c0e !important;
            color: var(--color-white);
            margin: 0;
            padding: 0;
            overflow-y: auto;
            overflow-x: hidden;
            font-family: var(--font-sans);
        }

        .site-header-contact {
            position: absolute !important;
            top: 0;
            left: 0;
            width: 100%;
            padding: 3rem var(--px) !important;
            z-index: 100;
            color: var(--color-white) !important;
            background: transparent !important;
            border-bottom: none !important;
        }

        .site-header-contact .call-button {
            border: 1px solid rgba(255, 255, 255, 0.15) !important;
            color: var(--color-white) !important;
        }

        .site-header-contact .call-button:hover {
            background-color: var(--color-white) !important;
            color: #0b0c0e !important;
            border-color: var(--color-white) !important;
        }

        /* ── Hero Section ── */
        .contact-hero {
            position: relative;
            min-height: 95vh;
            width: 100%;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            align-items: center;
            padding-top: 10rem;
            overflow: hidden;
        }

        .contact-bg-title {
            font-family: var(--font-serif);
            font-size: clamp(6rem, 16vw, 15rem);
            font-weight: 400;
            text-transform: capitalize;
            color: #ffffff;
            position: absolute;
            top: 10%;
            text-align: center;
            width: 100%;
            white-space: nowrap;
            letter-spacing: -0.03em;
            pointer-events: none;
            user-select: none;
            z-index: 1;
            /* Premium scroll animation properties */
            will-change: transform, opacity;
            transform: translateY(calc(var(--scroll-y, 0) * 0.25px)) scale(calc(1 + var(--scroll-progress, 0) * 0.12));
            opacity: calc(1 - var(--scroll-progress, 0) * 1.4);
        }

        .contact-hero-image-wrap {
            position: relative;
            z-index: 2;
            width: 100%;
            max-width: 1350px;
            margin: 0 auto -4rem;
            display: flex;
            justify-content: center;
            align-items: flex-end;
        }

        .contact-hero-img {
            width: 100%;
            height: auto;
            max-height: 75vh;
            object-fit: contain;
            filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.7));
            /* Premium scroll animation properties */
            will-change: transform;
            transform: translateY(calc(var(--scroll-y, 0) * 0.18px)) scale(calc(1 - var(--scroll-progress, 0) * 0.06));
        }

        /* ── Booking Form Area ── */
        .booking-section {
            background: linear-gradient(to bottom, #0b0c0e 0%, #101114 100%);
            padding: 8rem var(--px) 10rem;
            position: relative;
            z-index: 5;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .booking-cta-title {
            font-family: var(--font-serif);
            font-size: clamp(2.5rem, 5vw, 4.2rem);
            font-weight: 400;
            line-height: 1.1;
            text-align: center;
            color: var(--color-white);
            max-width: 800px;
            margin: 0 auto 3.5rem;
            letter-spacing: -0.02em;
        }

        .booking-cta-title em {
            font-family: var(--font-serif);
            font-style: italic;
            font-weight: 400;
            color: #d4af37;
            /* Warm gold touch */
        }

        /* Pill Radio Grid */
        .location-selector-wrap {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.2rem;
            margin-bottom: 3.5rem;
        }

        .location-label {
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            color: rgba(255, 255, 255, 0.4);
        }

        .location-chips {
            display: flex;
            gap: 1.2rem;
            flex-wrap: wrap;
            justify-content: center;
        }

        .location-chip-btn {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 50px;
            padding: 0.9rem 2.2rem;
            color: rgba(255, 255, 255, 0.8);
            font-family: var(--font-sans);
            font-size: 13.5px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.35s ease;
        }

        .location-chip-btn:hover {
            border-color: rgba(255, 255, 255, 0.25);
            background: rgba(255, 255, 255, 0.06);
        }

        .location-chip-btn.active {
            background: var(--color-white);
            color: #0b0c0e;
            border-color: var(--color-white);
            box-shadow: 0 10px 30px rgba(255, 255, 255, 0.08);
        }

        /* ── Dental Luxury Booking Card ── */
        .booking-card {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 20px;
            box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(20px);
            width: 100%;
            max-width: 950px;
            margin: 0 auto;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            padding: 4.5rem;
        }

        .booking-card-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .booking-card-eyebrow {
            font-family: var(--font-sans);
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            color: #d4af37; /* Gold accent */
            margin-bottom: 0.8rem;
            display: block;
        }

        .booking-card-title {
            font-family: var(--font-serif);
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 400;
            color: var(--color-white);
            letter-spacing: -0.01em;
            margin: 0;
        }

        .booking-card-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3.5rem;
        }

        .booking-fields-col {
            display: flex;
            flex-direction: column;
            gap: 2.2rem;
        }

        .clinical-field-group {
            display: flex;
            flex-direction: column;
            gap: 0.6rem;
            position: relative;
        }

        .clinical-label {
            font-family: var(--font-sans);
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: rgba(255, 255, 255, 0.4);
        }

        .clinical-input,
        .clinical-select,
        .clinical-textarea {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            color: var(--color-white);
            padding: 1.2rem 1.5rem;
            font-family: var(--font-sans);
            font-size: 14.5px;
            transition: all 0.35s ease;
            width: 100%;
        }

        /* Adjust native date/select icons */
        .clinical-input[type="date"]::-webkit-calendar-picker-indicator {
            filter: invert(1);
            opacity: 0.5;
            cursor: pointer;
        }

        .clinical-input::placeholder,
        .clinical-textarea::placeholder {
            color: rgba(255, 255, 255, 0.25);
        }

        .clinical-input:focus,
        .clinical-select:focus,
        .clinical-textarea:focus {
            outline: none;
            border-color: #d4af37; /* Gold focus */
            background: rgba(255, 255, 255, 0.04);
            box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
        }

        /* Select styling override */
        .clinical-select {
            appearance: none;
            cursor: pointer;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 1.5rem center;
            background-size: 16px;
            padding-right: 3.5rem;
        }

        .clinical-select option {
            background-color: #101114;
            color: var(--color-white);
        }

        /* Textarea specific */
        .clinical-textarea {
            height: 100%;
            min-height: 220px;
            resize: none;
        }

        .booking-card-footer {
            margin-top: 4.5rem;
            display: flex;
            justify-content: center;
        }

        .clinical-submit-btn {
            background: #d4af37; /* Gold fill */
            color: #0b0c0e;
            border: none;
            border-radius: 50px;
            padding: 1.2rem 4rem;
            font-family: var(--font-sans);
            font-size: 13.5px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 0.8rem;
            transition: all 0.35s ease;
            box-shadow: 0 10px 25px rgba(212, 175, 55, 0.2);
        }

        .clinical-submit-btn svg {
            width: 16px;
            height: 16px;
            transition: transform 0.3s ease;
        }

        .clinical-submit-btn:hover {
            background: #ffffff;
            color: #0b0c0e;
            transform: translateY(-2px);
            box-shadow: 0 12px 30px rgba(255, 255, 255, 0.15);
        }

        .clinical-submit-btn:hover svg {
            transform: translateX(4px);
        }

        /* ── Details Directory Grid ── */
        .details-section {
            position: relative;
            background-color: #101114;
            padding: 8rem var(--px) 4rem;
            border-top: 1px solid rgba(255, 255, 255, 0.03);
        }

        .details-grid {
            max-width: 1300px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 4rem;
        }

        .details-col {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .details-col-label {
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            color: rgba(255, 255, 255, 0.35);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            padding-bottom: 0.8rem;
        }

        .details-col-val {
            font-size: 15px;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.7);
            margin: 0;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        a.details-col-val:hover {
            color: #d4af37;
        }

        .details-col-val.val-bold {
            font-size: 2.2rem;
            font-family: var(--font-serif);
            color: var(--color-white);
            line-height: 1.1;
        }

        /* Footer Watermark & Bar */
        .contact-footer-bottom {
            position: relative;
            max-width: 1300px;
            margin: 8rem auto 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            border-top: 1px solid rgba(255, 255, 255, 0.04);
            padding-top: 5rem;
        }

        .giant-watermark {
            font-family: var(--font-serif);
            font-size: clamp(3rem, 10vw, 8.5rem);
            color: rgba(255, 255, 255, 0.02);
            text-align: center;
            line-height: 1;
            margin-bottom: 4rem;
            pointer-events: none;
            width: 100%;
        }

        .legal-bar {
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 12px;
            color: rgba(255, 255, 255, 0.3);
        }

        .legal-links {
            display: flex;
            gap: 2rem;
        }

        .legal-links a {
            color: inherit;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .legal-links a:hover {
            color: var(--color-white);
        }

        /* ── Responsive Mobile Optimizations ── */
        @media (max-width: 992px) {
            .site-header-contact .main-nav,
            .site-header-contact .phone-link {
                display: none;
            }
            .booking-card-grid {
                grid-template-columns: 1fr;
                gap: 2.5rem;
            }
            .booking-card {
                padding: 3.5rem 2.5rem;
            }
            .details-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 3rem;
            }
        }

        @media (max-width: 768px) {
            .contact-hero {
                min-height: 60vh;
                padding-top: 6rem;
            }
            .contact-bg-title {
                font-size: clamp(3.2rem, 12vw, 6rem);
                top: 15%;
            }
            .contact-hero-image-wrap {
                max-width: 100%;
                margin-bottom: -2rem;
            }
            .contact-hero-img {
                max-height: 48vh;
            }
            .booking-section {
                padding: 6rem var(--px) 7rem;
            }
            .booking-cta-title {
                margin-bottom: 2.5rem;
            }
            .location-selector-wrap {
                margin-bottom: 2.5rem;
            }
            .location-chips {
                gap: 0.8rem;
            }
            .location-chip-btn {
                padding: 0.7rem 1.6rem;
                font-size: 12.5px;
            }
            .booking-card {
                padding: 3rem 2rem;
                border-radius: 16px;
            }
            .booking-card-header {
                margin-bottom: 2.5rem;
            }
            .clinical-input,
            .clinical-select,
            .clinical-textarea {
                padding: 1rem 1.2rem;
                font-size: 13.5px;
            }
            .clinical-textarea {
                min-height: 180px;
            }
            .booking-card-footer {
                margin-top: 3rem;
            }
            .clinical-submit-btn {
                padding: 1rem 3rem;
                width: 100%;
                justify-content: center;
                font-size: 13px;
            }
        }

        @media (max-width: 576px) {
            .details-grid {
                grid-template-columns: 1fr;
                gap: 2.5rem;
            }
            .legal-bar {
                flex-direction: column;
                gap: 1.5rem;
                text-align: center;
            }
            .location-chips {
                flex-direction: column;
                width: 100%;
            }
            .location-chip-btn {
                width: 100%;
                text-align: center;
            }
        }