/* ============================================================
   DentaBuc — Cabinet Stomatologic
   Palette: deep teal + mint + warm white + muted gold
   ============================================================ */

:root {
    --primary: #0a6b6b;
    --primary-deep: #064d4d;
    --primary-soft: #e6f3f1;
    --accent: #7fc8be;
    --accent-deep: #5fb3a7;
    --gold: #d4a574;
    --gold-deep: #b88a5a;

    --bg: #f5f8f7;
    --bg-alt: #eef4f2;
    --surface: #ffffff;
    --line: #d8e3df;
    --line-soft: rgba(10, 107, 107, 0.12);

    --ink: #1a2b29;
    --ink-soft: #4a5b58;
    --ink-faint: #8a9694;

    --success: #10b981;
    --warning: #f59e0b;

    --shadow-sm: 0 2px 6px rgba(10, 107, 107, 0.06);
    --shadow: 0 4px 18px rgba(10, 107, 107, 0.08);
    --shadow-lg: 0 12px 40px rgba(10, 107, 107, 0.12);
    --shadow-hover: 0 16px 50px rgba(10, 107, 107, 0.18);

    --radius: 12px;
    --radius-lg: 18px;
    --radius-xl: 24px;

    --font-body: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;

    --max-w: 1140px;
}

[data-theme="dark"] {
    --primary: #7fc8be;
    --primary-deep: #5fb3a7;
    --primary-soft: #13332f;
    --accent: #5fb3a7;
    --accent-deep: #4a9b91;
    --gold: #d4a574;
    --gold-deep: #b88a5a;

    --bg: #0d2626;
    --bg-alt: #0a1f1f;
    --surface: #122e2e;
    --line: #1f3d3d;
    --line-soft: rgba(127, 200, 190, 0.12);

    --ink: #f0f7f5;
    --ink-soft: #b8c8c5;
    --ink-faint: #7a8a87;

    --shadow-sm: 0 2px 6px rgba(0, 0, 0, 0.3);
    --shadow: 0 4px 18px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.5);
    --shadow-hover: 0 16px 50px rgba(0, 0, 0, 0.6);
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--ink);
    background-color: var(--bg);
    transition: background-color 0.25s, color 0.25s;
    -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-deep); }
button, input, textarea, select { font: inherit; color: inherit; }

::selection { background: var(--accent); color: var(--ink); }

:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 2px;
    border-radius: 6px;
}

.visually-hidden {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
    background: var(--primary-deep);
    color: #e6f3f1;
    font-size: 0.8rem;
    padding: 0.5rem 1.5rem;
}
[data-theme="dark"] .top-bar { background: #051818; }

.top-bar-container {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem 1.5rem;
}
.top-bar i { color: var(--accent); margin-right: 0.3rem; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    padding: 0.85rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: -0.01em;
}
.logo img { width: 36px; height: 36px; }
.logo:hover { color: var(--primary-deep); }

.nav-links {
    display: none;
    gap: 1.75rem;
    align-items: center;
}
.nav-links a {
    color: var(--ink-soft);
    font-weight: 600;
    font-size: 0.92rem;
    text-decoration: none;
    position: relative;
    padding: 0.25rem 0;
}
.nav-links a:hover, .nav-links a.active { color: var(--primary); }
.nav-links a.active::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: -4px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
}

.nav-actions { display: flex; align-items: center; gap: 0.5rem; }

.hamburger-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--ink);
    cursor: pointer;
    font-size: 1rem;
}
.hamburger-btn:hover { background: var(--bg-alt); }

.theme-btn {
    width: 40px; height: 40px;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--ink);
    cursor: pointer;
    display: grid;
    place-items: center;
    font-size: 0.95rem;
}
.theme-btn:hover { background: var(--bg-alt); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.4rem;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    cursor: pointer;
    border: 2px solid transparent;
    transition: transform 0.2s ease, background 0.2s, box-shadow 0.2s;
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 0 var(--primary-deep);
}
.btn-primary:hover {
    background: var(--primary-deep);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 0 var(--primary-deep);
}
.btn-primary:active {
    transform: translateY(2px);
    box-shadow: 0 2px 0 var(--primary-deep);
}

