/* ================================================================
   SUB-PAGES.CSS — All inner page specific styles
   Trusted Dental & Orthodontics
   ================================================================ */

/* ─────────────────────────────────────────────────────────────
   DROPDOWN NAVIGATION
───────────────────────────────────────────────────────────── */
.nav-menu .has-dropdown {
    position: relative;
}

.dropdown-caret {
    font-size: 9px;
    margin-left: 4px;
    display: inline-block;
    transition: transform 0.22s ease;
    vertical-align: middle;
}

.has-dropdown:hover>.dropdown-caret {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.13);
    min-width: 230px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.22s ease, visibility 0.22s ease, top 0.22s ease;
    z-index: 1500;
    border-top: 3px solid var(--orange);
}

.dropdown-menu .has-dropdown>.dropdown-menu {
    top: 0;
    left: 100%;
    transform: translateX(10px);
}

.has-dropdown:hover>.dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    top: calc(100% + 0px);
    transform: translateX(-50%);
}

.dropdown-menu .has-dropdown:hover>.dropdown-menu {
    top: 0;
    left: 100%;
    transform: translateX(0);
}

/* Wide dropdown for services (2 cols) */
.dropdown-menu-wide {
    min-width: 300px;
    columns: 2;
    column-gap: 0;
}

.dropdown-menu-wide li {
    break-inside: avoid;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-bottom-color: var(--orange);
    border-top: none;
}

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

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    font-size: 14px !important;
    font-weight: 500 !important;
    color: var(--text-dark) !important;
    white-space: nowrap;
    transition: all 0.18s ease;
    border-bottom: 1px solid var(--bg-light);
}

.dropdown-menu li:last-child a {
    border-bottom: none;
}

.dropdown-menu li a:hover {
    color: var(--orange) !important;
    background: #fff8f5;
    padding-left: 26px;
}

/* Off-canvas accordion */
.offcanvas-nav .offcanvas-sub-menu {
    display: none;
    background: var(--bg-light);
    border-left: 3px solid var(--orange);
    margin-left: 0;
}

.offcanvas-nav .offcanvas-sub-menu.open {
    display: block;
}

.offcanvas-nav .offcanvas-sub-menu li a {
    padding: 12px 24px 12px 28px !important;
    font-size: 14px !important;
    color: var(--text-medium) !important;
    border-bottom: 1px solid var(--border);
    display: block;
    background: none;
}

.offcanvas-nav .offcanvas-sub-menu li a:hover {
    color: var(--orange) !important;
}

.offcanvas-parent {
    cursor: pointer;
}

.offcanvas-arrow {
    float: right;
    font-size: 16px;
    transition: transform 0.22s ease;
    line-height: 1;
}

.offcanvas-arrow.open {
    transform: rotate(90deg);
}

.offcanvas-sub-menu.open ul li a {
    padding-left: 40px !important;
}

.offcanvas-sub-menu.open ul {
    border-left: 0;
}

/* ─────────────────────────────────────────────────────────────
   BREADCRUMB
───────────────────────────────────────────────────────────── */
.breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 18px;
    font-size: 13px;
}

.breadcrumb a {
    color: var(--text-light);
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: var(--orange);
}

.breadcrumb-sep {
    color: var(--text-light);
    opacity: 0.5;
    font-size: 12px;
}

.breadcrumb-current {
    color: var(--orange);
    font-weight: 600;
}

.breadcrumb-light a,
.breadcrumb-light .breadcrumb-sep,
.breadcrumb-light .breadcrumb-current-light {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-light .breadcrumb-current {
    color: #fff;
}

/* ─────────────────────────────────────────────────────────────
   INNER HERO — SPLIT LAYOUT (img right, full-bleed)
───────────────────────────────────────────────────────────── */
.inner-hero {
    background: var(--white);
    overflow: hidden;
}

.inner-hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 480px;
}

.inner-hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 155px;
    padding-bottom: 60px;
    padding-right: 70px;
    padding-left: max(40px, calc((100vw - 1700px) / 2 + 40px));
}

.inner-hero-content h1 {
    font-size: 44px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.13;
}

.inner-hero-content p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.75;
    margin-bottom: 30px;
    max-width: 500px;
}

.inner-hero-image {
    overflow: hidden;
}

.inner-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ─────────────────────────────────────────────────────────────
   ORANGE HERO — full-width coloured banner
───────────────────────────────────────────────────────────── */
.orange-hero {
    background: var(--orange);
    padding: 155px 0 75px;
    text-align: center;
}

.orange-hero h1 {
    font-size: 46px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
}

.orange-hero .breadcrumb {
    justify-content: center;
    margin-bottom: 20px;
}

.orange-hero .breadcrumb a,
.orange-hero .breadcrumb .breadcrumb-sep {
    color: rgba(255, 255, 255, 0.75);
}

.orange-hero .breadcrumb .breadcrumb-current {
    color: #fff;
}

.orange-hero p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.88);
    max-width: 620px;
    margin: 0 auto 30px;
    line-height: 1.7;
}

/* ─────────────────────────────────────────────────────────────
   IMAGE BACKGROUND HERO
───────────────────────────────────────────────────────────── */
.img-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.img-hero-bg {
    position: absolute;
    inset: 0;
}

.img-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.img-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(125deg, rgba(26, 48, 69, 0.88) 0%, rgba(26, 48, 69, 0.50) 100%);
}

.img-hero-body {
    position: relative;
    z-index: 2;
    padding-top: 130px;
    padding-bottom: 60px;
    width: 100%;
}

.img-hero-content {
    max-width: 680px;
}

.img-hero-content .breadcrumb a,
.img-hero-content .breadcrumb .breadcrumb-sep {
    color: rgba(255, 255, 255, 0.7);
}

.img-hero-content .breadcrumb .breadcrumb-current {
    color: #fff;
}

.img-hero-content h1 {
    font-size: 46px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.13;
}

.img-hero-content p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.75;
    margin-bottom: 30px;
    max-width: 560px;
}

/* ─────────────────────────────────────────────────────────────
   SPLIT CONTENT SECTION
───────────────────────────────────────────────────────────── */
.split-section {
    padding: 90px 0;
}

.split-section.bg-cream {
    background: var(--bg-cream);
}

.split-section.bg-light {
    background: var(--bg-light);
}

.split-section.bg-white {
    background: var(--white);
}

.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.split-grid.reverse .split-img {
    order: 2;
}

.split-grid.reverse .split-body {
    order: 1;
}

.split-img img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    display: block;
}

.split-img.tall img {
    height: 520px;
}

.split-body .section-subtitle {
    text-align: left;
}

.split-body h2 {
    font-size: 34px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.split-body p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 14px;
}

/* ─────────────────────────────────────────────────────────────
   FEATURE / ICON CARDS
───────────────────────────────────────────────────────────── */
.feature-section {
    padding: 90px 0;
}

.feature-section.bg-cream {
    background: var(--bg-cream);
}

.feature-section.bg-light {
    background: var(--bg-light);
}

.feature-section.bg-white {
    background: var(--white);
}

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

.feature-grid.col-2 {
    grid-template-columns: repeat(2, 1fr);
}

.feature-grid.col-4 {
    grid-template-columns: repeat(4, 1fr);
}

.feature-grid.col-6 {
    grid-template-columns: repeat(3, 1fr);
}

.fcard {
    background: var(--white);
    border-radius: 20px;
    padding: 36px 28px;
    text-align: center;
    box-shadow: 0 2px 18px rgba(0, 0, 0, 0.06);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.fcard:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.1);
}

