/* ============================================================
   MANAS CLINIC — Main Stylesheet
   DM Serif Display (headings) + DM Sans (body)
   Navy #1e3a5f + Teal #0d9b8a
   ============================================================ */

@import url('header.css');
@import url('footer.css');

/* ─── 1. VARIABLES ─────────────────────────────────────────── */
:root {
    --navy: #1e3a5f;
    --navy-dark: #0d2640;
    --navy-light: #e8f0fb;
    --teal: #0d9b8a;
    --teal-dark: #0a7a6c;
    --teal-light: #e0f7f4;
    --white: #ffffff;
    --bg-light: #f4f7fb;
    --bg-section: #eef2f9;
    --border: #dce5f0;
    --text-dark: #0f1e30;
    --text-body: #3a4a5c;
    --text-muted: #6b7d92;
    --font-h: 'DM Serif Display', Georgia, serif;
    --font-b: 'DM Sans', 'Segoe UI', sans-serif;
    --sh-sm: 0 2px 12px rgba(15, 30, 60, .08);
    --sh-md: 0 6px 28px rgba(15, 30, 60, .12);
    --sh-lg: 0 16px 56px rgba(15, 30, 60, .16);
    --r: 12px;
    --r-sm: 8px;
    --r-lg: 18px;
    --tr: all 0.28s cubic-bezier(.4, 0, .2, 1);
    --g-navy: linear-gradient(135deg, #1e3a5f, #0d2640);
    --g-teal: linear-gradient(135deg, #0d9b8a, #0a7a6c);
    --g-hero: linear-gradient(105deg, rgba(10, 20, 45, .8) 0%, rgba(13, 80, 72, .5) 100%);
}

/* ─── 2. RESET ──────────────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden
}

body {
    font-family: var(--font-b);
    font-size: 16px;
    line-height: 1.72;
    color: var(--text-body);
    background: #fff;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-h);
    color: var(--text-dark);
    line-height: 1.2;
    font-weight: 400
}

a {
    color: var(--teal);
    text-decoration: none;
    transition: var(--tr)
}

a:hover {
    color: var(--teal-dark)
}

img {
    max-width: 100%;
    height: auto;
    display: block
}

ul {
    list-style: none;
    padding: 0;
    margin: 0
}

p {
    margin-bottom: 1rem
}

p:last-child {
    margin-bottom: 0
}

/* ─── 3. UTILITIES ──────────────────────────────────────────── */
.section-pad {
    padding: 80px 0
}

.section-pad-sm {
    padding: 56px 0
}

.bg-light-custom {
    background: var(--bg-light) !important
}

.bg-teal-light {
    background: #e8faf8 !important
}

/* ─── 4. LABELS & SECTION TITLES ────────────────────────────── */
.label-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-b);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: var(--teal-dark);
    background: var(--teal-light);
    border: 1px solid rgba(13, 155, 138, .2);
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 14px
}

.label-tag.navy {
    color: var(--navy);
    background: var(--navy-light);
    border-color: rgba(30, 58, 95, .2)
}

.section-title {
    font-family: var(--font-h);
    font-size: clamp(1.8rem, 3.2vw, 2.6rem);
    font-weight: 400;
    color: var(--navy-dark);
    margin-bottom: 12px;
    line-height: 1.2
}

.section-sub {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.72;
    max-width: 580px
}

.title-line {
    width: 44px;
    height: 3px;
    background: var(--g-teal);
    border-radius: 3px;
    margin: 14px 0 22px
}

.title-line.mx-auto {
    margin: 14px auto 22px
}

/* ─── 5. BUTTONS ────────────────────────────────────────────── */
.btn-navy {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--g-navy);
    color: #fff !important;
    font-family: var(--font-b);
    font-size: .9rem;
    font-weight: 600;
    padding: 12px 26px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 18px rgba(15, 30, 60, .22);
    transition: var(--tr);
    text-decoration: none;
    white-space: nowrap
}

.btn-navy:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(15, 30, 60, .32);
    color: #fff !important
}

.btn-teal {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--g-teal);
    color: #fff !important;
    font-family: var(--font-b);
    font-size: .9rem;
    font-weight: 600;
    padding: 12px 26px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 18px rgba(13, 155, 138, .28);
    transition: var(--tr);
    text-decoration: none;
    white-space: nowrap
}

