/* ============================================================
   SIGNATURE DENTAL — DESIGN SYSTEM
   ============================================================ */
:root {
    --primary: #0f4c81;
    --primary-light: #1e629b;
    --primary-dark: #0a365c;
    --secondary: #e6f2ff;
    --accent: #c8a851;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --bg-white: #ffffff;
    --bg-alt: #f8fafc;
    --white: #ffffff;
    --shadow-sm: 0 1px 4px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.04);
    --shadow-lg: 0 16px 40px rgba(15,76,129,0.12), 0 6px 12px rgba(0,0,0,0.06);
    --shadow-xl: 0 32px 64px rgba(15,76,129,0.15);
    --radius-sm: 6px;
    --radius-md: 14px;
    --radius-lg: 28px;
    --radius-full: 9999px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--bg-white);
    overflow-x: hidden;
}

h1, h2, h3, h4, .font-heading {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul { list-style: none; }

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ============================================================
   SCROLL REVEAL ANIMATION
   ============================================================ */
[data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section { padding: 90px 0; }

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 64px;
}

.section-header::before {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: var(--radius-full);
    margin: 0 auto 1.5rem;
}

.section-headline {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
    line-height: 1.15;
}

.section-subheadline {
    font-size: 1.08rem;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 620px;
    margin: 0 auto;
}

/* ============================================================
   NAVBAR — PREMIUM
   ============================================================ */
.nav-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0;
    transition: background 0.4s ease, box-shadow 0.4s ease;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(200, 168, 81, 0.18);
}

.nav-wrapper.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 32px rgba(15, 76, 129, 0.09), 0 1px 0 rgba(200,168,81,0.12);
    border-bottom-color: rgba(200, 168, 81, 0.22);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    height: 88px;
}

/* ── Logo ── */
.nav-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    gap: 0.65rem;
    text-decoration: none;
    height: 100%;
    padding: 4px 0;
}

.nav-logo-img {
    height: 80px;
    width: auto;
    display: block;
    object-fit: contain;
    image-rendering: auto;
    -webkit-font-smoothing: antialiased;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-logo:hover .nav-logo-img {
    transform: scale(1.04);
    opacity: 0.9;
}

/* Hide mobile-only CTA on desktop */
.mobile-menu-cta { display: none !important; }

/* ── Nav Links ── */
.nav-links {
    display: flex;
    gap: 0.1rem;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.nav-link {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    letter-spacing: 0.01em;
    color: #2d3748;
    position: relative;
    padding: 0.45rem 0.75rem;
    border-radius: 8px;
    white-space: nowrap;
    transition: color 0.25s ease, background 0.25s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: var(--radius-full);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
    color: var(--primary);
    background: rgba(15, 76, 129, 0.05);
}

.nav-link:hover::after { width: calc(100% - 1.6rem); }

.nav-link.active {
    color: var(--primary);
    font-weight: 600;
}

.nav-link.active::after { width: calc(100% - 1.6rem); }

/* ── CTA Button ── */
.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: linear-gradient(135deg, #0f4c81 0%, #1e629b 100%);
    color: #ffffff;
    padding: 0.55rem 1.25rem;
    border-radius: var(--radius-full);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.04em;
    box-shadow: 0 4px 18px rgba(15, 76, 129, 0.32), inset 0 1px 0 rgba(255,255,255,0.15);
    white-space: nowrap;
    flex-shrink: 0;
    border: 1px solid rgba(255,255,255,0.12);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(15, 76, 129, 0.42), inset 0 1px 0 rgba(255,255,255,0.15);
    background: linear-gradient(135deg, #0a365c 0%, #0f4c81 100%);
    color: #ffffff;
}

.nav-cta:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(15, 76, 129, 0.28);
}

/* ── Mobile Toggle ── */
.mobile-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    border: none;
    cursor: pointer;
    color: #ffffff;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(15,76,129,0.32);
    transition: var(--transition);
}
.mobile-toggle:hover {
    box-shadow: 0 6px 20px rgba(15,76,129,0.45);
    transform: scale(1.05);
}
.mobile-toggle svg { width: 20px; height: 20px; }

/* ── Premium Navbar Top Accent ── */
.nav-wrapper::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary) 0%, #1e7fc4 40%, var(--accent) 70%, #e8c96a 100%);
    opacity: 0.85;
}

/* ── Navbar Dropdown ── */
.nav-dropdown-wrap {
    position: relative;
}

.nav-dropdown-trigger {
    display: inline-flex !important;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.nav-chevron {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    flex-shrink: 0;
    transition: transform 0.25s cubic-bezier(0.4,0,0.2,1);
}

.nav-dropdown-wrap:hover .nav-chevron,
.nav-dropdown-wrap.open .nav-chevron {
    transform: rotate(180deg);
}

/* Desktop-only dropdown panel positioning */
@media (min-width: 769px) {
    .nav-dropdown {
        position: absolute;
        top: calc(100% + 10px);
        left: 50%;
        transform: translateX(-50%) translateY(-8px);
        min-width: 280px;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(24px) saturate(160%);
        -webkit-backdrop-filter: blur(24px) saturate(160%);
        border: 1px solid rgba(15,76,129,0.10);
        border-radius: 18px;
        box-shadow: 0 16px 48px rgba(15,76,129,0.14), 0 4px 12px rgba(0,0,0,0.06), 0 0 0 1px rgba(200,168,81,0.08);
        padding: 8px 8px 6px;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.22s ease, transform 0.22s cubic-bezier(0.34,1.56,0.64,1);
        z-index: 1100;
    }

    .nav-dropdown::before {
        content: '';
        display: block;
        height: 2px;
        background: linear-gradient(90deg, var(--primary), var(--accent));
        border-radius: 2px 2px 0 0;
        margin: 0 6px 6px;
        opacity: 0.6;
    }

    .nav-dropdown-wrap:hover .nav-dropdown {
        opacity: 1;
        pointer-events: all;
        transform: translateX(-50%) translateY(0);
    }
}

.nav-dropdown-header {
    font-family: 'Outfit', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #9ca3af;
    padding: 4px 12px 6px;
}

.nav-dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 12px;
    text-decoration: none;
    transition: background 0.18s ease, transform 0.18s ease;
    color: inherit;
}

.nav-dropdown-item:hover {
    background: rgba(15,76,129,0.05);
    transform: translateX(3px);
}

