:root {
    --n1: #071a3e;
    --n2: #0c2461;
    --n3: #163c8a;
    --n4: #2a5298;
    --t1: #2497a1;
    --t2: #1b7882;
    --t3: #e6f6f7;
    --red: #d3000a;
    --red-d: #a50008;
    --red-l: #ff1a24;
    --g1: #f7f9fc;
    --g2: #edf2f9;
    --g3: #d1dbed;
    --g4: #5c5c5c;
    --g5: #3d4f68;
    --g6: #1a2438;
    --white: #ffffff;
    --gold: #c9943a;
    --fh: 'Fraunces', serif;
    --fb: 'Inter', sans-serif;
    --radius-sm: 8px;
    --radius: 14px;
    --radius-lg: 22px;
    --radius-xl: 32px;
    --sh-xs: 0 1px 4px rgba(7, 26, 62, .06);
    --sh-sm: 0 2px 12px rgba(7, 26, 62, .08);
    --sh-md: 0 6px 28px rgba(7, 26, 62, .11);
    --sh-lg: 0 14px 52px rgba(7, 26, 62, .14);
    --sh-xl: 0 24px 80px rgba(7, 26, 62, .18);
    --ease: cubic-bezier(.22, .68, 0, 1.1);
    --ease-in: cubic-bezier(.55, .085, .68, .53);
    --ease-out: cubic-bezier(.25, .46, .45, .94);
}

/* ── RESET ── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth;
    font-size: 16px
}

body {
    font-family: var(--fb);
    color: var(--g6);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--fh);
    line-height: 1.18
}

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

a {
    text-decoration: none;
    color: inherit
}

button {
    font-family: var(--fb);
    cursor: pointer;
    border: none;
    outline: none
}

ul,
ol {
    list-style: none;
    padding: 0;
}

input,
select,
textarea {
    font-family: var(--fb);
    outline: none
}

/* ── LAYOUT ── */
.W {
    max-width: 90%;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.hero .W {
    margin: inherit;
    padding: 60px 0 20px 50px;
}

.sec {
    padding: 80px 0
}

.sec-sm {
    padding: 64px 0
}

/* ── SECTION LABEL ── */
.lbl {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 12px;
}

.lbl::before {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background: var(--red);
    border-radius: 2px
}

.lbl::after {
    content: '';
    display: block;
    width: 8px;
    height: 2px;
    background: var(--red);
    border-radius: 2px
}

/* ── HEADINGS SYSTEM ── */
.h2 {
    font-size: clamp(26px, 3vw, 44px);
    font-weight: 600;
    color: var(--n2);
    line-height: 1.16;
    margin: 6px 0;
}

.h2 em {
    font-style: normal;
    color: var(--t1)
}

.sub {
    font-size: 16px;
    color: var(--g4);
    line-height: 1.76;
    max-width: 560px;
    margin-top: 12px
}

.sh {
    display: flex;
    flex-direction: column
}

.sh.c {
    align-items: center;
    text-align: center
}

.sh.c .sub {
    margin: 12px auto 0;
    text-align: center;
    max-width: 60%;
}

/* ── SCROLL REVEAL ── */
.sr {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .75s var(--ease-out), transform .75s var(--ease-out)
}

.sr-l {
    opacity: 0;
    transform: translateX(-28px);
    transition: opacity .75s var(--ease-out), transform .75s var(--ease-out)
}

.sr-r {
    opacity: 0;
    transform: translateX(28px);
    transition: opacity .75s var(--ease-out), transform .75s var(--ease-out)
}

.sr.in,
.sr-l.in,
.sr-r.in {
    opacity: 1;
    transform: none
}

.sr.in {
    text-align: unset
}

.d1 {
    transition-delay: .08s
}

.d2 {
    transition-delay: .16s
}

.d3 {
    transition-delay: .24s
}

.d4 {
    transition-delay: .32s
}

.d5 {
    transition-delay: .4s
}

/* ── WAVE DIVIDER ── */
.wave-div {
    display: block;
    width: 100%;
    overflow: hidden;
    line-height: 0
}

/* ── BUTTONS ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: var(--fb);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .2px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    border: none;
    transition: all .24s var(--ease);
    white-space: nowrap;
}

.btn-navy {
    background: var(--n2);
    color: #fff;
    padding: 13px 28px;
    box-shadow: 0 4px 18px rgba(12, 36, 97, .28);
}

.btn-navy:hover {
    background: var(--n1);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(12, 36, 97, .38)
}

.btn-teal {
    background: var(--t1);
    color: #fff;
    padding: 13px 28px;
    box-shadow: 0 4px 16px rgba(36, 151, 161, .26);
}

.btn-teal:hover {
    background: var(--t2);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(36, 151, 161, .38)
}

.btn-outline-navy {
    background: transparent;
    color: var(--n2);
    padding: 12px 26px;
    border: 2px solid var(--n2);
    border-radius: var(--radius-sm);
}

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

.btn-outline-white {
    background: transparent;
    color: #fff;
    padding: 12px 26px;
    border: 2px solid rgba(255, 255, 255, .45);
}

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

.btn-ghost {
    background: transparent;
    color: var(--t1);
    padding: 12px 26px;
    border: 2px solid var(--t1);
}

.btn-ghost:hover {
    background: var(--t1);
    color: #fff
}

.btn-red {
    background: var(--red);
    color: #fff;
    padding: 13px 28px;
    box-shadow: 0 4px 18px rgba(211, 0, 10, .28);
}

.btn-red:hover {
    background: var(--red-d);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(211, 0, 10, .36)
}

.btn-lg {
    padding: 15px 34px;
    font-size: 15px
}

.btn-sm {
    padding: 9px 18px;
    font-size: 12.5px
}

.btn-pill {
    border-radius: 50px
}

/* ================================================================
   EMERGENCY BAR
================================================================ */
.ebar {
    background: var(--red);
    padding: 9px 0;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
}

.ebar-i {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
}

.ebar-grp {
    display: flex;
    align-items: center;
    gap: 22px
}

.ei {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    font-weight: 600;
    color: #fff;
}

.ei i {
    font-size: 12px;
    opacity: .85
}

.ei a {
    color: #fff;
    transition: opacity .2s
}

.ei a:hover {
    opacity: .75
}

.ei strong {
    font-weight: 700
}

.pulse-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #fff;
    flex-shrink: 0;
    animation: pd 1.6s infinite;
}

@keyframes pd {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, .5)
    }

    70% {
        box-shadow: 0 0 0 5px rgba(255, 255, 255, 0)
    }
}

