:root {
  /* ---- Color tokens (sampled from the Apurva Dental Care logo) ---- */
    --maroon-900: #4a1729;
    --maroon-800: #5c1c34;
    --maroon-700: #7d2444;
    --maroon-600: #8b2b4b;   /* primary brand burgundy, from logo */
    --maroon-500: #a3395c;
    --maroon-100: #f4e4ea;
    --maroon-050: #faf1f4;

    --charcoal-900: #262a2a;
    --charcoal-800: #33393a;
    --charcoal-700: #454b4b;
    --charcoal-600: #505353;  /* logo charcoal */
    --charcoal-400: #767c7c;
    --charcoal-200: #b7bcbc;

    --gold-600: #a3814f;
    --gold-500: #b9986a;
    --gold-100: #efe4d2;
    --primary: #8b2b4b; 
    --maroon: #8b2b4b;
    --maroon-dark: #6b1f3a;
    --maroon-deep: #521730;
    --maroon-tint: #f6e9ed;
    --stone-50: #fbfaf8;
    --stone-100: #f5f2ee;
    --stone-200: #ece7e0;
    --white: #ffffff;
    --maroon: #8b2b4b;
    --maroon-dark: #6b1f3a;
    --maroon-deep: #521730;
    --cream: #fbf9f7;
    --paper: #ffffff;
    --blush: #f3e1e6;
    --gold: #b08a50;
    --gold-tint: #f1e7d6;
    --ok-line: #666;
    --line: #e7dfdd;
    --line-soft: #efe8e6;
    --charcoal: #323436;
    /* ---- Type ---- */
    --font-display: "Fraunces", "Iowan Old Style", ui-serif, Georgia, serif;
    --font-body: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

    /* ---- Radii & shadow ---- */
    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 32px;
    --shadow-soft: 0 20px 50px -25px rgba(38, 23, 30, 0.35);
    --shadow-card: 0 12px 30px -18px rgba(38, 23, 30, 0.28);
    --shadow-sm: 0 2px 10px rgba(43, 23, 30, 0.06);
    --shadow-md: 0 12px 34px rgba(43, 23, 30, 0.1);
    --shadow-lg: 0 24px 60px rgba(43, 23, 30, 0.16);

    --container: 1240px;
}

/* ---------------------------------------------------------------- */
/* Reset                                                             */
/* ---------------------------------------------------------------- */
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--charcoal-800);
    background: var(--stone-50);
    -webkit-font-smoothing: antialiased;
    line-height: 1.65;
    font-size: 16px;
}
img {
    max-width: 100%;
    display: block;
}
a {
    color: inherit;
    text-decoration: none;
}
ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
button {
    font-family: inherit;
    cursor: pointer;
}
input,
textarea,
select {
    font-family: inherit;
}
h1,
h2,
h3,
h4 {
    font-family: var(--font-display);
    color: var(--maroon-900);
    margin: 0 0 0.5em;
    font-weight: 600;
    letter-spacing: -0.01em;
}
p {
    margin: 0 0 1em;
}
:focus-visible {
    outline: 2px solid var(--maroon-600);
    outline-offset: 3px;
}
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 28px;
}
.container-wide {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 28px;
}
section {
    position: relative;
}
.container-narrow {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 24px;
}
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12.5px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--maroon-600);
    font-weight: 700;
    margin-bottom: 14px;
}
.eyebrow::before {
    content: "";
    width: 26px;
    height: 1px;
    background: var(--gold-600);
}
.faq-item {
    border-bottom: 1px solid var(--line);
    padding: 0px;
}
.faq-q {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 12px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    font-family: var(--font-display);
    font-size: 1.12rem;
    color: var(--maroon-deep);
    cursor: pointer;
}
.faq-q .plus {
    flex: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1.5px solid var(--maroon);
    position: relative;
}
.faq-q .plus::before,
.faq-q .plus::after {
    content: "";
    position: absolute;
    background: var(--maroon);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.2s ease;
}
.faq-q .plus::before {
    width: 12px;
    height: 2px;
}
.faq-q .plus::after {
    width: 2px;
    height: 12px;
}
.faq-item.open .plus::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.faq-a p {
    padding: 0 0 20px;
    color: var(--charcoal);
    font-size: 0.94rem;
    max-width: 800px;
}
.faq-item.open .faq-a {
    max-height: 400px;
}
.sparkle {
    color: var(--gold-600);
    font-size: 0.9em;
}