.ndi-icon {
    width: 34px;
    height: 34px;
    background: linear-gradient(135deg, #eef4fd, #dce8f5);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ndi-icon svg {
    width: 16px;
    height: 16px;
    stroke: var(--primary);
}

.ndi-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.ndi-text strong {
    font-family: 'Outfit', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1.3;
}

.ndi-text span {
    font-size: 0.75rem;
    color: #6b7280;
    line-height: 1.3;
}

.ndi-badge {
    font-family: 'Outfit', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--primary) 0%, #1e7fc4 100%);
    color: #fff;
    padding: 3px 8px;
    border-radius: 100px;
    flex-shrink: 0;
}

.nav-dropdown-footer {
    display: block;
    text-align: center;
    padding: 8px 12px;
    margin-top: 2px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary);
    border-top: 1px solid rgba(15,76,129,0.07);
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: color 0.18s ease, background 0.18s ease;
    border-radius: 0 0 12px 12px;
}

.nav-dropdown-footer:hover {
    color: var(--accent);
    background: rgba(15,76,129,0.03);
}

/* Branch page: scroll offset for anchor links */
#mogappair, #porur, #manapakkam {
    scroll-margin-top: 120px;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
    padding: 120px 0 100px;
    background: linear-gradient(150deg, #eef6ff 0%, #f5f9ff 40%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -15%;
    right: -8%;
    width: 500px;
    height: 500px;
    background: var(--primary);
    filter: blur(180px);
    opacity: 0.06;
    border-radius: 50%;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 350px;
    height: 350px;
    background: var(--accent);
    filter: blur(160px);
    opacity: 0.05;
    border-radius: 50%;
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* ── Hero Eyebrow badge ── */
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: rgba(15,76,129,0.07);
    border: 1px solid rgba(15,76,129,0.15);
    color: var(--primary);
    font-family: 'Outfit', sans-serif;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.38rem 1rem;
    border-radius: 100px;
    margin-bottom: 1.4rem;
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 1.4rem;
    color: var(--primary-dark);
    letter-spacing: -0.035em;
    line-height: 1.1;
    font-weight: 800;
}

.hero-h1-highlight {
    background: linear-gradient(100deg, var(--primary) 0%, #1e7fc4 50%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text h1 strong { color: var(--primary); }

.hero-text p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2.25rem;
    max-width: 88%;
    line-height: 1.8;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
}

.hero-cta {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: var(--white);
    padding: 0.9rem 2rem;
    border-radius: 100px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.03em;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    box-shadow: 0 8px 24px rgba(15,76,129,0.38);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    white-space: nowrap;
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(15,76,129,0.48);
    color: var(--white);
}

.hero-cta-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.88rem 1.75rem;
    border-radius: 100px;
    border: 1.5px solid rgba(15,76,129,0.25);
    color: var(--primary);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    background: rgba(15,76,129,0.04);
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
    white-space: nowrap;
}

.hero-cta-ghost:hover {
    background: rgba(15,76,129,0.09);
    border-color: var(--primary);
    transform: translateY(-2px);
    color: var(--primary);
}

.micro-copy {
    font-size: 0.82rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 2rem;
}

.hero-metrics {
    display: flex;
    gap: 0;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(15,76,129,0.1);
}

.metric-item {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding-right: 2rem;
    border-right: 1px solid rgba(15,76,129,0.1);
}
.metric-item:last-child { border-right: none; padding-left: 2rem; padding-right: 0; }
.metric-item:not(:first-child):not(:last-child) { padding-left: 2rem; }

.metric-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-dark);
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 0.3rem;
}

.metric-label {
    font-size: 0.72rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.09em;
    font-weight: 600;
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: visible;
    box-shadow: var(--shadow-xl);
    transform: perspective(1000px) rotateY(-4deg);
    transition: var(--transition);
}

.hero-image-wrapper img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    display: block;
}

.hero-image-wrapper:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.hero-trust-line {
    position: absolute;
    bottom: -24px;
    left: 1.5rem;
    right: 1.5rem;
    background: var(--white);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 10;
    border: 1px solid rgba(15,76,129,0.08);
}

/* ============================================================
   TRUST SECTION
   ============================================================ */
.trust-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 80px;
}

.stat-card {
    background: var(--white);
    padding: 2.5rem 1.75rem;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid #e8f0f7;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(15,76,129,0.06);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transition: var(--transition);
}

.stat-card:hover::before { transform: scaleX(1); }

.stat-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.stat-icon {
    font-size: 1.75rem;
    color: var(--primary);
    margin-bottom: 1rem;
    width: 52px;
    height: 52px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.stat-value {
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--primary-dark);
    font-family: 'Outfit', sans-serif;
    margin-bottom: 0.35rem;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.88rem;
    font-weight: 500;
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    margin-top: 60px;
}

