/* ==========================================================================
   Apollonia Dental Center — Main Stylesheet
   ========================================================================== */

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

p {
    line-height: 1.5;
}

.order-1{
    order: 1;
}
.order-2{
    order: 2;
}

/* --- Site Container --- */
.site {
    font-family: 'DM Sans', sans-serif;
    color: #1a1a1a;
    background: #f5f5f5;
    width: 100%;
    overflow-x: clip;
}

.full-overlay {
    position: relative;
}

.full-overlay:before {
    content: '';
    background: #0000008c;
    z-index: 1;
    position: absolute;
    width: 100%;
    height: 100%;
}

/* --- Inner Container (constrains content width) --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==========================================================================
   Top Bar
   ========================================================================== */
.top-bar {
    background: #0A2540;
    position: relative;
    z-index: 201;
    overflow: hidden;
}
.top-bar-inner {
    display: flex;
    align-items: stretch;
    justify-content: center;
    white-space: nowrap;
    padding: 7px 0;
}
.top-bar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 0 20px;
    font-family: 'DM Sans', sans-serif;
}
.top-bar-name {
    color: #C8A96E;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.top-bar-details {
    display: flex;
    align-items: center;
    gap: 6px;
}
.top-bar-sep {
    color: rgba(255, 255, 255, 0.15);
    font-weight: 300;
    font-size: 10px;
}
.top-bar-addr {
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    font-size: 14px;
    font-weight: 300;
    transition: color 0.2s;
}
.top-bar-addr:hover {
    color: #C8A96E;
}
.top-bar-phone {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.01em;
    transition: color 0.2s;
}
.top-bar-phone:hover {
    color: #C8A96E;
}
.top-bar-divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
    align-self: stretch;
}
.top-bar-clone {
    display: none;
}

/* ==========================================================================
   Navigation
   ========================================================================== */
.nav {
    background-color: #fff;
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 200;
}

.nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 400;
    color: #fff;
    letter-spacing: 0.04em;
}

.nav-logo span {
    color: #C8A96E;
}

.nav-logo-img {
    height: 44px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 24px;
    list-style: none;
    align-items: center;
    width: 100%;
    justify-content: end;
}

.nav-links>li {
    position: relative;
}

.nav-links li a {
    color: #0A2540;
    text-decoration: none;
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 0.03em;
    transition: color 0.2s;
}

.nav-links li a:hover {
    color: #C8A96E;
}

.nav-links>li>a {
    display: block;
    position: relative;
}

@media only screen and (max-width: 1199px) {
    .nav-links {
        gap: 8px !important;
    }
}

/* Hover underline (desktop only, not on CTA) */
.nav-links>li>a:not(.nav-cta)::before {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #C8A96E;
    transition: width 0.22s ease;
}

.nav-links>li>a:not(.nav-cta):hover::before,
.nav-links>li.active>a:not(.nav-cta)::before {
    width: 100%;
}

/* Active state */
.nav-links>li.active>a:not(.nav-cta) {
    color: #C8A96E;
}

/* Dropdown toggle button — shown on ALL devices (unified icon) */
.nav-links>li.has-dropdown {
    display: flex;
    align-items: center;
}

.nav-links>li.has-dropdown>a::after {
    display: none;
}

/* remove old text chevron */
.dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    color: #0A2540;
    padding: 8px 3px 8px 5px;
    flex-shrink: 0;
    transition: color 0.2s, transform 0.25s;
    line-height: 0;
    pointer-events: none;
    /* decorative on desktop — hover opens dropdown */
}

.has-dropdown:hover>.dropdown-toggle {
    color: #C8A96E;
}

.nav-links>li.active>.dropdown-toggle {
    color: #C8A96E;
}

.has-dropdown.open>.dropdown-toggle {
    color: #C8A96E;
    transform: rotate(180deg);
}

/* Active state inside dropdown */
.dropdown li.active>a {
    color: #C8A96E;
    background: rgba(200, 169, 110, 0.08);
}

/* --- Dropdown Menus --- */
.dropdown {
    display: none;
    position: absolute;
    top: calc(100% - 2px);
    padding-top: 2px;
    left: 50%;
    transform: translateX(-50%);
    background: #0A2540;
    border: 0.5px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    padding: 10px 0;
    min-width: 220px;
    list-style: none;
    z-index: 100;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
    /* max-height: 70vh; */
    overflow-y: auto;
}

.has-dropdown:hover>.dropdown {
    display: block;
}

.has-dropdown.menu-double-col:hover>.dropdown {
    column-count: 2;
}

@media only screen and (max-width: 575px) {
    .has-dropdown.menu-double-col:hover>.dropdown {
        column-count: 1;
    }
}

.dropdown li a {
    display: block;
    padding: 9px 20px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.65);
    white-space: nowrap;
    transition: background 0.15s, color 0.15s;
}

.dropdown li a:hover {
    background: rgba(200, 169, 110, 0.12);
    color: #C8A96E;
}

/* --- Third-level submenu (flyout) --- */
.dropdown li.has-submenu {
    position: relative;
}

.dropdown li.has-submenu > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 14px;
}

/* Desktop: hide the SVG toggle button, use CSS arrow indicator instead */
.submenu-toggle {
    display: none;
}

.dropdown li.has-submenu > a::after {
    content: '›';
    font-size: 18px;
    line-height: 1;
    margin-left: 8px;
    opacity: 0.55;
    flex-shrink: 0;
}

.submenu {
    display: none;
    position: absolute;
    left: calc(100% - 2px);
    padding-left: 2px;
    top: -10px;
    background: #0A2540;
    border: 0.5px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    padding: 10px 0;
    min-width: 230px;
    list-style: none;
    z-index: 101;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.dropdown li.has-submenu:hover > .submenu {
    display: block;
}

.submenu li a {
    display: block;
    padding: 9px 20px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    white-space: nowrap;
    transition: background 0.15s, color 0.15s;
}

.submenu li a:hover {
    background: rgba(200, 169, 110, 0.12);
    color: #C8A96E;
}

.submenu li.active > a {
    color: #C8A96E;
    background: rgba(200, 169, 110, 0.08);
}

/* ============================================================
   Services mega-panel — desktop only
   Category list on the left; service pages side-panel on the right.
   The trick: set category <li> to position:static so the .submenu
   positions relative to .dropdown (the nearest positioned ancestor)
   instead of the individual hovered <li>.
   ============================================================ */

/* Category dropdown: fixed width left column */
.services-mega-menu > .dropdown {
    min-width: 220px;
    /* overflow:visible ensures the side panel isn't clipped */
    overflow: visible;
}

/* Category rows keep relative positioning so submenu aligns with hovered item */
.services-mega-menu > .dropdown > li.has-submenu {
    position: relative;
}

/* Category link: right-pointing indicator */
.services-mega-menu > .dropdown > li.has-submenu > a {
    padding-right: 20px;
}

.services-mega-menu > .dropdown > li.has-submenu > a::after {
    content: '›';
    font-size: 18px;
    line-height: 1;
    margin-left: auto;
    padding-left: 12px;
    opacity: 0.5;
    flex-shrink: 0;
}

/* Side panel: aligned with the hovered category item */
.services-mega-menu > .dropdown > li.has-submenu > .submenu {
    position: absolute;
    left: calc(100% - 2px);
    padding-left: 2px;
    top: -10px;
    min-width: 230px;
    border-radius: 10px;
    background: #0A2540;
    border: 0.5px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
    padding: 10px 0;
}

/* Highlight active category row */
.services-mega-menu > .dropdown > li.has-submenu:hover > a,
.services-mega-menu > .dropdown > li.has-submenu.active > a {
    color: #C8A96E;
    background: rgba(200, 169, 110, 0.08);
}

.nav-cta {
    background: #C8A96E;
    color: #0A2540 !important;
    padding: 7px 18px;
    border-radius: 100px;
    font-weight: 500 !important;
    font-size: 15px !important;
    text-decoration: none;
    border: 1.5px solid #C8A96E;
    transition: background 0.22s, color 0.22s, border-color 0.22s;
}

.nav-cta:hover {
    background: transparent !important;
    color: #C8A96E !important;
    border-color: #C8A96E;
}

/* Nav overlay (mobile drawer backdrop) */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.48);
    z-index: 290;
    backdrop-filter: blur(2px);
}

.nav-overlay.open {
    display: block;
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
    background: #0A2540;
    overflow: hidden;
    position: relative;
}

.hero .container {
    padding-top: 56px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: end;
}