.fcard-icon {
    width: 68px;
    height: 68px;
    background: #fff5ef;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.fcard-icon img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.fcard h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.fcard p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.65;
}

/* Cards on dark/cream backgrounds */
.fcard.on-cream {
    background: var(--white);
}

/* ─────────────────────────────────────────────────────────────
   CREDENTIAL / CHECKLIST
───────────────────────────────────────────────────────────── */
.cred-list {
    list-style: none;
    padding: 0;
    margin: 16px 0 24px;
}

.cred-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: var(--text-dark);
    margin-bottom: 13px;
    line-height: 1.6;
}

.custom-list li {
    position: relative;
    color: var(--text-dark);
    font-size: 15px;
    margin-bottom: 13px;
    line-height: 1.6;
}

.custom-list li::before {
    content: '';
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    margin-top: 1px;
    background: var(--orange);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-size: 12px 12px;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    left: -30px;
    top: 0;
}

ul.custom-list {
    margin-left: 30px;
}

.custom-list li::before {
    width: 20px;
    height: 20px;
    margin-top: 2px;
}

.cred-list li::before {
    content: '';
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    margin-top: 1px;
    background: var(--orange);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-size: 12px 12px;
    background-repeat: no-repeat;
    background-position: center;
}

/* ─────────────────────────────────────────────────────────────
   QUOTE / PHILOSOPHY BLOCK
───────────────────────────────────────────────────────────── */
.quote-section {
    padding: 80px 0;
    background: var(--bg-cream);
}

.quote-block {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}

.quote-mark {
    font-size: 90px;
    color: var(--orange);
    line-height: 0.65;
    font-family: Georgia, serif;
    margin-bottom: 24px;
    display: block;
    opacity: 0.7;
}

.quote-text {
    font-size: 22px;
    color: var(--text-dark);
    line-height: 1.6;
    font-style: italic;
    font-weight: 500;
    margin-bottom: 22px;
}

.quote-author {
    font-size: 15px;
    color: var(--orange);
    font-weight: 700;
}

.quote-title {
    font-size: 13px;
    color: var(--text-light);
    margin-top: 4px;
}

/* ─────────────────────────────────────────────────────────────
   INNER CTA BLOCK
───────────────────────────────────────────────────────────── */
.inner-cta {
    padding: 80px 0;
    text-align: center;
}

.inner-cta.bg-navy {
    background: var(--navy);
}

.inner-cta.bg-orange {
    background: var(--orange);
}

.inner-cta h2 {
    font-size: 34px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
    line-height: 1.25;
}

.inner-cta p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.82);
    max-width: 580px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

.inner-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.inner-cta .btn-ghost {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.45);
    border-radius: 8px;
    padding: 13px 28px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.25s;
}

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

/* ─────────────────────────────────────────────────────────────
   STATS STRIP
───────────────────────────────────────────────────────────── */
.stats-strip {
    background: var(--orange);
}

.stats-strip-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.stats-item {
    text-align: center;
    padding: 20px 30px;
    border-right: 1px solid rgba(255, 255, 255, 0.25);
}

.stats-item:last-child {
    border-right: none;
}

.stats-num {
    font-size: 40px;
    font-weight: 900;
    color: #fff;
    display: block;
    line-height: 1;
    margin-bottom: 6px;
}

.stats-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.88);
    font-weight: 500;
}

/* ─────────────────────────────────────────────────────────────
   FAQ SECTION
───────────────────────────────────────────────────────────── */
.faq-section {
    padding: 90px 0;
    background: var(--white);
}

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

.faq-item {
    background: var(--bg-light);
    border-radius: 16px;
    padding: 26px 28px;
    border-left: 4px solid var(--orange);
}

.faq-q {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.5;
}

.faq-a {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

/* ─────────────────────────────────────────────────────────────
   DARK SECTION (navy bg)
───────────────────────────────────────────────────────────── */
.dark-section {
    background: var(--navy);
    padding: 90px 0;
}

.dark-section h2 {
    font-size: 34px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
}

.dark-section p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.8;
    margin-bottom: 14px;
}

.dark-section .section-subtitle {
    color: rgba(255, 255, 255, 0.6);
}

.dark-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.dark-card {
    background: rgba(255, 255, 255, 0.07);
    border-radius: 18px;
    padding: 32px 24px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dark-card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dark-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.dark-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.dark-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.65;
}

/* ─────────────────────────────────────────────────────────────
   OFFER HIGHLIGHT STRIP
───────────────────────────────────────────────────────────── */
.offer-strip {
    background: var(--bg-cream);
    padding: 60px 0;
}

.offer-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    background: var(--white);
    border-radius: 20px;
    padding: 40px 50px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
}

.offer-strip-text h3 {
    font-size: 26px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.offer-strip-text p {
    font-size: 15px;
    color: var(--text-light);
    max-width: 500px;
    line-height: 1.6;
}

.offer-strip-price {
    text-align: center;
    flex-shrink: 0;
}

.offer-price-big {
    font-size: 48px;
    font-weight: 900;
    color: var(--orange);
    display: block;
    line-height: 1;
    margin-bottom: 6px;
}

.offer-price-label {
    font-size: 13px;
    color: var(--text-light);
    display: block;
    margin-bottom: 16px;
}

.offer_grid {
    grid-template-columns: 1fr 1fr 1fr;
}

@media only screen and (max-width: 1200px) {

    .offer_grid {
        grid-template-columns: 1fr 1fr;
    }

}

@media only screen and (max-width: 767px) {
    .offer_grid {
        grid-template-columns: 1fr;
    }
}

/* ─────────────────────────────────────────────────────────────
   INTERNAL LINKS STRIP
───────────────────────────────────────────────────────────── */
.internal-links {
    padding: 50px 0;
    background: var(--bg-light);
    border-top: 1px solid var(--border);
}

.internal-links-head {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-medium);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 18px;
}

.internal-links-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.int-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-medium);
    transition: all 0.22s ease;
}

.int-link:hover {
    border-color: var(--orange);
    color: var(--orange);
    background: #fff8f5;
}

.int-link svg {
    flex-shrink: 0;
}

/* ─────────────────────────────────────────────────────────────
   EXPERTISE GRID (2 col text list)
───────────────────────────────────────────────────────────── */
.expertise-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 40px;
    margin: 16px 0 24px;
}

.expertise-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--text-dark);
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
}

.expertise-dot {
    width: 10px;
    height: 10px;
    min-width: 10px;
    background: var(--orange);
    border-radius: 50%;
}

/* ─────────────────────────────────────────────────────────────
   BEFORE/AFTER STRIP (3 images)
───────────────────────────────────────────────────────────── */
.ba-strip-section {
    padding: 90px 0;
    background: var(--bg-cream);
}

/* ─────────────────────────────────────────────────────────────
   RESPONSIVE — 1280px
───────────────────────────────────────────────────────────── */
@media (max-width: 1280px) {
    .inner-hero-content {
        padding-right: 50px;
    }

    .inner-hero-content h1 {
        font-size: 38px;
    }

    .split-grid {
        gap: 50px;
    }
}