.testimonial-card {
    background: var(--white);
    padding: 2.25rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    border: 1px solid #f1f5f9;
    transition: var(--transition);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1.25rem;
    right: 1.5rem;
    font-family: 'Outfit', sans-serif;
    font-size: 4rem;
    color: #c8dff5;
    line-height: 1;
    font-weight: 800;
    z-index: 0;
    pointer-events: none;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.testimonial-quote {
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 1.5rem;
    flex-grow: 1;
    line-height: 1.7;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

.testimonial-author { display: flex; flex-direction: column; gap: 2px; }

.testimonial-name {
    font-weight: 700;
    color: var(--primary);
    font-size: 0.95rem;
}

.testimonial-detail {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.trust-team-image {
    margin-top: 80px;
}

.trust-team-image img {
    width: 100%;
    height: 540px;
    object-fit: cover;
    object-position: center 15%;
    display: block;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* ============================================================
   SPECIALTIES SECTION
   ============================================================ */
.specialties-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.specialty-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.25rem;
    border: 1px solid #e8f0f7;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(15,76,129,0.05);
}

.specialty-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transition: var(--transition);
}

.specialty-card:hover::after { transform: scaleX(1); }

.specialty-card:hover {
    border-color: transparent;
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.specialty-name {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.specialty-summary {
    color: var(--text-muted);
    font-size: 0.92rem;
    margin-bottom: 2rem;
    line-height: 1.75;
}

.specialty-summary ul { margin-top: 1rem; }

.specialty-cta {
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
}

.specialty-cta:hover { gap: 0.7rem; color: var(--primary-light); }

/* ============================================================
   WHY US SECTION
   ============================================================ */
.why-us { background: var(--bg-alt); }

.concerns-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.concern-card {
    background: var(--white);
    padding: 2.25rem;
    border-radius: 20px;
    box-shadow: 0 2px 12px rgba(15,76,129,0.06);
    border: 1px solid #eef3fb;
    transition: var(--transition);
}

.concern-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--secondary);
    transform: translateY(-4px);
}

.concern-title {
    color: var(--primary-dark);
    margin-bottom: 0.85rem;
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.concern-answer {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.concern-proof {
    padding-top: 1.25rem;
    border-top: 1px solid #f1f5f9;
    font-weight: 700;
    color: var(--primary);
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.concern-proof::before {
    content: '✓';
    background: #e8f7f0;
    color: #10b981;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
}

/* ============================================================
   JOURNEY SECTION
   ============================================================ */
.journey-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 820px;
    margin: 0 auto;
}

.journey-step {
    display: flex;
    gap: 2rem;
    background: var(--white);
    padding: 2rem 2.25rem;
    border-radius: 20px;
    box-shadow: 0 2px 12px rgba(15,76,129,0.06);
    align-items: flex-start;
    border: 1px solid #eef3fb;
    transition: var(--transition);
}

.journey-step:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--secondary);
    transform: translateX(6px);
}

.step-number {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    box-shadow: 0 4px 12px rgba(15,76,129,0.3);
}

.step-content h3 {
    color: var(--primary-dark);
    margin-bottom: 0.4rem;
    font-size: 1.15rem;
}

.step-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ============================================================
   CTA BLOCK
   ============================================================ */
.cta-block {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
    color: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    margin: 80px 0;
    box-shadow: var(--shadow-xl);
}

.cta-text {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-text h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.cta-text p {
    font-size: 1.1rem;
    opacity: 0.88;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: #ffffff;
    color: var(--primary-dark);
    padding: 0.9rem 2.25rem;
    border-radius: 100px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 6px 20px rgba(0,0,0,0.18);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.25);
    color: var(--primary-dark);
}

.btn-secondary {
    border: 2px solid rgba(255,255,255,0.55);
    color: var(--white);
    padding: 0.88rem 2.25rem;
    border-radius: 100px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.14);
    border-color: rgba(255,255,255,0.85);
    color: var(--white);
    transform: translateY(-2px);
}

.cta-image {
    overflow: hidden;
    max-height: 420px;
}

.cta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ============================================================
   FAQ PREVIEW
   ============================================================ */
.faq-preview { background: var(--bg-alt); }

.faq-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    margin-bottom: 40px;
}

.faq-item {
    background: var(--white);
    padding: 2.25rem;
    border-radius: 20px;
    border: 1px solid #eef3fb;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(15,76,129,0.05);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--secondary);
    transform: translateY(-4px);
}

.faq-item h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.05rem;
    line-height: 1.4;
}

.faq-item p {
    color: var(--text-muted);
    font-size: 0.93rem;
    line-height: 1.7;
}

.faq-btn-wrapper { text-align: center; }

.faq-more {
    font-weight: 700;
    color: var(--primary);
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid var(--primary);
    padding: 0.75rem 2rem;
    border-radius: var(--radius-full);
    transition: var(--transition);
}

.faq-more:hover {
    background: var(--primary);
    color: var(--white);
}

/* ============================================================
   VISIT SECTION — PREMIUM REDESIGN
   ============================================================ */
.visit-section { background: var(--bg-alt); }

.visit-premium-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 5rem;
    align-items: center;
}

/* Info Panel */
.visit-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--primary);
    background: var(--secondary);
    padding: 0.35rem 1rem;
    border-radius: var(--radius-full);
    margin-bottom: 1.25rem;
    border: 1px solid rgba(15,76,129,0.12);
}

.visit-headline {
    font-family: 'Outfit', sans-serif;
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--primary-dark);
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 1.25rem;
}

.visit-intro {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 2.25rem;
    max-width: 480px;
}

/* Info Cards */
.visit-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.25rem;
}

.visit-card {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    background: var(--white);
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(15,76,129,0.08);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.visit-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.visit-card-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 10px rgba(15,76,129,0.25);
}

.visit-card-body h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary);
    margin-bottom: 0.4rem;
}

.visit-card-body p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.visit-badge {
    display: inline-block;
    background: #e8f7f0;
    color: #059669;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: var(--radius-full);
    margin-top: 4px;
    letter-spacing: 0.02em;
}

.visit-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.visit-contact-link:hover {
    color: var(--primary-light);
    gap: 0.5rem;
}

.visit-directions-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: white;
    padding: 1rem 2.25rem;
    border-radius: var(--radius-md);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 6px 20px rgba(15,76,129,0.35);
    transition: var(--transition);
    letter-spacing: 0.01em;
}

.visit-directions-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(15,76,129,0.45);
    color: white;
}

/* Image Panel */
.visit-image-panel { position: relative; }

.visit-image-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.visit-image-frame img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.visit-image-frame:hover img {
    transform: scale(1.03);
}

.visit-image-tag {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(8px);
    padding: 0.6rem 1.25rem;
    border-radius: var(--radius-full);
    font-size: 0.83rem;
    font-weight: 700;
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255,255,255,0.8);
}

/* Legacy visit-container — kept for backward compat */
.visit-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.visit-info h2 {
    font-size: 2.25rem;
    color: var(--primary-dark);
    margin-bottom: 1.75rem;
    letter-spacing: -0.02em;
}

.visit-details {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.detail-item h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.82rem;
}

.detail-item p {
    color: var(--text-muted);
    line-height: 1.7;
}

.visit-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    width: 100%;
    height: 480px;
    object-fit: cover;
}

/* Responsive visit premium */
@media (max-width: 1024px) {
    .visit-premium-wrapper { gap: 3rem; }
    .visit-headline { font-size: 2.2rem; }
}

@media (max-width: 768px) {
    .visit-premium-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .visit-headline { font-size: 1.9rem; }
    .visit-image-frame img { height: 300px; }
    .visit-intro { max-width: 100%; }
    .visit-image-panel { order: -1; }
}

/* ============================================================
   FOOTER — PREMIUM REDESIGN
   ============================================================ */