h1.h1,
.h1 {
    font-size: clamp(2.4rem, 4vw, 3.6rem);
    line-height: 1.06;
}
h2.h2,
.h2 {
    font-size: clamp(1.9rem, 3vw, 2.7rem);
    line-height: 1.15;
}
h3.h3,
.h3 {
    font-size: clamp(1.25rem, 1.6vw, 1.55rem);
    line-height: 1.3;
}
.lede {
    font-size: 1.15rem;
    color: var(--charcoal-700);
    max-width: 640px;
}
.section-head {
    max-width: 760px;
    margin-bottom: 48px;
}
.section-head.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* ---------------------------------------------------------------- */
/* Buttons                                                           */
/* ---------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 26px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 14.5px;
    border: 1.5px solid transparent;
    transition: all 0.25s ease;
    white-space: nowrap;
    letter-spacing: 0.01em;
}
.btn-primary {
    background: var(--maroon-600);
    color: var(--white);
}
.btn-primary:hover {
    background: var(--maroon-800);
    transform: translateY(-2px);
    box-shadow: var(--shadow-card);
}
.btn-outline {
    background: transparent;
    color: var(--maroon-800);
    border-color: var(--maroon-800);
}
.btn-outline:hover {
    background: var(--maroon-800);
    color: var(--white);
    transform: translateY(-2px);
}
.btn-ghost-light {
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(6px);
}
.btn-ghost-light:hover {
    background: var(--white);
    color: var(--maroon-800);
}
.btn-gold {
    background: var(--gold-600);
    color: var(--white);
}
.btn-gold:hover {
    background: var(--maroon-800);
}
.btn-sm {
    padding: 10px 18px;
    font-size: 13px;
}
.btn-block {
    width: 100%;
}

/* ---------------------------------------------------------------- */
/* Header / Nav                                                      */
/* ---------------------------------------------------------------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 500;
    background: rgba(251, 250, 248, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--ok-line);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 12px 28px;
    max-width: 1440px;
    margin: 0 auto;
}
.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.brand img {
    height: 76px;
    width: auto;
}
.brand-word {
    display: none;
}

.nav-primary {
    display: flex;
    align-items: center;
    gap: 2px;
    flex: 1;
    justify-content: center;
    white-space: nowrap;
}
.nav-primary > li {
    position: relative;
}
.nav-primary > li > a,
.nav-primary > li > button {
    display: flex;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    color: var(--charcoal-800);
    font-size: 14.5px;
    font-weight: 600;
    padding: 10px 13px;
    border-radius: 999px;
    transition: all 0.2s ease;
}
.nav-primary > li > a:hover,
.nav-primary > li > button:hover,
.nav-primary > li.open > button {
    background: var(--maroon-100);
    color: var(--maroon-800);
}
.caret {
    width: 9px;
    height: 9px;
    border-right: 1.6px solid currentColor;
    border-bottom: 1.6px solid currentColor;
    transform: rotate(45deg);
    margin-top: -3px;
    transition: transform 0.2s;
}
.nav-primary > li.open .caret {
    transform: rotate(-135deg);
    margin-top: 3px;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1.5px solid var(--ok-line);
    color: var(--maroon-800);
    transition: all 0.2s;
}
.icon-btn:hover {
    background: var(--maroon-800);
    color: var(--white);
    border-color: var(--maroon-800);
}
.icon-btn svg {
    width: 18px;
    height: 18px;
}

.nav-toggle {
    display: none;
}

/* Mega menu */
.mega-panel {
    position: absolute;
    top: calc(100% + 14px);
    left: 140%;
    transform: translateX(-50%);
    width: min(1090px, 92vw);
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--ok-line);
    padding: 32px;
    display: none;
    grid-template-columns: repeat(5, 1fr);
    gap: 26px 24px;
    max-height: 78vh;
    overflow-y: auto;
}
.nav-primary > li.open .mega-panel {
    display: grid;
}
.mega-col h4 {
    font-family: var(--font-body);
    font-size: 11.5px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold-600);
    font-weight: 800;
    margin-bottom: 12px;
    white-space: nowrap;
}
.mega-col ul li a {
    display: block;
    padding: 6px 0;
    font-size: 15px;
    color: var(--charcoal-700);
    border-bottom: 1px dashed transparent;
    line-height: 1.3;
}
.mega-col ul li a:hover {
    color: var(--maroon-700);
    border-color: var(--maroon-100);
    padding-left: 4px;
}
.mega-concern {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 16px 28px;
    align-items: start;
    border-top: 1px solid var(--ok-line);
    margin-top: 4px;
    padding-top: 22px;
}
.mega-concern h4 {
    color: var(--maroon-700);
    grid-column: 1 / -1;
    margin-bottom: 8px;
}
.mega-concern ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
}
.mega-concern ul li a {
    font-size: 13px;
    white-space: nowrap;
}
.mega-cta {
    align-self: center;
}
.mega-cta .btn {
    white-space: nowrap;
}
@media (max-width: 1300px) {
    .mega-panel {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ---------------------------------------------------------------- */
/* Mobile nav                                                        */
/* ---------------------------------------------------------------- */
@media (max-width: 1080px) {
    .nav-primary {
        display: none;
        position: fixed;
        inset: 0 0 0 auto;
        width: min(360px, 88vw);
        background: var(--white);
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        padding: 100px 26px 30px;
        overflow-y: auto;
        box-shadow: -20px 0 50px rgba(0, 0, 0, 0.2);
        z-index: 700;
        gap: 2px;
    }
    .nav-primary.mobile-open {
        display: flex;
    }
    .nav-primary > li > a,
    .nav-primary > li > button {
        width: 100%;
        justify-content: space-between;
        padding: 14px 6px;
        border-radius: 0;
        border-bottom: 1px solid var(--stone-200);
        font-size: 16px;
    }
    .mega-panel {
        position: static;
        transform: none;
        width: 100%;
        box-shadow: none;
        border: none;
        display: none;
        grid-template-columns: 1fr;
        padding: 6px 0 6px 12px;
    }
    .nav-primary > li.open .mega-panel {
        display: grid;
    }
    .nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        border-radius: 50%;
        border: 1.5px solid var(--ok-line);
        background: none;
        flex-shrink: 0;
    }
    .nav-toggle span,
    .nav-toggle span::before,
    .nav-toggle span::after {
        content: "";
        display: block;
        width: 18px;
        height: 2px;
        background: var(--maroon-800);
        position: relative;
        transition: 0.2s;
    }
    .nav-toggle span::before {
        position: absolute;
        top: -6px;
    }
    .nav-toggle span::after {
        position: absolute;
        top: 6px;
    }
    .brand-word {
        display: block;
        font-family: var(--font-display);
        font-weight: 700;
        color: var(--maroon-800);
        font-size: 17px;
    }
    .header-cta .btn-label {
        display: none;
    }
    .nav-scrim {
        position: fixed;
        inset: 0;
        background: rgba(38, 23, 30, 0.45);
        z-index: 499;
        display: none;
    }
    .nav-scrim.show {
        display: block;
    }
}
@media (min-width: 1081px) {
    .header-cta .icon-btn.call-only,
    .header-cta .icon-btn.wa-only {
        display: none;
    }
}
@media (max-width: 640px) {
    .header-inner {
        padding: 10px 16px;
    }
    .brand img {
        height: 38px;
    }
}

/* ---------------------------------------------------------------- */
/* Hero (shield-arch signature)                                      */
/* ---------------------------------------------------------------- */
.hero {
    padding: 56px 0 90px;
    background: radial-gradient(1100px 500px at 82% -10%, var(--maroon-050) 0%, transparent 60%), var(--stone-50);
    overflow: clip;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    gap: 56px;
    align-items: center;
}
.hero-copy .h1 {
    margin-bottom: 20px;
}
.hero-copy .h1 em {
    font-style: italic;
    color: var(--maroon-600);
}
.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin: 30px 0 34px;
}
.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 22px 30px;
    padding-top: 26px;
    border-top: 1px solid var(--ok-line);
}
.hero-trust .stat b {
    text-align: center;
    display: block;
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--maroon-800);
}
.hero-trust .stat span {
    font-size: 14.5px;
    color: var(--charcoal-600);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.shield-frame {
    position: relative;
    border-radius: 220px 220px var(--radius-lg) var(--radius-lg) / 130px 130px var(--radius-lg) var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 8px solid var(--white);
    aspect-ratio: 4/5;
}
.shield-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.shield-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(38, 23, 30, 0) 55%, rgba(38, 23, 30, 0.55) 100%);
}
.hero-visual {
    position: relative;
}
.hero-badge {
    position: absolute;
    left: -18px;
    bottom: 34px;
    z-index: 3;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    padding: 18px 22px;
    display: flex;
    align-items: center;
    gap: 14px;
    max-width: 250px;
}
.hero-badge .num {
    font-family: var(--font-display);
    font-size: 1.9rem;
    color: var(--maroon-700);
    line-height: 1;
}
.hero-badge .cap {
    font-size: 15px;
    color: var(--maroon-800);
    line-height: 1.44;
    font-weight: 700;
}
.hero-float-card {
    position: absolute;
    top: 24px;
    right: -16px;
    z-index: 3;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(6px);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    box-shadow: var(--shadow-card);
    font-size: 13px;
    font-weight: 700;
    color: var(--maroon-800);
    display: flex;
    align-items: center;
    gap: 8px;
}
@media (max-width: 980px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }
    .hero-visual {
        order: -1;
        max-width: 480px;
        margin: 0 auto;
    }
    .hero-badge {
        left: 8px;
    }
    .hero-float-card {
        right: 8px;
    }
}