.btn-teal:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(13, 155, 138, .38);
    color: #fff !important
}

.btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
     background:linear-gradient(135deg,#25d366,#128c7e);
    color: #fff !important;
    font-family: var(--font-b);
    font-size: .9rem;
    font-weight: 600;
    padding: 11px 24px;
    border-radius: 50px;
    border: 1.5px solid rgba(255, 255, 255, .4);
    cursor: pointer;
    transition: var(--tr);
    text-decoration: none;
    white-space: nowrap;
    backdrop-filter: blur(6px)
}

.btn-outline-white:hover {
   background:linear-gradient(135deg,#25d366,#128c7e);
    border-color: rgba(255, 255, 255, .7);
    color: #fff !important
}

/* ─── 6. HERO ───────────────────────────────────────────────── */
.hero-section {
    position: relative;
    min-height: 88vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden
}

.hero-swiper {
    position: absolute;
    inset: 0;
    z-index: 0;
    height: 100% !important
}

.hero-swiper .swiper-wrapper {
    height: 100% !important
}

.hero-swiper .swiper-slide {
    height: 100% !important;
    min-height: 560px
}

.hero-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top
}

.hero-swiper .swiper-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--g-hero);
    z-index: 1
}

.hero-body {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 56px 0
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, .12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, .22);
    color: #b8f0eb;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 18px
}

.hero-title {
    font-family: var(--font-h);
    font-size: clamp(2.2rem, 5.5vw, 3.8rem);
    font-weight: 400;
    color: #fff;
    line-height: 1.12;
    margin-bottom: 0;
    text-shadow: 0 2px 24px rgba(0, 0, 0, .28)
}

.hero-title em {
    font-style: italic;
    color: #7ef5ec
}

.hero-doctor-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, .18);
    padding: 8px 18px;
    border-radius: 50px;
    margin: 16px 0 18px;
    color: rgba(255, 255, 255, .88);
    font-size: .86rem
}

.hero-doctor-pill i {
    color: #7ef5ec
}

.hero-doctor-pill strong {
    color: #c8f5f1;
    font-weight: 600
}

.hero-desc {
    color: rgba(255, 255, 255, .82);
    font-size: 1rem;
    line-height: 1.72;
    max-width: 520px;
    margin-bottom: 28px
}

.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px
}

.hero-phones {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, .15)
}

.hero-phone-item {
    display: flex;
    align-items: center;
    gap: 7px;
    color: rgba(255, 255, 255, .85);
    font-size: .9rem;
    font-weight: 500
}

.hero-phone-item i {
    color: #7ef5ec;
    font-size: .9rem
}

.hero-phone-item a {
    color: rgba(255, 255, 255, .9);
    font-weight: 600;
    text-decoration: none
}

.hero-phone-item a:hover {
    color: #7ef5ec
}

.hero-swiper .swiper-pagination-bullet {
    background: rgba(255, 255, 255, .5) !important;
    opacity: 1 !important;
    width: 7px !important;
    height: 7px !important
}

.hero-swiper .swiper-pagination-bullet-active {
    background: #7ef5ec !important;
    width: 22px !important;
    border-radius: 4px !important
}

/* Appointment glass card on hero */
.hero-appt-card {
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: var(--r-lg);
    padding: 28px 24px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, .3)
}

.hero-appt-card h5 {
    font-family: var(--font-b);
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px
}

.hero-appt-card p {
    font-size: .82rem;
    color: rgba(255, 255, 255, .65);
    margin-bottom: 18px
}

.appt-input {
    width: 100%;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: var(--r-sm);
    padding: 11px 14px;
    color: #fff;
    font-family: var(--font-b);
    font-size: .88rem;
    margin-bottom: 10px;
    outline: none;
    transition: var(--tr);
    -webkit-appearance: none
}

.appt-input::placeholder {
    color: rgba(255, 255, 255, .5)
}

.appt-input:focus {
    border-color: var(--teal);
    background: rgba(255, 255, 255, .14);
    box-shadow: 0 0 0 3px rgba(13, 155, 138, .22)
}

.appt-input option {
    background: #0d2640;
    color: #fff
}