/* ================================================================
   NAVBAR
================================================================ */
.nav {
    background: rgba(255, 255, 255, .97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: sticky;
    top: 0;
    z-index: 900;
    border-bottom: 2px solid var(--g2);
    transition: box-shadow .3s, border-color .3s;
}

.nav.scrolled {
    box-shadow: 0 4px 24px rgba(7, 26, 62, .1);
    border-bottom-color: var(--g3);
}

.nav-i {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
    gap: 8px;
}

.head-logo img {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    width: 240px;
    padding: 8px 16px;
    background: #fff;
    border-radius: var(--radius-sm);
    top: 30px;
    box-shadow: var(--sh-sm);
    transition: transform .2s;
}

.head-logo img:hover {
    transform: scale(1.02)
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 0;
}

.nav-menu a {
    font-size: 16px;
    font-weight: 500;
    color: var(--g5);
    padding: 0 16px 0 0;
    border-radius: 6px;
    position: relative;
    transition: color .2s;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 16px;
    right: 16px;
    height: 2.5px;
    background: var(--red);
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform .22s;
}

.nav-menu a:hover {
    color: var(--n2)
}

.nav-menu a:hover::after {
    transform: scaleX(1)
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px
}

.nav-wa {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: #fff;
    padding: 10px 18px;
    border-radius: var(--radius-sm);
    font-size: 13.5px;
    font-weight: 600;
    transition: background .2s;
}

.nav-wa i,
.nav-cta i {
    font-size: 14px
}

.nav-wa:hover {
    background: #1ea855
}

.nav-cta {
    background: var(--n2);
    color: #fff;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-size: 13.5px;
    font-weight: 600;
    transition: background .2s;
    border: none;
}

.nav-cta:hover {
    background: var(--n1)
}

.hbg {
    display: none;
    flex-direction: column;
    gap: 4.5px;
    background: none;
    padding: 8px;
    cursor: pointer
}

.hbg span {
    width: 22px;
    height: 2px;
    background: var(--g6);
    border-radius: 2px;
    transition: all .3s
}

/* ================================================================
   HERO
================================================================ */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--n1);
    flex-wrap: wrap;
    margin: 0px 12px;
    border-radius: var(--radius-xl);
}

.hero-l.sr.in {
    margin-bottom: 30px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    overflow: hidden
}

.hero-bg img.main {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    transform: scale(1.3);
    animation: heroPan 4s ease-in-out infinite alternate;
}

@keyframes heroPan {
    from {
        transform: scale(1.03) translateX(0)
    }

    to {
        transform: scale(1.00) translateX(-1%)
    }
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, rgba(7, 26, 62, .94) 0%, rgba(12, 36, 97, .88) 38%, rgb(12 36 97 / 38%) 65%, rgb(7 26 62 / 0%) 100%);
    border-radius: var(--radius-xl);
}

.hero-ct {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
    width: 100%;
    padding-top: 60px;
    padding-bottom: 20px;
}


.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(211, 0, 10, .18);
    border: 1px solid rgba(211, 0, 10, .38);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: 5px;
    margin-bottom: 24px;
}

.hero-eyebrow span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--red);
    flex-shrink: 0;
    animation: pd 1.8s infinite;
}

.hero h1 {
    font-size: 38px;
    font-weight: 700;
    color: #fff;
    line-height: 1.08;
    letter-spacing: -.8px;
    margin-bottom: 22px;
}

.hero h1 .accent {
    color: #2497a1;
}

.hero h1 .underline-word {
    position: relative;
    display: inline-block
}

.hero h1 .underline-word::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--red), var(--t1), transparent);
    border-radius: 3px;
}

.hero-sub {
    margin: 0 auto 0 0;
    font-size: 17px;
    color: rgba(255, 255, 255, .68);
    line-height: 1.76;
    margin-bottom: 22px;
    max-width: 720px;
    font-weight: 300;
}

.hero-btns {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-bottom: 18px;
}

.hero-call-inline {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
}

.hero-call-ic {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid #2497a1;
    background: #2497a166;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #2497a1;
}

.hero-call-txt small {
    display: block;
    font-size: 10.5px;
    color: rgba(255, 255, 255, .55);
    letter-spacing: 1.2px;
    text-transform: uppercase;
    text-align: start;
    margin-bottom: 4px;
}

.hero-call-txt strong {
    display: block;
    font-size: 16.5px;
    font-weight: 700;
    color: #fff;
}

/* Stats trust bar */
.hero-trust {
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: var(--radius);
    overflow: hidden;
    width: fit-content;
    margin-top: 32px;
}

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

.ht-item:last-child {
    border-right: none
}

.ht-item strong {
    display: block;
    font-family: var(--fh);
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.ht-item sup {
    font-size: 20px;
    color: #2497a1;
}

.ht-item span {
    display: block;
    font-size: 11px;
    color: rgba(255, 255, 255, .5);
    letter-spacing: .5px;
    margin-top: 3px
}

.ht-divider {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, .15)
}

/* ── TICKER ── */
.ticker {
    width: 100%;
    overflow: hidden;
    position: relative;
    background: rgba(255, 255, 255, .06);
    backdrop-filter: blur(8px);
    border-top: 1px solid rgba(255, 255, 255, .12);
    margin-top: 0;
    padding: 0;
}

.ticker::before,
.ticker::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.ticker::before {
    left: 0;
    background: linear-gradient(90deg, rgba(7, 26, 62, .9), transparent)
}

.ticker::after {
    right: 0;
    background: linear-gradient(-90deg, rgba(7, 26, 62, .9), transparent)
}

.ticker-track {
    display: flex;
    gap: 14px;
    animation: tick 26s linear infinite;
    width: max-content;
    padding: 16px 0;
}

.ticker-track:hover {
    animation-play-state: paused
}

.ticker-card {
    flex-shrink: 0;
    width: 300px;
    height: 190px;
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: var(--sh-sm);
}

.ticker-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s var(--ease-out);
}

.ticker-card:hover img {
    transform: scale(1.06)
}

.ticker-card-cap {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px 14px;
    background: linear-gradient(to top, rgba(7, 26, 62, .82), transparent);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .3px;
}

@keyframes tick {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

/* ================================================================
   ABOUT
================================================================ */
.about-bg {
    background: var(--white)
}

.about-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr .88fr;
    gap: 40px;
    align-items: center;
}

.about-text .sub {
    max-width: 400px
}

.about-feats {
    margin: 22px 0 26px;
    display: flex;
    flex-direction: column;
    gap: 11px
}

.af-item {
    display: flex;
    align-items: center;
    gap: 11px;
    font-size: 14px;
    font-weight: 500;
    color: var(--g5);
    padding: 9px 14px;
    background: var(--g1);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--t1);
    transition: background .2s, border-color .2s;
}

.af-item:hover {
    background: var(--t3);
    border-left-color: var(--red)
}

.af-item::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--t1);
    flex-shrink: 0;
}

.about-mid-col {
    position: relative
}

.about-mid-col .img-main {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: var(--radius-lg) var(--radius-lg) 72px var(--radius-lg);
    box-shadow: var(--sh-xl);
    object-position: right;
}

.about-stat-pill {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, .97);
    backdrop-filter: blur(12px);
    border-radius: var(--radius);
    padding: 14px 28px;
    box-shadow: var(--sh-lg);
    text-align: center;
    white-space: nowrap;
    border-top: 3px solid var(--red);
    animation: floatUp 5s ease-in-out infinite;
}

@keyframes floatUp {

    0%,
    100% {
        transform: translateX(-50%) translateY(0)
    }

    50% {
        transform: translateX(-50%) translateY(-8px)
    }
}