footer {
    background: #070f1a;
    background-image:
        radial-gradient(ellipse 80% 50% at 20% 80%, rgba(15,76,129,0.18) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 80% 20%, rgba(200,168,81,0.07) 0%, transparent 55%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

/* Gold accent bar at very top */
footer::before {
    content: '';
    display: block;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--primary) 25%, var(--accent) 60%, transparent 100%);
}

.footer-inner {
    padding: 72px 0 0;
}

/* Main grid */
.footer-main {
    display: grid;
    grid-template-columns: 1.9fr 1fr 1fr 1.5fr;
    gap: 3.5rem;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

/* ---- Brand Column ---- */
.footer-brand { display: flex; flex-direction: column; gap: 0; }

.footer-logo-img {
    height: 58px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
    opacity: 0.92;
    margin-bottom: 1.1rem;
}

.footer-dr-name {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.2rem;
    letter-spacing: 0.01em;
}

.footer-dr-title {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent);
    background: rgba(200,168,81,0.12);
    border: 1px solid rgba(200,168,81,0.25);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    margin-bottom: 1.1rem;
}

.footer-tagline {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.75;
    margin-bottom: 1.75rem;
    max-width: 300px;
}

/* Social icons */
.footer-social {
    display: flex;
    gap: 0.65rem;
    flex-wrap: wrap;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid transparent;
    color: #ffffff;
    transition: var(--transition);
    background: rgba(255,255,255,0.12);
    flex-shrink: 0;
}

.social-btn svg { width: 17px; height: 17px; fill: #ffffff; }

.social-btn.fb {
    background: #1877f2;
    border-color: #1877f2;
}
.social-btn.ig {
    background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888);
    border-color: #e1306c;
}
.social-btn.li {
    background: #0077b5;
    border-color: #0077b5;
}
.social-btn.call {
    background: linear-gradient(135deg, #16a34a, #22c55e);
    border-color: #16a34a;
}

.social-btn:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 8px 20px rgba(0,0,0,0.35);
    filter: brightness(1.15);
}

/* ---- Column Headings ---- */
.footer-col-title {
    font-family: 'Outfit', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.13em;
    color: rgba(255,255,255,0.9);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--primary));
    border-radius: var(--radius-full);
}

/* ---- Link Lists ---- */
.footer-list {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.footer-list a {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.52);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: var(--transition);
    line-height: 1.4;
}

.footer-list a::before {
    content: '→';
    font-size: 0.78rem;
    opacity: 0;
    transform: translateX(-6px);
    transition: var(--transition);
    color: var(--accent);
}

.footer-list a:hover {
    color: rgba(255,255,255,0.92);
    padding-left: 4px;
}

.footer-list a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* ---- Contact Column ---- */
.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.footer-contact-item {
    display: flex;
    gap: 0.875rem;
    align-items: flex-start;
}

.footer-contact-item svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--accent);
    opacity: 0.85;
}

.footer-contact-item p,
.footer-contact-item a,
.footer-contact-item div {
    font-size: 0.86rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
    transition: var(--transition);
}

.footer-contact-item a:hover {
    color: rgba(255,255,255,0.9);
}

.footer-phone-list {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

/* ---- Bottom Bar ---- */
.footer-bottom {
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-bottom-copy {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.3);
    line-height: 1.6;
}

.footer-bottom-copy strong {
    color: rgba(255,255,255,0.5);
    font-weight: 600;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.28);
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: rgba(255,255,255,0.65);
}

/* Backward-compat stubs (old classes still referenced) */
.footer-grid { display: none; }
.footer-about, .footer-links { display: none; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
    .footer-brand { grid-column: span 2; }
}

@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        padding-bottom: 40px;
    }
    .footer-brand {
        grid-column: span 2;
        align-items: center;
        text-align: center;
    }
    .footer-brand .footer-tagline { max-width: 100%; }
    .footer-brand .footer-social { justify-content: center; }
    .footer-inner { padding: 56px 0 0; }
    /* Quick Links & Services columns — center */
    .footer-main > div:not(.footer-brand) {
        text-align: center;
    }
    .footer-col-title::after { left: 50%; transform: translateX(-50%); }
    .footer-list { align-items: center; }
    .footer-list a { justify-content: center; }
    .footer-contact-list { align-items: center; }
    .footer-contact-item { flex-direction: column; align-items: center; text-align: center; gap: 0.4rem; }
    .footer-phone-list { align-items: center; }
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.75rem;
    }
    .footer-bottom-links { justify-content: center; }
}