.btn-outline {
    background: var(--surface);
    color: var(--ink);
    border-color: var(--line);
}
.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--surface);
}

.btn-pill {
    background: var(--primary);
    color: #fff;
    border-radius: 999px;
    box-shadow: 0 4px 0 var(--primary-deep);
}
.btn-pill:hover { background: var(--primary-deep); color: #fff; transform: translateY(-2px); }

.btn-light {
    background: #fff;
    color: var(--primary);
    box-shadow: 0 4px 0 rgba(255,255,255,0.4);
}
.btn-light:hover { background: var(--accent); color: var(--ink); transform: translateY(-2px); }

.btn-ghost {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.4);
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); color: #fff; border-color: #fff; }

.btn-full { width: 100%; }

/* ============================================================
   SHARED SECTION UTILITIES
   ============================================================ */
.text-center { text-align: center; }

.sub-heading {
    display: inline-block;
    color: var(--primary);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    margin-bottom: 0.6rem;
}

.section-title {
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--ink);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}
.section-title span { color: var(--primary); }

.section-lede {
    color: var(--ink-soft);
    font-size: 1.02rem;
    max-width: 60ch;
    margin: 0 auto 2.5rem;
}
.section-lede + * { margin-top: 0; }

.text-center .section-lede { margin-inline: auto; }

h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: var(--ink);
    margin-bottom: 1rem;
}
h1 span { color: var(--primary); }

h2 { color: var(--ink); }

h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 0.4rem;
}

p { color: var(--ink-soft); }

/* ============================================================
   HERO SECTION (index)
   ============================================================ */
.hero-section {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 4rem 1.5rem 2rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content h1 {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
}
.hero-content h1 span { color: var(--primary); }

.hero-text {
    font-size: 1.08rem;
    color: var(--ink-soft);
    margin: 1rem 0 1.75rem;
    max-width: 56ch;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.75rem;
}

.hero-trust-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.5rem;
    margin-bottom: 1.75rem;
}
.hero-trust-tags span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--ink-soft);
}
.hero-trust-tags i { color: var(--success); }

.social-proof-pills {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.google-rating-card-link { text-decoration: none; color: inherit; }

.google-rating-card,
.counter-pill {
    background: var(--surface);
    border: 1px solid var(--line);
    padding: 0.6rem 0.9rem;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    box-shadow: var(--shadow-sm);
}
.google-rating-card strong,
.counter-pill strong { display: block; font-size: 0.95rem; color: var(--ink); }
.google-rating-card span { color: var(--ink-faint); font-size: 0.78rem; }

.google-rating-mark {
    width: 32px; height: 32px;
    border-radius: 8px;
    background: var(--primary-soft);
    color: var(--primary);
    display: grid;
    place-items: center;
    font-size: 0.9rem;
}

/* Hero image */
.hero-image-wrapper {
    position: relative;
}

.img-frame-main,
.img-frame-secondary {
    background: var(--bg-alt);
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    height: 380px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.img-frame-main img,
.img-frame-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.float-card {
    position: absolute;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 0.7rem 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    box-shadow: var(--shadow);
    font-size: 0.85rem;
    z-index: 2;
}
.float-card i {
    color: var(--primary);
    font-size: 1.1rem;
}
.float-card strong { display: block; color: var(--ink); font-size: 0.92rem; }
.float-card span { color: var(--ink-faint); font-size: 0.78rem; }
.float-card-1 { top: 20px; left: -10px; }
.float-card-2 { bottom: 30px; right: -10px; }

/* ============================================================
   PAGE HERO (sub-pages)
   ============================================================ */
.page-hero {
    text-align: center;
    padding-top: 4rem;
    padding-bottom: 2rem;
}
.page-hero h1 {
    margin-inline: auto;
    max-width: 22ch;
}
.page-hero .hero-intro-text {
    max-width: 62ch;
    margin: 1rem auto 1.75rem;
    color: var(--ink-soft);
    font-size: 1.05rem;
}
.page-hero-cta {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* ============================================================
   BOOKING SECTION (index)
   ============================================================ */
.booking-section {
    padding-top: 1rem;
    padding-bottom: 2rem;
}
.booking-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    max-width: 720px;
    margin: 0 auto;
}
.booking-head { text-align: center; margin-bottom: 1.5rem; }
.booking-head h2 { font-size: 1.5rem; margin-bottom: 0.4rem; }
.booking-head p { color: var(--ink-soft); font-size: 0.95rem; }

form { display: flex; flex-direction: column; gap: 1rem; }

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--ink-soft);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

input, select, textarea {
    width: 100%;
    padding: 0.75rem 0.9rem;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: var(--bg);
    color: var(--ink);
    font-size: 0.95rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}
input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-soft);
}

select { appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%234a5b58'><path d='M7 10l5 5 5-5z'/></svg>"); background-repeat: no-repeat; background-position: right 0.7rem center; background-size: 1.2rem; padding-right: 2.2rem; }

textarea { min-height: 100px; resize: vertical; }

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

/* ============================================================
   SERVICES GRID (index)
   ============================================================ */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-top: 2rem;
}

.service-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.2s;
    display: flex;
    flex-direction: column;
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent);
}
.service-card.highlight {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}
.service-card.highlight h3,
.service-card.highlight p { color: #fff; }
.service-card.highlight .card-link { color: var(--accent); }
.service-card.highlight .service-icon {
    background: rgba(255,255,255,0.15);
    color: #fff;
}

.service-icon {
    width: 52px; height: 52px;
    background: var(--primary-soft);
    color: var(--primary);
    border-radius: var(--radius);
    display: grid;
    place-items: center;
    font-size: 1.3rem;
    margin-bottom: 1.25rem;
}

.service-card h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.service-card p { font-size: 0.95rem; color: var(--ink-soft); margin-bottom: 1.25rem; flex: 1; }

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    margin-top: auto;
    transition: gap 0.2s;
}
.card-link:hover { gap: 0.7rem; }
.card-link i { font-size: 0.85rem; }

/* ============================================================
   ABOUT / WHY US / STANDARDS
   ============================================================ */
.about-story {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
}

.about-content h2 { font-size: 1.8rem; margin-bottom: 1rem; }
.about-content p { margin-bottom: 1rem; }

.story-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 1.75rem;
    border-top: 1px solid var(--line);
}
.story-stats .stat strong {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.02em;
}
.story-stats .stat span { font-size: 0.85rem; color: var(--ink-faint); }

.why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.why-item,
.standard-item {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s, box-shadow 0.2s;
}
.why-item:hover,
.standard-item:hover { transform: translateY(-3px); box-shadow: var(--shadow); }

.why-item i,
.standard-item i {
    display: inline-grid;
    place-items: center;
    width: 48px; height: 48px;
    background: var(--primary-soft);
    color: var(--primary);
    border-radius: var(--radius);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.why-item h3,
.standard-item h3 { font-size: 1.1rem; margin-bottom: 0.4rem; }
.why-item p,
.standard-item p { font-size: 0.92rem; color: var(--ink-soft); }

.standards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-top: 2rem;
}

/* ============================================================
   DOCTORS (despre)
   ============================================================ */
.doctors-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.doctor-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s, box-shadow 0.2s;
}
.doctor-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }

.doctor-photo {
    width: 96px; height: 96px;
    margin: 0 auto 1rem;
    background: var(--primary-soft);
    color: var(--primary);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 2.5rem;
}

.doctor-card h3 { font-size: 1.1rem; margin-bottom: 0.3rem; }
.doctor-role {
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

/* ============================================================
   PROCESS (despre)
   ============================================================ */
.process-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-top: 2rem;
    counter-reset: step;
}

.process-step {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    position: relative;
    box-shadow: var(--shadow-sm);
}

.step-number {
    display: inline-block;
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.process-step h3 { font-size: 1.1rem; margin-bottom: 0.4rem; }
.process-step p { font-size: 0.92rem; }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.review-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s, box-shadow 0.2s;
}
.review-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }

.review-card.highlight-card {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}
.review-card.highlight-card p { color: #e6f3f1; }
.review-card.highlight-card .reviewer-info strong { color: #fff; }
.review-card.highlight-card .reviewer-info span { color: rgba(255,255,255,0.7); }

.stars { color: var(--gold); margin-bottom: 0.75rem; letter-spacing: 2px; }

.review-card p {
    font-style: italic;
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.reviewer-info strong { display: block; font-size: 0.92rem; color: var(--ink); }
.reviewer-info span { font-size: 0.8rem; color: var(--ink-faint); }

/* ============================================================
   FAQ
   ============================================================ */
.faq {
    max-width: 760px;
    margin: 2rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color 0.2s;
}
.faq-item[open] { border-color: var(--primary); box-shadow: var(--shadow-sm); }

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 1.1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-weight: 700;
    color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary span { flex: 1; }

.icon-toggle {
    color: var(--primary);
    width: 32px; height: 32px;
    background: var(--primary-soft);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 0.9rem;
    flex-shrink: 0;
    transition: transform 0.2s;
}

.faq-item p {
    padding: 0 1.5rem 1.25rem;
    color: var(--ink-soft);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ============================================================
   SERVICE CATALOG (servicii page)
   ============================================================ */
.services-full-section { margin-top: 1rem; }
.services-full-section .sub-heading { display: block; text-align: center; }
.services-full-section .section-title { text-align: center; }
.services-full-section .section-lede { text-align: center; }

.services-full-list {
    max-width: 820px;
    margin: 2rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.service-item {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.service-item[open] { border-color: var(--primary); box-shadow: var(--shadow); }

.service-item summary {
    list-style: none;
    cursor: pointer;
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}
.service-item summary::-webkit-details-marker { display: none; }

.service-item-head {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}
.service-item-head .service-icon { width: 44px; height: 44px; margin: 0; }
.service-item-head h3 { font-size: 1.05rem; margin-bottom: 0.2rem; }
.service-item-head p { font-size: 0.85rem; color: var(--ink-faint); margin: 0; }

.service-item-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}
.price-from { color: var(--ink-soft); font-size: 0.85rem; white-space: nowrap; }
.price-from strong { color: var(--primary); font-size: 1rem; }

.service-item-body {
    padding: 0 1.5rem 1.5rem;
    border-top: 1px solid var(--line-soft);
    padding-top: 1.25rem;
}
.service-item-body p { font-size: 0.95rem; color: var(--ink-soft); }

.pricing-note-box {
    background: var(--primary-soft);
    border: 1px solid var(--accent);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-top: 2rem;
}
.pricing-note-box > i { color: var(--primary); font-size: 1.4rem; margin-top: 0.15rem; }
.pricing-note-box h3 { color: var(--primary); margin-bottom: 0.4rem; }
.pricing-note-box p { font-size: 0.95rem; }

/* ============================================================
   CTA BANNER + FORM (shared, all pages)
   ============================================================ */
.cta-banner-box {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deep) 100%);
    color: #fff;
    padding: 2.5rem 2rem;
    border-radius: var(--radius-xl);
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    box-shadow: var(--shadow-lg);
}

.cta-banner-text h2 { font-size: 1.6rem; color: #fff; margin-bottom: 0.5rem; }
.cta-banner-text p { color: rgba(255,255,255,0.85); font-size: 0.95rem; margin-bottom: 1.5rem; }

.cta-banner-actions {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.cta-form-wrapper form {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.cta-form-wrapper input,
.cta-form-wrapper textarea {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
    color: #fff;
}
.cta-form-wrapper input::placeholder,
.cta-form-wrapper textarea::placeholder { color: rgba(255,255,255,0.65); }
.cta-form-wrapper input:focus,
.cta-form-wrapper textarea:focus {
    background: rgba(255,255,255,0.15);
    border-color: #fff;
    box-shadow: none;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
    background: var(--primary-deep);
    color: rgba(255,255,255,0.75);
    padding: 3rem 1.5rem 1.5rem;
    font-size: 0.9rem;
}
[data-theme="dark"] footer { background: #051818; }

.footer-container {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand .logo { color: #fff; margin-bottom: 0.5rem; }
.footer-brand p { color: rgba(255,255,255,0.7); }

.footer-nav, .footer-legal { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-nav h3, .footer-legal h3 {
    color: #fff;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}
.footer-nav a, .footer-legal a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-size: 0.9rem;
}
.footer-nav a:hover, .footer-legal a:hover { color: var(--accent); }

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    max-width: var(--max-w);
    margin: 0 auto;
}
.footer-bottom p { color: rgba(255,255,255,0.6); font-size: 0.85rem; margin: 0.2rem 0; }
.footer-credit a { color: var(--accent); font-weight: 700; }
.footer-credit a:hover { color: #fff; }

/* ============================================================
   MOBILE STICKY BAR
   ============================================================ */
.mobile-bar {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: var(--surface);
    border-top: 1px solid var(--line);
    display: flex;
    padding: 0.6rem 0.75rem;
    gap: 0.4rem;
    z-index: 90;
    box-shadow: 0 -4px 16px rgba(10,107,107,0.08);
}

.m-btn {
    flex: 1;
    padding: 0.7rem 0.4rem;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.82rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    transition: transform 0.15s;
}
.m-btn:active { transform: scale(0.97); }

.m-call { background: var(--primary); color: #fff; }
.m-wa { background: var(--accent); color: var(--ink); }
.m-book { background: var(--gold); color: var(--ink); }

body { padding-bottom: 76px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (min-width: 640px) {
    .container { padding: 3.5rem 2rem; }
    .reviews-grid { grid-template-columns: 1fr 1fr; }
    .footer-container { grid-template-columns: 2fr 1fr 1fr; }
    .form-row { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 768px) {
    .top-bar { display: block; }
    .nav-links { display: flex; }
    .hamburger-btn { display: none; }
    .hero-section { grid-template-columns: 1.1fr 1fr; padding: 5rem 2rem 3rem; gap: 3rem; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .standards-grid { grid-template-columns: repeat(2, 1fr); }
    .doctors-grid { grid-template-columns: repeat(2, 1fr); }
    .process-list { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .about-story { grid-template-columns: 1fr 1fr; gap: 3rem; }
    .cta-banner-box { grid-template-columns: 1fr 1fr; padding: 3rem; gap: 3rem; }
    body { padding-bottom: 0; }
    .mobile-bar { display: none; }
    .navbar .btn-pill { display: inline-flex; }
}

@media (min-width: 1024px) {
    .container { padding: 4rem 2rem; }
    .hero-section { padding: 6rem 2rem 4rem; }
    .services-grid { grid-template-columns: repeat(3, 1fr); }
    .why-grid { grid-template-columns: repeat(4, 1fr); }
    .standards-grid { grid-template-columns: repeat(3, 1fr); }
    .doctors-grid { grid-template-columns: repeat(4, 1fr); }
    .process-list { grid-template-columns: repeat(4, 1fr); }
    .footer-container { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

/* ============================================================
   MOBILE MENU OVERLAY
   ============================================================ */
@media (max-width: 767.98px) {
    .navbar { padding: 0.75rem 1rem; }
    .navbar .btn-pill { display: none; }
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        background: var(--surface);
        flex-direction: column;
        align-items: stretch;
        padding: 1rem 1.25rem 1.5rem;
        gap: 0;
        border-bottom: 1px solid var(--line);
        box-shadow: var(--shadow-lg);
    }
    .nav-links a {
        padding: 0.95rem 0;
        border-bottom: 1px solid var(--line-soft);
    }
    .nav-links a:last-child { border-bottom: 0; }
    .nav-links a.active::after { display: none; }
    .nav-links a.active { color: var(--primary); font-weight: 700; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ============================================================
   PRINT
   ============================================================ */
@media print {
    .top-bar, .navbar, .mobile-bar, .cta-banner-box, .hero-cta, .float-card { display: none !important; }
    body { background: #fff; color: #000; }
    .service-card, .review-card, .doctor-card, .standard-item { break-inside: avoid; }
}