/* ─────────────────────────────────────────────────────────────
   RESPONSIVE — 1024px
───────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-grid.col-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-grid.col-6 {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .stats-strip-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .offer-strip-inner {
        flex-direction: column;
        text-align: center;
        padding: 36px 30px;
    }
}

/* ─────────────────────────────────────────────────────────────
   RESPONSIVE — 768px
───────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .inner-hero-inner {
        grid-template-columns: 1fr;
    }

    .inner-hero-content {
        padding-top: 105px;
        padding-right: 20px;
        text-align: center;
        align-items: center;
    }

    .inner-hero-content p {
        max-width: 100%;
    }

    .inner-hero-image {
        height: 280px;
    }

    .orange-hero {
        padding: 110px 0 60px;
    }

    .orange-hero h1 {
        font-size: 30px;
    }

    .img-hero-content h1 {
        font-size: 30px;
    }

    .img-hero-body {
        padding-top: 100px;
    }

    .split-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .split-grid.reverse .split-img {
        order: 0;
    }

    .split-grid.reverse .split-body {
        order: 0;
    }

    .split-img.tall img {
        height: 280px;
    }

    .split-body h2 {
        font-size: 26px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .feature-grid.col-2 {
        grid-template-columns: 1fr;
    }

    .dark-grid {
        grid-template-columns: 1fr;
    }

    .stats-strip-grid {
        grid-template-columns: 1fr;
    }

    .stats-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .stats-item:last-child {
        border-bottom: none;
    }

    .expertise-cols {
        grid-template-columns: 1fr;
    }

    .inner-cta h2 {
        font-size: 26px;
    }

    .inner-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .offer-strip-inner {
        gap: 24px;
        padding: 28px 20px;
    }

    .internal-links-row {
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .inner-hero-content h1 {
        font-size: 28px;
    }

    .orange-hero h1 {
        font-size: 26px;
    }

    .img-hero-content h1 {
        font-size: 26px;
    }
}

/* ================================================================
   EXTENDED COMPONENT STYLES (used by about sub-pages)
   ================================================================ */

/* ─── Generic section utility ─── */
.section-pad {
    padding: 90px 0;
}

.bg-white {
    background: var(--white);
}

.bg-light {
    background: var(--bg-light);
}

.bg-cream {
    background: var(--bg-cream);
}

/* ─── Section header (centered) ─── */
.section-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.section-header-center h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 14px;
    line-height: 1.2;
}

.section-subtext {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

/* ─── Section tag labels ─── */
.section-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 12px;
}

.section-tag-light {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 12px;
}

/* ─── Inner Hero (split: text left, image right) ─── */
.inner-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 560px;
    overflow: hidden;
    background: var(--white);
}

.inner-hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 155px;
    padding-bottom: 70px;
    padding-right: 70px;
    padding-left: max(40px, calc((100vw - 1700px) / 2 + 40px));
}

/* Flip variant: img is first in DOM (left col), content is second (right col) */
/* Swap padding so the right-side content aligns with the 1700px container edge */
.inner-hero.inner-hero-flip .inner-hero-content {
    padding-left: 70px;
    padding-right: max(40px, calc((100vw - 1700px) / 2 + 40px));
}

.inner-hero-text {
    max-width: 560px;
}

.inner-hero-text .section-tag {
    margin-bottom: 10px;
}

.inner-hero-text h1 {
    font-size: 44px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.13;
}

.inner-hero-lead {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.75;
    margin-bottom: 32px;
    max-width: 500px;
}

.inner-hero-img {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 460px;
}

/* ─── Orange Hero ─── */
.orange-hero-content {
    max-width: 760px;
    margin: 0 auto;
}

.orange-hero-lead {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.75;
    max-width: 620px;
    margin: 0 auto;
}

/* ─── Image Background Hero (bg-image on section element) ─── */
.img-hero {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 175px 0 80px;
}

.img-hero .img-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(125deg, rgba(26, 48, 69, 0.88) 0%, rgba(26, 48, 69, 0.50) 100%);
}

.img-hero .container {
    position: relative;
    z-index: 2;
}

.img-hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.1;
}

.img-hero-lead {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.75;
    max-width: 560px;
    margin-bottom: 32px;
}

/* ─── Breadcrumb bar wrapper ─── */
.breadcrumb-bar {
    background: var(--bg-light);
    border-bottom: 1px solid var(--border);
    padding: 12px 0 0;
}

.breadcrumb-bar-light {
    background: transparent;
    border-bottom: none;
    position: absolute;
    top: 130px;
    left: 0;
    right: 0;
    z-index: 3;
}

.breadcrumb span {
    color: var(--text-light);
    opacity: 0.7;
}

/* ─── Split grid — used inside section-pad ─── */
.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.split-grid.reverse .split-img {
    order: 2;
}

.split-grid.reverse .split-text {
    order: 1;
}

.split-img img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    display: block;
}

.split-text .section-tag {
    margin-bottom: 10px;
}

.split-text h2 {
    font-size: 34px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.split-text p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 14px;
}

/* ─── Feature grid column aliases ─── */
.feature-grid.cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.feature-grid.cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.feature-grid.cols-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* Small fcard variant */
.fcard.fcard-sm {
    padding: 24px 20px;
}

.fcard.fcard-sm h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 7px;
}

.fcard.fcard-sm p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.6;
}

.fcard.fcard-sm .fcard-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 14px;
}

.fcard.fcard-sm .fcard-icon img {
    width: 26px;
    height: 26px;
}

/* Horizontal fcard (icon left, text right) */
.fcard.fcard-horizontal {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    text-align: left;
}

.fcard.fcard-horizontal .fcard-icon {
    margin: 0;
    flex-shrink: 0;
}

.fcard-body h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.fcard-body p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.65;
}

/* ─── Doctor bio cards ─── */
.doctor-card {
    text-align: center;
    padding: 0 0 36px;
    overflow: hidden;
}

.doctor-card-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 18px 18px 0 0;
    display: block;
    margin: 0 0 22px;
    object-position: top;
}

.doctor-card h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.doctor-card-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.doctor-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
    padding: 0 20px;
}

/* ─── Before / After grid ─── */
.ba-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.ba-card {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.ba-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

.ba-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(26, 48, 69, 0.82));
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 28px 16px 14px;
    text-align: center;
}

/* ─── Quote block rework (used in pages) ─── */
.quote-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.quote-block {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}

.quote-icon {
    display: block;
    margin: 0 auto 20px;
}

.quote-block blockquote {
    margin: 0;
}

.quote-block blockquote p {
    font-size: 22px;
    color: var(--text-dark);
    line-height: 1.6;
    font-style: italic;
    font-weight: 500;
    margin-bottom: 22px;
}

.quote-block blockquote cite {
    font-size: 15px;
    color: var(--orange);
    font-weight: 700;
    font-style: normal;
}

/* ─── Inner CTA variants ─── */
.inner-cta-navy {
    background: var(--navy);
    padding: 80px 0;
    text-align: center;
}

.inner-cta-orange {
    background: var(--orange);
    padding: 80px 0;
    text-align: center;
}

.inner-cta-content h2 {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
    line-height: 1.2;
}

.inner-cta-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.82);
    max-width: 580px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

.cta-btn-group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* White / outline-white button variants */
.btn-white {
    background: #fff;
    color: var(--orange);
    border: none;
    border-radius: 8px;
    padding: 14px 30px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s;
    display: inline-block;
    text-decoration: none;
}

.btn-white:hover {
    background: #f0f0f0;
    color: var(--navy);
}

.btn-outline-white {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.55);
    border-radius: 8px;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s;
    display: inline-block;
    text-decoration: none;
}

.btn-outline-white:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

/* Generic outline button */
.btn-outline {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--navy);
    border-radius: 8px;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s;
    display: inline-block;
    text-decoration: none;
}

.btn-outline:hover {
    background: var(--navy);
    color: #fff;
}

/* Small button modifier */
.btn-sm {
    padding: 9px 20px !important;
    font-size: 13px !important;
}

/* ─── Stats strip (aliases matching home page style) ─── */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.stat-item {
    text-align: center;
    padding: 20px 24px;
    border-right: 1px solid rgba(255, 255, 255, 0.25);
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    font-size: 42px;
    font-weight: 900;
    color: #fff;
    display: block;
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.88);
    font-weight: 600;
}