.hero::before {
    content: '';
    position: absolute;
    top: -60px;
    left: -60px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(200, 169, 110, 0.06);
}

.hero-eyebrow {
    font-size: 13px;
    letter-spacing: 0.16em;
    color: #C8A96E;
    text-transform: uppercase;
    margin-bottom: 14px;
    font-weight: 400;
}

.hero-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: 46px;
    font-weight: 300;
    line-height: 1.18;
    color: #fff;
    margin-bottom: 20px;
}

.hero-heading em {
    color: #C8A96E;
    font-style: italic;
}

.hero-body {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 28px;
    max-width: 340px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 40px;
}

/* --- Buttons --- */
.btn-primary,
.btn-ghost {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 0.02em;
    text-align: center;
    transition: background 0.22s, color 0.22s, border-color 0.22s;
}

.btn-primary {
    background: #C8A96E;
    color: #0A2540;
    border: 1.5px solid #C8A96E;
}

.btn-primary:hover {
    background: transparent;
    color: #C8A96E;
    border-color: #C8A96E;
}

.btn-ghost {
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.45);
    background: transparent;
}

.btn-ghost:hover {
    border-color: #C8A96E;
    color: #C8A96E;
}

/* Phone number — shown on desktop, hidden on mobile */
.btn-phone-number {
    display: inline;
}

/* --- Hero Stats --- */
.hero-stats {
    display: flex;
    gap: 28px;
    padding-top: 24px;
    border-top: 0.5px solid rgba(255, 255, 255, 0.12);
    padding-bottom: 40px;
}

.stat-num {
    font-size: 26px;
    color: #C8A96E;
    line-height: 1;
    font-weight: 600;
}

.stat-num span {
    font-size: 16px;
}

.stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 300;
    letter-spacing: 0.04em;
    margin-top: 2px;
}

/* --- Hero Card --- */
.hero-card {
    width: 100%;
    padding: 28px 24px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 0.5px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px 16px 0 0;
}

.hero-card-label {
    font-size: 11px;
    letter-spacing: 0.14em;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    margin-bottom: 18px;
    font-weight: 500;
}

.appt-slot {
    background: rgba(255, 255, 255, 0.06);
    border: 0.5px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 14px 16px;
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s;
}

.appt-slot:last-of-type {
    margin-bottom: 0;
}

/* .appt-slot:first-of-type {
    border-color: #C8A96E;
    background: rgba(200, 169, 110, 0.08);
} */

.appt-slot:hover {
    border-color: #C8A96E;
    background: rgba(200, 169, 110, 0.1);
}

.appt-slot:hover .appt-badge,
.appt-slot:not(:first-of-type):hover .appt-badge {
    background: #C8A96E;
    color: #0A2540;
}

.appt-loc-name {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
    font-family: 'DM Sans', sans-serif;
}

.appt-badge {
    font-size: 12px;
    padding: 4px 14px;
    border-radius: 100px;
    background: #C8A96E;
    color: #0A2540;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: all 0.25s;
    white-space: nowrap;
}

.appt-slot .appt-badge {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

/* ==========================================================================
   Trust Bar
   ========================================================================== */
.trust-bar {
    background: #F7F3EE;
    border-bottom: 0.5px solid #E8E0D5;
}

.trust-bar .container {
    display: flex;
    gap: 32px;
    align-items: center;
    flex-wrap: wrap;
    padding-top: 20px;
    padding-bottom: 20px;
    justify-content: center;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: #5C5243;
    font-weight: 400;
}

.trust-icon {
    width: 20px;
    height: 20px;
    background: #C8A96E;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #fff;
    flex-shrink: 0;
}

/* ==========================================================================
   Sections — Common
   ========================================================================== */
.section {
    padding: 52px 0;
}

.section.bg-light {
    background: #fff;
}

.section-label {
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #C8A96E;
    margin-bottom: 10px;
    font-weight: 400;
    text-align: left;
}

.section-heading {
    font-size: 34px;
    font-weight: 400;
    line-height: 1.25;
    color: #0A2540;
    margin-bottom: 36px;
    text-align: left;
    font-family: 'Cormorant Garamond', serif;
}

.section-heading em {
    font-style: italic;
    color: #8B7355;
}

.sp-intro .sp-subheading {
    font-family: 'Cormorant Garamond', serif;
    font-size: 34px;
    font-weight: 400;
    line-height: 1.25;
    color: #0A2540;
    margin-bottom: 16px;
}

/* Wrapper that groups section-label + section-heading together */
.section-main-title {
    margin-bottom: 25px;
}
.section-main-title.title-center {
    text-align: center;
}
.section-main-title.title-center .section-label,
.section-main-title.title-center .section-heading {
    text-align: center;
}
.section-main-title .section-heading {
    margin-bottom: 0;
}
@media only screen and (max-width: 768px) {
    .section-main-title {
        margin-bottom: 20px;
    }
}

/* Home page keeps section headings and labels centered */
.page-home .section-label,
.page-home .section-heading {
    text-align: center;
}

/* ==========================================================================
   Services
   ========================================================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.service-card {
    background: #fff;
    border: 0.5px solid #e0e0e0;
    border-radius: 14px;
    padding: 24px;
    cursor: pointer;
    transition: border-color 0.2s;
    text-decoration: none;
    color: inherit;
    display: block;
}

.service-card:hover {
    border-color: #C8A96E;
}

.service-icon {
    width: 40px;
    height: 40px;
    background: #F7F3EE;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.service-icon svg {
    width: 20px;
    height: 20px;
}

.service-name {
    /* font-family: 'Cormorant Garamond', serif; */
    font-size: 18px;
    font-weight: 500;
    color: #0A2540;
    margin-bottom: 6px;
}

.service-desc {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.5;
    color: #666;
}

.service-link {
    font-size: 12px;
    color: #C8A96E;
    margin-top: 14px;
    display: block;
    font-weight: 500;
    letter-spacing: 0.04em;
    transition: color 0.2s, letter-spacing 0.2s;
}

.service-link:hover {
    color: #0A2540;
    letter-spacing: 0.08em;
}

/* ==========================================================================
   Savings Plan
   ========================================================================== */
.savings-section {
    background: #0A2540;
    padding: 52px 0;
}

.savings-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.savings-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(200, 169, 110, 0.15);
    border: 0.5px solid rgba(200, 169, 110, 0.3);
    border-radius: 100px;
    padding: 4px 14px;
    font-size: 13px;
    color: #C8A96E;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
    font-weight: 400;
}

.section-label.meet-doctor {
    text-align: left;
}

.savings-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    /* font-weight: 300; */
    color: #fff;
    line-height: 1.3;
    margin-bottom: 12px;
}

.savings-body {
    font-size: 16px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.5;
    margin-bottom: 24px;
}

.savings-card {
    background: rgba(255, 255, 255, 0.05);
    border: 0.5px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 24px;
}

.savings-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 40px;
    font-weight: 300;
    color: #C8A96E;
    line-height: 1;
}

.savings-price span {
    font-size: 20px;
}

.savings-period {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.35);
    font-weight: 300;
    margin-top: 3px;
    margin-bottom: 20px;
}

.savings-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
}

.check-dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(200, 169, 110, 0.2);
    border: 0.5px solid rgba(200, 169, 110, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.check-dot::after {
    content: '\2713';
    font-size: 16px;
    color: #C8A96E;
}

.savings-card-footer {
    margin-top: 18px;
    /* font-size: 13px; */
    color: rgba(255, 255, 255, 0.25);
    font-weight: 300;
}

/* ==========================================================================
   Doctor
   ========================================================================== */
.doctor-section {
    background: #F7F3EE;
    padding: 52px 0;
}

.doctor-section .container {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 48px;
    align-items: center;
}

.doctor-avatar {
    width: 100%;
    height: auto;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    box-shadow: 0 8px 32px rgba(10, 37, 64, 0.18);
}

.doctor-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    border-radius: 14px;
}

.doctor-silhouette {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    margin-bottom: -30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.doctor-initials {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
}

.doctor-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 500;
    color: #0A2540;
    margin-bottom: 4px;
}

.doctor-title {
    font-size: 15px;
    color: #8B7355;
    letter-spacing: 0.06em;
    font-weight: 300;
    margin-bottom: 16px;
}

.doctor-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-style: italic;
    font-weight: 400;
    color: #4A3F32;
    line-height: 1.5;
    margin-bottom: 16px;
    border-left: 2px solid #C8A96E;
    padding-left: 16px;
}

.doctor-bio {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.5;
    color: #5C5243;
    margin-bottom: 20px;
}

.credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.cred-badge {
    background: #fff;
    border: 0.5px solid #D8CFC3;
    border-radius: 100px;
    padding: 5px 14px;
    font-size: 13px;
    color: #5C5243;
    font-weight: 400;
}

/* ==========================================================================
   Reviews
   ========================================================================== */
.reviews-section {
    padding: 52px 0;
    background: #fff;
}

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

.review-card {
    background: #f9f9f9;
    border: 0.5px solid #e0e0e0;
    border-radius: 14px;
    padding: 20px;
}

.stars {
    color: #C8A96E;
    font-size: 15px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.review-text {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.5;
    color: #666;
    font-style: italic;
    margin-bottom: 14px;
}

.reviewer {
    font-size: 15px;
    font-weight: 500;
    color: #1a1a1a;
}

/* --- Reviews Page --- */
.reviews-page-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.rp-card {
    background: #fff;
    border: 1px solid rgba(10,37,64,0.08);
    border-radius: 14px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.25s, transform 0.25s;
}

.rp-card:hover {
    box-shadow: 0 8px 28px rgba(10,37,64,0.10);
    transform: translateY(-3px);
}

.rp-card-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 600;
    color: #0A2540;
    margin-bottom: 6px;
}

.rp-card-stars {
    color: #C8A96E;
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.rp-card-text-wrap {
    flex: 1;
    margin-bottom: 14px;
    max-height: 6.6em; /* ~4 lines at 1.65 line-height */
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.rp-card-text-wrap.expanded {
    /* max-height: 160px; */
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #C8A96E transparent;
}

.rp-card-text-wrap.expanded::-webkit-scrollbar {
    width: 5px;
}

.rp-card-text-wrap.expanded::-webkit-scrollbar-track {
    background: transparent;
}

.rp-card-text-wrap.expanded::-webkit-scrollbar-thumb {
    background: #C8A96E;
    border-radius: 10px;
}

.rp-card-text {
    font-size: 15px;
    line-height: 1.65;
    color: #444;
    margin: 0;
}

.rp-read-more {
    background: none;
    border: none;
    color: #C8A96E;
    font-size: 13.5px;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    margin-bottom: 16px;
    align-self: flex-start;
    transition: color 0.2s;
}

.rp-read-more:hover {
    color: #0A2540;
}

.rp-card-source {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #0A2540;
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid rgba(10,37,64,0.06);
}

.rp-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 40px;
    background: #fff;
    border-radius: 14px;
    border: 1px solid rgba(10,37,64,0.08);
    margin-bottom: 10px;
}

.rp-summary-rating {
    text-align: center;
}

.rp-summary-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 56px;
    font-weight: 700;
    color: #0A2540;
    line-height: 1;
}

.rp-summary-stars {
    color: #C8A96E;
    font-size: 22px;
    letter-spacing: 3px;
    margin: 6px 0;
}

.rp-summary-count {
    font-size: 14px;
    color: #666;
}

.rp-summary-divider {
    width: 1px;
    height: 70px;
    background: rgba(10,37,64,0.10);
}

.rp-summary-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 600;
    color: #0A2540;
    max-width: 340px;
}

.rp-summary-text em {
    color: #C8A96E;
    font-style: italic;
}

/* --- Video Testimonials --- */
.video-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 30px;
}

.video-testimonial-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(10,37,64,0.08);
    transition: box-shadow 0.25s, transform 0.25s;
}

.video-testimonial-card:hover {
    box-shadow: 0 8px 28px rgba(10,37,64,0.10);
    transform: translateY(-3px);
}

.video-testimonial-wrap {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-testimonial-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-testimonial-caption {
    padding: 16px 20px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px;
    font-weight: 600;
    color: #0A2540;
    text-align: center;
}

@media (max-width: 1024px) {
    .reviews-page-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .reviews-page-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
    .video-testimonials-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

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

/* ==========================================================================
   CTA Section
   ========================================================================== */
.cta-section {
    background: #0A2540;
    padding: 56px 0;
    text-align: center;
}

.cta-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: 38px;
    font-weight: 300;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 10px;
}

.cta-sub {
    font-size: 16px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
    margin-bottom: 32px;
}

.cta-btns {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.btn-cta-primary {
    background: #C8A96E;
    color: #0A2540;
    padding: 14px 36px;
    border-radius: 100px;
    font-size: 17px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    border: 1.5px solid #C8A96E;
    transition: background 0.22s, color 0.22s, border-color 0.22s;
}

.btn-cta-primary:hover {
    background: transparent;
    color: #C8A96E;
    border-color: #C8A96E;
}

.btn-cta-outline {
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.7);
    padding: 14px 36px;
    border-radius: 100px;
    font-size: 17px;
    font-weight: 300;
    text-decoration: none;
    display: inline-block;
    transition: background 0.22s, color 0.22s, border-color 0.22s;
}

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

/* --- Call Now Dropdown --- */
.call-now-wrap {
    position: relative;
    display: inline-block;
}
.call-now-toggle {
    cursor: pointer;
    background: none;
    font-family: inherit;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.call-now-arrow {
    transition: transform 0.25s;
}
.call-now-wrap.open .call-now-arrow {
    transform: rotate(180deg);
}
.call-now-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(-6px);
    min-width: 260px;
    background: #0A2540;
    border: 1px solid rgba(200, 169, 110, 0.2);
    border-radius: 12px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
    z-index: 100;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}
.call-now-wrap.open .call-now-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.call-now-option {
    display: flex;
    /* justify-content: space-between; */
    align-items: center;
    padding: 12px 16px;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.2s;
    gap: 5px;
}
.call-now-option:hover,
.call-now-option:focus {
    background: rgba(200, 169, 110, 0.1);
    outline: none;
}
.call-now-loc {
    font-size: 14px;
    font-weight: 500;
    color: #C8A96E;
}
.call-now-phone {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
}
.call-now-option:hover .call-now-phone {
    color: #fff;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background: #070F1C;
    padding: 56px 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 0.5px solid rgba(255, 255, 255, 0.08);
}

.footer-logo-img {
    height: 40px;
    width: auto;
    display: block;
    margin-bottom: 14px;
}

.footer-tagline {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 0.5px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s;
    flex-shrink: 0;
}

.social-icon:hover {
    border-color: #C8A96E;
    color: #C8A96E;
}

.footer-col-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px;
    font-weight: 500;
    color: #C8A96E;
    margin-bottom: 14px;
    letter-spacing: 0.02em;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 9px;
}

.footer-links li a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    font-weight: 300;
    transition: color 0.2s;
}

.footer-links li a:hover {
    color: #C8A96E;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    border-top: 0.5px solid rgba(255, 255, 255, 0.08);
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.25);
    font-weight: 300;
}

.footer-bottom p a {
    color: rgba(255, 255, 255, 0.35);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-bottom p a:hover {
    color: #C8A96E;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.25);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-bottom-links a:hover {
    color: #C8A96E;
}

/* ==========================================================================
   Locations Section (pre-footer)
   ========================================================================== */
.locations-section {
    background: #0D1B2F;
    padding: 64px 0;
}

.locations-section-header {
    text-align: center;
    margin-bottom: 44px;
}

.locations-section-label {
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #C8A96E;
    margin-bottom: 10px;
    font-weight: 400;
}

.locations-section-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: 34px;
    font-weight: 300;
    color: #fff;
    line-height: 1.25;
}

.locations-section-heading em {
    font-style: italic;
    color: #C8A96E;
}

.locations-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

/* Location Tabs */
.loc-tabs {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}
.loc-tab {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    padding: 10px 24px;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 0.02em;
}
.loc-tab:hover {
    background: rgba(200, 169, 110, 0.1);
    border-color: rgba(200, 169, 110, 0.3);
    color: #C8A96E;
}
.loc-tab.active {
    background: #C8A96E;
    border-color: #C8A96E;
    color: #0A2540;
    font-weight: 600;
}
.loc-panels {
    position: relative;
}
.loc-panel {
    display: none;
}
.loc-panel.active {
    display: block;
    animation: locFadeIn 0.35s ease;
}
.loc-panel .location-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 16px;
    overflow: hidden;
    min-height: 380px;
}
.loc-panel .location-card .location-card-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 32px 40px;
}
@keyframes locFadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}
/* Top bar slider: 4 slides, each visible ~3s, transition ~1s = 16s total */
@keyframes topBarSlide {
    0%      { transform: translateX(0); }
    6.25%   { transform: translateX(0); }        /* pause on 1 */
    25%     { transform: translateX(-100vw); }
    31.25%  { transform: translateX(-100vw); }    /* pause on 2 */
    50%     { transform: translateX(-200vw); }
    56.25%  { transform: translateX(-200vw); }    /* pause on 3 */
    75%     { transform: translateX(-300vw); }
    81.25%  { transform: translateX(-300vw); }    /* pause on 4 */
    100%    { transform: translateX(-400vw); }
}

