/* ============================================
   DENTAL SITE TEMPLATE — Design System
   CubeDental-inspired. Clarity-first.
   Self-hosted typography.
   Token-swappable: replace {{TOKENS}} per clinic
   ============================================ */

/* ── @FONT-FACE — EDITORIAL NEW (Display/Headings) ── */
@font-face {
    font-family: 'Editorial New';
    src: url('fonts/EditorialNew-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Editorial New';
    src: url('fonts/EditorialNew-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Editorial New';
    src: url('fonts/EditorialNew-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

/* ── @FONT-FACE — NEUE MONTREAL (Body/Nav/UI) ── */
@font-face {
    font-family: 'Neue Montreal';
    src: url('fonts/NeueMontreal-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Neue Montreal';
    src: url('fonts/NeueMontreal-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Neue Montreal';
    src: url('fonts/NeueMontreal-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Neue Montreal';
    src: url('fonts/NeueMontreal-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* ── @FONT-FACE — CORPORATIVE SANS ROUNDED (Cards/Info) ── */
@font-face {
    font-family: 'Corporative Sans Rd';
    src: url('fonts/CorporativeSansRd-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Corporative Sans Rd';
    src: url('fonts/CorporativeSansRd-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

:root {
    --brand-primary: #073b97;
    --brand-accent: #073b97;
    --brand-dark: #031d4b;
    --brand-darker: #0b0b0b;
    --brand-light: #ebeff6;
    --brand-white: #FFFFFF;
    --brand-text: #2C2C2C;
    --brand-muted: #4e607f;
    --brand-border: #d5d6d6;
    --brand-red: #073b97;
    --brand-red-hover: #052c70;
    --brand-link-alt: #7EB8D4;
    --nav-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    --radius-nav: 20px;
    --radius-btn: 10px;
    --font-display: 'Editorial New', Georgia, serif;
    --brand-primary-hover: #052c70;
    --font-heading: 'Neue Montreal', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Neue Montreal', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-detail: 'Corporative Sans Rd', 'Neue Montreal', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-body);
    font-size: 18px;
    color: var(--brand-text);
    background: var(--brand-white);
    overflow-x: hidden;
}

/* ── FLOATING NAV ── */
.nav-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 20px 30px;
}

.nav {
    max-width: 1400px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-nav);
    box-shadow: var(--nav-shadow);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 36px;
    height: 100px;
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--brand-dark);
    flex-shrink: 0;
    gap: 12px;
}

.nav-logo-text {
    font-family: var(--font-body);
    font-size: 22px;
    font-weight: 700;
    color: var(--brand-dark);
    line-height: 1.1;
}

.nav-logo-text span {
    display: block;
    font-size: 12px;
    font-weight: 400;
    color: var(--brand-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-logo-svg {
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--brand-dark);
    font-size: 18px;
    font-weight: 400;
    transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--brand-accent);
}

.nav-ctas {
    display: flex;
    gap: 10px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 24px;
    height: 54px;
    border-radius: var(--radius-btn);
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.25s ease;
}

.btn-primary {
    background: var(--brand-accent);
    color: white;
}

.btn-primary:hover {
    background: var(--brand-primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    background: var(--brand-dark);
    color: white;
}

.btn-secondary:hover {
    background: var(--brand-darker);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.btn-outline {
    background: transparent;
    color: var(--brand-primary);
    border: 2px solid var(--brand-primary);
}

.btn-outline:hover {
    background: var(--brand-primary);
    color: white;
    transform: translateY(-1px);
}

.btn-dark {
    background: var(--brand-primary);
    color: white;
    border-radius: var(--radius-btn);
    padding: 0 30px;
    height: 60px;
    font-size: 18px;
}

.btn-dark:hover {
    background: var(--brand-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn-lg {
    padding: 0 40px;
    height: 56px;
    font-size: 18px;
}

.btn svg {
    width: 18px;
    height: 18px;
}

.nav-mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--brand-dark);
}

.nav-mobile-toggle svg {
    width: 24px;
    height: 24px;
}

/* ── HERO ── */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand-primary) 40%, var(--brand-primary) 100%);
}

.hero-video {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-video video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(1.12) saturate(1.05);
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.hero-video video.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(135deg,
            rgba(0, 0, 0, 0.15) 0%,
            rgba(0, 0, 0, 0.05) 40%,
            rgba(0, 0, 0, 0.02) 70%,
            rgba(0, 0, 0, 0.08) 100%
        );
}

.hero-curve {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    z-index: 3;
    line-height: 0;
}

.hero-curve svg {
    display: block;
    width: 100%;
    height: 120px;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 140px 40px 120px;
    width: 100%;
}

.hero h1 {
    font-family: var(--font-body);
    font-size: clamp(36px, 5vw, 66px);
    font-weight: 400;
    line-height: 1.06;
    color: rgba(255, 255, 255, 1);
    max-width: 650px;
    margin-bottom: 40px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.hero h1 strong {
    color: var(--brand-white);
    font-weight: 700;
}

.btn-hero {
    background: var(--brand-primary);
    color: white;
    border: none;
    border-radius: 10px;
    padding: 0 30px;
    height: 60px;
    font-size: 18px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-hero:hover {
    background: var(--brand-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    z-index: 1;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    pointer-events: none;
}

/* ── CURVE CIRCLES ── */
.curve-circles {
    display: flex;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 4;
    margin-top: -50px;
    padding: 0 40px;
}

.curve-circle-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: transform 0.25s;
}

.curve-circle-link:hover { transform: translateY(-4px); }

.curve-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.curve-circle.blue { background: var(--brand-primary); }
.curve-circle.dark { background: var(--brand-dark); }
.curve-circle.accent { background: var(--brand-red); }

.curve-circle svg {
    width: 24px;
    height: 24px;
    margin-bottom: 4px;
}

/* ── TAGLINE ── */
.tagline {
    text-align: center;
    padding: 40px 40px 60px;
    position: relative;
    z-index: 1;
    background: var(--brand-white);
}

.tagline p {
    font-family: var(--font-body);
    font-size: clamp(18px, 2.5vw, 24px);
    font-weight: 400;
    color: var(--brand-text);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ── TREATMENT FINDER (CubeDental-style) ── */
.treatment-finder {
    background: var(--brand-light);
    padding: 60px 40px 50px;
    position: relative;
    z-index: 1;
}

.treatment-finder-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto 32px;
    flex-wrap: wrap;
    gap: 16px;
}

.treatment-finder-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(24px, 3.5vw, 34px);
    font-weight: 300;
    color: var(--brand-dark);
    margin: 0;
}

.treatment-finder-header h2 strong {
    font-weight: 700;
}

.treatment-search {
    display: flex;
    align-items: center;
    gap: 8px;
    background: white;
    border: 1px solid var(--brand-border);
    border-radius: 50px;
    padding: 10px 20px;
    min-width: 220px;
}

.treatment-search input {
    border: none;
    outline: none;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--brand-text);
    background: transparent;
    width: 100%;
}

.treatment-search input::placeholder {
    color: var(--brand-muted);
}

.treatment-slider {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.slider-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.treatment-slide {
    text-decoration: none;
    color: inherit;
    text-align: center;
    transition: transform 0.25s;
}

.treatment-slide:hover {
    transform: translateY(-4px);
}

.slide-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 16px;
}

.slide-title {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 700;
    color: var(--brand-dark);
    margin: 0 0 8px;
}

.slide-desc {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    color: var(--brand-text);
    line-height: 1.6;
    margin: 0;
}

.slider-arrow {
    position: absolute;
    top: 30%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: opacity 0.2s, transform 0.2s;
    color: var(--brand-dark);
}

.slider-arrow:hover {
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow svg {
    width: 20px;
    height: 20px;
}

.slider-prev { left: -22px; }
.slider-next { right: -22px; }

@media (max-width: 768px) {
    .slider-track { grid-template-columns: repeat(2, 1fr); }
    .slider-prev { left: -8px; }
    .slider-next { right: -8px; }
    .treatment-finder { padding: 40px 24px 30px; }
}

@media (max-width: 480px) {
    .slider-track { grid-template-columns: 1fr; }
    .treatment-finder-header { flex-direction: column; align-items: flex-start; }
    .treatment-search { width: 100%; }
}

/* ── CELEBRITY TRUST STRIP ── */
.celebrity-strip {
    background: var(--brand-light);
    padding: 60px 40px;
}

.celebrity-strip-inner {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.celebrity-strip-label {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--brand-muted);
    margin-bottom: 32px;
}

.celebrity-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.celebrity-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 160px;
}

.celebrity-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    border: 4px solid white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

.celebrity-card:hover .celebrity-img {
    transform: scale(1.05);
}

.celebrity-name {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 700;
    color: var(--brand-dark);
}

.celebrity-role {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 400;
    color: var(--brand-muted);
    margin-top: -6px;
}

/* ── ANIMATED STATS BAR ── */
.stats-bar {
    background: var(--brand-white);
    padding: 48px 40px;
    border-top: 1px solid var(--brand-border);
    border-bottom: 1px solid var(--brand-border);
}

.stats-bar-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
}

.stat-num {
    font-family: var(--font-body);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 6px;
    transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.stat-num.red { color: var(--brand-red); }
.stat-num.blue { color: var(--brand-primary); }

.stat-label {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    color: var(--brand-muted);
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: var(--brand-border);
    flex-shrink: 0;
}

/* ── NAV TREATMENTS DROPDOWN ── */
.nav-dropdown {
    position: relative;
}

.nav-dropdown > a {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-dropdown-arrow {
    width: 14px;
    height: 14px;
    transition: transform 0.2s;
}

.nav-dropdown:hover .nav-dropdown-arrow {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% - 4px);
    left: 50%;
    transform: translateX(-50%);
    padding-top: 20px;
    background: transparent;
    min-width: 240px;
    z-index: 200;
}

.nav-dropdown:hover .nav-dropdown-menu {
    display: block;
}

.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid white;
}

.nav-dropdown-menu a {
    display: block;
    padding: 10px 24px;
    font-size: 15px;
    font-weight: 400;
    color: var(--brand-dark);
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
    background: white;
}

.nav-dropdown-menu a:first-child {
    border-radius: 12px 12px 0 0;
    padding-top: 16px;
}

.nav-dropdown-menu a:last-child {
    border-radius: 0 0 12px 12px;
    padding-bottom: 16px;
}

.nav-dropdown-menu a:hover {
    background: var(--brand-light);
    color: var(--brand-primary);
}

/* ── ABOUT section (moved to subpage, keep for subpage use) ── */
.about-section {
    padding: 80px 40px;
    background: var(--brand-white);
}

.about-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content h2 {
    font-family: var(--font-body);
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 20px;
}

.about-content p {
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.8;
    color: var(--brand-text);
    margin-bottom: 16px;
}

.about-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.credential-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--brand-light);
    border-radius: 8px;
    padding: 8px 14px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    color: var(--brand-primary);
}

.credential-badge svg {
    width: 16px;
    height: 16px;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.stat-card {
    background: var(--brand-light);
    border-radius: 16px;
    padding: 28px;
    text-align: center;
}

.stat-number {
    font-family: var(--font-body);
    font-size: 40px;
    font-weight: 700;
    color: var(--brand-primary);
    display: block;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    color: var(--brand-muted);
    line-height: 1.4;
}

/* ── FINANCE BANNER ── */
.finance-banner {
    background: var(--brand-dark);
    color: white;
    padding: 48px 40px;
    text-align: center;
}

.finance-banner h3 {
    font-family: var(--font-body);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.finance-banner p {
    font-family: var(--font-body);
    font-size: 17px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
}

/* ── CTA BANNER ── */
.cta-banner {
    background: var(--brand-dark);
    color: white;
    padding: 60px 40px;
    text-align: center;
}

.cta-banner h2 {
    font-family: var(--font-body);
    font-size: clamp(26px, 4vw, 36px);
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.cta-banner p {
    font-family: var(--font-body);
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    margin-bottom: 28px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ── E-CONSULTATION SECTION ── */
.econsult-section {
    padding: 60px 40px;
    background: var(--brand-light);
    text-align: center;
}

.econsult-inner {
    max-width: 600px;
    margin: 0 auto;
}

.econsult-icon {
    width: 64px;
    height: 64px;
    background: var(--brand-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
}

.econsult-icon svg {
    width: 28px;
    height: 28px;
}

.econsult-section h2 {
    font-family: var(--font-body);
    font-size: 28px;
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 12px;
}

.econsult-section p {
    font-family: var(--font-body);
    font-size: 17px;
    color: var(--brand-muted);
    margin-bottom: 24px;
    line-height: 1.7;
}

/* ── FOOTER ── */
.footer {
    background: var(--brand-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 40px;
    text-align: center;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
}

.footer-logo {
    font-family: var(--font-body);
    font-size: 22px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.footer-info {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 2;
}

.footer-info a {
    color: var(--brand-link-alt);
    text-decoration: none;
}

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

.footer-registrations {
    margin-top: 16px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 12px;
}

/* ── BOOKING FLOAT CTA ── */
.float-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: var(--brand-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    z-index: 99;
    transition: transform 0.25s;
    text-decoration: none;
}

.float-cta:hover {
    transform: scale(1.1);
}

.float-cta svg {
    width: 28px;
    height: 28px;
    fill: white;
}

/* ── MOBILE STICKY ── */
.mobile-sticky {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 98;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
}

.mobile-sticky .btn {
    width: 100%;
    justify-content: center;
    padding: 14px;
    font-size: 16px;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .nav-wrapper { padding: 8px 16px; }
    .nav { padding: 10px 16px; height: auto; }
    .nav-links { display: none; }
    .nav-ctas .btn-secondary { display: none; }
    .nav-mobile-toggle { display: block; }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 16px;
        right: 16px;
        background: white;
        border-radius: var(--radius-nav);
        box-shadow: var(--nav-shadow);
        padding: 20px;
        margin-top: 8px;
        gap: 16px;
    }

    .hero-content { padding: 120px 24px 100px; }
    .hero h1 { font-size: 36px; }
    .hero-curve svg { height: 60px; }
    .curve-circles { margin-top: -35px; gap: 12px; }
    .curve-circle { width: 75px; height: 75px; font-size: 10px; }
    .curve-circle svg { width: 20px; height: 20px; }
    .tagline { padding: 30px 24px 100px; }

    .about-inner { grid-template-columns: 1fr; gap: 40px; }
    .about-stats { order: -1; }

    .stats-bar { padding: 32px 16px; }
    .stats-bar-inner { flex-wrap: wrap; gap: 24px; justify-content: center; }
    .stat-divider { display: none; }
    .stat-item { width: 40%; }

    .nav-dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        border-radius: 0;
        padding: 0;
        margin: 0;
        min-width: 0;
        display: none;
    }
    .nav-dropdown-menu::before { display: none; }
    .nav-dropdown-menu a { padding: 8px 0 8px 16px; font-size: 14px; }
    .nav-links.open .nav-dropdown-menu { display: block; }

    .celebrity-grid { gap: 24px; }
    .celebrity-card { width: 130px; }
    .celebrity-img { width: 100px; height: 100px; }

    .cta-banner { padding: 40px 24px; }
    .footer { padding: 30px 24px; }

    .mobile-sticky { display: block; }
    .float-cta { bottom: 84px; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 30px; }
    .about-stats { grid-template-columns: 1fr 1fr; gap: 12px; }
    .stat-card { padding: 20px; }
    .stat-number { font-size: 32px; }
}

/* ============================================
   SUBPAGE SHARED COMPONENTS
   ============================================ */

/* ── PAGE HEADER ── */
.page-header {
    padding: 160px 40px 60px;
    text-align: center;
    background: linear-gradient(135deg, var(--brand-light) 0%, var(--brand-white) 100%);
}

.page-header h1 {
    font-family: var(--font-body);
    font-size: clamp(36px, 5vw, 54px);
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 16px;
}

.page-header p {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 400;
    color: var(--brand-muted);
    max-width: 500px;
    margin: 0 auto;
}

/* ── CONTENT SECTIONS ── */
.section {
    padding: 60px 40px;
    max-width: 900px;
    margin: 0 auto;
}

.section h2 {
    font-family: var(--font-body);
    font-size: clamp(26px, 3.5vw, 36px);
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 20px;
}

.section p {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--brand-text);
    margin-bottom: 16px;
}

/* ── CARD GRID ── */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.card {
    display: block;
    background: var(--brand-white);
    border: 1px solid var(--brand-border);
    border-radius: var(--radius-btn);
    padding: 28px;
    transition: all 0.25s;
}

.card:hover {
    border-color: var(--brand-accent);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.card h3 {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 8px;
}

.card p {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    color: var(--brand-muted);
    line-height: 1.6;
    margin-bottom: 0;
}

.card-icon {
    width: 44px;
    height: 44px;
    background: var(--brand-light);
    border-radius: var(--radius-btn);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--brand-accent);
}

.card-icon svg {
    width: 22px;
    height: 22px;
}

/* ── PRICE TABLE ── */
.price-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.price-table th,
.price-table td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid var(--brand-border);
}

.price-table th {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--brand-muted);
    background: var(--brand-light);
}

.price-table td {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
}

.price-table td:last-child {
    font-weight: 700;
    color: var(--brand-dark);
    text-align: right;
}

.price-table th:last-child {
    text-align: right;
}

.price-table tbody tr:hover {
    background: var(--brand-light);
}

/* ── INFO BOX ── */
.info-box {
    background: var(--brand-light);
    border-radius: var(--radius-btn);
    padding: 28px;
    margin: 24px 0;
}

.info-box h3 {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 8px;
}

.info-box p, .info-box li {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    color: var(--brand-text);
    line-height: 1.7;
}

.info-box ul {
    list-style: none;
    padding: 0;
}

.info-box li {
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
}

.info-box li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--brand-accent);
}

/* ── TREATMENT DETAIL PAGE ── */
.treatment-detail {
    padding: 60px 40px;
    max-width: 800px;
    margin: 0 auto;
}

.treatment-detail > p {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.8;
    color: var(--brand-text);
    margin-bottom: 20px;
}

.treatment-detail h2 {
    font-family: var(--font-body);
    font-size: 28px;
    font-weight: 700;
    color: var(--brand-dark);
    margin: 40px 0 20px;
}

/* ── FAQ ACCORDION ── */
.faq-list {
    margin: 30px 0;
}

.faq-item {
    border-bottom: 1px solid var(--brand-border);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 700;
    color: var(--brand-dark);
    text-align: left;
}

.faq-question:hover {
    color: var(--brand-primary);
}

.faq-icon {
    font-size: 24px;
    font-weight: 300;
    color: var(--brand-primary);
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    display: none;
    padding: 0 0 20px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--brand-muted);
}

.faq-item.open .faq-answer {
    display: block;
}

/* ── ENQUIRY BOX ── */
.enquiry-box {
    background: var(--brand-light);
    border-radius: var(--radius-btn);
    padding: 40px;
    text-align: center;
    margin: 40px 0;
}

.enquiry-box h3 {
    font-family: var(--font-body);
    font-size: 24px;
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 12px;
}

.enquiry-box p {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--brand-muted);
    margin-bottom: 20px;
}

/* ── SUBPAGE RESPONSIVE ── */
@media (max-width: 768px) {
    .page-header { padding: 120px 24px 40px; }
    .section { padding: 40px 24px; }
    .treatment-detail { padding: 40px 24px; }
    .enquiry-box { padding: 28px 20px; }
    .card-grid { grid-template-columns: 1fr; }
    .price-table th, .price-table td { padding: 12px; font-size: 14px; }
}


/* ── FEATURED TREATMENT ── */
.featured-treatment {
    padding: 60px 40px;
    background: var(--brand-light);
}

.featured-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.featured-badge {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--brand-primary);
    margin-bottom: 16px;
}

.featured-inner h2 {
    font-family: var(--font-body);
    font-size: clamp(30px, 4vw, 44px);
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 16px;
}

.featured-inner p {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 400;
    color: var(--brand-text);
    line-height: 1.7;
    max-width: 650px;
    margin: 0 auto 24px;
}

.featured-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 32px 0;
    flex-wrap: wrap;
}

.featured-stat {
    text-align: center;
}

.featured-stat-number {
    font-family: var(--font-body);
    font-size: 36px;
    font-weight: 700;
    color: var(--brand-primary);
    display: block;
}

.featured-stat-label {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    color: var(--brand-muted);
}

/* ── FEATURED SPLIT LAYOUT ── */
.featured-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.featured-split-text { text-align: left; }
.featured-split-text h2 {
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 16px;
}
.featured-split-text p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--brand-text);
    margin-bottom: 24px;
}
.featured-split-text .featured-stats { justify-content: flex-start; }
.featured-split-img img {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
    aspect-ratio: 4 / 3;
}

