:root {
    --primary: #0E6FFF;
    --primary-dark: #0A56D6;
    --secondary: #00C2A8;
    --accent: #0B1320;
    --success: #27AE60;
    --bg: #F8FAFC;
    --white: #FFFFFF;
    --border: #E5E7EB;
    --text: #0B1320;
    --text-muted: #5B6472;
    --radius: 20px;
    --radius-sm: 12px;
    --space: 8px;
    --shadow-sm: 0 4px 16px rgba(11, 19, 32, 0.06);
    --shadow-md: 0 12px 32px rgba(11, 19, 32, 0.09);
    --shadow-lg: 0 24px 64px rgba(11, 19, 32, 0.14);
    --grad-primary: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    --grad-dark: linear-gradient(160deg, #0B1320 0%, #10233F 55%, #0A3B52 100%);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
.display-font {
    font-family: 'Plus Jakarta Sans', sans-serif;
    letter-spacing: -0.02em;
    color: var(--accent);
}

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

a {
    text-decoration: none;
}

.container-xl {
    max-width: 1260px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
    background: rgba(14, 111, 255, 0.08);
    padding: 6px 16px;
    border-radius: 999px;
}

.eyebrow .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--secondary);
}

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

@media (max-width:768px) {
    .section-pad {
        padding: 70px 0;
    }
}

.btn {
    border-radius: 999px;
    font-weight: 600;
    padding: 14px 30px;
    font-size: 0.98rem;
    transition: all .3s cubic-bezier(.2, .8, .2, 1);
    border: none;
}

.btn-primary {
    background: var(--grad-primary);
    color: #fff;
    box-shadow: 0 10px 24px rgba(14, 111, 255, 0.28);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 32px rgba(14, 111, 255, 0.36);
    color: #fff;
}

.btn-outline-dark {
    border: 1.5px solid var(--border);
    color: var(--accent);
    background: #fff;
}

.btn-outline-dark:hover {
    border-color: var(--accent);
    background: var(--accent);
    color: #fff;
    transform: translateY(-3px);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn-sm-pill {
    padding: 9px 20px;
    font-size: .85rem;
}

/* glass utility */
.glass {
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

/* ============ NAVBAR ============ */
.navbar-custom {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 22px 0;
    transition: all .4s ease;
}

.navbar-custom.scrolled {
    padding: 12px 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(14px);
    box-shadow: 0 4px 24px rgba(11, 19, 32, 0.06);
}

.brand-mark {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--accent);
}

.brand-mark .leaf {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: var(--grad-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    box-shadow: 0 6px 16px rgba(14, 111, 255, .3);
}

.nav-links a {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.95rem;
    margin: 0 16px;
    opacity: 0.75;
    transition: opacity .2s;
}

.nav-links a:hover {
    opacity: 1;
    color: var(--primary);
}

.nav-links .dropdown {
    display: inline-block;
}

.nav-links .dropdown-menu {
    border-radius: var(--radius-sm);
    padding: 10px 0;
    margin-top: 25px;
}

.nav-links .dropdown-menu a {
    margin: 0;
    padding: 8px 20px;
    font-size: 0.9rem;
    opacity: 1;
    display: block;
    color: var(--accent);
}

.nav-links .dropdown-menu a:hover {
    background: var(--bg);
    color: var(--primary);
}

.nav-cta-group {
    display: flex;
    align-items: center;
    gap: 18px;
}

.emergency-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--accent);
}

.emergency-chip i {
    color: var(--secondary);
    font-size: 1.1rem;
}

.icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    background: #fff;
    color: var(--accent);
}