@media (max-width: 480px) {
    .footer-main { grid-template-columns: 1fr; }
    .footer-brand { grid-column: span 1; }
    .footer-tagline { max-width: 100%; }
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
    padding: 120px 0 70px;
    background: linear-gradient(155deg, #0a365c 0%, #0f4c81 55%, #1a5f9a 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -6%;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(200,168,81,0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: -15%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Eyebrow badge inside page heroes */
.page-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: rgba(200,168,81,0.15);
    border: 1px solid rgba(200,168,81,0.35);
    color: #e8c96a;
    font-family: 'Outfit', sans-serif;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.38rem 1.1rem;
    border-radius: 100px;
    margin-bottom: 1.5rem;
}

.page-hero h1 {
    font-size: 3.2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.25rem;
    letter-spacing: -0.035em;
    line-height: 1.1;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}

.page-hero .section-subheadline {
    color: rgba(255,255,255,0.75);
    font-size: 1.1rem;
    max-width: 640px;
}

.page-hero-image {
    max-width: 1000px;
    margin: 48px auto 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.page-hero-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

/* ============================================================
   SPECIALTY SERVICE SECTIONS
   ============================================================ */
.specialty-section { padding: 80px 0; }

.specialty-section:nth-child(even) { background: var(--bg-alt); }

.specialty-layout {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 4rem;
    align-items: flex-start;
}

.specialty-section:nth-child(even) .specialty-layout {
    grid-template-areas: "image text";
}

.specialty-section:nth-child(odd) .specialty-layout {
    grid-template-areas: "text image";
}

.specialty-text { grid-area: text; }
.specialty-image { grid-area: image; }

.specialty-text h2 {
    font-size: 2.25rem;
    color: var(--primary-dark);
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.specialty-text > p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.75;
}

.specialty-features { margin: 2rem 0; }

.feature-item { margin-bottom: 1.5rem; }

.feature-item strong {
    display: block;
    color: var(--primary);
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
}

.specialty-meta {
    background: var(--secondary);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
    border: 1px solid rgba(15,76,129,0.08);
}

.meta-box span {
    display: block;
    font-size: 0.78rem;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    margin-bottom: 2px;
}

.meta-box strong {
    color: var(--primary);
    font-size: 0.9rem;
}

.specialty-image img {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    width: 100%;
    height: 420px;
    object-fit: cover;
}

/* ============================================================
   SERVICE DETAIL LISTS
   ============================================================ */
.service-detail-lists {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem;
    margin: 1.75rem 0;
}

.detail-list h4 {
    color: var(--primary);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-bottom: 0.875rem;
    font-weight: 700;
}

.detail-list ul {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.detail-list li {
    font-size: 0.93rem;
    color: var(--text-muted);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    line-height: 1.5;
}

.detail-list li::before {
    content: '→';
    color: var(--primary-light);
    font-weight: 700;
    font-size: 0.85rem;
    margin-top: 1px;
    flex-shrink: 0;
}

.our-advantage {
    background: linear-gradient(135deg, #eef6ff, #f5f9ff);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    margin-top: 1.75rem;
    border-left: 4px solid var(--primary);
}

.our-advantage strong {
    display: block;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.our-advantage p {
    font-size: 0.93rem !important;
    margin-bottom: 0 !important;
    color: var(--text-main) !important;
}

/* ============================================================
   COMPARISON TABLE
   ============================================================ */
.comparison-wrapper {
    overflow-x: auto;
    margin-top: 40px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid #e2e8f0;
}

table { width: 100%; border-collapse: collapse; background: white; }

th, td {
    padding: 1.25rem 1.5rem;
    text-align: left;
    border-bottom: 1px solid #e8f0f7;
}

th {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: white;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

td:first-child {
    font-weight: 700;
    color: var(--primary-dark);
    width: 22%;
    font-size: 0.93rem;
}

tr:last-child td { border-bottom: none; }

tr:nth-child(even) { background: var(--bg-alt); }

.check-icon { color: #10b981; font-weight: 800; }

/* ============================================================
   PRICING & INSURANCE
   ============================================================ */
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.insurance-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.75rem;
}

.insurance-badge {
    background: var(--white);
    padding: 0.6rem 1.1rem;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    font-weight: 600;
    font-size: 0.83rem;
    color: var(--primary);
    border: 1px solid #e8f0f7;
    transition: var(--transition);
}

.insurance-badge:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-accordion {
    max-width: 880px;
    margin: 0 auto;
}

.faq-item-detailed {
    background: var(--white);
    margin-bottom: 0.75rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid #e8f0f7;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item-detailed:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--secondary);
}

.faq-item-detailed summary,
.faq-item-detailed h3 {
    color: var(--primary-dark);
    font-size: 1.05rem;
    padding: 1.5rem;
    cursor: pointer;
    list-style: none;
    position: relative;
    padding-right: 3rem;
}

.faq-item-detailed summary::after {
    content: '+';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--primary);
    line-height: 1;
}

details[open] summary::after { content: '−'; }

.faq-item-detailed p {
    color: var(--text-muted);
    font-size: 0.95rem;
    padding: 0 1.5rem 1.5rem;
    line-height: 1.75;
}

/* For non-details faq items */
.faq-item-detailed > h3 {
    margin-bottom: 0.5rem;
    padding: 1.5rem 1.5rem 0;
    cursor: default;
    font-size: 1.05rem;
}

.faq-item-detailed > h3 + p {
    padding-top: 0;
}

/* ============================================================
   TIMELINE
   ============================================================ */
.timeline {
    position: relative;
    max-width: 780px;
    margin: 48px auto;
    padding: 0 20px;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background: linear-gradient(180deg, var(--secondary), var(--primary), var(--secondary));
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.milestone-item {
    padding: 20px 40px;
    position: relative;
    background: inherit;
    width: 50%;
}

.milestone-item::after {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    right: -9px;
    background: var(--white);
    border: 4px solid var(--primary);
    top: 28px;
    border-radius: 50%;
    z-index: 1;
    box-shadow: 0 0 0 4px var(--secondary);
}

.left { left: 0; text-align: right; }
.right { left: 50%; }
.right::after { left: -9px; }

.milestone-content {
    padding: 1.5rem;
    background: var(--white);
    position: relative;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid #e8f0f7;
    transition: var(--transition);
}

.milestone-content:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--secondary);
}

.milestone-year {
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    color: var(--primary);
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
}

.milestone-content p {
    color: var(--text-muted);
    font-size: 0.93rem;
    line-height: 1.6;
}

/* ============================================================
   ACCREDITATION & VALUES
   ============================================================ */
.accreditation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2.5rem;
}

.accreditation-card {
    background: var(--white);
    padding: 2.25rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border-top: 4px solid var(--primary);
    transition: var(--transition);
}

.accreditation-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.accreditation-card h3 {
    color: var(--primary-dark);
    margin-bottom: 1.25rem;
    font-size: 1.25rem;
}

.award-item {
    background: var(--bg-alt);
    padding: 1.25rem;
    border-radius: var(--radius-sm);
    margin-top: 1rem;
    border-left: 3px solid var(--accent);
}

.award-item strong {
    display: block;
    color: var(--primary-dark);
    margin-bottom: 0.35rem;
    font-size: 0.95rem;
}

.award-item p {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.6;
}

.values-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.value-item-detail { margin-bottom: 1.5rem; }

.value-item-detail h3 {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    color: var(--primary-dark);
    margin-bottom: 0.875rem;
    font-size: 1.15rem;
}

.value-item-detail p {
    color: var(--text-muted);
    line-height: 1.7;
}

/* ============================================================
   CONTACT
   ============================================================ */
.channels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.75rem;
    margin-top: 2.5rem;
}

.channel-card {
    background: var(--white);
    padding: 2.25rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
    border: 1px solid #e8f0f7;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.875rem;
}

.channel-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.channel-card i {
    color: var(--primary);
    background: var(--secondary);
    padding: 1.1rem;
    border-radius: 50%;
}

.channel-card h3 {
    color: var(--primary-dark);
    font-size: 1.15rem;
}

.channel-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.65;
}

.channel-cta {
    margin-top: auto;
    font-weight: 700;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius-full);
    transition: var(--transition);
    font-size: 0.88rem;
}