.asp strong {
    display: block;
    font-family: var(--fh);
    font-size: 30px;
    font-weight: 700;
    color: var(--n2)
}

.asp span {
    font-size: 11px;
    color: var(--g4);
    letter-spacing: .5px;
    text-transform: uppercase
}

.about-right-col {
    display: flex;
    flex-direction: column;
    gap: 14px
}

.about-right-col .img-sec {
    width: 100%;
    height: 214px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--sh-md);
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 9px
}

.wl-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--g5);
}

.wl-item i {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--t3);
    color: var(--t1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    flex-shrink: 0;
}

/* ================================================================
   APPOINTMENT BAND
================================================================ */
[id="appointment"] {
    background: linear-gradient(135deg, var(--n1) 0%, var(--n2) 55%, #0a1f55 100%);
    position: relative;
    overflow: hidden;
}

[id="appointment"]::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(211, 0, 10, .14), transparent 65%);
}

[id="appointment"]::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: 10%;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(36, 151, 161, .12), transparent 65%);
}

.appt-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
    padding: 10px 0;
}

#appointment {
    padding: 40px 0;
}

.appt-form-wrap {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    box-shadow: 0 28px 72px rgba(7, 26, 62, .26);
    max-width: 630px;
}

.appt-form-wrap h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--n2);
    margin-bottom: 15px;
}

.appt-form-wrap .tagline {
    font-size: 14px;
    color: var(--g4);
    margin-bottom: 24px
}

.afield {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1.5px solid var(--g3);
    border-radius: var(--radius-sm);
    background: var(--g1);
    transition: border .2s, box-shadow .2s, background .2s;
}

.afield:focus-within {
    border-color: var(--t1);
    box-shadow: 0 0 0 3px rgba(36, 151, 161, .12);
    background: #fff;
}

.afield i {
    padding: 0 14px;
    color: var(--n2);
    font-size: 14px;
    flex-shrink: 0;
    opacity: .7
}

.afield input,
.afield select {
    flex: 1;
    border: none;
    background: transparent;
    padding: 14px 12px 14px 0;
    font-size: 14px;
    color: var(--g6);
    font-family: var(--fb);
}

.afield textarea {
    flex: 1;
    border: none;
    background: transparent;
    padding: 14px 12px 14px 0;
    font-size: 14px;
    color: var(--g6);
    font-family: var(--fb);
    resize: none;
    min-height: 80px;
}

.afield input::placeholder {
    color: var(--g3)
}

input::placeholder {
    color: var(--g4) !important
}

.abook {
    width: 100%;
    margin-top: 16px;
    background: linear-gradient(135deg, var(--red), var(--red-d));
    color: #fff;
    padding: 15px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 700;
    font-family: var(--fb);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    letter-spacing: .4px;
    box-shadow: 0 6px 22px rgba(211, 0, 10, .3);
    transition: all .22s;
}

.abook:hover {
    opacity: .92;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(211, 0, 10, .4)
}

.afree {
    display: block;
    text-align: center;
    margin-top: 14px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
    cursor: pointer;
    transition: color .2s;
}

.acall-wrap {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: var(--radius-lg);
    padding: 18px 30px;
}

.call-ic-wrap {
    width: 56px;
    height: 56px;
    border-radius: var(--radius);
    background: #2497a166;
    color: var(--t1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 18px;
}

.acall-wrap .label {
    font-size: 11px;
    color: rgba(255, 255, 255, .55);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 6px;
    text-align: center;
}

.acall-wrap .number {
    font-family: var(--fh);
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
    text-align: center;
    letter-spacing: .5px;
}

.acall-wrap .desc {
    font-size: 14px;
    color: rgba(255, 255, 255, .6);
    line-height: 1.64;
    margin-bottom: 22px;
    text-align: center
}

.doc-avs {
    display: flex;
    align-items: center;
    justify-content: center
}

.doc-avs img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    border: 2.5px solid rgba(255, 255, 255, .3);
    margin-left: -9px;
}

.doc-avs img:first-child {
    margin-left: 0
}

.doc-avs .more {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--t1);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2.5px solid rgba(255, 255, 255, .3);
    margin-left: -9px;
}

/* ================================================================
   DEPARTMENTS
================================================================ */
.depts-sec {
    background: var(--g1)
}

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

.dept-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--sh-sm);
    transition: all .34s var(--ease-out);
    cursor: pointer;
    border: 1px solid var(--g2);
    position: relative;
}

.dept-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--sh-xl);
    border-color: rgba(36, 151, 161, .22)
}

.dept-card-img {
    position: relative;
    height: 190px;
    overflow: hidden
}

.dept-card-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(7, 26, 62, .56), transparent 55%);
}

.dept-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s var(--ease-out);
}

.dept-card:hover .dept-card-img img {
    transform: scale(1.08)
}

.dept-card-body {
    padding: 22px 20px
}

.dept-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 12px;
    position: absolute;
    top: 18px;
    box-shadow: var(--sh-sm);
    display: none;
}

.dept-card-body h4 {
    font-size: 17px;
    font-weight: 600;
    color: var(--n2);
    margin-bottom: 7px;
    margin-top: 4px
}

.dept-card-body p {
    font-size: 14px;
    color: var(--g4);
    line-height: 1.64;
    margin-bottom: 14px
}

.dept-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--t1);
    transition: gap .22s;
}

.dept-card:hover .dept-link {
    gap: 9px;
    color: var(--red)
}

.dept-link i {
    font-size: 10px
}

/* ================================================================
   WHY CHOOSE US
================================================================ */
.why-sec {
    position: relative;
    background: #dce7fd;
    overflow: hidden
}

.why-sec::before {
    content: '';
    position: absolute;
    inset: 0;
    background: none;
    pointer-events: none
}

.why-inner {
    position: relative;
    z-index: 1;
    padding: 0 0 8px
}

.why-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    margin-top: 52px;
}

.why-feature-list {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.wf-item {
    display: flex;
    gap: 16px;
    padding: 22px;
    background: #fff;
    border: 1px solid var(--g2);
    border-radius: var(--radius);
    box-shadow: var(--sh-xs);
    transition: all .28s var(--ease-out);
    cursor: default;
    border-left: 4px solid var(--g2);
}

.wf-item:hover {
    background: #fff;
    border-color: rgba(211, 0, 10, .25);
    border-left-color: var(--red);
    box-shadow: var(--sh-md);
    transform: translateX(6px);
}

.wf-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, rgba(211, 0, 10, .12), rgba(211, 0, 10, .05));
    color: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.wf-item:hover .wf-icon {
    background: linear-gradient(135deg, var(--red), #a50008);
    color: #fff
}

.wf-text h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--n2);
    margin-bottom: 5px
}

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

.why-visual {
    position: relative
}

.why-visual .img-main {
    width: 100%;
    height: 490px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--sh-xl);
}