/* ============ HERO ============ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 120px;
    background:
        radial-gradient(1100px 600px at 85% -10%, rgba(0, 194, 168, 0.16), transparent 60%),
        radial-gradient(900px 500px at -10% 20%, rgba(14, 111, 255, 0.12), transparent 55%),
        var(--bg);
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: var(--grad-primary);
    filter: blur(120px);
    opacity: 0.18;
    top: -100px;
    right: -140px;
    z-index: 0;
}

h1.hero-title {
    font-size: 3.6rem;
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 22px;
}

h1.hero-title .grad-text {
    background: var(--grad-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-sub {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 520px;
    margin-bottom: 34px;
    line-height: 1.7;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 34px;
}

.trust-badges .item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-muted);
}

.trust-badges .item i {
    color: var(--success);
    font-size: 1rem;
}

.hero-stats {
    display: flex;
    gap: 0;
    margin-top: 52px;
    flex-wrap: wrap;
}

.hero-stats .stat {
    padding-right: 36px;
    margin-right: 36px;
    border-right: 1px solid var(--border);
}

.hero-stats .stat:last-child {
    border-right: none;
    margin-right: 0;
    padding-right: 0;
}

.hero-stats .stat-icon {
    width: 30px;
    height: 30px;
    border-radius: 9px;
    background: rgba(14, 111, 255, 0.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    margin-bottom: 8px;
}

.hero-stats .num {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 1.7rem;
    color: var(--accent);
}

.hero-stats .lbl {
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 500;
}

.hero-visual {
    position: relative;
    height: 560px;
}

.hero-visual .main-img {
    position: absolute;
    right: 0;
    top: 20px;
    width: 88%;
    height: 520px;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-visual .main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.float-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: floaty 5s ease-in-out infinite;
}

.float-card .fc-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    color: #fff;
    flex-shrink: 0;
}

.float-card .fc-title {
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--accent);
    line-height: 1.2;
}

.float-card .fc-sub {
    font-size: 0.76rem;
    color: var(--text-muted);
}

.card-emergency {
    top: 36px;
    left: -10px;
    animation-delay: .2s;
}

.card-emergency .fc-icon {
    background: linear-gradient(135deg, #FF7A59, #FF4D4D);
}

.card-insurance {
    bottom: 150px;
    left: -32px;
    animation-delay: 1s;
}

.card-insurance .fc-icon {
    background: var(--grad-primary);
}

.card-patients {
    bottom: 20px;
    right: 10px;
    animation-delay: 1.6s;
}

.card-patients .fc-icon {
    background: linear-gradient(135deg, #00C2A8, #27AE60);
}

@keyframes floaty {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-14px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .float-card {
        animation: none;
    }
}

/* Appointment widget */
.appt-widget {
    position: relative;
    z-index: 5;
    margin-top: -64px;
    margin-bottom: 70px;
}

.appt-card {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    padding: 34px 38px;
}

.appt-card .live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--success);
    display: inline-block;
    margin-right: 6px;
    animation: pulse 1.6s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(39, 174, 96, .5);
    }

    70% {
        box-shadow: 0 0 0 8px rgba(39, 174, 96, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(39, 174, 96, 0);
    }
}

.appt-card label {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .04em;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.appt-card label i {
    color: var(--primary);
    font-size: .85rem;
}

.appt-card .form-control,
.appt-card .form-select {
    border-radius: var(--radius-sm);
    border: 1.5px solid var(--border);
    padding: 11px 14px;
    font-size: 0.92rem;
}

.appt-card .form-control:focus,
.appt-card .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(14, 111, 255, .12);
}

/* ============ SERVICES ============ */
.service-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 28px;
    height: 100%;
    transition: all .35s cubic-bezier(.2, .8, .2, 1);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-card .s-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(14, 111, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 22px;
    transition: all .35s;
}