@media (max-width: 768px) {
    .featured-split { grid-template-columns: 1fr; }
    .featured-split-img { order: -1; }
}

/* ── TREATMENTS HERO ── */
.treatments-hero {
    position: relative;
    height: 40vh;
    min-height: 280px;
    overflow: hidden;
}

.treatments-hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.treatments-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.25) 100%);
}

.treatments-hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;
    padding: 40px 24px;
}

.treatments-hero-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 300;
    color: #fff;
    margin-bottom: 12px;
}

.treatments-hero-content p {
    font-family: var(--font-body);
    font-size: 18px;
    color: rgba(255,255,255,0.85);
}

/* ── TREATMENTS IMAGE GRID ── */
.treatments-grid-section {
    padding: 60px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.treatments-grid-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 300;
    color: var(--brand-dark);
    margin-bottom: 32px;
}

.treatments-image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.treatment-image-card {
    text-decoration: none;
    color: inherit;
    border-radius: 16px;
    overflow: hidden;
    background: white;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: transform 0.25s, box-shadow 0.25s;
}

.treatment-image-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.12);
}

.treatment-card-img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.treatment-card-body {
    padding: 20px 24px 24px;
}

.treatment-card-body h3 {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 700;
    color: var(--brand-dark);
    margin: 0 0 8px;
}