.channel-cta:hover {
    background: var(--primary);
    color: white;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 4rem;
    align-items: start;
}

.contact-info-block {
    display: flex;
    flex-direction: column;
    gap: 2.25rem;
}

.info-item { display: flex; gap: 1.25rem; align-items: flex-start; }

.info-item i {
    color: var(--primary);
    flex-shrink: 0;
    background: var(--secondary);
    padding: 0.75rem;
    border-radius: var(--radius-sm);
    margin-top: 2px;
}

.info-item h4 {
    color: var(--primary-dark);
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.info-item p {
    font-size: 0.93rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ============================================================
   FORM ELEMENTS
   ============================================================ */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.full-width { grid-column: span 2; }

.form-group { display: flex; flex-direction: column; }

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-main);
    font-size: 0.88rem;
    letter-spacing: 0.01em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1.5px solid #e2e8f0;
    border-radius: var(--radius-sm);
    font-family: 'Inter', sans-serif;
    font-size: 0.93rem;
    color: var(--text-main);
    background: white;
    transition: var(--transition);
    appearance: none;
    -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(15,76,129,0.1);
}

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

.submit-btn {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--radius-md);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 14px rgba(15,76,129,0.3);
    letter-spacing: 0.01em;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(15,76,129,0.4);
}

.form-note {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 1.25rem;
    line-height: 1.6;
}

/* ============================================================
   RESPONSIVE — 1024px
   ============================================================ */