.location-card {
    background: rgba(255, 255, 255, 0.04);
    border: 0.5px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color 0.2s;
}

.location-card:hover {
    border-color: rgba(200, 169, 110, 0.35);
}

.location-card-map {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    filter: grayscale(15%) brightness(0.88);
}

.location-card-info {
    padding: 24px 28px;
}

.location-card-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 500;
    color: #C8A96E;
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}

.location-card-addr {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 12px;
    text-decoration: none;
    display: block;
    transition: color 0.2s;
}

.location-card-addr:hover {
    color: #C8A96E;
}

.location-card-phone {
    display: inline-block;
    font-size: 21px;
    font-weight: 400;
    color: #fff;
    text-decoration: none;
    margin-bottom: 18px;
    transition: color 0.2s;
    letter-spacing: 0.01em;
}

.location-card-phone:hover {
    color: #C8A96E;
}

.location-card-hours {
    border-top: 0.5px solid rgba(255, 255, 255, 0.08);
    padding-top: 14px;
    margin-bottom: 16px;
}

.location-card-hours-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
    margin-bottom: 6px;
    gap: 8px;
}

.location-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    border-top: 0.5px solid rgba(255, 255, 255, 0.08);
    padding-top: 14px;
}

.location-card-email {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
    text-decoration: none;
    transition: color 0.2s;
}

.location-card-email:hover {
    color: #C8A96E;
}

.location-card-directions {
    font-size: 13px;
    color: #C8A96E;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.04em;
    transition: color 0.2s, letter-spacing 0.2s;
    white-space: nowrap;
}

.location-card-directions:hover {
    color: #fff;
    letter-spacing: 0.07em;
}

/* ==========================================================================
   Subpage Banner (.sp-banner)
   ========================================================================== */

.sp-banner {
    background: #0A2540;
    overflow: hidden;
    position: relative;
}
.sp-banner::before {
    content: '';
    position: absolute;
    top: -60px;
    left: -60px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(200, 169, 110, 0.06);
}

.sp-banner-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 48px;
    padding-top: 60px;
    padding-bottom: 0;
}

/* --- Col 1: Content --- */
.sp-banner-content {
    padding-bottom: 60px;
}

.sp-banner-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #C8A96E;
    font-weight: 400;
    margin-bottom: 18px;
}

.sp-banner-eyebrow::before {
    content: '';
    display: inline-block;
    width: 28px;
    height: 1.5px;
    background: #C8A96E;
    flex-shrink: 0;
}

.sp-banner-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: 52px;
    font-weight: 300;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 20px;
}

.sp-banner-heading em {
    color: #C8A96E;
    font-style: italic;
}

.sp-banner-body {
    font-size: 16px;
    font-weight: 300;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    margin-bottom: 32px;
}

.sp-banner-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}
.sp-banner-actions .btn-ghost {
    display: none;
}

/* --- Col 2: Image --- */
.sp-banner-visual {
    align-self: flex-end;
    border-radius: 16px 16px 0 0;
    overflow: hidden;
    line-height: 0;
}

.sp-banner-img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center 20%;
}

/* ==========================================================================
   Service Pages
   ========================================================================== */

/* --- "We Do It All Under One Roof" gold sub-headline --- */
.sp-intro-roof {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-style: italic;
    font-weight: 500;
    color: #C8A96E;
    margin-bottom: 18px;
    margin-top: -10px;
    line-height: 1.3;
}

/* --- Intro Layout (text + image side by side) --- */
.sp-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.sp-intro-content {}

.sp-text {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.5;
    color: #444;
    margin-bottom: 16px;
}

.sp-text:last-child {
    margin-bottom: 0;
}

.sp-cta-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.sp-text-link {
    font-size: 16px;
    color: #C8A96E;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 0.02em;
    display: inline-block;
    margin-top: 8px;
    transition: color 0.2s;
}

.sp-text-link:hover {
    color: #0A2540;
    text-decoration: underline;
}

/* --- Image Placeholders --- */
.sp-image-placeholder {
    width: 100%;
    aspect-ratio: 1;
    max-width: 360px;
    margin: 0 auto;
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sp-image-placeholder svg {
    width: 100%;
    height: 100%;
}

.sp-image-placeholder.sp-image-dark {
    border: 0.5px solid rgba(200, 169, 110, 0.2);
}

/* --- Benefits Grid --- */
.sp-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    justify-content: center;
    
}

.sp-benefits-grid a{
    text-decoration: none;
}

.sp-benefit {
    display: flex;
    gap: 16px;
    align-items: center;
    background: #fff;
    border: 0.5px solid #e0e0e0;
    border-radius: 14px;
    padding: 20px;
    transition: border-color 0.2s;
}
.sp-benefits-grid.align-top .sp-benefit {
    align-items: start;
}
.sp-benefit:hover {
    border-color: #C8A96E;
}

.sp-benefit-icon {
    width: 36px;
    height: 36px;
    background: #F7F3EE;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sp-benefit-icon svg {
    width: 18px;
    height: 18px;
}

.sp-benefit-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 500;
    color: #0A2540;
}
.sp-benefit-title:not(:last-child){
    margin-bottom: 4px;
}

.sp-benefit-desc {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.5;
    color: #666;
}

/* --- 3-Column Benefits Grid (9 items) --- */
.sp-benefits-3col {
    grid-template-columns: repeat(3, 1fr);
}

/* --- Cone Beam Tech Strip --- */
.sp-tech-strip {
    background: #0A2540;
    padding: 32px 0;
}

.sp-tech-inner {
    display: flex;
    align-items: center;
    gap: 24px;
}

.sp-tech-icon {
    width: 64px;
    height: 64px;
    background: rgba(200, 169, 110, 0.12);
    border: 0.5px solid rgba(200, 169, 110, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sp-tech-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 6px;
}

.sp-tech-desc {
    font-size: 15px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.5;
}

/* --- Denture Benefits Checklist --- */
.sp-denture-benefits {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 20px 0;
}

.sp-denture-benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 400;
    color: #1a1a1a;
}

.sp-denture-check {
    width: 22px;
    height: 22px;
    background: rgba(200, 169, 110, 0.12);
    border: 1px solid rgba(200, 169, 110, 0.4);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #C8A96E;
    font-size: 12px;
    flex-shrink: 0;
    margin-right: 4px;
}

/* Full-description denture benefits (from live site) */
.sp-denture-question {
    font-weight: 500;
    color: #0A2540 !important;
    font-size: 17px !important;
}
.sp-denture-sublabel {
    color: #8B7355 !important;
    font-weight: 500 !important;
    margin-bottom: 4px !important;
}
.sp-denture-benefits-full {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin: 16px 0 20px;
}
.sp-denture-benefit-full {
    border-left: 2px solid rgba(200, 169, 110, 0.35);
    padding-left: 14px;
}
.sp-denture-benefit-title {
    font-size: 16px;
    font-weight: 500;
    color: #0A2540;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Consultation strip subtitle */
.sp-consult-subtitle {
    font-size: 16px;
    font-weight: 500;
    color: #8B7355;
    margin-bottom: 8px;
    font-style: italic;
}

/* --- Special Offer --- */
.sp-offer-section {
    background: #F7F3EE;
    padding: 52px 0;
}

.sp-offer-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    max-width: 100%;
    margin: 0 auto;
}

.sp-offer-card {
    text-align: left;
}

.sp-offer-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(200, 169, 110, 0.12);
    border: 1px solid rgba(200, 169, 110, 0.35);
    border-radius: 100px;
    padding: 4px 14px;
    font-size: 13px;
    color: #A0854A;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
    font-weight: 500;
}

.sp-offer-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: 38px;
    font-weight: 300;
    color: #2D3142;
    line-height: 1.25;
    margin-bottom: 10px;
}

.sp-offer-sub {
    font-size: 16px;
    font-weight: 300;
    color: #6B7280;
    line-height: 1.5;
    margin-bottom: 12px;
}

.sp-offer-includes {
    list-style: none;
    margin: 0 0 24px;
}

.sp-offer-includes li {
    font-size: 16px;
    color: #4B5563;
    font-weight: 300;
    margin-bottom: 8px;
    padding-left: 2px;
}