/* ---------------------------------------------------------------- */
/* Services                                                         */
/* ---------------------------------------------------------------- */

.services-card {
    background: var(--paper);
    overflow: hidden;
    border: 1px solid var(--line-soft);
    display: flex;
    flex-direction: column;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
    border-radius: 220px 220px var(--radius-lg) var(--radius-lg) / 130px 130px var(--radius-md) var(--radius-md);
    padding: 5px;
}
.services-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}
.services-card .thumb {
    /*aspect-ratio: 5/3.4;*/
    overflow: hidden;
}
.services-card .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    border-radius: 220px 220px var(--radius-lg) var(--radius-lg) / 130px 130px 0 0;
}
.services-card:hover .thumb img {
    transform: scale(1.06);
}
.services-card .body {
    padding: 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.services-card .cat {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    color: var(--gold);
    font-weight: 800;
    margin-bottom: 8px;
}
.services-card h3 {
    font-size: 1.02rem;
    margin-bottom: 8px;
}
.services-card p {
    color: var(--charcoal);
    font-size: 0.88rem;
    margin-bottom: 16px;
}
.more {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: var(--maroon);
    font-size: 0.86rem;
}
.more svg {
    width: 16px;
    height: 16px;
    transition: transform 0.2s ease;
    margin-top: 10px;
}
a:hover .more svg,
.more:hover svg,
.service-card:hover .more svg,
.doctor-card:hover .more svg,
.blog-card:hover .more svg {
    transform: translateX(4px);
}


/* ---------------------------------------------------------------- */
/* Trust bar                                                         */
/* ---------------------------------------------------------------- */
.trust-bar {
    background: var(--maroon-900);
    color: var(--stone-100);
    padding: 26px 0;
}
.trust-bar .container-wide {
    display: flex;
    flex-wrap: wrap;
    gap: 22px 40px;
    justify-content: space-between;
    align-items: center;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
    color: var(--stone-100);
    opacity: 0.92;
}
.trust-item svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--gold-500);
}