.why-stats-bar {
    position: absolute;
    bottom: 22px;
    left: 22px;
    right: 22px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.wsb {
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    text-align: center;
    border-bottom: 3px solid var(--red);
}

.wsb strong {
    display: block;
    font-family: var(--fh);
    font-size: 28px;
    font-weight: 700;
    color: var(--n2);
    line-height: 1
}

.wsb sup {
    font-size: 14px;
    color: var(--red)
}

.wsb span {
    display: block;
    font-size: 12px;
    color: var(--g4);
    margin-top: 3px
}

/* ================================================================
   QUALITY TREATMENT
================================================================ */
.about-medcare {
    padding: 80px 0 0 0;
    background: #f4f4f4;
}



.about-box {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    min-height: 600px;
}

.about-top {
    justify-content: space-between;
    gap: 80px;
}

.about-left {
    width: 50%;
}

.about-left .small-title {
    display: block;
    font-size: 11px;
    letter-spacing: 2px;
    color: #dbe6f3;
    margin-bottom: 20px;
}

.about-left h2 {
    color: #fff;
    font-size: 46px;
    font-weight: 500;
    margin-bottom: 25px;
}

.about-left p {
    color: #eef5ff;
    line-height: 1.9;
    max-width: 500px;
    font-size: 15px;
}

.about-right {
    width: 40%;
}

.about-right ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.about-right li {
    position: relative;
    padding-left: 30px;
    color: #fff;
    margin-bottom: 18px;
    font-size: 14px;
}

.about-right li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #f6d85f;
}

.about-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    background: #f6d85f;
    color: #1d3557;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    margin-top: 15px;
    transition: .3s;
}

.about-btn:hover {
    transform: translateY(-3px);
}

.doctor-image {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80%;
}

.doctor-image img {
    width: 100%;
    display: block;
}

/* ================================================================
   VIDEO SECTION
================================================================ */
.vid-sec {
    background: var(--n1);
    position: relative;
    overflow: hidden
}

.vid-bg {
    position: absolute;
    inset: 0
}

.vid-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .16
}

.vid-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(7, 26, 62, .93), rgba(12, 36, 97, .78) 50%, rgba(36, 151, 161, .22) 100%);
}

.vid-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
    padding: 96px 0;
}

.vid-txt .h2 {
    color: #fff
}

.vid-txt .h2 em {
    color: var(--t1)
}

.vid-txt .sub {
    color: rgba(255, 255, 255, .68);
    margin-bottom: 0;
    margin-top: 10px;
    max-width: 100%
}

.vid-checklist {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 24px 0 32px
}

.vc {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, .78);
    font-weight: 500
}

.vc i {
    color: var(--t1);
    font-size: 13px
}

.vid-player {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 0, 0, .5)
}

.vid-player img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block
}

.vid-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .3s
}

.vid-overlay:hover {
    background: rgba(7, 26, 62, .45)
}

.play-btn {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .95);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--n2);
    cursor: pointer;
    transition: all .28s;
    margin-left: 5px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, .2);
}

.play-btn:hover {
    transform: scale(1.12);
    background: #fff
}

.vid-duration {
    position: absolute;
    bottom: 14px;
    right: 14px;
    background: rgba(7, 26, 62, .72);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 5px;
    backdrop-filter: blur(6px);
}

/* ================================================================
   GALLERY  (auto-scroll)
================================================================ */
.gal-sec {
    background: var(--white)
}

.gal-mosaic {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 200px 200px;
    gap: 14px;
    margin-top: 52px
}

.gal-item {
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    position: relative
}

.gal-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2
}

.gal-item:nth-child(4) {
    grid-column: span 2
}

.gal-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s
}

.gal-item:hover img {
    transform: scale(1.06)
}

.gal-ov {
    position: absolute;
    inset: 0;
    background: rgba(8, 24, 48, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .3s
}

.gal-item:hover .gal-ov {
    background: rgba(12, 36, 97, .45)
}

.gal-ov i {
    color: #fff;
    font-size: 24px;
    opacity: 0;
    transform: scale(.7);
    transition: all .3s
}

.gal-item:hover .gal-ov i {
    opacity: 1;
    transform: scale(1)
}

/* ================================================================
   DOCTORS
================================================================ */
.doc-sec {
    background: #d0ddff;
}

.doc-filter {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    margin: 36px 0;
}

.df {
    font-size: 12.5px;
    font-weight: 600;
    padding: 9px 20px;
    border-radius: 6px;
    border: 2px solid var(--g3);
    background: #fff;
    color: var(--g4);
    cursor: pointer;
    transition: all .22s;
    letter-spacing: .3px;
}

.df.active {
    background: var(--n2);
    color: #fff;
    border-color: var(--n2)
}

.df:hover:not(.active) {
    border-color: var(--red);
    color: var(--red)
}

.doc-carousel {
    position: relative
}

.doc-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.doc-arr {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--g3);
    color: var(--g5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
    transition: all .22s;
    z-index: 5;
    box-shadow: var(--sh-sm);
}

.doc-arr:hover {
    background: var(--red);
    border-color: var(--red);
    color: #fff;
    box-shadow: 0 6px 20px rgba(211, 0, 10, .28)
}

.doc-arr.prev {
    left: -24px
}

.doc-arr.next {
    right: -24px
}

.doc-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--sh-sm);
    transition: all .34s var(--ease-out);
    border: 1px solid var(--g2);
}

.doc-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--sh-xl);
    border-color: rgba(211, 0, 10, .18)
}

.doc-img-wrap {
    position: relative;
    height: 236px;
    background: var(--g1);
    overflow: hidden;
}

.doc-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform .4s var(--ease-out);
}

.doc-card:hover .doc-img-wrap img {
    transform: scale(1.05)
}

.doc-spec-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--red);
    color: #fff;
    font-size: 10.5px;
    font-weight: 700;
    padding: 4px 11px;
    border-radius: 5px;
    letter-spacing: .3px;
}

.doc-book-hover {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%) translateY(5px);
    background: var(--n2);
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 9px 18px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 7px;
    opacity: 0;
    transition: all .26s;
    white-space: nowrap;
}

.doc-card:hover .doc-book-hover {
    opacity: 1;
    transform: translateX(-50%) translateY(0)
}

.doc-info {
    padding: 18px 20px
}

.doc-info h4 {
    font-size: 17px;
    font-weight: 600;
    color: var(--n2);
    margin-bottom: 5px
}

.doc-info .spec {
    font-size: 14px;
    color: var(--g4);
    margin-bottom: 8px
}

.doc-info .exp {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    font-weight: 600;
    color: var(--t1);
    justify-content: center;
}

.doc-soc {
    display: flex;
    gap: 6px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--g2);
    justify-content: center;
}

.ds {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: var(--g1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--g4);
    cursor: pointer;
    transition: all .2s;
}

.ds:hover {
    background: var(--n2);
    color: #fff
}

/* ================================================================
   HINDI SECTION
================================================================ */
.hindi-sec {
    background: var(--white)
}

.hindi-sec .btn-pill {
    align-items: center;
    display: inline-table;
    width: max-content;
}

.hindi-wrap {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 72px;
    align-items: center
}

.hindi-img-col {
    position: relative
}