/* ─── FAQ items using h4/p ─── */
.faq-item h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.5;
}

.faq-item p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

/* ─── Dark section: h4 support inside dark-card ─── */
.dark-card h4 {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.dark-card .fcard-icon img {
    filter: brightness(0) invert(1);
}

/* ─── Internal links section ─── */
.internal-links-section {
    background: var(--bg-light);
    border-top: 1px solid var(--border);
    padding: 36px 0;
}

.internal-links-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 14px;
}

.internal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.pill-link {
    display: inline-flex;
    align-items: center;
    padding: 9px 20px;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-medium);
    text-decoration: none;
    transition: all 0.22s ease;
}

.pill-link:hover {
    border-color: var(--orange);
    color: var(--orange);
    background: #fff8f5;
}

/* ─── Light cred-list variant (on dark bg) ─── */
.cred-list-light li {
    color: rgba(255, 255, 255, 0.88);
}

.cred-list-light li::before {
    background-color: rgba(255, 255, 255, 0.9);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23EE6233' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}

/* ─── Offer strip ─── */
.offer-strip {
    background: var(--bg-cream);
    padding: 60px 0;
}

.offer-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    background: var(--white);
    border-radius: 20px;
    padding: 40px 50px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
    border-left: 5px solid var(--orange);
}

.offer-strip-text h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.offer-strip-text p {
    font-size: 15px;
    color: var(--text-light);
    max-width: 500px;
    line-height: 1.6;
}

/* ─── Responsive additions ─── */
@media (max-width: 1280px) {
    .inner-hero {
        grid-template-columns: 1fr 1fr;
    }

    .inner-hero-text h1 {
        font-size: 38px;
    }

    .inner-hero-content {
        padding-right: 50px;
    }

    .split-grid {
        gap: 50px;
    }

    .ba-grid {
        gap: 16px;
    }
}

@media (max-width: 1024px) {

    .feature-grid.cols-3,
    .feature-grid.cols-4 {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .ba-grid .ba-card:last-child {
        display: none;
    }

    .offer-strip-inner {
        flex-direction: column;
        text-align: center;
        padding: 36px 30px;
    }

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

    .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }
}

@media (max-width: 768px) {
    .inner-hero {
        grid-template-columns: 1fr;
    }

    .inner-hero-img {
        min-height: 300px;
        order: -1;
    }

    .inner-hero-content {
        padding-top: 40px;
        padding-bottom: 50px;
        padding-right: 24px;
        padding-left: 24px;
        text-align: center;
        align-items: center;
    }

    .inner-hero-text h1 {
        font-size: 28px;
    }

    .inner-hero-lead {
        max-width: 100%;
    }

    .inner-hero.inner-hero-flip {
        direction: ltr;
    }

    .inner-hero.inner-hero-flip .inner-hero-content {
        padding-left: 24px;
        padding-right: 24px;
    }

    .orange-hero-content {
        padding: 0 20px;
    }

    .orange-hero h1 {
        font-size: 30px;
    }

    .img-hero {
        padding: 130px 0 60px;
    }

    .img-hero-content h1 {
        font-size: 30px;
    }

    .img-hero-lead {
        max-width: 100%;
    }

    .split-grid,
    .split-grid.reverse {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .split-grid.reverse .split-img,
    .split-grid.reverse .split-text {
        order: unset;
    }

    .split-text h2 {
        font-size: 26px;
    }

    .feature-grid.cols-3,
    .feature-grid.cols-2,
    .feature-grid.cols-4 {
        grid-template-columns: 1fr;
    }

    .fcard.fcard-horizontal {
        flex-direction: column;
        text-align: center;
    }

    .fcard.fcard-horizontal .fcard-icon {
        margin: 0 auto;
    }

    .ba-grid {
        grid-template-columns: 1fr;
    }

    .ba-grid .ba-card:last-child {
        display: block;
    }

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

    .inner-cta-content h2 {
        font-size: 26px;
    }

    .cta-btn-group {
        flex-direction: column;
    }

    .offer-strip-inner {
        gap: 24px;
        padding: 28px 20px;
    }

    .offer-strip-text h3 {
        font-size: 20px;
    }

    .section-header-center h2 {
        font-size: 28px;
    }

    .inner-links {
        gap: 8px;
    }

    .breadcrumb-bar-light {
        top: 90px;
    }
}

@media (max-width: 480px) {
    .inner-hero-text h1 {
        font-size: 24px;
    }

    .orange-hero h1 {
        font-size: 24px;
    }

    .img-hero-content h1 {
        font-size: 24px;
    }

    .inner-cta-content h2 {
        font-size: 22px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }
}

/* ================================================================
   POLISHED SUB-PAGE COMPONENTS  (v2)
   ================================================================ */

/* ─────────────────────────────────────────────────────────────
   PAGE HERO  — unified orange banner for all sub-pages
   ───────────────────────────────────────────────────────────── */
.page-hero {
    background: var(--orange);
    padding: 90px 0 88px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* subtle grid-dot texture */
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}

.page-hero>.container {
    position: relative;
    z-index: 1;
}

/* Breadcrumb inside hero */
.ph-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 22px;
    font-size: 13px;
}

.ph-breadcrumb a {
    color: rgba(255, 255, 255, 0.72);
    transition: color 0.2s;
}

.ph-breadcrumb a:hover {
    color: #fff;
}

.ph-breadcrumb .sep {
    color: rgba(255, 255, 255, 0.4);
    font-size: 11px;
}

.ph-breadcrumb .ph-current {
    color: #fff;
    font-weight: 600;
}

/* Tag pill */
.ph-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 22px;
}

/* Headline */
.page-hero h1 {
    font-size: 54px;
    font-weight: 900;
    color: #fff;
    line-height: 1.08;
    margin-bottom: 18px;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: -0.5px;
}

/* Lead text */
.ph-lead {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.75;
    max-width: 580px;
    margin: 0 auto 38px;
}

/* Action row */
.ph-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* White solid button (for use on orange bg) */
.btn-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: var(--orange);
    border: 2px solid #fff;
    border-radius: 9px;
    padding: 13px 28px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.btn-white:hover {

    background: transparent;
    border-color: #ffffff;
    color: #fff;

}

/* Phone link button */
.ph-phone {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid rgb(255, 255, 255);
    border-radius: 9px;
    padding: 13px 28px;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.ph-phone:hover {
    border-color: #fff;
    background: rgb(255 255 255);
    color: #ee6233;

}

.ph-phone svg {
    flex-shrink: 0;
    opacity: 0.85;
}

/* ─────────────────────────────────────────────────────────────
   SECTION LAYOUT IMPROVEMENTS
   ───────────────────────────────────────────────────────────── */

/* Better section padding */
.section-pad {
    padding: 96px 0;
}

/* Better section header */
.section-header-center {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 56px;
}

.section-header-center h2 {
    font-size: 38px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 14px;
    line-height: 1.15;
    letter-spacing: -0.3px;
}

.section-header-center .section-subtext {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.75;
}

/* Split grid gap improvements */
.split-grid {
    gap: 72px;
    align-items: center;
}

/* Consistent landscape images */
.split-img img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center top;
    border-radius: 20px;
    display: block;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10);
}

/* Taller portrait for doctor bio pages */
.split-img.portrait img {
    aspect-ratio: 3 / 4;
    object-position: center top;
}

/* Text side */
.split-text h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.18;
    letter-spacing: -0.3px;
    margin-bottom: 16px;
}