/* ---------------------------------------------------------------- */
/* Cards                                                              */
/* ---------------------------------------------------------------- */
.card {
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    border: 1px solid var(--stone-200);
}
.grid {
    display: grid;
    gap: 26px;
}
.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}
.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}
.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 980px) {
    .grid-3,
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 620px) {
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
}

.service-card {
    padding: 30px 26px;
    border-radius: var(--radius-md);
    background: var(--white);
    border: 1px solid var(--stone-200);
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-soft);
    border-color: var(--maroon-100);
}
.service-card .icon-badge {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: var(--maroon-050);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    color: var(--maroon-700);
}
.service-card .icon-badge svg {
    width: 26px;
    height: 26px;
}
.service-card h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
}
.service-card p {
    font-size: 14px;
    color: var(--charcoal-600);
    margin-bottom: 14px;
}
.service-card .card-link {
    font-size: 15px;
    font-weight: 700;
    color: var(--maroon-700);
    display: inline-flex;
    gap: 6px;
    align-items: center;
}
.card-link.v2{
    display: flex;
    gap: 10px;
}
.card-link.v2 img{
    width: 24px;
}
.card-link{
    display: flex;
}
.card-link svg{
    width: 27px;
}
.card .icon-badge svg{
    width: 64px;
    height: 64px;
}
.service-card .card-link svg {
    width: 14px;
    height: 14px;
    transition: transform 0.2s;
}
.service-card:hover .card-link svg {
    transform: translateX(4px);
}
.section-pad{
    padding: 86px 0;
}
.section {
    padding: 86px 0;
}
.section-tight {
    padding: 64px 0;
}
.bg-stone {
    background: var(--stone-100);
}
.bg-maroon {
    background: var(--maroon-900);
    color: var(--stone-100);
}
.bg-maroon h2,
.bg-maroon h3,
.bg-maroon .h2 {
    color: var(--white);
}

/* ---------------------------------------------------------------- */
/* Founder / Doctor sections                                         */
/* ---------------------------------------------------------------- */
.founder-block {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 56px;
    align-items: center;
}
.founder-photo {
    position: relative;
}
.founder-photo .shield-frame {
    aspect-ratio: 3/4;
}
.founder-quote {
    position: relative;
    font-family: var(--font-display);
    font-size: 1.35rem;
    line-height: 1.5;
    color: var(--maroon-900);
    font-style: italic;
    padding-left: 26px;
    border-left: 3px solid var(--gold-600);
    margin: 22px 0;
}
.signature-line {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.15rem;
    color: var(--maroon-700);
    margin-top: 18px;
}
@media (max-width: 900px) {
    .founder-block {
        grid-template-columns: 1fr;
    }
    .founder-photo {
        max-width: 380px;
        margin: 0 auto;
    }
}

.doctor-card {
    text-align: left;
    overflow: hidden;
}
.doctor-card .photo-wrap {
    /*aspect-ratio: 3/4;*/
    overflow: hidden;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}
.doctor-card .photo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.doctor-card:hover .photo-wrap img {
    transform: scale(1.05);
}
.doctor-card .doc-body {
    padding: 22px 22px 26px;
}
.doctor-card .doc-role {
    color: var(--maroon-700);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 8px;
}
.doctor-card h3 {
    font-size: 1.2rem;
    margin-bottom: 4px;
}
.doctor-card .focus-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 12px 0 16px;
}
.doctor-card svg{
    width: 27px;
}
.focus-tag {
    font-size: 11.5px;
    padding: 5px 11px;
    border-radius: 999px;
    background: var(--maroon-050);
    color: var(--maroon-700);
    font-weight: 700;
    margin-bottom: 8px;
}

/* ---------------------------------------------------------------- */
/* Before / After                                                    */
/* ---------------------------------------------------------------- */
.ba-card {
    overflow: hidden;
}
.ba-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.ba-images figure {
    margin: 0;
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
}
.ba-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ba-images figcaption {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(38, 23, 30, 0.75);
    color: #fff;
    font-size: 10.5px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 800;
    padding: 5px 10px;
    border-radius: 999px;
}
.ba-images figure.after figcaption {
    background: var(--maroon-600);
}
.ba-meta {
    padding: 18px 20px;
}
.ba-meta .cat {
    font-size: 11.5px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gold-600);
    font-weight: 800;
}
.ba-meta h3 {
    font-size: 1.05rem;
    margin: 4px 0 0;
}

.filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 36px;
}
.filter-chip {
    padding: 9px 18px;
    border-radius: 999px;
    border: 1.5px solid var(--ok-line);
    font-size: 15px;
    font-weight: 700;
    background: var(--white);
    color: var(--charcoal-700);
    transition: all 0.2s;
}
.filter-chip.active,
.filter-chip:hover {
    background: var(--maroon-800);
    color: var(--white);
    border-color: var(--maroon-800);
}

.disclaimer-box {
    background: var(--stone-100);
    border: 1px dashed var(--ok-line);
    border-radius: var(--radius-sm);
    padding: 18px 22px;
    font-size: 13px;
    color: var(--charcoal-600);
    display: flex;
    gap: 12px;
    align-items: flex-start;
}
.disclaimer-box svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--gold-600);
}