.hindi-img-main {
    width: 100%;
    height: 540px;
    object-fit: cover;
    border-radius: var(--radius-lg) var(--radius-lg) 80px var(--radius-lg);
    box-shadow: 0 20px 60px rgba(7, 26, 62, .15);
    display: block;
}

.hindi-badge-card {
    position: absolute;
    bottom: 28px;
    left: 120px;
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(10px);
    border-radius: var(--radius);
    padding: 18px 24px;
    box-shadow: var(--sh-lg);
    border-left: 4px solid var(--red);
    min-width: 210px;
    animation: floatUp 4.5s ease-in-out infinite;
}

.hindi-badge-card strong {
    display: block;
    font-family: var(--fh);
    font-size: 26px;
    color: var(--n2);
    line-height: 1
}

.hindi-badge-card span {
    font-size: 12px;
    color: var(--g4);
    margin-top: 3px;
    display: block
}

.hindi-content .htag {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 14px;
}

.hindi-content .htag::before {
    content: '';
    display: block;
    width: 22px;
    height: 2px;
    background: var(--red);
    border-radius: 2px
}

.hindi-content .htag::after {
    content: '';
    display: block;
    width: 7px;
    height: 2px;
    background: var(--red);
    border-radius: 2px
}

.hindi-h {
    font-family: var(--fh);
    font-size: 34px;
    font-weight: 700;
    color: var(--n2);
    line-height: 1.13;
    letter-spacing: -.3px;
    margin-bottom: 18px;
}

.hindi-h .hi {
    font-style: italic;
    color: var(--t1)
}

.hindi-sub {
    font-size: 15.5px;
    color: var(--g4);
    line-height: 1.76;
    margin-bottom: 28px
}

.hindi-pts {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px
}

.hpt {
    display: flex;
    align-items: flex-start;
    gap: 14px
}

.hpt-ic {
    width: 46px;
    height: 46px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--t3), #c6e8ed);
    color: var(--t1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.hpt h5 {
    font-size: 14.5px;
    font-weight: 600;
    color: var(--n2);
    margin-bottom: 4px
}

.hpt p {
    font-size: 14px;
    color: var(--g4);
    line-height: 1.62
}

.hindi-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 32px;
}

.hstat {
    background: #ffe8e8;
    border-radius: var(--radius-sm);
    padding: 16px;
    text-align: center;
    border: 1px solid var(--g2);
    border-bottom: 3px solid var(--red);
    transition: transform .2s;
}

.hstat:hover {
    transform: translateY(-3px)
}

.hstat strong {
    display: block;
    font-family: var(--fh);
    font-size: 28px;
    color: var(--n2);
    line-height: 1
}

.hstat sup {
    font-size: 14px;
    color: var(--red)
}

.hstat span {
    font-size: 11px;
    color: var(--g4);
    margin-top: 3px;
    display: block
}

/* ================================================================
   TESTIMONIALS
================================================================ */
.testi-sec {
    background: #ddeaff;
}

.testi-layout {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 40px;
    align-items: center;
    margin-top: 52px
}

.testi-left {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--sh1);
}

.testi-left img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    box-shadow: var(--sh1);
}

.testi-reviews-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(135deg, var(--t1), var(--t2))
}

.trb-avs {
    display: flex;
    margin-bottom: 8px
}

.trb-avs img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, .35);
    margin-left: -8px
}

.trb-avs img:first-child {
    margin-left: 0
}

.trb-avs .p {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .2);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, .35);
    margin-left: -8px
}

.trb-count {
    font-family: var(--fh);
    font-size: 24px;
    font-weight: 700;
    color: #fff
}

.trb-stars {
    display: flex;
    gap: 3px;
    margin-top: 4px
}

.trb-stars i {
    font-size: 13px;
    color: rgba(255, 255, 255, .9)
}

.testi-right {
    display: flex;
    flex-direction: column
}

.testi-card {
    background: #fff;
    border-radius: 12px;
    padding: 28px;
    box-shadow: var(--sh1);
    position: relative;
    border: 1px solid var(--g2)
}

.testi-card .qq {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 32px;
    color: var(--g2);
    font-family: Georgia, serif;
    line-height: 1
}

.tc-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 12px
}

.tc-stars i {
    color: #d4a017;
    font-size: 13px
}

.tc-body {
    font-size: 15px;
    color: var(--g5);
    line-height: 1.76;
    margin-bottom: 18px;
    font-style: italic
}

.tc-foot {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.tc-auth {
    display: flex;
    align-items: center;
    gap: 10px
}

.tc-av {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--g2)
}

.tc-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--n2)
}

.tc-role {
    font-size: 11.5px;
    color: var(--g4)
}

.tc-source {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11.5px;
    color: var(--g4)
}

.testi-controls {
    display: flex;
    gap: 9px;
    justify-content: flex-end;
    margin-top: 16px
}

.tc-nav {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid var(--g2);
    background: #fff;
    color: var(--g4);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 13px;
    transition: all .22s
}

.tc-nav:hover {
    background: var(--n2);
    border-color: var(--n2);
    color: #fff
}

/* ================================================================
   INSURANCE
================================================================ */
.ins-sec {
    background: var(--white);
    padding: 60px 0
}

.ins-ticker {
    margin-top: 40px;
    position: relative;
    overflow: hidden
}

.ins-ticker::before,
.ins-ticker::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 110px;
    z-index: 2;
    pointer-events: none;
}

.ins-ticker::before {
    left: 0;
    background: linear-gradient(90deg, var(--white), transparent)
}

.ins-ticker::after {
    right: 0;
    background: linear-gradient(-90deg, var(--white), transparent)
}

.ins-track {
    display: flex;
    gap: 16px;
    animation: insTick 22s linear infinite;
    width: max-content;
}

.ins-track img {
    height: 44px;
    width: auto;
    object-fit: contain;
    filter: grayscale(20%);
    border-radius: 4px;
    transition: filter .2s;
}

.ins-track img:hover {
    filter: grayscale(0%)
}

.ins-track:hover {
    animation-play-state: paused
}

@keyframes insTick {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

/* ================================================================
   BLOG
================================================================ */
.blog-sec {
    background: var(--g1)
}

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

.blog-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--sh-sm);
    transition: all .34s var(--ease-out);
    border: 1px solid var(--g2);
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--sh-xl)
}

.blog-img {
    overflow: hidden;
    height: 260px;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .42s var(--ease-out)
}

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

.blog-body {
    padding: 22px 24px
}

.blog-cat {
    display: inline-block;
    background: rgba(36, 151, 161, .12);
    color: var(--t1);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 11px;
    border-radius: 4px;
    margin-bottom: 10px;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.blog-body h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--n2);
    line-height: 1.42;
    margin-bottom: 8px
}

.blog-meta {
    display: flex;
    gap: 12px;
    font-size: 11.5px;
    color: var(--g4);
    margin: 0 auto;
    justify-content: center;
    margin-bottom: 14px;
}

.blog-meta i {
    color: var(--t1)
}

.blog-read {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--red);
    transition: gap .22s;
}

.blog-card:hover .blog-read {
    gap: 10px
}

.blog-read i {
    font-size: 10px
}