.appt-submit {
    width: 100%;
    background: var(--g-teal);
    color: #fff;
    font-family: var(--font-b);
    font-size: .93rem;
    font-weight: 700;
    padding: 13px 20px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 4px;
    box-shadow: 0 4px 18px rgba(13, 155, 138, .4);
    transition: var(--tr)
}

.appt-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(13, 155, 138, .5)
}

/* ─── 7. TRUST STRIP ────────────────────────────────────────── */
.trust-strip {
    display: block;
    background: #fff;
    border-top: 2px solid var(--border);
    border-bottom: 2px solid var(--border);
    padding: 0;
    position: relative;
    z-index: 2
}

.trust-strip-inner {
    display: flex;
    align-items: stretch;
    flex-wrap: nowrap;
    min-height: 72px
}

.trust-item {
    flex: 1 1 0;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 14px;
    border-right: 1px solid var(--border);
    transition: background .22s;
    min-width: 0
}

.trust-item:last-child {
    border-right: none
}

.trust-item:hover {
    background: #f4f8fb
}

.trust-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    background: #e0f7f4;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0d9b8a;
    font-size: 1.15rem;
    flex-shrink: 0
}

.trust-text {
    min-width: 0
}

.trust-text strong {
    display: block;
    font-family: var(--font-b);
    font-size: .88rem;
    font-weight: 700;
    color: #1e3a5f;
    line-height: 1.2;
    white-space: nowrap
}

.trust-text span {
    display: block;
    font-size: .72rem;
    color: var(--text-muted);
    font-family: var(--font-b);
    margin-top: 1px;
    white-space: nowrap
}

/* ─── 8. SERVICE CARDS ──────────────────────────────────────── */
.service-card {
    background: #fff;
    border-radius: var(--r-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--sh-sm);
    transition: var(--tr);
    height: 100%;
    display: flex;
    flex-direction: column
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--sh-md);
    border-color: rgba(13, 155, 138, .25)
}

.service-card-img {
    position: relative;
    height: 190px;
    overflow: hidden;
    background: var(--bg-section)
}

.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s
}

.service-card:hover .service-card-img img {
    transform: scale(1.05)
}

.service-card-img-ph {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--navy-light), var(--teal-light))
}

.service-card-img-ph i {
    font-size: 2.8rem;
    color: var(--teal);
    opacity: .45
}

.service-card-img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px;
    background: linear-gradient(to top, rgba(10, 20, 45, .75), transparent)
}

.svc-icon-badge {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, .15);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem
}

.service-card-body {
    padding: 20px 20px 22px;
    flex: 1;
    display: flex;
    flex-direction: column
}

.service-card-body h4 {
    font-family: var(--font-b);
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 8px
}

.service-card-body p {
    font-size: .87rem;
    color: var(--text-muted);
    line-height: 1.65;
    flex: 1;
    margin-bottom: 0
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--teal-dark);
    font-size: .85rem;
    font-weight: 600;
    margin-top: 14px;
    transition: var(--tr)
}

.service-link:hover {
    gap: 9px;
    color: var(--navy)
}

/* ─── 9. ABOUT SECTION ──────────────────────────────────────── */
.about-img-wrap {
    position: relative;
    padding-bottom: 24px
}

.about-main-img {
    width: 100%;
    border-radius: var(--r-lg);
    box-shadow: var(--sh-lg);
    object-fit: cover;
    max-height: 520px
}

.about-exp-badge {
    position: absolute;
    bottom: 0;
    right: -10px;
    background: var(--g-navy);
    color: #fff;
    border-radius: var(--r);
    padding: 16px 20px;
    text-align: center;
    box-shadow: var(--sh-md);
    min-width: 100px
}

.about-exp-badge .num {
    font-family: var(--font-h);
    font-size: 2.2rem;
    color: #7ef5ec;
    line-height: 1
}

.about-exp-badge .lbl {
    font-size: .72rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .8);
    letter-spacing: .4px;
    margin-top: 3px
}

.feature-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border)
}

.feature-row:last-child {
    border-bottom: none
}

.feature-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: var(--teal-light);
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal-dark);
    font-size: 1.1rem
}

.feature-text h6 {
    font-family: var(--font-b);
    font-size: .93rem;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 2px
}

.feature-text p {
    font-size: .85rem;
    color: var(--text-muted);
    margin: 0
}