.split-text p {
    font-size: 15.5px;
    color: var(--text-light);
    line-height: 1.82;
    margin-bottom: 16px;
}

.split-text .section-tag {
    margin-bottom: 12px;
}

/* ─────────────────────────────────────────────────────────────
   ICON CARDS  — updated fcard with SVG support
   ───────────────────────────────────────────────────────────── */
.fcard {
    background: var(--white);
    border-radius: 20px;
    padding: 38px 30px 36px;
    text-align: center;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.055);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
    justify-content: space-between;
}

.fcard:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.10);
}

/* Icon circle → square rounded */
.fcard-icon {
    width: 66px;
    height: 66px;
    background: #fff5ef;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    color: var(--orange);
    flex-shrink: 0;
    transition: background 0.25s;
}

.fcard:hover .fcard-icon {
    background: var(--orange);
    color: #fff;
}

.fcard-icon svg {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.fcard-icon img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.fcard h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.3;
}

.fcard p {
    font-size: 14.5px;
    color: var(--text-light);
    line-height: 1.7;
}

/* Horizontal fcard */
.fcard.fcard-horizontal {
    display: flex;
    align-items: flex-start;
    gap: 22px;
    text-align: left;
    padding: 28px 28px;
}

.fcard.fcard-horizontal .fcard-icon {
    margin: 0;
}

.fcard-body {
    flex: 1;
}

.fcard-body h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 7px;
}

.fcard-body p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.65;
    margin: 0;
}

/* Dark section card icon */
.dark-card .fcard-icon {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    margin-bottom: 18px;
}

.dark-card:hover .fcard-icon {
    background: var(--orange);
    color: #fff;
}

/* ─────────────────────────────────────────────────────────────
   CRED LIST  — better spacing
   ───────────────────────────────────────────────────────────── */
.cred-list {
    margin: 20px 0 28px;
}

.cred-list li {
    font-size: 15px;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.55;
}

.cred-list li::before {
    width: 20px;
    height: 20px;
    margin-top: 2px;
}

/* ─────────────────────────────────────────────────────────────
   QUOTE BLOCK  — improved
   ───────────────────────────────────────────────────────────── */
.quote-section {
    background: var(--navy);
    padding: 88px 0;
}

.quote-block {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.quote-icon {
    display: block;
    margin: 0 auto 28px;
    opacity: 0.35;
}

.quote-block blockquote p {
    font-size: 23px;
    color: #fff;
    line-height: 1.65;
    font-style: italic;
    font-weight: 400;
    margin-bottom: 26px;
}

.quote-block blockquote cite {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
    font-style: normal;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* ─────────────────────────────────────────────────────────────
   BEFORE / AFTER  — consistent image sizes
   ───────────────────────────────────────────────────────────── */
.ba-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.ba-card {
    border-radius: 18px;
    overflow: hidden;
    position: relative;
}

.ba-card img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
}

.ba-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(26, 48, 69, 0.88));
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 32px 16px 14px;
    text-align: center;
}

/* ─────────────────────────────────────────────────────────────
   STATS STRIP  — refined
   ───────────────────────────────────────────────────────────── */
.stats-strip {
    background: #ee6233;
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    divide-x: 1px solid rgba(255, 255, 255, 0.12);
}

.stat-item {
    text-align: center;
    padding: 16px 24px;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    font-size: 46px;
    font-weight: 900;
    color: #ffffff;
    display: block;
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -1px;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
    line-height: 1.4;
}

/* ─────────────────────────────────────────────────────────────
   OFFER STRIP  — polished card
   ───────────────────────────────────────────────────────────── */
.offer-strip {
    background: var(--bg-light);
    padding: 70px 0;
}

.offer-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    background: var(--white);
    border-radius: 22px;
    padding: 44px 54px;
    box-shadow: 0 4px 28px rgba(0, 0, 0, 0.07);
    border-left: 5px solid var(--orange);
}

.offer-strip-text h3 {
    font-size: 26px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 8px;
    letter-spacing: -0.2px;
}

.offer-strip-text p {
    font-size: 15px;
    color: var(--text-light);
    max-width: 520px;
    line-height: 1.65;
    margin: 0;
}

/* ─────────────────────────────────────────────────────────────
   INNER CTA  — polished
   ───────────────────────────────────────────────────────────── */
.inner-cta-navy {
    background: var(--navy);
    padding: 90px 0;
    text-align: center;
}

.inner-cta-orange {
    background: var(--orange);
    padding: 90px 0;
    text-align: center;
}

.inner-cta-content h2 {
    font-size: 38px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
    line-height: 1.18;
    letter-spacing: -0.3px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.inner-cta-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.80);
    max-width: 520px;
    margin: 0 auto 36px;
    line-height: 1.75;
}

.cta-btn-group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* ─────────────────────────────────────────────────────────────
   DARK SECTION
   ───────────────────────────────────────────────────────────── */
.dark-section {
    background: var(--navy);
    padding: 96px 0;
}

.dark-section .section-header-center h2 {
    color: #fff;
}

.dark-section .section-header-center .section-subtext {
    color: rgba(255, 255, 255, 0.65);
}

.dark-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-top: 52px;
}

.dark-card {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 34px 26px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: background 0.25s, transform 0.25s;
}

.dark-card:hover {
    background: rgba(255, 255, 255, 0.10);
    transform: translateY(-4px);
}

.dark-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.dark-card p {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.65;
    margin: 0;
}

/* ─────────────────────────────────────────────────────────────
   INTERNAL LINKS  — pill nav
   ───────────────────────────────────────────────────────────── */
.internal-links-section {
    background: var(--bg-light);
    border-top: 1px solid var(--border);
    padding: 32px 0;
}

.internal-links-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    display: block;
}

.internal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.pill-link {
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 50px;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--text-medium);
    text-decoration: none;
    transition: all 0.2s ease;
}

.pill-link:hover {
    border-color: var(--orange);
    color: var(--orange);
    background: #fff8f5;
}

/* ─────────────────────────────────────────────────────────────
   FAQ  — polished
   ───────────────────────────────────────────────────────────── */
.faq-section {
    padding: 96px 0;
    background: var(--bg-light);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 16px;
    padding: 28px 30px;
    border-left: 4px solid var(--orange);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.045);
}

.faq-item h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.45;
}

.faq-item p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.72;
    margin: 0;
}

/* ─────────────────────────────────────────────────────────────
   DOCTOR BIO INTRO  — headshot + name card at top of bio page
   ───────────────────────────────────────────────────────────── */
.doc-intro {
    display: flex;
    align-items: center;
    gap: 48px;
    padding: 80px 0 60px;
}

.doc-intro-img {
    flex-shrink: 0;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid var(--orange);
    box-shadow: 0 8px 32px rgba(238, 98, 51, 0.22);
}

.doc-intro-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.doc-intro-text h2 {
    font-size: 36px;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 6px;
    letter-spacing: -0.3px;
}

.doc-intro-text .doc-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
    display: block;
}

.doc-intro-text p {
    font-size: 15.5px;
    color: var(--text-light);
    line-height: 1.78;
    max-width: 640px;
}

/* ─────────────────────────────────────────────────────────────
   RESPONSIVE OVERRIDES (v2 additions)
   ───────────────────────────────────────────────────────────── */