.treatment-card-body p {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--brand-text);
    line-height: 1.6;
    margin: 0 0 12px;
}

.treatment-card-link {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--brand-primary);
}

@media (max-width: 768px) {
    .treatments-image-grid { grid-template-columns: repeat(2, 1fr); }
    .treatments-grid-section { padding: 40px 24px; }
}

@media (max-width: 480px) {
    .treatments-image-grid { grid-template-columns: 1fr; }
}

/* ── TREATMENT DETAIL HERO BANNER ── */
.treatment-hero-banner {
    position: relative;
    height: 45vh;
    min-height: 300px;
    overflow: hidden;
}

.treatment-hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.treatment-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.15) 100%);
}

.treatment-hero-text {
    position: absolute;
    bottom: 48px;
    left: 48px;
    z-index: 2;
}

.treatment-hero-text h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #fff;
    margin: 0;
}

@media (max-width: 768px) {
    .treatment-hero-text { left: 24px; bottom: 32px; }
}

/* ── TREATMENT INTRO SPLIT ── */
.treatment-intro-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 40px;
}

.intro-split-img img {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
    aspect-ratio: 4 / 3;
}

.intro-split-text h2 {
    font-family: var(--font-body);
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 700;
    color: var(--brand-dark);
    margin: 0 0 16px;
}