@media (max-width: 1024px) {
    .hero-text h1 { font-size: 2.75rem; }
    .section-headline { font-size: 2.1rem; }
    .page-hero h1 { font-size: 2.5rem; }
    .cta-text h2 { font-size: 2rem; }

    .trust-stats { grid-template-columns: repeat(2, 1fr); }
    .testimonials { grid-template-columns: repeat(2, 1fr); }

    .contact-container { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ============================================================
   RESPONSIVE — 768px (TABLET / MOBILE)
   ============================================================ */
@media (max-width: 768px) {
    .container { padding: 0 1.25rem; }
    .section { padding: 60px 0; }

    /* Navbar mobile */
    .nav-links {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: linear-gradient(160deg, #071e33 0%, #0a365c 50%, #0f4c81 100%);
        padding: 106px 2.5rem 3rem;
        gap: 0;
        z-index: 999;
        overflow-y: auto;
    }

    .nav-links.open { display: flex; }

    /* Decorative gold line at top of menu */
    .nav-links.open::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, #c8a851, #e8c96a, #c8a851);
    }

    .nav-link {
        padding: 1.15rem 0;
        font-family: 'Outfit', sans-serif;
        font-size: 1.3rem;
        font-weight: 700;
        color: rgba(255,255,255,0.82);
        border-bottom: 1px solid rgba(255,255,255,0.08);
        letter-spacing: -0.01em;
        width: 100%;
        border-radius: 0;
        background: none;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .nav-link::after {
        content: none;
    }

    /* Dropdown trigger: chevron sits inline beside text */
    .nav-dropdown-trigger::after { content: none !important; }

    .nav-link:hover { color: #e8c96a; }

    .nav-link.active {
        color: #e8c96a;
        font-weight: 800;
    }

    /* Book Appointment CTA inside mobile menu */
    .nav-links::after {
        content: '';
        display: block;
        margin-top: 2rem;
    }

    .mobile-menu-cta {
        display: flex !important;
        margin-top: 2rem;
        padding: 1rem 1.5rem;
        background: linear-gradient(135deg, #c8a851, #e8c96a);
        color: #0a365c !important;
        font-family: 'Outfit', sans-serif;
        font-size: 1.05rem;
        font-weight: 800;
        letter-spacing: 0.03em;
        border-radius: 14px;
        text-align: center;
        justify-content: center;
        box-shadow: 0 8px 24px rgba(200,168,81,0.4);
    }
    .mobile-menu-cta::after { display: none !important; }

    .nav-cta { display: none; }

    .mobile-toggle {
        display: flex;
        z-index: 1001;
        position: relative;
    }

    /* Mobile Dropdown */
    .nav-dropdown-wrap {
        width: 100%;
        flex-direction: column;
        align-items: center;
    }

    .nav-dropdown-trigger {
        width: 100%;
        justify-content: center !important;
        gap: 8px;
    }

    .nav-dropdown-trigger .nav-chevron {
        margin-left: 4px;
    }

    .nav-dropdown {
        /* reset ALL desktop absolute positioning */
        position: static !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        transform: none !important;
        min-width: unset !important;
        /* accordion collapse */
        opacity: 0;
        max-height: 0;
        overflow: hidden;
        pointer-events: none;
        background: rgba(255,255,255,0.06);
        border: 1px solid rgba(255,255,255,0.1);
        border-radius: 14px;
        margin: 4px 0 8px;
        padding: 0;
        width: 100%;
        box-shadow: none;
        backdrop-filter: none;
        transition: max-height 0.35s cubic-bezier(0.4,0,0.2,1), opacity 0.25s ease, padding 0.25s ease;
    }

    .nav-dropdown::before { display: none; }

    .nav-dropdown-wrap.open .nav-dropdown {
        opacity: 1 !important;
        max-height: 320px;
        pointer-events: all;
        padding: 8px 8px 6px;
    }

    .nav-dropdown-wrap.open .nav-chevron {
        transform: rotate(180deg);
    }

    .nav-dropdown-header {
        color: rgba(255,255,255,0.35);
        padding: 8px 10px 4px;
        text-align: center;
    }

    .nav-dropdown-item {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2px;
        padding: 10px 12px;
        border-radius: 10px;
        text-align: center;
    }

    .nav-dropdown-item:hover {
        background: rgba(255,255,255,0.08);
        transform: none;
    }

    /* hide icon on mobile — text-only centered layout */
    .ndi-icon { display: none; }

    .ndi-text {
        text-align: center;
        align-items: center;
        width: 100%;
    }
    .ndi-text strong {
        color: rgba(255,255,255,0.92);
        font-size: 1rem;
        font-weight: 700;
        display: block;
    }
    .ndi-text span {
        color: rgba(255,255,255,0.48);
        font-size: 0.8rem;
        display: block;
    }

    .ndi-badge {
        background: rgba(200,168,81,0.25);
        color: #e8c96a;
        border: 1px solid rgba(200,168,81,0.3);
        margin-top: 4px;
    }

    .nav-dropdown-footer {
        color: #e8c96a;
        border-top-color: rgba(255,255,255,0.08);
        border-radius: 0 0 10px 10px;
        font-size: 0.78rem;
        text-align: center;
    }

    .nav-dropdown-footer:hover {
        background: rgba(255,255,255,0.05);
        color: #fff;
    }

    /* Hero */
    .hero {
        padding: 100px 0 60px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .hero-text h1 { font-size: 2.1rem; }
    .hero-text p { font-size: 0.97rem; max-width: 100%; }
    .hero-actions { flex-direction: column; align-items: flex-start; }
    .hero-cta, .hero-cta-ghost { width: 100%; justify-content: center; }
    .hero-metrics { gap: 0; }
    .metric-item { padding-right: 1rem; }
    .metric-item:not(:first-child):not(:last-child) { padding-left: 1rem; }
    .metric-item:last-child { padding-left: 1rem; }
    .metric-value { font-size: 1.5rem; }

    .hero-image-wrapper img { height: 300px; }

    .hero-trust-line {
        font-size: 0.78rem;
        padding: 0.75rem 1rem;
        gap: 0.5rem;
        position: relative;
        bottom: auto;
        left: auto;
        right: auto;
        margin-top: 1rem;
        box-shadow: var(--shadow-sm);
    }

    /* Trust */
    .trust-stats { grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-bottom: 48px; }
    .testimonials { grid-template-columns: 1fr; }
    .trust-team-image img { height: 300px; object-position: center 12%; }

    /* Specialties */
    .specialties-grid { grid-template-columns: 1fr; }
    .concerns-grid { grid-template-columns: 1fr; }

    /* CTA */
    .cta-block {
        grid-template-columns: 1fr;
        margin: 48px 0;
    }

    .cta-text { padding: 2.5rem 2rem; }
    .cta-text h2 { font-size: 1.75rem; }

    .cta-image {
        max-height: 260px;
        order: -1;
    }

    .cta-buttons { flex-direction: column; }
    .btn-primary, .btn-secondary { text-align: center; }

    /* FAQ grid */
    .faq-grid { grid-template-columns: 1fr; }

    /* Visit */
    .visit-container { grid-template-columns: 1fr; gap: 2.5rem; }
    .visit-image img { height: 280px; }
    .visit-info h2 { font-size: 1.75rem; }

    /* Page hero */
    .page-hero h1 { font-size: 2rem; }
    .page-hero-image img { height: 240px; }
    .page-hero { padding: 96px 0 50px; }

    /* Specialty layout */
    .specialty-layout,
    .specialty-section:nth-child(even) .specialty-layout,
    .specialty-section:nth-child(odd) .specialty-layout {
        grid-template-columns: 1fr !important;
        grid-template-areas: "text" "image" !important;
    }

    .specialty-text h2 { font-size: 1.75rem; }
    .specialty-image img { height: 260px; }

    .specialty-meta { grid-template-columns: 1fr; }
    .service-detail-lists { grid-template-columns: 1fr; }

    /* Accreditation & Values */
    .accreditation-grid { grid-template-columns: 1fr; }
    .values-detail-grid { grid-template-columns: 1fr; }

    /* Timeline */
    .timeline::after { left: 31px; }
    .milestone-item { width: 100%; padding-left: 70px; padding-right: 15px; text-align: left; }
    .milestone-item::after { left: 21px; right: auto; }
    .right { left: 0; }

    /* Pricing */
    .pricing-grid { grid-template-columns: 1fr; }

    /* Section headline */
    .section-headline { font-size: 1.85rem; }

    /* Form */
    .form-grid { grid-template-columns: 1fr; }
    .full-width { grid-column: span 1; }

    /* Contact info block icon size */
    .info-item i { padding: 0.6rem; }

    /* Inline-grid overrides for patient-journey & other pages */
    .concerns-grid,
    [style*="grid-template-columns: repeat(3"] { grid-template-columns: 1fr !important; }

    .accreditation-grid,
    [style*="grid-template-columns: repeat(2, 1fr)"],
    [style*="grid-template-columns: 1fr 1fr"] { grid-template-columns: 1fr !important; }

    /* Treatment rooms visual break */
    [style*="grid-template-columns: 1fr 1fr"] { grid-template-columns: 1fr !important; }

    /* About doctor grid */
    .doctor-feature-grid,
    .about-story-grid { grid-template-columns: 1fr !important; gap: 2rem !important; }

    /* Contact page main grid */
    .contact-main-grid { grid-template-columns: 1fr !important; }

    /* Connect channels */
    .connect-grid { grid-template-columns: 1fr 1fr !important; }

    /* FAQ stats */
    .faq-stats-grid { grid-template-columns: 1fr 1fr !important; }

    /* About stats */
    .about-stats-grid { grid-template-columns: 1fr 1fr !important; }

    /* Nav logo size on mobile */
    .nav-logo-img { height: 66px !important; }
}

/* ============================================================
   RESPONSIVE — 480px (SMALL MOBILE)
   ============================================================ */
@media (max-width: 480px) {
    .container { padding: 0 1rem; }
    .section { padding: 48px 0; }

    .hero { padding: 108px 0 48px; }
    .hero-text h1 { font-size: 1.95rem; }

    .section-headline { font-size: 1.65rem; }
    .page-hero h1 { font-size: 1.7rem; }

    .trust-stats { grid-template-columns: 1fr 1fr; gap: 0.875rem; }
    .stat-card { padding: 1.5rem 1rem; }
    .stat-value { font-size: 1.6rem; }

    .specialty-card,
    .concern-card,
    .journey-step { padding: 1.5rem; }

    .cta-text { padding: 2rem 1.5rem; }
    .cta-text h2 { font-size: 1.5rem; }

    .faq-item, .testimonial-card { padding: 1.5rem; }

    .hero-metrics {
        flex-wrap: wrap;
        gap: 1.25rem;
    }

    .nav-logo-img { height: 60px !important; }

    /* All grids → single column on tiny screens */
    .connect-grid,
    .faq-stats-grid,
    .about-stats-grid { grid-template-columns: 1fr 1fr !important; }

    .contact-hero-actions { flex-direction: column; }
    .contact-hero-trust { gap: 1rem; }
    .trust-pill { font-size: 0.78rem; }
}

/* ============================================================
   COMPARISON TABLE — MOBILE CARD LAYOUT
   ============================================================ */
@media (max-width: 640px) {
    .comparison-wrapper {
        overflow: visible;
        box-shadow: none;
        border: none;
        border-radius: 0;
    }
    .comparison-wrapper table { display: block; min-width: 0; }
    .comparison-wrapper thead { display: none; }
    .comparison-wrapper tbody { display: flex; flex-direction: column; gap: 1rem; }
    .comparison-wrapper tr {
        display: block;
        border: 1px solid #dce8f5;
        border-radius: 18px;
        overflow: hidden;
        box-shadow: 0 4px 16px rgba(15,76,129,0.08);
        background: #ffffff;
    }
    .comparison-wrapper td {
        display: block;
        width: 100%;
        padding: 0.9rem 1.2rem;
        border-bottom: 1px solid #eef3fa;
        font-size: 0.88rem;
        box-sizing: border-box;
    }
    .comparison-wrapper td:first-child {
        background: linear-gradient(135deg, #0a365c, #0f4c81);
        color: #ffffff;
        font-family: 'Outfit', sans-serif;
        font-size: 0.95rem;
        font-weight: 700;
        letter-spacing: 0.01em;
        width: 100%;
        border-bottom: none;
    }
    .comparison-wrapper td:nth-child(2) {
        background: #f0f7ff;
    }
    .comparison-wrapper td:nth-child(2)::before {
        content: 'Signature Dental';
        display: block;
        font-family: 'Outfit', sans-serif;
        font-size: 0.7rem;
        font-weight: 700;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: #0f4c81;
        margin-bottom: 0.3rem;
    }
    .comparison-wrapper td:nth-child(3) {
        color: #64748b;
    }
    .comparison-wrapper td:nth-child(3)::before {
        content: 'Standard Provider';
        display: block;
        font-family: 'Outfit', sans-serif;
        font-size: 0.7rem;
        font-weight: 700;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: #94a3b8;
        margin-bottom: 0.3rem;
    }
    .comparison-wrapper tr:last-child td:last-child { border-bottom: none; }
    .comparison-wrapper .check-icon { display: none; }
}

/* ============================================================
   SMILE BANNER (Specialties section — was unconstrained image)
   ============================================================ */
.smile-banner {
    position: relative;
    margin-top: 56px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    height: 380px;
}

.smile-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    display: block;
    transition: transform 0.6s ease;
}

.smile-banner:hover img {
    transform: scale(1.03);
}

.smile-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        100deg,
        rgba(10, 54, 92, 0.82) 0%,
        rgba(15, 76, 129, 0.55) 50%,
        rgba(0, 0, 0, 0.08) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3.5rem 4rem;
}

.smile-banner-eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--accent);
    margin-bottom: 0.875rem;
}

.smile-banner-headline {
    font-family: 'Outfit', sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.03em;
    line-height: 1.18;
    max-width: 520px;
    margin-bottom: 1.75rem;
}

.smile-banner-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
    border: 1.5px solid rgba(255, 255, 255, 0.55);
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.92rem;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    width: fit-content;
    transition: var(--transition);
    letter-spacing: 0.02em;
}

.smile-banner-cta:hover {
    background: rgba(255, 255, 255, 0.24);
    border-color: rgba(255, 255, 255, 0.9);
    color: #ffffff;
    gap: 0.9rem;
}

@media (max-width: 768px) {
    .smile-banner { height: 280px; }
    .smile-banner-overlay { padding: 2rem 1.75rem; }
    .smile-banner-headline { font-size: 1.65rem; max-width: 100%; }
}

@media (max-width: 480px) {
    .smile-banner { height: 240px; }
    .smile-banner-headline { font-size: 1.4rem; }
}

/* ============================================================
   FLOATING SOCIAL SIDEBAR — PREMIUM
   ============================================================ */
.float-sidebar {
    position: fixed;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 490;
    display: flex;
    flex-direction: column;
    gap: 10px;
    /* glass card backing */
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(14px) saturate(160%);
    -webkit-backdrop-filter: blur(14px) saturate(160%);
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 22px;
    padding: 12px 10px;
    box-shadow: 0 8px 32px rgba(10,54,92,0.22), 0 2px 8px rgba(0,0,0,0.12);
}

.float-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    color: #ffffff;
    flex-shrink: 0;
    transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.25s ease;
    box-shadow: 0 4px 14px rgba(0,0,0,0.2);
}

.float-btn svg {
    width: 20px;
    height: 20px;
    fill: #ffffff;
    flex-shrink: 0;
    transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1);
    position: relative;
    z-index: 1;
}