@media (max-width: 1280px) {
    .page-hero h1 {
        font-size: 46px;
    }

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

@media (max-width: 1024px) {
    .page-hero {
        padding: 90px 0 72px;
    }

    .page-hero h1 {
        font-size: 40px;
    }

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

    .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .offer-strip-inner {
        flex-direction: column;
        text-align: center;
        padding: 36px 32px;
    }

    .doc-intro {
        flex-direction: column;
        text-align: center;
        gap: 28px;
        padding: 60px 0 40px;
    }

    .doc-intro-text p {
        margin: 0 auto;
    }
}


@media only screen and (min-width: 767px) and (max-width: 991px) {
    .split-grid.reverse .split-img {
        order: 1;

    }

    .split-grid.reverse .split-text {
        order: 2;

    }

    .split-grid.reverse {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .split-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}



@media (max-width: 768px) {
    .page-hero {
        padding: 90px 0 60px;
    }

    .page-hero h1 {
        font-size: 30px;
        letter-spacing: 0;
    }

    .ph-lead {
        font-size: 15px;
    }

    .ph-actions {
        flex-direction: column;
        gap: 10px;
    }

    .ph-actions .btn-white,
    .ph-actions .ph-phone {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }



    .split-grid.reverse .split-img {
        order: 1;
    }

    .split-grid.reverse .split-text {
        order: 2;
    }

    .split-img.portrait img {
        aspect-ratio: 4/3;
    }

    .split-text h2 {
        font-size: 26px;
    }

    .feature-grid.cols-3,
    .feature-grid.cols-2,
    .feature-grid.cols-4 {
        grid-template-columns: 1fr;
    }

    .fcard.fcard-horizontal {
        flex-direction: column;
        text-align: center;
    }

    .fcard.fcard-horizontal .fcard-icon {
        margin: 0 auto;
    }

    .ba-grid {
        grid-template-columns: 1fr 1fr;
    }

    .ba-grid .ba-card:last-child {
        display: none;
    }

    .dark-grid {
        grid-template-columns: 1fr;
    }

    .section-header-center h2 {
        font-size: 26px;
    }

    .section-pad {
        padding: 64px 0;
    }

    .inner-cta-content h2 {
        font-size: 26px;
    }

    .cta-btn-group {
        flex-direction: column;
    }

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

    .offer-strip-inner {
        gap: 24px;
        padding: 28px 22px;
    }

    .offer-strip-text h3 {
        font-size: 20px;
    }

}

@media (max-width: 480px) {
    .page-hero h1 {
        font-size: 26px;
    }

    .inner-cta-content h2 {
        font-size: 22px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .ba-grid {
        grid-template-columns: 1fr;
    }

    .ba-grid .ba-card:last-child {
        display: block;
    }

    .stat-item:last-child {
        border-bottom: none;
    }

    .dark-section {
        padding: 64px 0;
    }

    .inner-cta-navy {
        padding: 64px 0;
    }

    .page-hero {
        padding: 60px 0 60px;
    }
}

/* ─────────────────────────────────────────────────────────────
   SERVICES HUB — fcard-link & fcard-cta
   ───────────────────────────────────────────────────────────── */
.fcard-link {
    background: var(--white);
    border-radius: 20px;
    padding: 36px 28px 32px;
    text-align: center;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.055);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
}

.fcard-link:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.10);
    text-decoration: none;
}

.fcard-link .fcard-icon {
    margin-bottom: 20px;
}

.fcard-link h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.3;
}

.fcard-link p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.65;
    flex: 1;
    margin-bottom: 20px;
}

.fcard-link:hover h3 {
    color: var(--orange);
}

.fcard-link:hover .fcard-icon {
    background: var(--orange);
    color: #fff;
}

.fcard-cta {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--orange);
    text-decoration: none;
    margin-top: auto;
    transition: gap 0.22s;
}

.fcard-cta svg {
    width: 15px;
    height: 15px;
    transition: transform 0.22s;
}

.fcard-link:hover .fcard-cta svg {
    transform: translateX(4px);
}

/* ─────────────────────────────────────────────────────────────
   STATS STRIP — navy variant
   ───────────────────────────────────────────────────────────── */
.stats-strip.navy {
    background: var(--navy);
}

.stats-strip.navy .stat-number {
    color: var(--orange);
}

.stats-strip.navy .stat-label {
    color: rgba(255, 255, 255, 0.75);
}

.stats-strip.navy .stat-item {
    border-right-color: rgba(255, 255, 255, 0.1);
}

/* padding_none helper */
.padding_none {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

/* custom-list — alias for cred-list (used on some pages) */
.custom-list {
    list-style: none;
    padding: 0;
    margin: 16px 0 24px;
}

.custom-list li {

    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.6;
}


/* ─────────────────────────────────────────────────────────────
   FAQ ACCORDION  — matches reference design
   ───────────────────────────────────────────────────────────── */
.faq-accordion-section {
    padding: 96px 0;
    background: #EBF5F7;
}

.faq-accordion-list {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-accordion-item {
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.07);
    overflow: hidden;
    transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.faq-accordion-item.open {
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.09);
    border-color: rgba(238, 98, 51, 0.15);
}

.faq-accordion-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 22px 28px;
    cursor: pointer;
    background: none;
    border: none;
    text-align: left;
    font-family: inherit;
    transition: background 0.2s;
}

.faq-accordion-item.open .faq-accordion-btn {
    background: rgba(238, 98, 51, 0.03);
}

.faq-accordion-q {
    font-size: 15.5px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.45;
    flex: 1;
    transition: color 0.2s;
}

.faq-accordion-item.open .faq-accordion-q {
    color: var(--orange);
}

.faq-accordion-icon {
    width: 30px;
    height: 30px;
    min-width: 30px;
    border-radius: 50%;
    border: 2px solid var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    transition: background 0.22s, color 0.22s;
}

.faq-accordion-item.open .faq-accordion-icon {
    background: var(--orange);
    color: #fff;
}

.faq-accordion-icon svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    display: block;
}

svg.faq-minus-icon {
    display: none;
}

.faq-plus-icon {
    display: block;
}

.faq-minus-icon {
    display: none;
}

.faq-accordion-item.open .faq-plus-icon {
    display: none;
}

.faq-accordion-item.open .faq-minus-icon {
    display: block;
}

.faq-accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-accordion-item.open .faq-accordion-body {
    max-height: 600px;
}

.faq-accordion-body p {
    padding: 0 28px 26px;
    font-size: 14.5px;
    color: var(--text-light);
    line-height: 1.78;
    margin: 0;
    border-top: 1px solid var(--border);
    padding-top: 18px;
}

/* ─── Responsive ─── */
@media (max-width: 768px) {
    .faq-accordion-section {
        padding: 64px 0;
    }

    .faq-accordion-btn {
        padding: 18px 20px;
        gap: 12px;
    }

    .faq-accordion-q {
        font-size: 14.5px;
    }

    .faq-accordion-icon {
        width: 26px;
        height: 26px;
        min-width: 26px;
    }

    .faq-accordion-icon svg {
        width: 12px;
        height: 12px;
    }

    .faq-accordion-body p {
        padding: 14px 20px 22px;
    }
}

@media (max-width: 480px) {
    .faq-accordion-q {
        font-size: 14px;
    }
}

/* ─────────────────────────────────────────────────────────────
   IMPLANT COST PAGE — price ranges & disclaimer
   ───────────────────────────────────────────────────────────── */
.price-range {
    font-size: 18px;
    font-weight: 700;
    color: var(--orange);
    margin: 6px 0 12px;
    line-height: 1.3;
}

.price-range em {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-light);
    font-style: normal;
}

.cost-disclaimer {
    text-align: center;
    font-size: 13.5px;
    color: var(--text-light);
    margin-top: 40px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}


/* ================================================================
   COMPATIBILITY ALIASES & POLISH  (v3 — all-pages consistency pass)
   ================================================================ */