.sp-offer-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}

.sp-offer-actions .btn-ghost {
    color: #2D3142;
    border-color: rgba(45, 49, 66, 0.3);
}
.sp-offer-actions .btn-ghost:hover {
    color: #C8A96E;
    border-color: #C8A96E;
}

.sp-offer-img-wrap {
    display: flex;
    justify-content: center;
}

/* --- Consultation Section (2-col with video) --- */
.sp-consult-section {
    background: #F7F3EE;
    padding: 56px 0;
    border-top: 0.5px solid #E8E0D5;
    border-bottom: 0.5px solid #E8E0D5;
}

.sp-consult-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 52px;
    align-items: center;
}

.sp-consult-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 400;
    color: #0A2540;
    line-height: 1.25;
    margin-bottom: 12px;
}

.sp-consult-heading em {
    font-style: italic;
    color: #8B7355;
}

.sp-consult-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 500;
    color: #0A2540;
    margin-bottom: 6px;
}

.sp-consult-desc {
    font-size: 16px;
    font-weight: 300;
    color: #5C5243;
    line-height: 1.6;
    margin-bottom: 24px;
}

.sp-consult-video-wrap {
    display: block;
}

.sp-consult-video {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 ratio */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.sp-consult-video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 12px;
}

/* --- Location Hours (inside sp-location-card) --- */
.sp-location-hours {
    font-size: 13px;
    color: #999;
    font-weight: 300;
    line-height: 1.6;
    margin-top: 10px;
}

/* --- Two Column Text --- */
.sp-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
}

/* --- Process Timeline --- */
.proc-timeline {
    max-width: 820px;
    margin: 0 auto;
    position: relative;
}
.proc-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    position: relative;
    padding-bottom: 40px;
}
.proc-step:last-child {
    padding-bottom: 0;
}
.proc-step-num {
    flex-shrink: 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 700;
    color: #1a6bb5;
    line-height: 1;
    width: 36px;
    text-align: right;
}
.proc-step-dot {
    flex-shrink: 0;
    width: 14px;
    height: 14px;
    background: #1a6bb5;
    border-radius: 50%;
    margin-top: 6px;
    position: relative;
    z-index: 2;
}
.proc-step:not(:last-child) .proc-step-dot::after {
    content: '';
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: calc(100% + 26px);
    border-left: 2px dashed rgba(26, 107, 181, 0.25);
}
.proc-step:not(:last-child) .proc-step-dot {
    position: relative;
}
/* Extend dashed line to next step */
.proc-step {
    position: relative;
}
.proc-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 42px;
    top: 26px;
    bottom: 0;
    border-left: 2px dashed rgba(26, 107, 181, 0.2);
    z-index: 1;
}
.proc-step-body {
    flex: 1;
    padding-top: 0;
}
.proc-step-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 600;
    color: #1a6bb5;
    margin: 0 0 8px;
    line-height: 1.3;
}
.proc-step-desc {
    font-size: 15px;
    color: #6B7280;
    line-height: 1.7;
    font-weight: 300;
    margin: 0;
}

@media (max-width: 768px) {
    .proc-step-num {
        font-size: 22px;
        width: 28px;
    }
    .proc-step-title {
        font-size: 19px;
    }
    .proc-step:not(:last-child)::after {
        left: 34px;
    }
    .proc-step {
        gap: 14px;
        padding-bottom: 28px;
    }
}

/* --- Tips Grid --- */
.tips-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}
.tip-card {
    background: #fff;
    border: 1px solid rgba(10, 37, 64, 0.06);
    border-radius: 14px;
    padding: 24px 24px 24px 28px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.tip-card:hover {
    border-color: rgba(200, 169, 110, 0.3);
    box-shadow: 0 4px 20px rgba(10, 37, 64, 0.06);
}
.tip-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: calc(50% - 8px);
    justify-self: center;
}
.tip-num {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: rgba(200, 169, 110, 0.12);
    color: #C8A96E;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    font-weight: 600;
}
.tip-card p {
    font-size: 15px;
    color: #4A5568;
    line-height: 1.7;
    margin: 0;
    font-weight: 300;
}

@media (max-width: 768px) {
    .tips-grid {
        grid-template-columns: 1fr;
    }
    .tip-card:last-child:nth-child(odd) {
        max-width: 100%;
    }
}

/* --- FAQ Accordion --- */
.faq-accordion {
    max-width: 820px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #D8CFC3;
}

.faq-item:first-child {
    border-top: 1px solid #D8CFC3;
}

.faq-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 22px 4px;
    text-align: left;
    font-family: 'DM Sans', sans-serif;
    font-size: 17px;
    font-weight: 500;
    color: #0A2540;
    line-height: 1.4;
    transition: color 0.2s;
}

.faq-trigger:hover {
    color: #C8A96E;
}

.faq-item.faq-open > .faq-trigger {
    color: #C8A96E;
}

/* +/- icon built entirely in CSS */
.faq-icon {
    position: relative;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border: 1.5px solid currentColor;
    border-radius: 50%;
    opacity: 0.6;
    transition: opacity 0.2s, transform 0.3s;
}
.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: currentColor;
    border-radius: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
/* horizontal bar (always shown) */
.faq-icon::before { width: 10px; height: 1.5px; }
/* vertical bar (shown when closed, hidden when open) */
.faq-icon::after  { width: 1.5px; height: 10px; transition: transform 0.3s, opacity 0.3s; }

.faq-item.faq-open > .faq-trigger .faq-icon {
    opacity: 1;
}
.faq-item.faq-open > .faq-trigger .faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

/* answer panel */
.faq-body {
    display: none;
    padding: 0 4px 22px;
}
.faq-item.faq-open > .faq-body {
    display: block;
}
.faq-body p {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.6;
    color: #555;
}

/* --- Locations Grid --- */
.sp-locations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.sp-location-card {
    background: #fff;
    border: 0.5px solid #e0e0e0;
    border-radius: 14px;
    padding: 28px;
    text-align: center;
    transition: border-color 0.2s;
}

.sp-location-card:hover {
    border-color: #C8A96E;
}

.sp-location-icon {
    width: 44px;
    height: 44px;
    background: #F7F3EE;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}

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

.sp-location-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 500;
    color: #0A2540;
    margin-bottom: 8px;
}

.sp-location-addr {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.5;
    color: #666;
    margin-bottom: 12px;
}

.sp-location-phone {
    font-size: 17px;
    color: #C8A96E;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
}

.sp-location-phone:hover {
    color: #0A2540;
    text-decoration: underline;
}

/* ==========================================================================
   Mobile Header CTA Button (visible 576px–1199px)
   ========================================================================== */
.nav-cta-mobile {
    display: none;
}

@media (min-width: 576px) and (max-width: 1199px) {
    .nav-cta-mobile {
        display: inline-block;
        order: 2;
        background: #C8A96E;
        color: #fff;
        font-size: 14px;
        font-weight: 500;
        letter-spacing: 0.03em;
        padding: 10px 22px;
        border-radius: 100px;
        text-decoration: none;
        white-space: nowrap;
        transition: background 0.2s, transform 0.15s;
        margin-left: auto;
        margin-right: 16px;
    }

    .nav-cta-mobile:hover {
        background: #b8994e;
        transform: translateY(-1px);
    }

    .nav-toggle {
        order: 3 !important;
    }
}

@media (max-width: 575px) {
    .nav-cta-mobile {
        display: none;
    }
}

/* ==========================================================================
   Mobile Nav Toggle
   ========================================================================== */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px 4px;
    z-index: 310;
    position: relative;
}