/* ─── 10. STATS ─────────────────────────────────────────────── */
.stats-section {
    background: var(--g-navy);
    position: relative;
    overflow: hidden
}

.stats-section::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .04);
    pointer-events: none
}

.stats-section::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(13, 155, 138, .15);
    pointer-events: none
}

.stat-box {
    text-align: center;
    padding: 28px 16px;
    position: relative;
    z-index: 1;
    border-right: 1px solid rgba(255, 255, 255, .1)
}

.stat-box:last-child {
    border-right: none
}

.stat-num {
    display: block;
    font-family: var(--font-h);
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: #fff;
    line-height: 1;
    margin-bottom: 6px
}

.stat-lbl {
    font-size: .82rem;
    color: rgba(255, 255, 255, .68);
    font-weight: 500;
    letter-spacing: .3px
}

/* ─── 11. WHY CHOOSE US ─────────────────────────────────────── */
.why-card {
    background: #fff;
    border-radius: var(--r-lg);
    padding: 28px 24px;
    border: 1px solid var(--border);
    border-top: 3px solid transparent;
    box-shadow: var(--sh-sm);
    transition: var(--tr);
    height: 100%
}

.why-card:hover {
    border-top-color: var(--teal);
    box-shadow: var(--sh-md);
    transform: translateY(-4px)
}

.why-icon {
    width: 54px;
    height: 54px;
    background: var(--teal-light);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal-dark);
    font-size: 1.4rem;
    margin-bottom: 18px
}

.why-card h5 {
    font-family: var(--font-b);
    font-size: .98rem;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 10px
}

.why-card p {
    font-size: .87rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0
}

/* ─── 12. TESTIMONIALS ──────────────────────────────────────── */
.testi-card {
    background: #fff;
    border-radius: var(--r-lg);
    padding: 24px 22px;
    border: 1px solid var(--border);
    box-shadow: var(--sh-sm);
    height: 100%;
    position: relative;
    transition: var(--tr)
}

.testi-card:hover {
    box-shadow: var(--sh-md);
    transform: translateY(-3px)
}

.testi-card::before {
    content: '\201C';
    position: absolute;
    top: 10px;
    right: 18px;
    font-family: Georgia, serif;
    font-size: 4.5rem;
    line-height: 1;
    color: var(--teal-light)
}

.testi-stars {
    color: #f59e0b;
    font-size: .85rem;
    letter-spacing: 2px;
    margin-bottom: 12px
}

.testi-text {
    font-size: .88rem;
    color: var(--text-body);
    line-height: 1.72;
    font-style: italic;
    margin-bottom: 18px
}

.testi-avatar {
    width: 42px;
    height: 42px;
    min-width: 42px;
    background: var(--g-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1rem
}

.testi-name {
    font-weight: 700;
    font-size: .9rem;
    color: var(--navy-dark)
}

.testi-loc {
    font-size: .77rem;
    color: var(--text-muted);
    margin-top: 1px
}

/* ─── 13. GALLERY ───────────────────────────────────────────── */
.gallery-item {
    position: relative;
    border-radius: var(--r);
    overflow: hidden;
    cursor: pointer;
    background: var(--bg-section);
    border: 1px solid var(--border)
}

.gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform .5s
}

.gallery-item:hover img {
    transform: scale(1.05)
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 20, 45, .85), rgba(30, 58, 95, .2) 60%, transparent);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--tr)
}

.gallery-item:hover .gallery-overlay {
    opacity: 1
}

.gallery-zoom {
    width: 46px;
    height: 46px;
    background: rgba(255, 255, 255, .15);
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 8px;
    transform: scale(.8);
    transition: transform .3s
}

.gallery-item:hover .gallery-zoom {
    transform: scale(1)
}

.gallery-caption {
    color: rgba(255, 255, 255, .88);
    font-size: .8rem;
    font-weight: 600;
    padding: 0 10px;
    text-align: center
}

.lightbox-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(5, 10, 25, .95);
    z-index: 9999;
    justify-content: center;
    align-items: center
}

.lightbox-overlay.active {
    display: flex
}

.lightbox-img {
    max-width: 90vw;
    max-height: 88vh;
    object-fit: contain;
    border-radius: var(--r)
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: fixed;
    background: rgba(255, 255, 255, .12);
    border: none;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--tr)
}