/* ─────────────────────────────────────────────────────────────
   NAV — reduce gap so 8 top-level items fit comfortably
   ───────────────────────────────────────────────────────────── */
@media (min-width: 992px) {
    .nav-menu {
        gap: 16px;
    }

    .nav-menu>li>a {
        font-size: 14px;
    }
}

@media (min-width: 1200px) {
    .nav-menu {
        gap: 22px;
    }

    .nav-menu>li>a {
        font-size: 14.5px;
    }
}

@media (min-width: 1400px) {
    .nav-menu {
        gap: 28px;
    }

    .nav-menu>li>a {
        font-size: 15px;
    }
}

/* ─────────────────────────────────────────────────────────────
   OFF-CANVAS ACCORDION  — JS toggles .open on <li>, not sub-menu
   ───────────────────────────────────────────────────────────── */
.offcanvas-nav li.open>.offcanvas-sub-menu {
    display: block;
}

.offcanvas-nav li.open>a .offcanvas-arrow {
    transform: rotate(90deg);
}

/* ─────────────────────────────────────────────────────────────
   .btn-primary — standalone (no .btn base class required)
   Matches home-page .btn.btn-primary style exactly
   ───────────────────────────────────────────────────────────── */
.btn-primary, body .rw-form-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--orange);
    color: #fff;
    border: 2px solid var(--orange);
    border-radius: 9px;
    padding: 13px 28px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
    line-height: 1.3;
}

.btn-primary:hover {
    background: var(--orange-hover);
    border-color: var(--orange-hover);
    color: #fff;
}

/* ─────────────────────────────────────────────────────────────
   .split-content — alias for .split-text
   ───────────────────────────────────────────────────────────── */
.split-content .section-tag {
    margin-bottom: 12px;
}

.split-content h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.18;
    letter-spacing: -0.3px;
    margin-bottom: 16px;
}

.split-content h2 strong {
    color: var(--orange);
}

.split-content p {
    font-size: 15.5px;
    color: var(--text-light);
    line-height: 1.82;
    margin-bottom: 16px;
}

/* Reverse order for .split-grid.reverse */
.split-grid.reverse .split-content {
    order: 1;
}

/* ─────────────────────────────────────────────────────────────
   .features-section — alias for section-pad with bg variants
   ───────────────────────────────────────────────────────────── */
.features-section {
    padding: 96px 0;
    background: var(--white);
}

.features-section.bg-light {
    background: var(--bg-light);
}

.features-section.bg-cream {
    background: var(--bg-cream);
}

.features-section.bg-white {
    background: var(--white);
}

/* ─────────────────────────────────────────────────────────────
   .pill-links — alias for .internal-links flex row
   ───────────────────────────────────────────────────────────── */
.pill-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* ─────────────────────────────────────────────────────────────
   .fcard-horizontal  — unnamed content <div> (no .fcard-body class)
   ───────────────────────────────────────────────────────────── */
.fcard.fcard-horizontal>div:not(.fcard-icon):not(.fcard-body) {
    flex: 1;
    text-align: left;
    min-width: 0;
}

.fcard.fcard-horizontal>div:not(.fcard-icon):not(.fcard-body) h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.35;
}

.fcard.fcard-horizontal>div:not(.fcard-icon):not(.fcard-body) p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.65;
    margin: 0;
}

/* Keep links inside those divs styled */
.fcard.fcard-horizontal>div:not(.fcard-icon):not(.fcard-body) a {
    color: var(--orange);
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* ─────────────────────────────────────────────────────────────
   .dark-card h3  — alias for .dark-card h4
   ───────────────────────────────────────────────────────────── */
.dark-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.3;
}

/* ─────────────────────────────────────────────────────────────
   CTA SECTIONS — direct h2 / p / .ph-actions (no .inner-cta-content wrapper)
   ───────────────────────────────────────────────────────────── */
.inner-cta-navy h2,
.inner-cta-orange h2 {
    font-size: 38px;
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    letter-spacing: -0.3px;
    margin-bottom: 14px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.inner-cta-navy p,
.inner-cta-orange p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.82);
    max-width: 540px;
    margin: 0 auto 34px;
    line-height: 1.75;
}

/* ph-actions inside CTA strip */
.inner-cta-navy .ph-actions,
.inner-cta-orange .ph-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* ─────────────────────────────────────────────────────────────
   STATS STRIP — explicit colour variants
   ───────────────────────────────────────────────────────────── */
/* Orange (default already, but explicit class for clarity) */
.stats-strip.stats-orange {
    background: var(--orange);
}

.stats-strip.stats-orange .stat-number {
    color: #fff;
}

.stats-strip.stats-orange .stat-label {
    color: rgba(255, 255, 255, 0.82);
}

.stats-strip.stats-orange .stat-item {
    border-right-color: rgba(255, 255, 255, 0.2);
}

/* Navy variant */
.stats-strip.stats-navy {
    background: var(--navy);
}

.stats-strip.stats-navy .stat-number {
    color: var(--orange);
}

.stats-strip.stats-navy .stat-label {
    color: rgba(255, 255, 255, 0.72);
}

.stats-strip.stats-navy .stat-item {
    border-right-color: rgba(255, 255, 255, 0.08);
}

/* ─────────────────────────────────────────────────────────────
   PH-BREADCRUMB — bare <span> separator (no .sep class)
   ───────────────────────────────────────────────────────────── */
.ph-breadcrumb>span:not([class]) {
    color: rgba(255, 255, 255, 0.40);
    font-size: 11px;
}

/* ─────────────────────────────────────────────────────────────
   RESPONSIVE — compatibility aliases
   ───────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {

    .features-section .feature-grid.cols-3,
    .features-section .feature-grid.cols-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    /* split-content column stack */
    .split-grid .split-content,
    .split-grid.reverse .split-content {
        order: unset;
    }

    .split-content h2 {
        font-size: 26px;
    }

    /* feature grids */
    .features-section .feature-grid.cols-3,
    .features-section .feature-grid.cols-2,
    .features-section .feature-grid.cols-4 {
        grid-template-columns: 1fr;
    }

    /* horizontal cards stack */
    .fcard.fcard-horizontal>div:not(.fcard-icon):not(.fcard-body) {
        text-align: center;
    }

    /* CTA headings */
    .inner-cta-navy h2,
    .inner-cta-orange h2 {
        font-size: 28px;
        letter-spacing: 0;
    }
}

@media (max-width: 480px) {
    .split-content h2 {
        font-size: 22px;
    }

    .inner-cta-navy h2,
    .inner-cta-orange h2 {
        font-size: 24px;
    }

    .btn-primary, body .rw-form-btn {
        padding: 12px 22px;
        font-size: 14px;
        width: 100%;
        text-align: center;
    }
}


/*----------------review css-----------*/

.review_card {
    background: #fff;
    border-radius: 12px;
    padding: 1.75rem;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.review_text_wrapper {
    position: relative;
    flex: 1;
}

/* Fixed height area */
.review_text {
    color: #333;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1rem;

    height: 165px;
    overflow: hidden;

    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;

    transition: all 0.3s ease;
}

/* Expanded state keeps SAME HEIGHT */
.review_text.expanded {
    display: block;
    overflow-y: auto;
    padding-right: 6px;
}

/* Scrollbar */
.review_text.expanded::-webkit-scrollbar {
    width: 4px;
}

.review_text.expanded::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}

.read_more_btn {
    background: none;
    border: none;
    color: #F26522;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    margin-bottom: 1rem;
}

.read_more_btn:hover {
    text-decoration: underline;
}

.review_name {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    font-weight: 700;
    color: #1a1a2e;
    font-size: 0.9rem;
    margin-top: auto;
}