/* ================================================================
   EMERGENCY CTA
================================================================ */
.ecta-sec {
    background: var(--n2);
    position: relative;
    overflow: hidden;
    padding: 60px 0;
}

.ecta-sec::before {
    content: '';
    position: absolute;
    right: -80px;
    top: -80px;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, .12), transparent 65%);
}

.ecta-sec::after {
    content: '';
    position: absolute;
    left: -50px;
    bottom: -50px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, .07), transparent 65%);
}

.ecta-inner {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.ecta-l .lbl {
    color: rgba(255, 255, 255, .8)
}

.ecta-l .lbl::before,
.ecta-l .lbl::after {
    background: rgba(255, 255, 255, .8)
}

.ecta-l h2 {
    font-family: var(--fh);
    font-size: clamp(22px, 3vw, 42px);
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 8px
}

.ecta-l p {
    font-size: 16px;
    color: rgba(255, 255, 255, .72);
    max-width: 460px
}

.ecta-r {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 14px
}

.ecta-hotline {
    font-family: var(--fh);
    font-size: clamp(24px, 3.5vw, 50px);
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px
}

.ecta-hotline span {
    color: var(--t1);
}

.ecta-btns {
    display: flex;
    gap: 10px;
    flex-wrap: wrap
}

/* ================================================================
   FAQ
================================================================ */
.faq-sec {
    background: var(--white)
}

.faq-layout {
    display: grid;
    grid-template-columns: 1fr 1.28fr;
    gap: 64px;
    align-items: start;
    margin-top: 52px
}

.faq-l .sub {
    margin-bottom: 24px
}

.faq-stats {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 22px
}

.faq-stat {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 15px 18px;
    background: var(--g1);
    border-radius: var(--radius-sm);
    border: 1px solid var(--g2);
    border-left: 4px solid var(--n2);
    transition: background .2s;
}

.faq-stat:hover {
    background: rgba(211, 0, 10, .04)
}

.faq-stat-ic {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    background: var(--n2);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    flex-shrink: 0;
}

.faq-stat-n {
    font-size: 21px;
    font-weight: 700;
    color: var(--n2);
    font-family: var(--fh)
}

.faq-stat-l {
    font-size: 11.5px;
    color: var(--g4)
}

.faq-items {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.faq-item {
    border-radius: var(--radius-sm);
    border: 1px solid var(--g2);
    background: #fff;
    overflow: hidden;
    transition: border .22s, box-shadow .22s
}

.faq-item.open {
    border-color: rgba(211, 0, 10, .3);
    box-shadow: var(--sh-sm)
}

.faq-q {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 17px 20px;
    font-size: 14.5px;
    font-weight: 600;
    color: var(--n2);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    font-family: var(--fh);
    transition: color .2s;
}

.faq-q:hover {
    color: var(--red)
}

.faq-toggle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--g1);
    color: var(--n2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all .28s;
    font-size: 12px;
}

.faq-item.open .faq-toggle {
    background: var(--red);
    color: #fff;
    transform: rotate(45deg)
}

.faq-ans {
    max-height: 0;
    overflow: hidden;
    transition: max-height .36s ease
}

.faq-item.open .faq-ans {
    max-height: 140px
}

.faq-ans p {
    padding: 0 20px 18px;
    font-size: 14px;
    color: var(--g4);
    line-height: 1.72
}

/* ================================================================
   CONTACT
================================================================ */
.contact-sec {
    background: linear-gradient(160deg, #e8f4ff 0%, #f4f8ff 50%, #edf5ff 100%);
    position: relative;
}

.contact-sec::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(36, 151, 161, .12), transparent 70%);
    pointer-events: none;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 52px
}

.contact-form-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 44px;
    box-shadow: 0 8px 40px rgba(7, 26, 62, .1);
    border: 1px solid rgba(7, 26, 62, .06);
}

.contact-form-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--n2);
    margin-bottom: 6px
}

.contact-form-card .st {
    font-size: 14px;
    color: var(--g4);
    margin-bottom: 26px
}

.cf-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px
}

.cf-field {
    margin-bottom: 14px
}

.cf-field label {
    display: block;
    font-size: 11.5px;
    font-weight: 700;
    color: var(--n2);
    letter-spacing: .5px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.cf-field input,
.cf-field select,
.cf-field textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid var(--g3);
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-family: var(--fb);
    color: var(--g6);
    background: var(--g1);
    transition: border .2s, box-shadow .2s;
}

.cf-field input:focus,
.cf-field select:focus,
.cf-field textarea:focus {
    border-color: var(--t1);
    box-shadow: 0 0 0 3px rgba(36, 151, 161, .1);
    background: #fff;
    outline: none;
}

.cf-field textarea {
    height: 100px;
    resize: vertical
}

.cf-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--n2), var(--n3));
    color: #fff;
    padding: 14px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    transition: all .22s;
    letter-spacing: .2px;
    box-shadow: 0 4px 18px rgba(12, 36, 97, .25);
}

.cf-submit:hover {
    opacity: .92;
    transform: translateY(-2px);
    box-shadow: 0 8px 26px rgba(12, 36, 97, .35)
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 14px
}

.cinfo {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #fff;
    border-radius: var(--radius);
    padding: 18px 22px;
    box-shadow: var(--sh-xs);
    border: 1px solid var(--g2);
    border-left: 4px solid var(--t1);
    transition: all .22s;
}

.cinfo:hover {
    transform: translateX(5px);
    box-shadow: var(--sh-md);
    border-left-color: var(--red)
}

.cinfo-ic {
    width: 46px;
    height: 46px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--t3), #c8eaed);
    color: var(--t1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    flex-shrink: 0;
}

.cinfo h5 {
    font-size: 14px;
    font-weight: 600;
    color: var(--n2);
    margin-bottom: 3px
}

.cinfo p {
    font-size: 13.5px;
    color: var(--g4);
    line-height: 1.55
}

.map-frame {
    width: 100%;
    height: 174px;
    border-radius: var(--radius);
    overflow: hidden;
    border: none;
    box-shadow: var(--sh-sm)
}

/* ================================================================
   FOOTER
================================================================ */
.footer {
    background: #07192f;
    color: #fff;
    padding: 0;
    position: relative;
}