/* ---------------------------------------------------------------- */
/* Journey / steps                                                   */
/* ---------------------------------------------------------------- */
.journey {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    counter-reset: step;
    position: relative;
}
.journey::before {
    content: "";
    position: absolute;
    top: 34px;
    left: 8%;
    right: 8%;
    height: 1px;
    background: repeating-linear-gradient(90deg, var(--ok-line) 0 8px, transparent 8px 16px);
    z-index: 0;
}
.journey-step {
    position: relative;
    text-align: center;
    padding: 0 16px;
    z-index: 1;
}
.journey-num {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: var(--white);
    border: 1.5px solid var(--maroon-100);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--maroon-700);
    box-shadow: var(--shadow-card);
}
.journey-step h3 {
    font-size: 1.05rem;
}
.journey-step p {
    font-size: 15px;
    color: var(--charcoal-600);
}
@media (max-width: 900px) {
    .journey {
        grid-template-columns: 1fr 1fr;
        row-gap: 40px;
    }
    .journey::before {
        display: none;
    }
}
@media (max-width: 560px) {
    .journey {
        grid-template-columns: 1fr;
    }
}

/* ---------------------------------------------------------------- */
/* Testimonials & video grid                                         */
/* ---------------------------------------------------------------- */
.video-card {
    overflow: hidden;
    position: relative;
    /*aspect-ratio: 9/12;
    background: var(--charcoal-900);
    border-radius: var(--radius-md);*/
}
.video-card .vc-fill {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, var(--maroon-800), var(--charcoal-900));
    opacity: 0.9;
}
.video-card .vc-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 18px;
    color: #fff;
}
.play-btn {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    backdrop-filter: blur(4px);
}
.play-btn svg {
    width: 20px;
    height: 20px;
    margin-left: 3px;
}
.vc-label {
    font-size: 12px;
    opacity: 0.85;
}
.vc-title {
    font-weight: 700;
    font-size: 14.5px;
}

.quote-card {
    padding: 28px;
}
.quote-stars {
    color: var(--gold-600);
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 12px;
}
.quote-card .quote-text p{
    font-family: var(--font-display);
    font-style: italic;
    color: var(--charcoal-800);
    font-size: 1.05rem;
}
.quote-person {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
}
.quote-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--maroon-100);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    color: var(--maroon-700);
    font-weight: 700;
}

/* ---------------------------------------------------------------- */
/* Footer                                                             */
/* ---------------------------------------------------------------- */
.site-footer {
    /*background: var(--charcoal-900);*/
    background: #3a0e1e;
    color: var(--stone-200);
    padding: 76px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr 1.1fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-brand img {
    height: 70px;
    margin-bottom: 16px;
    filter: brightness(0) invert(1);
}
.footer-brand p {
    font-size: 15px;
    color: var(--charcoal-200);
}
.footer-col h4 {
    color: var(--white);
    font-family: var(--font-body);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 18px;
}
.footer-col ul li {
    margin-bottom: 10px;
}
.footer-col ul li a {
    font-size: 15px;
    color: var(--charcoal-200);
    transition: color 0.2s;
}
.footer-col ul li a:hover {
    color: var(--gold-500);
}
.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}
.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer-social a:hover {
    background: var(--maroon-600);
    border-color: var(--maroon-600);
}
.footer-social svg {
    width: 16px;
    height: 16px;
}
.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 0 20px;
    font-size: 12.5px;
    color: var(--charcoal-200);
}
.footer-bottom span{
    line-height: 15px;
    padding-top: 15px;
}
.footer-bottom a {
    color: var(--charcoal-200);
}
.footer-bottom a:hover {
    color: var(--gold-500);
}
.footer-legal {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
@media (max-width: 980px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 560px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* ---------------------------------------------------------------- */
/* Mobile sticky CTA                                                  */
/* ---------------------------------------------------------------- */
.sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 600;
    display: none;
}
.sticky-cta .row {
    display: grid;
    grid-template-columns: 1fr 1fr 1.3fr;
    background: var(--white);
    box-shadow: 0 -12px 30px rgba(0, 0, 0, 0.12);
}
.sticky-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 14px 2px;
    font-size: 13px;
    font-weight: 800;
    border-right: 1px solid var(--stone-200);
    color: var(--charcoal-800);
}
.sticky-cta a:last-child {
    border-right: none;
    background: var(--maroon-700);
    color: var(--white);
}
.sticky-cta svg {
    width: 16px;
    height: 16px;
}
@media (max-width: 760px) {
    .sticky-cta {
        display: block;
    }
    body {
        padding-bottom: 58px;
    }
}

/* ---------------------------------------------------------------- */
/* Inner page hero (secondary pages)                                 */
/* ---------------------------------------------------------------- */
.page-hero {
    padding: 90px 0 70px;
    position: relative;
    overflow: clip;
    background: linear-gradient(180deg, var(--maroon-900), var(--maroon-800));
    color: var(--stone-100);
    margin-top: -1px;
}
.page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.1;
    mix-blend-mode: overlay;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.5) 1px, transparent 1.4px);
    background-size: 22px 22px;
    z-index: -1;
}
.page-hero .eyebrow {
    color: var(--gold-500);
}
.page-hero .eyebrow::before {
    background: var(--gold-500);
}
.page-hero h1 {
    color: var(--white);
    max-width: 780px;
}
.page-hero p.lede {
    color: rgba(255, 255, 255, 0.82);
}
.breadcrumb{
    display: none;
}
.breadcrumbs {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 18px;
    display: none;
}
.breadcrumbs a {
    color: rgba(255, 255, 255, 0.75);
}
.breadcrumbs a:hover {
    color: var(--white);
}