.float-btn:hover {
    transform: translateY(-3px) scale(1.08);
    box-shadow: 0 10px 28px rgba(0,0,0,0.3);
}
.float-btn:hover svg { transform: scale(1.1); }
.float-btn:active { transform: scale(0.95); }

/* Shine overlay on each button */
.float-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(255,255,255,0.25) 0%, transparent 60%);
    pointer-events: none;
}

/* Brand colors */
.float-call { background: linear-gradient(145deg, #1565c0, #0f4c81); }
.float-fb   { background: linear-gradient(145deg, #1a8af5, #1877f2); }
.float-ig   { background: linear-gradient(145deg, #f09433, #e6683c 30%, #dc2743 55%, #cc2366 80%, #bc1888); }
.float-li   { background: linear-gradient(145deg, #0099d4, #0077b5); }

/* Tooltip label */
.float-btn::before {
    content: attr(data-label);
    position: absolute;
    right: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%) translateX(6px);
    background: #0a365c;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    white-space: nowrap;
    padding: 0.32rem 0.75rem;
    border-radius: 8px;
    box-shadow: 0 4px 14px rgba(10,54,92,0.3);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}
.float-btn:hover::before {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

/* Call button — stroke-based SVG needs no fill override */
.float-call svg { fill: none; stroke: #ffffff; }

@media (max-width: 768px) {
    .float-sidebar {
        right: 12px;
        top: auto;
        bottom: 72px;
        transform: none;
        padding: 10px 8px;
        gap: 8px;
        border-radius: 18px;
    }
    .float-btn { width: 42px; height: 42px; border-radius: 12px; }
    .float-btn svg { width: 18px; height: 18px; }
    .float-btn:hover { transform: none; box-shadow: 0 4px 14px rgba(0,0,0,0.2); }
    .float-btn::before { display: none; }
}