.nav-toggle.active>* {
    background-color: #fff;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background-color: #1a1a1a;
    margin: 5px 0;
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ==========================================================================
   Responsive — Navigation (max-width: 1199px)
   ========================================================================== */
@media (max-width: 1199px) {

    /* --- Top bar responsive: slider mode --- */
    .top-bar {
        overflow: hidden;
    }
    .top-bar-inner {
        justify-content: flex-start;
        animation: topBarSlide 16s linear infinite;
        padding: 6px 0;
    }
    .top-bar-divider {
        display: none;
    }
    .top-bar-item {
        min-width: 100vw;
        padding: 0 16px;
        box-sizing: border-box;
    }
    .top-bar-clone {
        display: flex;
    }
    .top-bar-addr {
        font-size: 14px;
    }
    .top-bar-phone {
        font-size: 14px;
    }
    .top-bar-name {
        font-size: 14px;
    }

    /* --- Nav layout: logo left, toggle right --- */
    .nav .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .nav-logo {
        order: 1;
    }

    .nav-toggle {
        display: block;
        order: 2;
    }

    /* --- Right-side drawer --- */
    .nav-links {
        position: fixed;
        justify-content: start;
        top: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        /* width: min(300px, 82vw); */
        background: #0A2540;
        flex-direction: column;
        align-items: stretch;
        padding: 64px 0 32px;
        gap: 0;
        border-left: 0.5px solid rgba(255, 255, 255, 0.1);
        z-index: 300;
        transform: translateX(100%);
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        order: 3;
    }

    .nav-links.open {
        transform: translateX(0);
    }

    /* --- Nav items in drawer --- */
    .nav-links>li {
        border-bottom: 0.5px solid rgba(255, 255, 255, 0.07);
    }

    /* All text left-aligned in drawer */
    .nav-links>li>a,
    .dropdown li a {
        text-align: left;
    }

    /* Hide desktop underline effect in drawer */
    .nav-links>li>a:not(.nav-cta)::before {
        display: none;
    }

    /* Active page color in drawer */
    .nav-links>li.active>a:not(.nav-cta) {
        color: #C8A96E;
    }

    /* has-dropdown: flex row so link fills width, chevron button on right */
    .nav-links>li.has-dropdown {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
    }

    .nav-links>li.has-dropdown>a {
        flex: 1;
        padding: 14px 0 14px 24px;
    }

    /* Hide the desktop ::after chevron */
    .nav-links>li.has-dropdown>a::after {
        display: none;
    }

    /* Show the dedicated chevron button on the right with bigger tap target */
    .dropdown-toggle {
        color: #C8A96E;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 14px 18px;
        pointer-events: auto;
        /* re-enable click on mobile */
    }

    /* Regular (non-dropdown) links */
    .nav-links>li>a:not(.nav-cta) {
        color: #fff;
        font-size: 16px;
        font-weight: 500;
        padding: 14px 24px;
    }

    .nav-links>li.has-dropdown>a {
        padding: 14px 0 14px 24px;
    }

    /* Dropdown sub-menu in drawer */
    .dropdown {
        position: static;
        transform: none;
        background: rgba(255, 255, 255, 0.03);
        border: none;
        border-radius: 0;
        box-shadow: none;
        padding: 12px 16px;
        max-height: none;
        width: 100%;
        flex-basis: 100%;
    }

    .has-dropdown:hover>.dropdown {
        display: none;
    }

    .has-dropdown.open>.dropdown {
        display: block;
    }

    /* --- Third-level submenu in mobile drawer --- */
    .dropdown li.has-submenu {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        border-bottom: 0.5px solid rgba(255, 255, 255, 0.05);
    }

    .dropdown li.has-submenu > a {
        flex: 1;
        /* remove desktop ::after arrow */
    }

    .dropdown li.has-submenu > a::after {
        display: none;
    }

    /* Show the submenu toggle button on mobile */
    .submenu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        background: none;
        border: none;
        cursor: pointer;
        color: #C8A96E;
        padding: 10px 16px;
        pointer-events: auto;
        transition: transform 0.25s;
    }

    .dropdown li.has-submenu.open > .submenu-toggle {
        transform: rotate(180deg);
    }

    /* Third-level list in drawer: static, initially hidden */
    .submenu {
        position: static;
        transform: none;
        background: rgba(255, 255, 255, 0.02);
        border: none;
        border-radius: 0;
        box-shadow: none;
        padding: 4px 0 4px 12px;
        width: 100%;
        flex-basis: 100%;
        min-width: 0;
    }

    /* Disable desktop hover reveal on mobile */
    .dropdown li.has-submenu:hover > .submenu {
        display: none;
    }

    /* Show only when toggled open */
    .dropdown li.has-submenu.open > .submenu {
        display: block;
    }

    /* Neutralise mega-panel desktop positioning inside mobile drawer */
    .services-mega-menu > .dropdown > li.has-submenu > .submenu {
        position: static;
        left: auto;
        top: auto;
        min-width: 0;
        border-radius: 0;
        border: none;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.02);
    }

    .services-mega-menu > .dropdown > li.has-submenu {
        position: static;
    }

    .submenu li a {
        padding: 9px 16px;
        font-size: 14px;
        color: rgba(255, 255, 255, 0.55);
        white-space: normal;
    }

    /* Active state inside dropdown — mobile drawer */
    .dropdown li.active > a {
        color: #C8A96E;
    }

    /* Active state inside submenu — mobile drawer */
    .submenu li.active > a {
        color: #C8A96E;
    }

    /* Active parent category in Services mega-menu — mobile drawer */
    .services-mega-menu > .dropdown > li.has-submenu.active > a {
        color: #C8A96E;
    }

    /* CTA button in drawer */
    .nav-cta {
        display: block;
        margin: 16px 24px 0;
        padding: 12px 18px;
        text-align: center !important;
        border-radius: 100px;
    }
}

/* ==========================================================================
   Responsive — Tablet Layout (max-width: 768px)
   ========================================================================== */