.footer-top-bar {
    background: linear-gradient(135deg, #081946, #0c2461);
    padding: 30px 0;
}

.footer-top-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-top-inner h3 {
    color: #fff;
    font-size: 28px;
    margin-bottom: 6px;
}

.footer-top-inner p {
    color: rgba(255, 255, 255, .9);
}

.footer-call-btn {
    background: #fff;
    color: var(--red);
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.4fr;
    gap: 40px;
    padding: 40px 0;
}

.footer-brand img {
    width: 250px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.footer-brand p {
    max-width: 340px;
    line-height: 1.8;
    color: rgba(255, 255, 255, .75);
}

.footer-stats {
    display: flex;
    gap: 25px;
    margin: 25px 0;
}

.footer-stats h4 {
    color: var(--t1);
    font-size: 28px;
    margin-bottom: 4px;
}

.footer-stats span {
    font-size: 12px;
    color: rgba(255, 255, 255, .7);
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.fsoc {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
}

.fsoc:hover {
    background: var(--red);
    transform: translateY(-4px);
}

.footer h5 {
    font-size: 16px;
    margin-bottom: 24px;
    color: #fff;
    border: none;
    text-transform: none;
    letter-spacing: 0;
}

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

.footer-links a {
    color: rgba(255, 255, 255, .75);
}

.footer-contact-card {
    background: rgba(255, 255, 255, .05);
    padding: 25px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, .08);
    gap: 10px;
    display: flex;
    flex-direction: column;
}

.footer-book-btn {
    display: block;
    margin-top: 20px;
    text-align: center;
    background: var(--red);
    color: #fff;
    padding: 14px;
    border-radius: 10px;
    font-weight: 600;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p,
.footer-btm-links a {
    color: rgba(255, 255, 255, .55);
}

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

:root {
    --n1: #071a3e;
    --n2: #0c2461;
    --n3: #163c8a;
    --n4: #2a5298;
    --t1: #2497a1;
    --t2: #1b7882;
    --t3: #e6f6f7;
    --red: #d3000a;
    --red-d: #a50008;
    --g1: #f7f9fc;
    --g2: #edf2f9;
    --g3: #d1dbed;
    --g4: #6b7c99;
    --g5: #3d4f68;
    --g6: #1a2438;
    --white: #ffffff;
    --fh: 'Fraunces', serif;
    --fb: 'Inter', sans-serif;
    --r-sm: 8px;
    --r: 14px;
    --r-lg: 22px;
    --sh-xs: 0 1px 4px rgba(7, 26, 62, .06);
    --sh-sm: 0 2px 12px rgba(7, 26, 62, .08);
    --sh-md: 0 6px 28px rgba(7, 26, 62, .11);
    --sh-lg: 0 14px 52px rgba(7, 26, 62, .14);
    --sh-xl: 0 24px 80px rgba(7, 26, 62, .18);
    --ease-out: cubic-bezier(.25, .46, .45, .94);
}

/* ── RESET (same as main site) ── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth;
    font-size: 16px
}

body {
    font-family: var(--fb);
    color: var(--g6);
    background: var(--g1);
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: var(--fh);
    line-height: 1.18
}

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

a {
    text-decoration: none;
    color: inherit
}

button {
    font-family: var(--fb);
    cursor: pointer;
    border: none;
    outline: none
}

ul {
    list-style: none
}

/* ── PAGE WRAPPER ── */
.page-demo {
    min-height: 100vh;
    padding: 0;
    background: var(--g1);
}

/* ================================================================
   DEPARTMENTS & TREATMENTS SECTION
================================================================ */
.dept-treat-sec {
    background: var(--g1);
    padding: 96px 0;
}

/* ── Section Header ── */
.dt-header {
    text-align: center;
    margin-bottom: 56px;
}

.dt-tag {
    display: inline-flex;
    align-items: center;
    gap: 0;
    background: var(--n2);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 6px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.dt-h2 {
    font-family: var(--fh);
    font-size: clamp(28px, 3.4vw, 52px);
    font-weight: 700;
    color: var(--n2);
    line-height: 1.14;
    letter-spacing: -.5px;
    margin-bottom: 14px;
}

.dt-h2 em {
    font-style: normal;
    color: var(--t1);
}

.dt-sub {
    font-size: 16px;
    color: var(--g4);
    line-height: 1.74;
    max-width: 560px;
    margin: 0 auto;
}

/* ── Max-width wrapper matching site .W ── */
.dt-wrap {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 28px;
}

/* ── Main Panel: sidebar + content ── */
.dt-panel {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 0;
    background: var(--white);
    border-radius: var(--r-lg);
    box-shadow: var(--sh-lg);
    border: 1px solid var(--g2);
    overflow: hidden;
    min-height: 680px;
}

/* ================================================================
   LEFT SIDEBAR — Department Navigation
================================================================ */
.dt-sidebar {
    background: var(--white);
    border-right: 1px solid var(--g2);
    display: flex;
    flex-direction: column;
}

/* Sidebar header bar */
.dt-sidebar-header {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--n2);
    padding: 18px 22px;
}

.dt-sidebar-header-ic {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .15);
    border-radius: 7px;
    color: #fff;
    font-size: 14px;
}

.dt-sidebar-header span {
    font-family: var(--fb);
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Department tabs */
.dt-nav {
    display: flex;
    flex-direction: column;
    flex: 1;
    overflow-y: auto;
}

.dt-nav::-webkit-scrollbar {
    width: 4px
}

.dt-nav::-webkit-scrollbar-track {
    background: transparent
}

.dt-nav::-webkit-scrollbar-thumb {
    background: var(--g3);
    border-radius: 4px
}

.dt-tab {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 22px;
    cursor: pointer;
    position: relative;
    transition: all .22s var(--ease-out);
    border-left: 3px solid transparent;
    background: transparent;
    width: 100%;
    text-align: left;
    color: var(--g5);
}

.dt-tab::after {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 18px;
    font-size: 10px;
    color: var(--g3);
    transition: all .22s;
}

.dt-tab:hover {
    background: var(--g1);
    border-left-color: var(--t1);
    color: var(--n2);
}

.dt-tab:hover::after {
    color: var(--t1)
}

.dt-tab:hover .dt-tab-ic {
    background: var(--t3);
    color: var(--t1)
}

.dt-tab.active {
    background: linear-gradient(135deg, var(--t1), var(--t2));
    border-left-color: var(--t2);
    color: #fff;
}

.dt-tab.active::after {
    color: rgba(255, 255, 255, .7)
}

.dt-tab.active .dt-tab-ic {
    background: rgba(255, 255, 255, .2);
    color: #fff;
}

.dt-tab.active .dt-tab-name {
    color: #fff;
    font-size: 16px;
}

.dt-tab.active .dt-tab-count {
    background: rgba(255, 255, 255, .22);
    color: #fff
}

.dt-tab-ic {
    width: 38px;
    height: 38px;
    border-radius: 9px;
    background: var(--g2);
    color: var(--g4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
    transition: all .22s;
}

.dt-tab-name {
    flex: 1;
    font-size: 16px;
    font-weight: 500;
    color: var(--g5);
    transition: color .22s;
}

.dt-tab.active .dt-tab-name {
    font-weight: 600
}

.dt-tab-count {
    font-size: 10.5px;
    font-weight: 700;
    background: var(--g2);
    color: var(--g4);
    padding: 2px 8px;
    border-radius: 50px;
    transition: all .22s;
}

/* ================================================================
   RIGHT CONTENT PANEL
================================================================ */
.dt-content-panel {
    display: flex;
    flex-direction: column;
    background: var(--white);
    padding: 0;
    position: relative;
}

/* Content pane — each dept panel */
.dt-pane {
    display: none;
    flex-direction: column;
    flex: 1;
    animation: fadePane .32s var(--ease-out);
}

.dt-pane.active {
    display: flex
}

@keyframes fadePane {
    from {
        opacity: 0;
        transform: translateY(10px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

/* Pane header */
.dt-pane-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 28px 32px 0;
    border-bottom: 1px solid var(--g2);
    padding-bottom: 24px;
}

.dt-pane-title-wrap {}

.dt-pane-title {
    font-family: var(--fh);
    font-size: clamp(22px, 2.2vw, 32px);
    font-weight: 700;
    color: var(--n2);
    margin-bottom: 6px;
    position: relative;
    display: inline-block;
}

.dt-pane-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--t1);
    border-radius: 3px;
}

.dt-pane-desc {
    font-size: 14px;
    color: var(--g4);
    line-height: 1.68;
    margin-top: 14px;
    max-width: 560px;
}

.dt-view-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--t1);
    padding: 10px 20px;
    border: 1.5px solid var(--t1);
    border-radius: var(--r-sm);
    background: transparent;
    transition: all .22s var(--ease-out);
    white-space: nowrap;
    flex-shrink: 0;
    margin-top: 4px;
}

.dt-view-btn:hover {
    background: var(--t1);
    color: #fff;
    transform: translateX(2px);
}

.dt-view-btn i {
    font-size: 11px;
    transition: transform .22s
}

.dt-view-btn:hover i {
    transform: translateX(3px)
}

/* Treatments section inside pane */
.dt-treats-wrap {
    padding: 20px 40px;
    flex: 1;
}

.dt-treats-label {
    font-family: var(--fb);
    font-size: 18px;
    font-weight: 700;
    color: var(--g5);
    letter-spacing: .5px;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dt-treats-label::after {
    content: '';
    display: block;
    width: 32px;
    height: 2px;
    background: var(--t1);
    border-radius: 2px;
}

/* Treatment grid: 4 cols */
.dt-treat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 16px;
}

/* ── Treatment Card ── */
.tc-card {
    background: var(--white);
    border: 1px solid var(--g2);
    border-radius: var(--r);
    overflow: hidden;
    cursor: pointer;
    transition: all .32s var(--ease-out);
    box-shadow: var(--sh-xs);
    display: flex;
    flex-direction: column;
    position: relative;
}

.tc-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--sh-md);
    border-color: rgba(36, 151, 161, .25);
}