.google_review_icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

/*----------------location-page--------------------*/

ol.directions-list {
    margin-left: 18px;
    margin-top: 10px;
}

.map-embed iframe {
    max-width: 100%;
    width: 100%;
    height: 100%;
    border: 1px solid #dbdbdb;
}

.map-embed {

    height: 500px;

}

.split-img {
    height: 100%;
}

@media only screen and (max-width: 991px) {
    .map-embed iframe {
        max-width: 100%;
        width: 100%;
        height: 350px;
    }

    .map-embed {

        height: 350px;

    }

}



/* ═══════════════════════════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════════════════════════ */
.contact-page {
    background: #f2f4f8;
    min-height: calc(100vh - 200px);
    padding: 60px 24px 80px;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    align-items: start;
}

.contact-left {
    max-width: 480px;
    width: 100%;
}

div#appointment.contact-right {
    background-color: #fff;
    padding: 32px;
    border-radius: 12px;
    width: 100%;
    max-width: 100%;
}

/* ── Info cards ────────────────────────────────────────────── */
.info-card {
    background: #fff;
    border-radius: 12px;
    border-top: 4px solid var(--orange);
    box-shadow: 0 2px 12px rgba(0, 0, 0, .07);
    padding: 28px 28px 30px;
    margin-bottom: 24px;
}

.info-card:last-child {
    margin-bottom: 0;
}

.info-card-title {
    font-family: var(--ff-sans);
    font-size: 18px;
    font-weight: 700;
    color: var(--orange);
    margin: 0 0 16px;
}

.info-practice-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
    margin: 0 0 12px;
}

.info-address {
    font-size: 16px;
    color: var(--text-soft);
    line-height: 1.6;
    margin: 0 0 12px;
}

.info-phone {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 12px;
}

.info-phone a {
    color: var(--orange);
}

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

.info-note {
    font-size: 14px;
    color: var(--muted);
    font-style: italic;
    line-height: 1.6;
    margin: 0;
}

/* Hours list */
.hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hours-list li {
    display: flex;
    align-items: baseline;
    gap: 6px;
    font-size: 16px;
    color: var(--text-soft);
}

.hours-day {
    color: var(--text);
    font-weight: 500;
}

.hours-sep {
    color: var(--muted);
}

.hours-time {
    color: var(--orange);
    font-weight: 500;
}

.hours-closed {
    color: var(--orange);
    font-weight: 400;
}

p.info-address:hover {
    color: #ee6233;
}

/* ── Appointment form ──────────────────────────────────────── */
.contact-form-title {
    font-family: var(--ff-serif);
    font-size: 26px;
    font-weight: bold;
    color: var(--orange);
    margin: 0 0 32px;
}

.appt-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

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

.form-label {
    font-size: 13.5px;
    font-weight: 500;
    color: var(--text);
}

.form-input {
    background: transparent;
    border: 1.5px solid #c9c9c9;
    border-radius: 8px;
    padding: 12px 14px;
    font-size: 14px;
    font-family: var(--ff-sans);
    color: var(--text);
    outline: none;
    transition: border-color .2s, background .2s;
    width: 100%;
}

.form-input:focus {
    border-color: var(--orange);
    background: #fff;
}

.form-input::placeholder {
    color: #aab0bc;
}

.form-textarea {
    resize: none;
    min-height: 120px;
}

/* Checkboxes */
.form-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.check-input {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    margin: 0;
    accent-color: var(--orange);
    cursor: pointer;
    position: relative;
    top: 4px;
}

.check-label {
    font-size: 12.5px;
    color: #474E57;
    line-height: 1.55;
    cursor: pointer;
}

/* Legal links */
.form-legal-links {
    font-size: 13px;
    margin: 0;
}

.form-legal-links a {
    color: var(--orange);
}

.form-legal-links a:hover {
    text-decoration: underline;
}

/* Submit */
.form-submit {
    width: 100%;
    justify-content: center;
    padding: 16px 24px;
    font-size: 16px;
    border-radius: 50px;
    margin-top: 20px;
}

/* ── Contact responsive ────────────────────────────────────── */
@media only screen and (max-width: 991px) {
    .contact-container {
        flex-wrap: wrap;
    }

    .contact-left {
        max-width: 100%;
    }
}

@media only screen and (max-width: 575px) {
    .form-row-2 {
        grid-template-columns: 1fr;
    }

    .contact-page {
        padding: 36px 16px 60px;
    }
}



/*--------Sitemape Page----------*/

/* Section */
.section-pad {
    padding: 80px 0;
}

.bg-white {
    background: #ffffff;
}

/* Container */
.sitemap-pad .container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Grid Layout */
.sitemap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
    align-items: start;
}

/* Group Card */
.sitemap-group {
    background: var(--bg-light);
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 24px;
    transition: all 0.3s ease;
    height: 100%;
}

.sitemap-group:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

/* Headings */
.sitemap-group h3 {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 10px;
}

.sitemap-group h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: #ee6233;
    border-radius: 10px;
}

/* List Reset */
.sitemap-group ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* List Items */
.sitemap-group li {
    margin-bottom: 12px;
}

/* Links */
.sitemap-group a {
    color: #374151;
    text-decoration: none;
    font-size: 15px;
    line-height: 1.5;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Arrow */
.sitemap-group a::before {
    content: "›";
    color: #ee6233;
    font-size: 18px;
    transition: transform 0.25s ease;
}

/* Hover */
.sitemap-group a:hover {
    color: #ee6233;
    padding-left: 4px;
}

.sitemap-group a:hover::before {
    transform: translateX(4px);
}

/* Responsive */
@media (max-width: 768px) {
    .section-pad {
        padding: 60px 0;
    }

    .sitemap-grid {
        gap: 24px;
    }

    .sitemap-group {
        padding: 20px;
    }

    .sitemap-group h3 {
        font-size: 18px;
    }

    .sitemap-group a {
        font-size: 14px;
    }
}


/*--------Sitemape Page----------*/

.hover_txt_flip {
    color: var(--orange);
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.hover_txt_flip:hover {
    color: var(--orange) !important;
}

.hover_txt_flip:hover:before {
    width: 100%;
    -webkit-transition: all .15s cubic-bezier(.4, 0, 1, 1);
    transition: all .15s cubic-bezier(.4, 0, 1, 1);
}

.hover_txt_flip:before {
    content: "";
    width: 0;
    height: 2px;
    position: absolute;
    bottom: 0;
    background: var(--orange);
    -webkit-transition: all 1s ease-out;
    transition: all 1s ease-out;
}

/* ─────────────────────────────────────────────────────────────
   LOCATION HUB GRID
───────────────────────────────────────────────────────────── */
.location-hub-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.location-hub-card {
    display: flex;
    flex-direction: column;
    background: var(--white, #fff);
    padding: 35px 30px;
    border-radius: 16px;
    text-decoration: none;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.location-hub-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border-color: var(--orange);
}

.lhc-city {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.lhc-distance {
    font-size: 13px;
    font-weight: 700;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 18px;
}

.location-hub-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
}

.lhc-arrow {
    display: flex;
    align-items: center;
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    transition: color 0.3s ease;
    margin-top: auto;
}

.lhc-arrow svg {
    margin-left: 6px;
    transition: transform 0.3s ease;
}

.location-hub-card:hover .lhc-arrow {
    color: var(--orange);
}

.location-hub-card:hover .lhc-arrow svg {
    transform: translateX(5px);
}



@media only screen and (max-width: 575px) {

    .location-hub-grid {

        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

.d-none {
    display: none;
}