.page-hero.compact {
    padding: 80px 0 54px;
}

/* ---------------------------------------------------------------- */
/* Content pages (services, doctor detail, legal, blog)              */
/* ---------------------------------------------------------------- */

.answer-block {
    background: var(--stone-100);
    border-left: 3px solid var(--maroon-600);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    padding: 18px 22px;
    margin: 1.6em 0;
}
.answer-block p:last-child {
    margin-bottom: 0;
}
.answer-block .aq {
    font-weight: 800;
    color: var(--maroon-800);
    display: block;
    margin-bottom: 6px;
    font-size: 0.98rem;
}

.faq-item {
    border-bottom: 1px solid var(--stone-200);
}
.faq-item summary {
    cursor: pointer;
    font-weight: 700;
    color: var(--maroon-900);
    font-size: 1.02rem;
    display: flex;
    justify-content: space-between;
    gap: 14px;
    list-style: none;
}
.faq-item summary::-webkit-details-marker {
    display: none;
}
.faq-item summary::after {
    content: "+";
    font-size: 1.4rem;
    color: var(--maroon-600);
    font-weight: 400;
}
.faq-item[open] summary::after {
    content: "–";
}
.faq-item .faq-a {
    margin-top: 12px;
    color: var(--charcoal-700);
    font-size: 0.98rem;
}

.sidebar-card {
    background: var(--white);
    border: 1px solid var(--stone-200);
    border-radius: var(--radius-md);
    padding: 26px;
    box-shadow: var(--shadow-card);
}
.sidebar-card ul li svg{
    width: 28px;
}
.sidebar-card ul li {
    margin-bottom: 10px;
    display: flex;
}
.sidebar-card ul li a {
    font-size: 14px;
    color: var(--charcoal-700);
    font-weight: 600;
    display: flex;
}
.sidebar-card ul li a:hover {
    color: var(--maroon-700);
}

.two-col-content {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 60px;
    align-items: start;
}
@media (max-width: 940px) {
    .two-col-content {
        grid-template-columns: 1fr;
    }
}

.mini-cta-band {
    background: var(--maroon-050);
    border-radius: var(--radius-md);
    padding: 34px;
    text-align: center;
    margin: 3em 0;
    border: 1px solid var(--maroon-100);
}
.mini-cta-band h3 {
    margin-bottom: 8px;
}

/* ---------------------------------------------------------------- */
/* Contact                                                            */
/* ---------------------------------------------------------------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 46px;
}
.form-field {
    margin-bottom: 18px;
}
.form-field label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--charcoal-800);
    margin-bottom: 6px;
}
.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 13px 16px;
    border-radius: 12px;
    border: 1.5px solid var(--ok-line);
    background: var(--white);
    font-size: 14.5px;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: var(--maroon-600);
}
.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.consent-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 12.5px;
    color: var(--charcoal-600);
    margin-bottom: 20px;
}
.map-embed {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--stone-200);
}
@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .form-row-2 {
        grid-template-columns: 1fr;
    }
}

/* ---------------------------------------------------------------- */
/* Clinic tour gallery                                                */
/* ---------------------------------------------------------------- */
.masonry {
    columns: 3 220px;
    column-gap: 20px;
}
.masonry figure {
    margin: 0 0 20px;
    break-inside: avoid;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-card);
}
.masonry figure figcaption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 14px 16px;
    background: linear-gradient(0deg, rgba(38, 23, 30, 0.85), transparent);
    color: #fff;
    font-size: 12.5px;
    font-weight: 700;
}
@media (max-width: 700px) {
    .masonry {
        columns: 2 160px;
    }
}

/* ---------------------------------------------------------------- */
/* Blog                                                               */
/* ---------------------------------------------------------------- */
.blog-card {
    background: var(--paper);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--line-soft);
}
.blog-card .thumb {
    aspect-ratio: 16/10;
    overflow: hidden;
}
.blog-card .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.blog-card .body {
    padding: 24px;
}
.blog-meta {
    font-size: 0.76rem;
    color: var(--gold);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 10px;
}
.blog-card h3 {
    font-size: 1.10rem;
    line-height: 1.4;
    margin-bottom: 10px;
}
.blog-card p {
    font-size: 0.88rem;
    color: var(--charcoal);
}
.focus_treatments ul{
    padding-left: 0px !important;
    list-style: none;
}
.focus_treatments ul li{
    list-style: none !important;
    display: inline-block;
    padding: 10px 18px;
}
.focus_treatments ul li a{
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 700;
    background: transparent;
    color: var(--maroon-800);
    border: 1px solid var(--maroon-800);
    border-radius: 999px;
}
.focus_treatments ul li a:hover{
    background: var(--maroon-800);
    color: var(--white);
    transform: translateY(-2px);
}
.prose.w-100 {
    max-width: inherit;
    margin: 0 auto;
}
.prose {
    max-width: 860px;
    margin: 0 auto;
}
.prose ul li{
    list-style: disc;
    padding-left: 0px;
}
.prose ol li{
    list-style: decimal;
    padding-left: 0px;
}
.prose h2 {
    margin-top: 1em;
}
.prose h3 {
    margin-top: 1em;
    color: var(--maroon-deep);
}
.prose p {
    color: var(--charcoal-deep);
    font-size: 1.02rem;
}
.prose ul,
.prose ol {
    margin: 0 0 1.4em;
    padding-left: 15px;
    color: var(--charcoal-deep);
}
.prose li {
    margin-bottom: 0.5em;
}
.prose img {
    border-radius: var(--radius-md);
    margin: 0 0 2em;
}