.service-card:hover .s-icon {
    background: var(--grad-primary);
    color: #fff;
    transform: rotate(-8deg) scale(1.05);
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-card .learn {
    font-weight: 700;
    font-size: 0.86rem;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.service-card .learn i {
    transition: transform .25s;
}

.service-card:hover .learn i {
    transform: translateX(4px);
}

/* ============ ABOUT ============ */
.about-img-wrap {
    position: relative;
}

.about-img-wrap img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    height: 480px;
    object-fit: cover;
}

.exp-badge {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: var(--grad-dark);
    color: #fff;
    border-radius: var(--radius-sm);
    padding: 26px 30px;
    box-shadow: var(--shadow-lg);
}

.exp-badge .num {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 2.2rem;
}

.exp-badge .lbl {
    font-size: 0.82rem;
    opacity: .8;
}

@media (max-width:991px) {
    .exp-badge {
        left: 16px;
        bottom: 16px;
    }
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 26px 0;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    font-weight: 600;
    font-size: 0.98rem;
}

.check-list i {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(39, 174, 96, .12);
    color: var(--success);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .8rem;
    flex-shrink: 0;
}

/* ============ WHY CHOOSE ============ */
.feature-card {
    padding: 32px 26px;
    border-radius: var(--radius);
    background: #fff;
    height: 100%;
    transition: all .3s;
}

.feature-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-6px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--grad-primary);
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.feature-icon.alt {
    background: linear-gradient(135deg, #00C2A8, #27AE60);
}

/* ============ DEPARTMENTS ============ */
.dept-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 44px;
}

.dept-tab-btn {
    border: 1.5px solid var(--border);
    background: #fff;
    color: var(--text-muted);
    font-weight: 700;
    padding: 11px 22px;
    border-radius: 999px;
    font-size: 0.9rem;
    transition: all .25s;
}

.dept-tab-btn.active,
.dept-tab-btn:hover {
    background: var(--grad-primary);
    color: #fff;
    border-color: transparent;
}

.dept-panel {
    display: none;
}

.dept-panel.active {
    display: block;
    animation: fadeUp .5s ease;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dept-panel img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
}

.dept-fact {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}

.dept-fact:last-child {
    border-bottom: none;
}

.dept-fact i {
    color: var(--primary);
    font-size: 1.2rem;
}

/* ============ DOCTORS ============ */
.doctor-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all .35s;
    height: 100%;
}

.doctor-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}

.doctor-card .d-img {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.doctor-card .d-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s;
}

.doctor-card:hover .d-img img {
    transform: scale(1.08);
}

.doctor-card .d-social {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    transition: all .3s;
    padding: 14px 0;
    background: linear-gradient(0deg, rgba(11, 19, 32, .55), transparent);
}

.doctor-card:hover .d-social {
    bottom: 0;
}

.doctor-card .d-social a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #fff;
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
}

.doctor-card .d-body {
    padding: 22px 22px 26px;
}

.doctor-card h4 {
    font-size: 1.08rem;
    margin-bottom: 2px;
}

.doctor-card .spec {
    color: var(--primary);
    font-size: 0.84rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.doctor-card .meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.doctor-card .rating {
    color: #F5A623;
}

/* ============ TIMELINE ============ */
.timeline-wrap {
    position: relative;
    padding-top: 20px;
}

.timeline-line {
    position: absolute;
    top: 38px;
    left: 0;
    right: 0;
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--border) 0 10px, transparent 10px 20px);
    z-index: 0;
}

@media (max-width:991px) {
    .timeline-line {
        display: none;
    }
}

.tl-step {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 14px;
}

.tl-dot {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.6rem;
    color: var(--primary);
    transition: all .3s;
}

.tl-step:hover .tl-dot {
    background: var(--grad-primary);
    color: #fff;
    border-color: transparent;
    transform: scale(1.08);
}

.tl-step h4 {
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.tl-step p {
    color: var(--text-muted);
    font-size: 0.86rem;
}

/* ============ STATS DARK ============ */
.stats-dark {
    background: var(--grad-dark);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.stats-dark::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 194, 168, 0.25), transparent 65%);
    top: -250px;
    right: -150px;
}

.stat-block {
    text-align: center;
    position: relative;
    z-index: 1;
}