.lightbox-close {
    top: 16px;
    right: 20px;
    width: 42px;
    height: 42px;
    font-size: 1.1rem
}

.lightbox-prev {
    top: 50%;
    transform: translateY(-50%);
    left: 18px;
    width: 46px;
    height: 46px;
    font-size: 1.3rem
}

.lightbox-next {
    top: 50%;
    transform: translateY(-50%);
    right: 18px;
    width: 46px;
    height: 46px;
    font-size: 1.3rem
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, .22)
}

/* ─── 14. BLOG CARDS ────────────────────────────────────────── */
.blog-card {
    background: #fff;
    border-radius: var(--r-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--sh-sm);
    transition: var(--tr);
    height: 100%;
    display: flex;
    flex-direction: column
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--sh-md)
}

.blog-card-img {
    height: 190px;
    background: var(--bg-section);
    overflow: hidden;
    position: relative
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s
}

.blog-card:hover .blog-card-img img {
    transform: scale(1.04)
}

.blog-card-ph {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--navy-light), var(--teal-light))
}

.blog-card-ph i {
    font-size: 2.4rem;
    color: var(--teal);
    opacity: .35
}

.blog-card-body {
    padding: 20px 20px 24px;
    flex: 1;
    display: flex;
    flex-direction: column
}

.blog-tag {
    display: inline-block;
    background: var(--teal-light);
    color: var(--teal-dark);
    font-size: .69rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 3px 11px;
    border-radius: 50px;
    margin-bottom: 10px
}

.blog-card-title {
    font-family: var(--font-b);
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy-dark);
    line-height: 1.42;
    margin-bottom: 8px
}

.blog-excerpt {
    font-size: .86rem;
    color: var(--text-muted);
    line-height: 1.65;
    flex: 1
}

.blog-meta {
    font-size: .77rem;
    color: var(--text-muted);
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 12px
}

.blog-more {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: .85rem;
    font-weight: 600;
    color: var(--teal-dark);
    margin-top: 12px;
    transition: var(--tr)
}

.blog-more:hover {
    gap: 8px;
    color: var(--navy)
}

/* ─── 15. LOCATIONS ─────────────────────────────────────────── */
.loc-card {
    background: #fff;
    border-radius: var(--r-lg);
    padding: 24px 22px;
    border: 1px solid var(--border);
    border-left: 4px solid var(--teal);
    box-shadow: var(--sh-sm);
    transition: var(--tr);
    height: 100%
}

.loc-card:hover {
    box-shadow: var(--sh-md);
    transform: translateY(-3px)
}

.loc-badge {
    display: inline-block;
    background: var(--teal-light);
    color: var(--teal-dark);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 3px 12px;
    border-radius: 50px;
    margin-bottom: 10px
}

.loc-card h5 {
    font-family: var(--font-b);
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 6px
}

.loc-card p {
    font-size: .87rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 14px
}

/* ─── 16. FAQ ───────────────────────────────────────────────── */
.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--r);
    margin-bottom: 10px;
    overflow: hidden;
    transition: var(--tr)
}

.faq-item.open {
    border-color: rgba(13, 155, 138, .3)
}

.faq-q {
    width: 100%;
    background: none;
    border: none;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-family: var(--font-b);
    font-size: .92rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    text-align: left;
    transition: var(--tr)
}

.faq-q:hover,
.faq-item.open .faq-q {
    color: var(--teal-dark)
}

.faq-q i {
    flex-shrink: 0;
    color: var(--teal);
    transition: transform .3s;
    font-size: .85rem
}

.faq-item.open .faq-q i {
    transform: rotate(180deg)
}

.faq-a {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    font-size: .88rem;
    color: var(--text-muted);
    line-height: 1.7;
    transition: max-height .35s ease, padding .3s ease
}

.faq-item.open .faq-a {
    max-height: 400px;
    padding: 0 20px 16px
}

/* ─── 17. CTA SECTION ───────────────────────────────────────── */
.cta-section {
    background: var(--g-navy);
    position: relative;
    overflow: hidden;
    padding: 72px 0
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .04);
    pointer-events: none
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(13, 155, 138, .18);
    pointer-events: none
}

.cta-content {
    position: relative;
    z-index: 1
}