/* ---------------------------------------------------------------- */
/* Utilities                                                          */
/* ---------------------------------------------------------------- */
.text-center {
    text-align: center;
}
.mt-0 {
    margin-top: 0;
}
.flex {
    display: flex;
}
.items-center {
    align-items: center;
}
.gap-10 {
    gap: 10px;
}
.small-muted {
    font-size: 12.5px;
    color: var(--charcoal-400);
}
.divider {
    height: 1px;
    background: var(--ok-line);
    margin: 60px 0;
}
.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--maroon-050);
    color: var(--maroon-700);
    font-size: 12px;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 999px;
}
.skip-link {
    position: absolute;
    left: -999px;
    top: 0;
    background: var(--maroon-800);
    color: #fff;
    padding: 12px 18px;
    z-index: 999;
}
.skip-link:focus {
    left: 12px;
    top: 12px;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}
.reveal.in {
    opacity: 1;
    transform: translateY(0);
}

::selection {
    background: var(--maroon-600);
    color: #fff;
}

.why_apurva .card img{
    width: 78px;
    height: 78px;
}

/* ==========================================================================
   SPLIT SECTIONS (image + text)
   ========================================================================== */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.split.reverse .split-media {
    order: 2;
}
.split-media img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    width: 100%;
    aspect-ratio: 5/4.6;
    object-fit: cover;
}
.split-list {
    display: grid;
    gap: 16px;
    margin: 26px 0 30px;
}
.split-list li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    font-size: 0.96rem;
    color: var(--charcoal-deep);
}
.check {
    flex: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--maroon-tint);
    color: var(--maroon);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}
.check svg {
    width: 12px;
    height: 12px;
}
@media (max-width: 900px) {
    .split {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .split.reverse .split-media {
        order: 0;
    }
}
.feature-card {
    background: var(--paper);
    border-radius: var(--radius-md);
    padding: 30px 26px;
    border: 1px solid var(--line-soft);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}
.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}
.feature-ico {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: var(--maroon-tint);
    color: var(--maroon);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    line-height: 0px;
}
.feature-ico svg {
    width: 26px;
    height: 26px;
}
.feature-card h3 {
    margin-bottom: 10px;
    font-size: 1.10rem;
    line-height: 1.4;
}
.feature-card p {
    color: var(--charcoal);
    font-size: 0.92rem;
    margin-bottom: 0;
}
/* Padding Top */
.pt-0 { padding-top: 0 !important; }
.pt-1 { padding-top: 0.25rem !important; } /* 4px */
.pt-2 { padding-top: 0.5rem !important; }  /* 8px */
.pt-3 { padding-top: 1rem !important; }    /* 16px */
.pt-4 { padding-top: 1.5rem !important; }  /* 24px */
.pt-5 { padding-top: 3rem !important; }    /* 48px */

/* Padding Bottom */
.pb-0 { padding-bottom: 0 !important; }
.pb-1 { padding-bottom: 0.25rem !important; }
.pb-2 { padding-bottom: 0.5rem !important; }
.pb-3 { padding-bottom: 1rem !important; }
.pb-4 { padding-bottom: 1.5rem !important; }
.pb-5 { padding-bottom: 3rem !important; }

@media (min-width: 768px) {
    .pt-md-0 { padding-top: 0 !important; }
    .pt-md-1 { padding-top: 0.25rem !important; }
    .pt-md-2 { padding-top: 0.5rem !important; }
    .pt-md-3 { padding-top: 1rem !important; }
    .pt-md-4 { padding-top: 1.5rem !important; }
    .pt-md-5 { padding-top: 3rem !important; }

    .pb-md-0 { padding-bottom: 0 !important; }
    .pb-md-1 { padding-bottom: 0.25rem !important; }
    .pb-md-2 { padding-bottom: 0.5rem !important; }
    .pb-md-3 { padding-bottom: 1rem !important; }
    .pb-md-4 { padding-bottom: 1.5rem !important; }
    .pb-md-5 { padding-bottom: 3rem !important; }
}
.w-100{
    width: 100%;
}
.banner_form{
    position: relative;
    z-index: 9;
}
.banner_form h3{
    font-size: 30px;
}
.banner_form .form-field label{
    color: var(--white);
}
.banner_form .form-field input, 
.banner_form .form-field select, 
.banner_form .form-field textarea {
    width: 100%;
    padding: 13px 16px;
    border-radius: 12px;
    border: 1.5px solid var(--cream);
    background: var(--white);
    font-size: 14.5px;
}
.banner_form .btn-primary:hover{
    background-color: var(--cream);
    color: var(--maroon);
}
.white{
    color: var(--white);
}
/* ==========================================================================
   SERVICE DETAIL PAGE
   ========================================================================== */
.service-hero {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 54px;
    align-items: center;
}
.service-hero img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    width: 100%;
    aspect-ratio: 5/4.3;
    object-fit: cover;
}
.meta-strip {
    display: flex;
    gap: 26px;
    flex-wrap: wrap;
    margin: 26px 0;
    padding: 20px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.meta-strip .m b {
    display: block;
    font-family: var(--font-display);
    color: var(--maroon-deep);
    font-size: 1.05rem;
    font-weight: 500;
}
.meta-strip .m span {
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--charcoal);
}
@media (max-width: 900px) {
    .service-hero {
        grid-template-columns: 1fr;
    }
}