.stat-block .num {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 2.6rem;
    background: var(--grad-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.stat-block .lbl {
    color: rgba(255, 255, 255, .65);
    font-weight: 600;
    font-size: 0.92rem;
    margin-top: 6px;
}

/* ============ TESTIMONIALS ============ */
.testi-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 32px;
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.testi-card .stars {
    color: #F5A623;
    margin-bottom: 16px;
    font-size: .9rem;
}

.testi-card p.quote {
    font-size: 1.02rem;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 24px;
}

.testi-person {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testi-person img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testi-person .name {
    font-weight: 700;
    font-size: 0.94rem;
}

.testi-person .loc {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 5px;
}

.verified-badge {
    font-size: 0.72rem;
    color: var(--success);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 4px;
}

/* ============ INSURANCE MARQUEE ============ */
.marquee-wrap {
    overflow: hidden;
    position: relative;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.marquee-track {
    display: flex;
    gap: 70px;
    width: max-content;
    animation: scroll-left 32s linear infinite;
}

.marquee-track .logo-item {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text-muted);
    opacity: .55;
    filter: grayscale(1);
    transition: all .3s;
    white-space: nowrap;
}

.marquee-track .logo-item:hover {
    opacity: 1;
    filter: none;
    color: var(--primary);
}

@keyframes scroll-left {
    from {
        transform: translateX(0);
    }

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

/* ============ BLOG ============ */
.blog-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all .3s;
    height: 100%;
}

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

.blog-card .b-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.blog-card .b-img .badge {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 2;
}

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

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

.blog-card .b-body {
    padding: 26px;
}

.blog-cat {
    font-size: 0.74rem;
    font-weight: 700;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: .05em;
}

.blog-card h4 {
    font-size: 1.08rem;
    margin: 10px 0 14px;
    line-height: 1.4;
}

.blog-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

/* ============ FAQ ============ */
.accordion-item {
    border: 1px solid var(--border) !important;
    border-radius: var(--radius-sm) !important;
    margin-bottom: 14px;
    overflow: hidden;
}

.accordion-button {
    font-weight: 700;
    font-size: 1rem;
    padding: 22px 26px;
    color: var(--accent);
}

.accordion-button:not(.collapsed) {
    color: var(--primary);
    background: rgba(14, 111, 255, 0.05);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-body {
    padding: 0 26px 24px;
    color: var(--text-muted);
}

/* ============ EMERGENCY CTA ============ */
.emergency-cta {
    background: var(--grad-primary);
    border-radius: var(--radius);
    padding: 64px 56px;
    position: relative;
    overflow: hidden;
    color: #fff;
}

.emergency-cta::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
    right: -120px;
    bottom: -160px;
}

.emergency-cta h2 {
    color: #fff;
    font-size: 2.1rem;
}

.emergency-cta .btn-outline-dark {
    background: #fff;
    color: var(--primary);
    border: none;
}

.emergency-cta .btn-white-ghost {
    background: rgba(255, 255, 255, .14);
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, .4);
}

/* ============ FOOTER ============ */
footer {
    background: var(--accent);
    color: rgba(255, 255, 255, .7);
    padding-top: 90px;
}

footer h5 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 22px;
    font-size: 1.02rem;
}

footer a {
    color: rgba(255, 255, 255, .62);
    font-size: 0.92rem;
    display: block;
    margin-bottom: 12px;
    transition: color .2s;
}

footer a:hover {
    color: var(--secondary);
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
}

.footer-social a:hover {
    background: var(--grad-primary);
}

.newsletter-input {
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .2);
    background: rgba(255, 255, 255, .06);
    color: #fff;
    padding: 12px 18px;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, .4);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    margin-top: 60px;
    padding: 26px 0;
    font-size: 0.85rem;
}

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

.insta-grid img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

/* fade-up scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: all .7s cubic-bezier(.2, .8, .2, 1);
}

.reveal.in {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width:991px) {
    h1.hero-title {
        font-size: 2.5rem;
    }

    .hero-visual {
        height: auto;
        margin-top: 60px;
    }

    .hero-visual .main-img {
        position: relative;
        width: 100%;
        height: 360px;
    }

    .float-card {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        margin: 10px 6px;
        display: inline-flex;
    }

    .nav-links,
    .nav-cta-group .emergency-chip {
        display: none !important;
    }
}

/* =======================================
   CONTACT PAGE SPECIFIC STYLES
======================================= */

.contact-hero {
    background:
        radial-gradient(1100px 600px at 85% -10%, rgba(0, 194, 168, 0.16), transparent 60%),
        radial-gradient(900px 500px at -10% 20%, rgba(14, 111, 255, 0.12), transparent 55%),
        var(--bg);
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
    color: var(--accent);
}