.intro-split-text p {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.8;
    color: var(--brand-text);
}

@media (max-width: 768px) {
    .treatment-intro-split { grid-template-columns: 1fr; padding: 40px 24px; }
}

/* ── BENEFIT CHECKLIST ── */
.benefit-section {
    background: var(--brand-light);
    padding: 60px 40px;
}

.benefit-inner {
    max-width: 800px;
    margin: 0 auto;
}

.benefit-inner h2 {
    font-family: var(--font-body);
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 700;
    color: var(--brand-dark);
    margin: 0 0 28px;
    text-align: center;
}

.benefit-check-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 16px;
}

.benefit-check-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--brand-text);
    background: white;
    padding: 18px 24px;
    border-radius: 12px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

/* ── ENQUIRY CARD ── */
.enquiry-section {
    padding: 60px 40px;
}

.enquiry-card {
    max-width: 700px;
    margin: 0 auto;
    background: var(--brand-dark);
    color: white;
    text-align: center;
    padding: 48px 40px;
    border-radius: 20px;
}

.enquiry-card h2 {
    font-family: var(--font-body);
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 12px;
}

.enquiry-card p {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255,255,255,0.8);
    margin: 0 0 28px;
}

.enquiry-card .btn-secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
}

/* ── ABOUT TEAM CARDS ── */
.about-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(460px, 1fr));
    gap: 32px;
}