.process-steps {
    display: grid;
    gap: 0;
    counter-reset: step;
}
.process-step {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 22px;
    padding: 26px 0;
    border-top: 1px solid var(--line);
}
.process-step:first-child {
    border-top: none;
}
.step-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--maroon-tint);
    color: var(--maroon-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 400;
}
.process-step h4 {
    font-family: var(--font-display);
    color: var(--maroon-deep);
    margin-bottom: 6px;
    font-size: 1.1rem;
}
.process-step p {
    color: var(--charcoal);
    font-size: 0.92rem;
    margin: 0;
}

.sidebar-card {
    background: var(--paper);
    border-radius: var(--radius-md);
    border: 1px solid var(--line-soft);
    padding: 26px;
    box-shadow: var(--shadow-sm);
}
.sidebar-card + .sidebar-card {
    margin-top: 22px;
}
.sidebar-card h4 {
    font-family: var(--font-display);
    color: var(--maroon-deep);
    margin-bottom: 16px;
    font-size: 1.1rem;
}
.sidebar-list li {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px dashed var(--line);
    font-size: 0.88rem;
}
.sidebar-list li a {
    color: var(--charcoal-deep);
    font-weight: 600;
}
.sidebar-list li a:hover {
    color: var(--maroon);
}
.sidebar-list li:last-child {
    border-bottom: none;
}

.layout-2col {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 54px;
    align-items: start;
}
@media (max-width: 980px) {
    .layout-2col {
        grid-template-columns: 1fr;
    }
}

.pill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.pill-list li {
    background: var(--blush);
    color: var(--maroon-deep);
    font-weight: 700;
    font-size: 0.8rem;
    padding: 8px 16px;
    border-radius: var(--radius-pill);
}

table.compare-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 0.9rem;
}
table.compare-table th,
table.compare-table td {
    text-align: left;
    padding: 14px 16px;
    border-bottom: 1px solid var(--line);
}
table.compare-table th {
    background: var(--maroon-tint);
    color: var(--maroon-deep);
    font-family: var(--font-display);
    font-weight: 400;
}
table.compare-table tr:hover td {
    background: var(--cream);
}

blockquote.pull {
    border-left: 3px solid var(--maroon);
    padding: 4px 0 4px 24px;
    margin: 30px 0;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--maroon-deep);
}
.btn_group {
    display: inline-block;
    text-align: center;
}
.btn_group .btn {
    margin-bottom: 10px;
}
.blog_img{
    margin-bottom: 15px;
}
.blog_img img{
    border-radius: 15px;
}

.svg_list ul {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: 25px;
    margin-bottom: 15px;
}

.svg_list ul li {
    position: relative;
    padding-left: 36px;
    /*margin-bottom: 10px;*/
}

.svg_list ul li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-size: 13px;
    font-weight: 900;
    color: var(--maroon-600);
    position: absolute;
    left: 0;
    top: 0px;
    background-color: #f6e9e9;
    border-radius: 50%;
    display: block;
    width: 24px;
    height: 24px;
    text-align: center;
    line-height: 24px;
}


@media(min-width: 1199px){
    .services-card .thumb img{
        height: 250px;
    }
    .page-hero .grid-2{
        gap: 94px;
    }
    .doctor-card .doc-body{
        padding: 22px 22px 46px;
    }
    .doctor-card .card-link.v2{
        position: absolute;
        bottom: 0px;
        padding-bottom: 15px;
    }
}
@media(max-width: 767px){
    .header-cta .btn{
        display: none !important;
    }
    .footer-bottom{
        justify-content: center;
    }
    .hero-copy,
    .trust-bar,
    .services-card .body,
    .card h3{
        text-align: center;
    }
    .more{
        justify-content: center;
    }
    .section,
    .section-pad{
        padding: 46px 0;
    }
    .hero-actions{
        justify-content: center;
        flex-wrap: inherit;
    }
    .btn{
        padding: 10px 15px;
    }
    .eyebrow {
        display: flex;
        justify-content: center;
    }
    h2.h2, .h2, h2{
        text-align: center;
        font-size: 26px !important;
        line-height: 1.4;
    }
    .reveal.in p{
        text-align: center;
    }
    .doctor-card .doc-body,
    .blog-card .body,
    .svg_list h2,
    .sidebar-card + .sidebar-card,
    .section-head{
        text-align: center;
    }
    .doctor-card .focus-tags,
    .card-link.v2,
    .icon-badge,
    .quote-stars,
    .quote-person,
    .meta-strip{
        justify-content: center;
        display: flex;
    }
    
    .svg_list .pt-4{
        text-align: center;
    }
    .container{
        padding: 0 20px;
    }
    .hero-trust .stat b{
        font-size: 1.2rem;
    }
    .hero-trust .stat span{
        font-size: 11px;
    }
    .hero{
        padding: 50px 0 40px;
    }
    .trust-item{
        justify-content: center;
        width: 100%;
    }
    .trust-bar .container-wide{
        gap: 13px 40px;
    }
    .trust-item{
        font-size: 14px;
    }
    .page-hero{
        padding: 40px 0px;
    }
    .page-hero h1,
    .page-hero p.lede{
        text-align: center;
    }
    .service-hero{
        text-align: center;
    }
}