.breadcrumb-nav a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

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

.breadcrumb-nav span {
    color: var(--accent);
    font-weight: 500;
}

.contact-card-wrap {
    margin-top: -80px;
    position: relative;
    z-index: 10;
}

.contact-info-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    border: 1px solid rgba(255, 255, 255, 0.4);
    height: 100%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(22, 101, 216, 0.15);
}

.ci-icon {
    width: 64px;
    height: 64px;
    background: var(--grad-primary);
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 24px;
}

.contact-info-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--accent);
}

.contact-info-card p, .contact-info-card a {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 8px;
    display: block;
    text-decoration: none;
}

.contact-info-card a:hover {
    color: var(--primary);
}

.contact-form-container {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.04);
    overflow: hidden;
}

.form-side {
    padding: 60px;
}

.info-side {
    background: var(--accent);
    color: #fff;
    padding: 60px;
    position: relative;
    overflow: hidden;
}

.info-side::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.1;
    filter: blur(40px);
}

.form-control, .form-select {
    padding: 14px 20px;
    border-radius: 12px;
    border: 1px solid #e0e5eb;
    background-color: #f8fafc;
    transition: all 0.3s;
}

.form-control:focus, .form-select:focus {
    background-color: #fff;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(22, 101, 216, 0.1);
}

.map-section {
    position: relative;
    height: 600px;
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.map-card-overlay {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    max-width: 400px;
    z-index: 2;
}

.dept-quick-card {
    background: #fff;
    border: 1px solid #edf1f5;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--accent);
}

.dept-quick-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.06);
    border-color: transparent;
}

.dept-quick-card .dq-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(22, 101, 216, 0.05);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 16px;
    transition: all 0.3s;
}

.dept-quick-card:hover .dq-icon {
    background: var(--primary);
    color: #fff;
}

.support-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: transform 0.3s;
}

.support-card:hover {
    transform: translateY(-8px);
}

.support-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.support-body {
    padding: 30px;
}

.support-body h4 {
    margin-bottom: 4px;
}

.support-role {
    color: var(--secondary);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 16px;
    display: inline-block;
}

@media (max-width: 991px) {
    .contact-hero {
        padding: 120px 0 60px;
    }
    .contact-card-wrap {
        margin-top: 0;
    }
    .form-side, .info-side {
        padding: 40px 20px;
    }
    .map-card-overlay {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        max-width: 100%;
        margin: 20px;
    }
    .map-section {
        height: auto;
        display: flex;
        flex-direction: column;
    }
    .map-section iframe {
        height: 400px;
    }
}

/* ============ ABOUT PAGE ============ */
.about-hero {
    background:
        radial-gradient(1100px 600px at 85% -10%, rgba(0, 194, 168, 0.16), transparent 60%),
        radial-gradient(900px 500px at -10% 20%, rgba(14, 111, 255, 0.12), transparent 55%),
        var(--bg);
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
}

.stats-section {
    background: var(--grad-dark);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: var(--primary);
    filter: blur(120px);
    opacity: 0.15;
    top: -100px;
    right: -100px;
    border-radius: 50%;
}

.stat-box {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
    padding: 30px 20px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s;
}
.stat-box:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.08);
}
.stat-box .num {
    font-size: 2.5rem;
    font-weight: 800;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #fff;
    margin-bottom: 5px;
}
.stat-box .lbl {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
}

/* ============ SERVICE BOX ============ */
.service-box {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.service-box:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.service-box .icon-wrap {
    width: 70px;
    height: 70px;
    background: var(--grad-primary);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 25px;
    box-shadow: 0 10px 20px rgba(14, 111, 255, 0.2);
}

.service-box h5 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--accent);
}

.service-box p {
    margin-bottom: 25px;
}

.service-box .learn-btn {
    text-decoration: none;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s;
}

.service-box .learn-btn i {
    margin-left: 8px;
    transition: transform 0.3s;
}

.service-box:hover .learn-btn i {
    transform: translateX(5px);
}

/* ============ PREMIUM DEPT CARD ============ */
.premium-dept-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    overflow: hidden;
    height: 100%;
    border: 1px solid var(--border);
    position: relative;
}