.about-team-card {
    display: flex;
    gap: 28px;
    align-items: flex-start;
    background: var(--brand-light);
    border-radius: 16px;
    padding: 28px;
}

.about-team-photo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    flex-shrink: 0;
    border: 4px solid white;
}

.about-team-info h3 {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 700;
    color: var(--brand-dark);
    margin: 0 0 4px;
}

.about-team-role {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--brand-primary);
    margin-bottom: 12px;
}

.about-team-info p {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.7;
    color: var(--brand-text);
    margin: 0;
}

@media (max-width: 540px) {
    .about-team-grid { grid-template-columns: 1fr; }
    .about-team-card { flex-direction: column; align-items: center; text-align: center; }
}

/* ── WHY CHOOSE GRID ── */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.why-choose-item {
    text-align: center;
    padding: 32px 20px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

.why-choose-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--brand-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.why-choose-icon svg {
    width: 28px;
    height: 28px;
    color: var(--brand-primary);
}

.why-choose-item h3 {
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 700;
    color: var(--brand-dark);
    margin: 0 0 8px;
}

.why-choose-item p {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--brand-text);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .why-choose-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .why-choose-grid { grid-template-columns: 1fr; }
}

/* ── ORGANIC REVIEWS ── */
.review-list {
    display: grid;
    gap: 24px;
}