.tc-card:hover .tc-img img {
    transform: scale(1.07)
}

.tc-card:hover .tc-learn {
    color: var(--red);
    gap: 8px
}

.tc-card:hover .tc-learn i {
    transform: translateX(3px)
}

/* Image area */
.tc-img {
    position: relative;
    height: 180px;
    overflow: hidden;
    background: var(--g2);
    flex-shrink: 0;
}

.tc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s var(--ease-out);
}

/* Subtle gradient over image */
.tc-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(7, 26, 62, .22) 100%);
}

/* Icon badge on image */
.tc-badge {
    position: absolute;
    bottom: -1px;
    left: 14px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--t1), var(--t2));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    box-shadow: 0 3px 12px rgba(36, 151, 161, .35);
    z-index: 2;
    border: 2px solid var(--white);
    transition: all .25s;
}

.tc-card:hover .tc-badge {
    background: linear-gradient(135deg, var(--red), var(--red-d));
    box-shadow: 0 4px 14px rgba(211, 0, 10, .35);
}

/* Card body */
.tc-body {
    padding: 14px 14px 12px;
    display: flex;
    flex-direction: column;
    flex: 1;
    font-style: normal;
}

.tc-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--n2);
    margin-bottom: 5px;
    line-height: 1.3;
}

.tc-desc {
    font-size: 14px;
    color: var(--g4);
    line-height: 1.6;
    flex: 1;
    margin-bottom: 10px;
}

.tc-learn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--t1);
    transition: all .22s;
}

.tc-learn i {
    font-size: 10px;
    transition: transform .22s;
}

/* ── CTA bar at bottom ── */
.dt-cta-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin: 0 32px 28px;
    background: var(--g1);
    border: 1px solid var(--g2);
    border-radius: var(--r);
    padding: 18px 24px;
}

.dt-cta-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.dt-cta-ic {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--t1), var(--t2));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.dt-cta-txt strong {
    display: block;
    font-family: var(--fh);
    font-size: 15px;
    font-weight: 700;
    color: var(--n2);
    margin-bottom: 2px;
}

.dt-cta-txt span {
    font-size: 13px;
    color: var(--g4);
}

.dt-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--n2);
    color: #fff;
    padding: 13px 24px;
    border-radius: var(--r-sm);
    font-size: 13.5px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all .22s var(--ease-out);
    box-shadow: 0 4px 16px rgba(12, 36, 97, .25);
    white-space: nowrap;
    flex-shrink: 0;
}

.dt-cta-btn:hover {
    background: var(--n1);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(12, 36, 97, .35);
}

.dt-cta-btn i {
    font-size: 12px;
    transition: transform .22s
}

.dt-cta-btn:hover i {
    transform: translateX(3px)
}

/* ================================================================
   RESPONSIVE
================================================================ */
@media (max-width: 1100px) {
    .dt-panel {
        grid-template-columns: 250px 1fr
    }

    .dt-treat-grid {
        grid-template-columns: repeat(3, 1fr)
    }
}

@media (max-width: 900px) {
    .dt-panel {
        grid-template-columns: 1fr;
        border-radius: var(--r);
    }

    .dt-sidebar {
        border-right: none;
        border-bottom: 1px solid var(--g2);
    }

    .dt-nav {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        padding: 10px;
        gap: 6px;
        max-height: none;
        overflow: visible;
    }

    .dt-tab {
        flex-direction: column;
        text-align: center;
        padding: 12px 10px;
        border-left: none;
        border-bottom: 3px solid transparent;
        border-radius: var(--r-sm);
        gap: 6px;
    }

    .dt-tab::after {
        display: none
    }

    .dt-tab.active {
        border-bottom-color: var(--t2)
    }

    .dt-tab-ic {
        width: 32px;
        height: 32px;
        font-size: 14px;
        margin: 0 auto
    }

    .dt-tab-name {
        font-size: 12px
    }

    .dt-tab-count {
        display: none
    }

    .dt-treat-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .dt-pane-head {
        flex-direction: column;
        gap: 14px
    }

    .dt-view-btn {
        align-self: flex-start
    }
}

@media (max-width: 640px) {
    .dept-treat-sec {
        padding: 72px 0
    }

    .dt-wrap {
        padding: 0 16px
    }

    .dt-panel {
        border-radius: var(--r-sm)
    }

    .dt-nav {
        grid-template-columns: repeat(2, 1fr)
    }

    .dt-treat-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px
    }

    .dt-pane-head {
        padding: 20px 20px 18px
    }

    .dt-treats-wrap {
        padding: 20px
    }

    .dt-cta-bar {
        margin: 0 20px 20px;
        flex-direction: column;
        align-items: flex-start
    }

    .dt-cta-btn {
        width: 100%;
        justify-content: center
    }

    .tc-img {
        height: 120px
    }
}

@media (max-width: 420px) {
    .dt-treat-grid {
        grid-template-columns: 1fr
    }
}