@media (max-width: 768px) {

    /* --- Top bar mobile: inherits slider from 1199px --- */

    /* --- Subpage Banner --- */
    .sp-banner {
        display: flex;
        flex-direction: column;
    }

    .sp-banner-inner {
        grid-template-columns: 1fr;
        padding: 0;
        gap: 0;
    }

    .sp-banner-visual {
        order: -1;
        border-radius: 0;
        width: 100%;
        position: static;
        left: unset;
        transform: none;
    }

    .sp-banner-img {
        aspect-ratio: 16 / 9;
        border-radius: 0;
        width: 100%;
    }
    .sp-banner-inner{
        width: 100%;
    }

    .sp-banner-content {
        padding: 28px 24px 36px;
        text-align: left;
    }

    .sp-banner-eyebrow {
        justify-content: flex-start;
    }

    .sp-banner-heading {
        font-size: 32px;
        text-align: left;
    }

    .sp-banner-actions {
        flex-direction: column;
        align-items: stretch;
    }

    /* --- Hero --- */
    .hero .container {
        grid-template-columns: 1fr;
        padding-top: 32px;
        gap: 24px;
    }

    .hero-heading {
        font-size: 32px;
    }

    .hero-body {
        max-width: 100%;
    }

    .hero-visual {
        justify-content: flex-start;
    }

    .hero-card {
        width: 100%;
        border-radius: 14px 14px 0 0;
    }

    .hero-stats {
        gap: 20px;
        padding-bottom: 24px;
    }

    /* --- Trust Bar --- */
    .trust-bar .container {
        flex-wrap: wrap;
        gap: 12px 20px;
        justify-content: flex-start;
    }

    /* --- Services --- */
    .services-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    /* --- Savings --- */
    .savings-section .container {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .savings-heading {
        font-size: 26px;
    }

    /* --- Doctor --- */
    .doctor-section .container {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .doctor-avatar {
        max-width: 575px;
        width: 100%;
        height: auto;
        margin: 0 auto;
    }

    .doctor-silhouette {
        width: 90px;
        height: 90px;
    }

    .doctor-initials {
        font-size: 28px;
    }

    .doctor-quote {
        font-size: 16px;
    }

    /* --- Reviews --- */
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .reviews-page-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .rp-summary {
        flex-direction: column;
        gap: 20px;
        padding: 28px 20px;
    }

    .rp-summary-divider {
        width: 80px;
        height: 1px;
    }

    .rp-summary-text {
        text-align: center;
        font-size: 20px;
    }

    /* --- CTA --- */
    .cta-heading {
        font-size: 28px;
    }

    .cta-btns {
        flex-direction: column;
        gap: 10px;
        align-items: stretch;
    }

    .btn-cta-primary,
    .btn-cta-outline {
        text-align: center;
        width: 100%;
        box-sizing: border-box;
    }

    /* --- Locations Section --- */
    .locations-grid {
        grid-template-columns: 1fr;
    }

    .locations-section {
        padding: 44px 0;
    }

    .locations-section-heading {
        font-size: 26px;
    }

    .loc-tabs {
        gap: 4px;
    }
    .loc-tab {
        padding: 8px 16px;
        font-size: 13px;
    }
    .loc-panel .location-card {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .loc-panel .location-card .location-card-info {
        padding: 24px 20px;
    }

    /* --- Footer --- */
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .footer-bottom-links {
        justify-content: center;
    }

    /* --- Section Headings --- */
    .section-heading, .sp-intro .sp-subheading {
        font-size: 26px;
    }

    /* --- Service Page Layouts --- */
    .sp-intro {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .sp-intro-image {
        order: -1;
    }

    .sp-image-placeholder {
        max-width: 240px;
    }

    .sp-benefits-grid {
        grid-template-columns: 1fr;
    }

    .sp-two-col {
        grid-template-columns: 1fr;
    }

    .sp-locations-grid {
        grid-template-columns: 1fr;
    }

    .sp-offer-heading {
        font-size: 28px;
    }

    .sp-offer-actions {
        flex-direction: row;
        gap: 10px;
    }

    .sp-benefits-3col {
        grid-template-columns: 1fr 1fr;
    }

    .sp-tech-inner {
        flex-direction: column;
        text-align: center;
    }

    .sp-consult-two-col {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .sp-consult-video-wrap {
        order: -1;
    }

    .sp-offer-two-col {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .sp-offer-img-wrap {
        display: none;
    }

    .footer-maps {
        grid-template-columns: 1fr;
    }
}

@media only screen and (max-width: 600.98px){
 .sp-offer-actions {
        flex-direction: column;
        gap: 10px;
    }
}
    
/* ==========================================================================
   Responsive — Small Mobile (max-width: 480px)
   ========================================================================== */
@media (max-width: 480px) {
    .hero-heading {
        font-size: 28px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .btn-primary,
    .btn-ghost {
        display: block;
        width: 100%;
        box-sizing: border-box;
    }

    .btn-phone-number {
        display: none;
    }

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

    .stat-num {
        font-size: 22px;
    }

    .savings-price {
        font-size: 32px;
    }

    .trust-item {
        font-size: 13px;
    }

    .section {
        padding: 36px 0;
    }

    .savings-section {
        padding: 36px 0;
    }

    .doctor-section {
        padding: 36px 0;
    }

    .reviews-section {
        padding: 36px 0;
    }

    .sp-offer-section {
        padding: 36px 0;
    }

    .cta-section {
        padding: 40px 0;
    }

    /* Footer single column on small mobile */
    .footer-top {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-brand {
        grid-column: auto;
    }

    .sp-benefits-3col {
        grid-template-columns: 1fr;
    }
}

@media only screen and (max-width:375.98px){
  .top-bar-addr {
        font-size: 12px;
    }
    .top-bar-phone {
        font-size: 12px;
    }
    .top-bar-name {
        font-size: 12px;
    }
}
/* ── Testimonial Block ─────────────────────────────── */
.sp-testimonial {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    padding: 16px 0;
}

.sp-testimonial-quote {
    font-size: 1.15rem;
    font-style: italic;
    color: #2D3142;
    line-height: 1.75;
    margin: 0 0 16px;
}

.sp-testimonial-cite {
    font-size: 0.95rem;
    font-weight: 600;
    color: #C8A96E;
    font-style: normal;
    letter-spacing: 0.04em;
}

/* ── Inline list for benefits ──────────────────────── */
.sp-list {
    list-style: none;
    padding: 0;
    margin: 16px 0;
}

.sp-list li {
    padding: 8px 0 8px 28px;
    position: relative;
    color: #2D3142;
    line-height: 1.6;
    border-bottom: 1px solid #E8E0D5;
}

.sp-list li:last-child { border-bottom: none; }

.sp-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #C8A96E;
    font-weight: 700;
}

/* ==========================================================================
   Service Cards Grid — Services Overview Page (with images)
   ========================================================================== */
.svc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.svc-card {
    background: #fff;
    border: 1.5px solid #e8e8e8;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}

.svc-card:hover {
    border-color: #C8A96E;
    box-shadow: 0 8px 28px rgba(200, 169, 110, 0.15);
    transform: translateY(-3px);
}

a.svc-card-img,
div.svc-card-img,
.svc-card-img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #f0ece6;
    text-decoration: none;
}

.svc-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s;
}

.svc-card:hover .svc-card-img img {
    transform: scale(1.04);
}

.svc-card-body {
    padding: 22px 24px 26px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.svc-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 600;
    color: #C8A96E;
    margin-bottom: 8px;
    line-height: 1.25;
}

.svc-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.svc-card-title a:hover {
    color: #0A2540;
}

.svc-card-desc {
    font-size: 14.5px;
    font-weight: 300;
    line-height: 1.6;
    color: #555;
    margin-bottom: 18px;
    flex-grow: 1;
}

.svc-card-btn {
    display: inline-block;
    padding: 11px 26px;
    background: #C8A96E;
    color: #0A2540;
    font-size: 14px;
    font-weight: 500;
    border-radius: 100px;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: background 0.22s, color 0.22s;
    align-self: flex-start;
}

.svc-card-btn:hover {
    background: #0A2540;
    color: #fff;
}

/* Responsive — Tablet */
@media (max-width: 768px) {
    .svc-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .svc-card-body {
        padding: 18px 20px 22px;
    }

    .svc-card-title {
        font-size: 18px;
    }
}

/* Responsive — Mobile */
@media (max-width: 480px) {
    .svc-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* ==========================================================================
   Promo Cards Grid — Discounts & Promotions Page
   ========================================================================== */
.promo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.promo-card {
    background: #fff;
    border: 1.5px solid #e2e2e2;
    border-radius: 16px;
    padding: 36px 28px 32px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}

.promo-card:hover {
    border-color: #C8A96E;
    box-shadow: 0 8px 32px rgba(200, 169, 110, 0.18);
    transform: translateY(-4px);
}

.promo-card-icon {
    width: 60px;
    height: 60px;
    background: #0A2540;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    flex-shrink: 0;
}

.promo-card-icon svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: #fff;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.promo-card-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #0A2540;
    margin-bottom: 6px;
    letter-spacing: 0.01em;
}

.promo-card-highlight {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 600;
    font-style: italic;
    color: #C8A96E;
    line-height: 1.2;
    margin-bottom: 14px;
}

.promo-card-desc {
    font-size: 14.5px;
    font-weight: 300;
    color: #555;
    line-height: 1.65;
    margin-bottom: 22px;
    flex-grow: 1;
}

.promo-card .btn-primary {
    font-size: 14px;
    padding: 10px 28px;
    margin-top: auto;
}

/* Responsive — Tablet */
@media (max-width: 768px) {
    .promo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .promo-card {
        padding: 28px 20px 24px;
    }

    .promo-card-highlight {
        font-size: 22px;
    }
}

/* Responsive — Mobile */
@media (max-width: 480px) {
    .promo-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* ==========================================================================
   Blog Styles
   ========================================================================== */

/* --- Blog Grid (Listing Page) --- */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 10px;
}

.blog-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(10,37,64,0.07);
    display: flex;
    flex-direction: column;
    transition: transform 0.22s, box-shadow 0.22s;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(10,37,64,0.13);
}

.blog-card-img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #f0ece6;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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

.blog-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card-meta {
    font-size: 13px;
    color: #C8A96E;
    font-weight: 600;
    letter-spacing: 0.03em;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.blog-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 21px;
    font-weight: 700;
    color: #0A2540;
    line-height: 1.3;
    margin-bottom: 12px;
}

.blog-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.blog-card-title a:hover {
    color: #C8A96E;
}

.blog-card-date {
    font-size: 13px;
    color: #999;
    margin-bottom: 8px;
    font-weight: 500;
    letter-spacing: 0.02em;
}
.blog-card-excerpt {
    font-size: 14.5px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card .svc-card-btn {
    align-self: flex-start;
}

/* --- Single Blog Post --- */
.blog-single {
    max-width: 800px;
    margin: 0 auto;
}

.blog-single-header {
    margin-bottom: 32px;
}

.blog-single-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.blog-single-meta-item {
    font-size: 14px;
    color: #777;
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-single-meta-item strong {
    color: #0A2540;
    font-weight: 600;
}

.blog-single-meta-divider {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #ccc;
}

.blog-single-featured {
    width: 100%;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 36px;
}

.blog-single-featured img {
    width: 100%;
    height: auto;
    display: block;
}

.blog-single-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 700;
    color: #0A2540;
    margin: 32px 0 14px;
    line-height: 1.3;
}

.blog-single-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 21px;
    font-weight: 700;
    color: #0A2540;
    margin: 26px 0 10px;
    line-height: 1.3;
}

.blog-single-content p {
    font-size: 16px;
    color: #333;
    line-height: 1.75;
    margin-bottom: 18px;
}

.blog-single-content ul,
.blog-single-content ol {
    margin: 16px 0 20px 24px;
    font-size: 16px;
    color: #333;
    line-height: 1.75;
}

.blog-single-content li {
    margin-bottom: 8px;
}

.blog-single-content strong {
    color: #0A2540;
}

.blog-single-content a {
    color: #C8A96E;
    text-decoration: underline;
    transition: color 0.2s;
}

.blog-single-content a:hover {
    color: #0A2540;
}

/* Share Bar */
.blog-share {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 24px 0;
    margin: 36px 0;
    border-top: 1px solid #e8e4de;
    border-bottom: 1px solid #e8e4de;
}

.blog-share-label {
    font-size: 14px;
    font-weight: 700;
    color: #0A2540;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.blog-share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #0A2540;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: background 0.2s;
}

.blog-share-btn:hover {
    background: #C8A96E;
}

/* Blog Prev / Next Navigation */
.blog-prev-next {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    margin: 40px 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.blog-prev-next a {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 20px 24px;
    background: #fff;
    border: 1px solid #e8e4de;
    border-radius: 12px;
    text-decoration: none;
    flex: 1;
    transition: border-color 0.2s, box-shadow 0.2s;
    max-width: 48%;
}

.blog-prev-next a:hover {
    border-color: #C8A96E;
    box-shadow: 0 4px 16px rgba(200,169,110,0.15);
}

.blog-prev-next a.blog-nav-next {
    text-align: right;
    margin-left: auto;
}

.blog-prev-next-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #C8A96E;
}

.blog-prev-next-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px;
    font-weight: 600;
    color: #0A2540;
    line-height: 1.35;
}

/* Blog Single Hero (centered, no image/buttons) */
.sp-banner-inner.blog-hero-centered {
    display: flex;
    justify-content: center;
    text-align: center;
}

.sp-banner-inner.blog-hero-centered .sp-banner-content {
    max-width: 720px;
    text-align: center;
}

.sp-banner-inner.blog-hero-centered .sp-banner-visual {
    display: none;
}

.sp-banner-inner.blog-hero-centered .sp-banner-actions {
    display: none;
}

/* Related Posts */
.blog-related {
    margin-top: 20px;
}

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

/* Blog CTA Bar */
.blog-cta {
    background: #0A2540;
    border-radius: 14px;
    padding: 40px;
    text-align: center;
    margin-top: 48px;
}

.blog-cta h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.blog-cta p {
    color: rgba(255,255,255,0.75);
    font-size: 15px;
    margin-bottom: 24px;
    line-height: 1.6;
}

.blog-cta .btn-primary {
    font-size: 15px;
}

/* --- Blog Responsive --- */
@media (max-width: 900px) {
    .blog-grid,
    .blog-related .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 600px) {
    .blog-grid,
    .blog-related .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .blog-card-body {
        padding: 18px;
    }

    .blog-single-content h2 {
        font-size: 22px;
    }

    .blog-cta {
        padding: 28px 20px;
    }

    .blog-cta h3 {
        font-size: 24px;
    }

    .blog-share {
        flex-wrap: wrap;
    }

    .blog-prev-next {
        flex-direction: column;
    }

    .blog-prev-next a {
        max-width: 100%;
    }

    .blog-prev-next a.blog-nav-next {
        text-align: left;
    }
}
/*  */
.financing-logo-row {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}
.financing-logo-row .financing-logo {
    width: 100%;
    max-width: 60px;
}
.financing-logo-row .financing-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==========================================================================
   Floating CTA Buttons
   ========================================================================== */
.floating-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 9999;
    align-items: flex-end;
}

.floating-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.22s, color 0.22s, border-color 0.22s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 16px rgba(200, 169, 110, 0.3);
}
.floating-cta-btn span {
    display: none;
}

.floating-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.2);
}