.review-item {
    background: var(--brand-light);
    border-radius: 16px;
    padding: 28px 32px;
    border-left: 4px solid var(--brand-primary);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

.review-name {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    color: var(--brand-dark);
}

.review-stars {
    color: #F5A623;
    font-size: 14px;
    letter-spacing: 1px;
}

.review-text {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.7;
    color: var(--brand-text);
    margin: 0 0 10px;
}

.review-source {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--brand-muted);
}

/* ── TESTIMONIALS (legacy) ── */
.testimonials {
    padding: 60px 40px;
    background: var(--brand-light);
}

.testimonials h2 {
    font-family: var(--font-body);
    font-size: clamp(26px, 3.5vw, 36px);
    font-weight: 700;
    color: var(--brand-dark);
    text-align: center;
    margin-bottom: 12px;
}

.testimonials-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--brand-muted);
    margin-bottom: 40px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--brand-white);
    border-radius: var(--radius-btn);
    padding: 28px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.testimonial-stars {
    color: #F5A623;
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.testimonial-text {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--brand-text);
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial-author {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    color: var(--brand-dark);
}

/* ── WHATSAPP / PHONE FLOAT ── */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 999;
    transition: transform 0.2s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
    fill: white;
    stroke: white;
}

/* ── BTN DARK ── */
.btn-dark {
    display: inline-block;
    padding: 14px 32px;
    background: var(--brand-primary);
    color: white;
    border-radius: var(--radius-btn);
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.2s;
}

.btn-dark:hover {
    opacity: 0.9;
}


/* ── RESPONSIVE OVERRIDES for inline-styled grids ── */
@media (max-width: 768px) {
    /* Contact quick cards */
    section > div[style*="repeat(3,1fr)"] {
        grid-template-columns: 1fr !important;
    }
    /* Contact form + info split */
    section > div[style*="1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }
    /* About team cards */
    div[style*="300px 1fr"] {
        grid-template-columns: 1fr !important;
    }
    /* Why Choose Us alternating rows */
    div[style*="1fr 1fr"][style*="1100px"] {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }
    div[style*="1fr 1fr"][style*="1100px"] div[style*="padding-left:48px"],
    div[style*="1fr 1fr"][style*="1100px"] div[style*="padding-right:48px"] {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    /* Review cards */
    div[style*="repeat(3,1fr)"][style*="gap:24px"] {
        grid-template-columns: 1fr !important;
    }
}