/* ─── 18. APPOINTMENT PAGE ──────────────────────────────────── */
.page-hero {
    background: var(--g-navy);
    padding: 52px 0 38px
}

.page-hero h1 {
    font-family: var(--font-h);
    color: #fff;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin: 0
}

.page-hero p {
    color: rgba(255, 255, 255, .72);
    margin: 8px 0 0;
    font-size: .95rem
}

.page-hero .breadcrumb-item a {
    color: rgba(255, 255, 255, .6);
    font-size: .82rem
}

.page-hero .breadcrumb-item.active {
    color: rgba(255, 255, 255, .85);
    font-size: .82rem
}

.page-hero .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, .4)
}

.appt-page-card {
    background: #fff;
    border-radius: var(--r-lg);
    padding: 36px 32px;
    border: 1px solid var(--border);
    box-shadow: var(--sh-md)
}

.form-ctrl {
    width: 100%;
    background: var(--bg-light);
    border: 1.5px solid var(--border);
    border-radius: var(--r-sm);
    padding: 12px 15px;
    font-family: var(--font-b);
    font-size: .9rem;
    color: var(--text-dark);
    outline: none;
    transition: var(--tr);
    -webkit-appearance: none
}

.form-ctrl:focus {
    border-color: var(--teal);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(13, 155, 138, .12)
}

.form-lbl {
    font-size: .84rem;
    font-weight: 600;
    color: var(--text-dark);
    display: block;
    margin-bottom: 5px
}

/* ─── 19. SWIPER PAGINATION ─────────────────────────────────── */
.swiper-pagination-bullet {
    background: rgba(30, 58, 95, .25) !important;
    opacity: 1 !important;
    width: 7px !important;
    height: 7px !important
}

.swiper-pagination-bullet-active {
    background: var(--teal) !important;
    width: 22px !important;
    border-radius: 4px !important
}

/* ─── 20. CONTACT INFO CARD ─────────────────────────────────── */
.contact-info-box {
    background: #fff;
    border-radius: var(--r-lg);
    padding: 22px 20px;
    border: 1px solid var(--border);
    box-shadow: var(--sh-sm);
    transition: var(--tr)
}

.contact-info-box:hover {
    box-shadow: var(--sh-md);
    transform: translateY(-3px)
}

.ci-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--teal-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal-dark);
    font-size: 1.2rem
}

.ci-title {
    font-family: var(--font-b);
    font-size: .85rem;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 3px
}

.ci-val {
    font-size: .86rem;
    color: var(--text-muted)
}

.ci-val a {
    color: var(--navy);
    font-weight: 600;
    text-decoration: none
}

.ci-val a:hover {
    color: var(--teal-dark)
}

/* ─── 21. RESPONSIVE ────────────────────────────────────────── */
@media(max-width:991.98px) {
    .hero-section {
        min-height: auto
    }

    .hero-body {
        padding: 60px 0 52px
    }

    .about-exp-badge {
        right: 0
    }

    .section-pad {
        padding: 64px 0
    }

    .hero-appt-card {
        margin-top: 24px
    }
}

@media(max-width:767.98px) {
    .hero-body {
        padding: 36px 0
    }

    .hero-title {
        font-size: 2rem
    }

    .hero-btns {
        flex-direction: column;
        align-items: flex-start
    }

    .hero-phones {
        flex-direction: column;
        gap: 8px
    }

    .trust-strip-inner {
        flex-wrap: wrap
    }

    .trust-item {
        flex: 1 1 calc(50% - 1px);
        border-right: 1px solid var(--border)
    }

    .trust-item:nth-child(2n) {
        border-right: none
    }

    .trust-item:nth-last-child(-n+1) {
        border-bottom: none
    }

    .stat-box {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, .1)
    }

    .stat-box:last-child {
        border-bottom: none
    }

    .section-pad {
        padding: 52px 0
    }

    .appt-page-card {
        padding: 24px 16px
    }

    .cta-section {
        padding: 52px 0
    }
}

@media(max-width:575.98px) {
    .hero-title {
        font-size: 1.8rem
    }

    .trust-strip-inner {
        flex-direction: column
    }

    .trust-item {
        border-right: none;
        border-bottom: 1px solid var(--border)
    }

    .trust-item:last-child {
        border-bottom: none
    }
}