.premium-dept-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.premium-dept-card .img-wrap {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.premium-dept-card .img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.premium-dept-card:hover .img-wrap img {
    transform: scale(1.05);
}

.premium-dept-card .dept-icon {
    position: absolute;
    bottom: -25px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--grad-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(14, 111, 255, 0.3);
    z-index: 2;
    border: 4px solid var(--white);
}

.premium-dept-card .content-wrap {
    padding: 35px 30px 30px;
}

.premium-dept-card h4 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--accent);
}

.premium-dept-card .specialists {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--muted);
}

.premium-dept-card .learn-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all 0.3s;
    text-decoration: none;
}

.premium-dept-card:hover .learn-btn {
    background: var(--primary);
    color: var(--white);
}

/* ============ FACILITIES GRID ============ */
.facility-box {
    background: var(--bg);
    padding: 30px 20px;
    border-radius: var(--radius-sm);
    text-align: center;
    transition: all 0.3s;
    height: 100%;
    border: 1px solid var(--border);
}

.facility-box:hover {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transform: translateY(-5px);
}

.facility-box i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
    display: inline-block;
}

.facility-box h6 {
    margin: 0;
    color: var(--accent);
    font-weight: 600;
}

/* ============ BLOG PAGES CSS ============ */
.custom-pagination .page-link {
    color: var(--muted);
    border-radius: 50% !important;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 4px;
    border: none;
    font-weight: 500;
}

.custom-pagination .page-item.active .page-link {
    background: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

.custom-pagination .page-item.disabled .page-link {
    background: transparent;
    color: #ccc;
}

.newsletter-cta {
    background: var(--white);
    padding: 60px 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    margin-top: -30px;
}

.blog-horizontal-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.blog-horizontal-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.blog-horizontal-card .b-img {
    height: 100%;
    min-height: 300px;
}

.blog-horizontal-card .b-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Blog Details Elements */
.reading-progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: transparent;
    z-index: 9999;
}
.reading-progress-bar {
    height: 4px;
    background: var(--primary);
    width: 0%;
}

.blog-main-image {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
}

.blog-content-rich h3 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--accent);
}

.blog-content-rich p {
    color: #4a5568;
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.blog-content-rich ul {
    color: #4a5568;
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}

.blog-content-rich ul li {
    margin-bottom: 0.5rem;
}

.blog-content-rich blockquote {
    background: var(--bg);
    border-left: 4px solid var(--primary);
    padding: 2rem;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-style: italic;
    font-size: 1.15rem;
    color: var(--accent);
    margin: 2.5rem 0;
}
.blog-content-rich blockquote span {
    display: block;
    font-size: 0.9rem;
    font-style: normal;
    color: var(--muted);
    margin-top: 10px;
    font-weight: 600;
}

.highlight-box {
    background: rgba(14, 111, 255, 0.05);
    border: 1px solid rgba(14, 111, 255, 0.1);
    padding: 1.5rem;
    border-radius: var(--radius-sm);
}

.post-nav-card {
    transition: all 0.3s;
    background: var(--white);
}
.post-nav-card:hover {
    box-shadow: var(--shadow-sm);
    border-color: var(--primary) !important;
}

.author-box {
    border: 1px solid var(--border);
}

.comment-box p {
    background: var(--bg);
    padding: 15px;
    border-radius: var(--radius-sm);
    border-top-left-radius: 0;
}

.sticky-toc {
    position: sticky;
    top: 100px;
}
.toc-nav .nav-link {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
}
.toc-nav .nav-link:last-child {
    border-bottom: none;
}
.toc-nav .nav-link:hover {
    color: var(--primary) !important;
    padding-left: 5px;
}

/* Scroll Top Button */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 999;
}
.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
}
.scroll-top-btn:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-3px);
}

/* ================= THEME GEAR ================= */
.theme-gear {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: #fff;
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    z-index: 1050;
    transition: all 0.3s ease;
    border: 2px solid var(--primary);
}
.theme-gear:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-50%) rotate(90deg);
}