.floating-cta-btn:active {
    transform: translateY(0);
}

.floating-cta-btn svg {
    flex-shrink: 0;
}

/* Both buttons — gold primary style */
.floating-cta-book,
.floating-cta-call {
    background: #C8A96E;
    border: 1.5px solid #C8A96E;
}
.floating-cta-book:hover,
.floating-cta-call:hover {
    background: transparent;
}
.floating-cta-book svg,
.floating-cta-call svg {
    stroke: #0A2540;
    width: 20px;
    height: 20px;
}
.floating-cta-book:hover svg,
.floating-cta-call:hover svg {
    stroke: #C8A96E;
}

/* Call Dropdown */
.floating-cta-call-dropdown {
    position: absolute;
    bottom: calc(100% + 12px);
    right: 0;
    min-width: 260px;
    background: #0A2540;
    border: 1px solid rgba(200, 169, 110, 0.2);
    border-radius: 14px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    pointer-events: none;
}

.floating-cta-call-dropdown.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.floating-call-option {
    display: flex;
    /* justify-content: space-between; */
    align-items: center;
    padding: 12px 16px;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.2s;
    gap: 5px;
}

.floating-call-option:hover,
.floating-call-option:focus {
    background: rgba(200, 169, 110, 0.1);
    outline: none;
}

.floating-call-loc {
    font-size: 14px;
    color: #C8A96E;
    font-weight: 500;
    font-family: 'DM Sans', sans-serif;
}

.floating-call-phone {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    font-family: 'DM Sans', sans-serif;
    letter-spacing: 0.02em;
}

/* Mobile: tighter spacing */
@media (max-width: 768px) {
    .floating-cta {
        bottom: 16px;
        right: 16px;
        gap: 8px;
    }
    .floating-cta-btn {
        width: 48px;
        height: 48px;
    }
    .floating-cta-call-dropdown {
        right: 0;
        min-width: 240px;
    }
}

/* ==========================================================================
   Sitemap Page — Hierarchical Tree
   ========================================================================== */
.sitemap-tree {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 72px;
}

.sitemap-tree-col {
    /* column wrapper */
}

/* Reset list styles */
.sm-list {
    list-style: none;
    padding: 0;
    margin: 0 0 4px;
}

/* Parent item — top-level page */
.sm-item {
    margin-bottom: 0;
}

.sm-item > a,
.sm-item > .sm-label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 0;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #0A2540;
    text-decoration: none;
    transition: color 0.2s;
}

.sm-item > a:hover {
    color: #C8A96E;
}

/* Chevron before parent items */
.sm-item > a::before,
.sm-item > .sm-label::before {
    content: '\BB';
    font-size: 18px;
    font-weight: 500;
    color: #0A2540;
    line-height: 1;
    flex-shrink: 0;
    width: 14px;
    text-align: center;
}

.sm-item > a:hover::before {
    color: #C8A96E;
}

/* Children — indented subpages */
.sm-children {
    list-style: none;
    padding: 0;
    margin: 0;
    padding-left: 24px;
}

.sm-children li {
    margin: 0;
}

.sm-children li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 0;
    font-family: 'DM Sans', sans-serif;
    font-size: 14.5px;
    font-weight: 500;
    color: #4A5E6F;
    text-decoration: none;
    transition: color 0.2s;
}

.sm-children li a:hover {
    color: #C8A96E;
}

/* Chevron before child items */
.sm-children li a::before {
    content: '\BB';
    font-size: 15px;
    font-weight: 500;
    color: #A0AEB8;
    line-height: 1;
    flex-shrink: 0;
    width: 14px;
    text-align: center;
}

.sm-children li a:hover::before {
    color: #C8A96E;
}

/* Sub-parent (category within children) */
.sm-sub-parent > a {
    font-weight: 600;
    color: #0A2540;
    padding-top: 12px;
}

.sm-sub-parent > a::before {
    color: #0A2540;
    font-weight: 700;
}

/* Grandchildren — 3rd level indent */
.sm-grandchildren {
    list-style: none;
    padding: 0;
    margin: 0;
    padding-left: 24px;
}

.sm-grandchildren li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 0;
    font-family: 'DM Sans', sans-serif;
    font-size: 13.5px;
    font-weight: 400;
    color: #6B7D8D;
    text-decoration: none;
    transition: color 0.2s;
}

.sm-grandchildren li a:hover {
    color: #C8A96E;
}

.sm-grandchildren li a::before {
    content: '\BB';
    font-size: 13px;
    font-weight: 400;
    color: #BCC7CF;
    line-height: 1;
    flex-shrink: 0;
    width: 14px;
    text-align: center;
}

.sm-grandchildren li a:hover::before {
    color: #C8A96E;
}

/* Non-link label for groups like "Legal" */
.sm-label {
    cursor: default;
}

@media (max-width: 768px) {
    .sitemap-tree {
        grid-template-columns: 1fr;
        gap: 0;
    }
}