/* =========================================================
   CUREVISTA GLOBAL — COMPLETE STYLES v2
   ========================================================= */

/* ---------- VARIABLES ---------- */
:root {
    --navy: #032d35;
    --navy-2: #063f47;
    --teal: #008e8e;
    --teal-dark: #006d72;
    --gold: #e7bd78;
    --cream: #f8f5ed;
    --text: #132c34;
    --muted: #6c7b80;
    --white: #fff;
    --border: #e4e9e8;
    --shadow: 0 18px 45px rgba(8, 48, 55, .10);
    --radius: 14px;
    --tr: .25s ease;
}

/* ---------- RESET ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "DM Sans", sans-serif;
    color: var(--text);
    background: #fff;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* =============================================
   TOPBAR
   ============================================= */
.topbar {
    background: #03262d;
    color: #fff;
    font-size: 12px;
    padding: 10px 0;
}

/* =============================================
   NAVBAR BASE
   ============================================= */
.main-nav {
    background: var(--navy);
    padding: 13px 0;
    position: relative;
    z-index: 1050;
}

.navbar-brand {
    display: flex;
    align-items: center;
    color: #fff;
    gap: 8px;
    line-height: 1;
}

.brand-mark {
    font-size: 32px;
    color: var(--gold);
}

.brand-name {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -.5px;
    color: #fff;
}

.brand-name span {
    color: #7ee0d8;
}

.brand-name small {
    display: block;
    font-size: 7px;
    letter-spacing: 4px;
    margin-left: 28px;
    color: #d9c58d;
    margin-top: 3px;
}

.nav-link {
    color: #fff !important;
    font-size: 13px;
    font-weight: 500;
    padding: 10px 12px !important;
    transition: color var(--tr);
}

.nav-link i {
    font-size: 9px;
    margin-left: 3px;
    transition: transform var(--tr);
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold) !important;
}

.btn-gold {
    background: var(--gold);
    color: #173238;
    border: 0;
    border-radius: 12px;
    font-weight: 700;
    padding: 12px 20px;
    transition: background var(--tr);
}

.btn-gold:hover {
    background: #f1cf91;
    color: #173238;
}

.nav-cta {
    white-space: nowrap;
    font-size: 12px;
}

.navbar-toggler {
    border: 0 !important;
    box-shadow: none !important;
    color: #fff;
    padding: 4px 8px;
}

/* =============================================
   MEGA MENU & DROPDOWNS
   ============================================= */
@keyframes menuIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mega item — position static so menu is relative to .main-nav */
.nav-item.mega-item {
    position: static;
}

.nav-item.has-dropdown {
    position: relative;
}

/* Shared dropdown reset */
.mega-menu,
.dropdown-menu-custom {
    display: none;
    position: absolute;
    background: #fff;
    border-top: 3px solid var(--teal);
    border-radius: 0 0 16px 16px;
    box-shadow: 0 28px 70px rgba(3, 45, 53, .18);
    z-index: 1051;
    animation: menuIn .22s ease forwards;
}

/* ---- MEGA MENU (full-width) ---- */
.mega-menu {
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    padding: 30px 60px;
    display: none;
    flex-direction: row;
    gap: 0;
}

.mega-item:hover .mega-menu {
    display: flex;
}

.mega-col {
    flex: 1;
    padding: 0 24px 0 0;
    margin: 0 24px 0 0;
    border-right: 1px solid #eef1ef;
}

.mega-col:last-child {
    border-right: 0;
    padding-right: 0;
    margin-right: 0;
}

.mega-col-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eef1ef;
}

.mega-col-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    font-size: 17px;
    flex-shrink: 0;
}

.mega-col-title {
    font-size: 12px;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: .2px;
}

.mega-col-sub {
    font-size: 9px;
    color: var(--muted);
    margin-top: 1px;
}

.mega-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 9px;
    border-radius: 8px;
    font-size: 12px;
    color: var(--text);
    transition: background var(--tr), color var(--tr);
    cursor: pointer;
    position: relative;
}

.mega-link:hover {
    background: #f0faf9;
    color: var(--teal);
}

.mega-link>i:first-child {
    font-size: 13px;
    color: var(--teal);
    width: 18px;
    flex-shrink: 0;
}

.mega-link .arrow {
    margin-left: auto;
    font-size: 9px;
    color: #bbb;
}

/* ---- FLYOUT (Level 3) ---- */
.flyout-parent {
    position: relative;
}

.flyout-menu {
    position: absolute;
    left: 100%;
    top: -8px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(3, 45, 53, .14);
    min-width: 210px;
    padding: 10px;
    display: none;
    z-index: 1052;
    animation: menuIn .2s ease;
    list-style: none;
    margin: 0;
}

.flyout-parent:hover .flyout-menu {
    display: block;
}

.flyout-menu li a {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 7px 11px;
    border-radius: 7px;
    font-size: 12px;
    color: var(--text);
    transition: background var(--tr), color var(--tr);
}

.flyout-menu li a:hover {
    background: #f0faf9;
    color: var(--teal);
}

.flyout-menu li a i {
    color: var(--teal);
    font-size: 11px;
}

/* ---- STANDARD DROPDOWN ---- */
.dropdown-menu-custom {
    top: calc(100% + 13px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 240px;
    padding: 10px;
    display: none;
}

.has-dropdown:hover .dropdown-menu-custom {
    display: block;
}

.dropdown-menu-custom li a {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 9px 13px;
    border-radius: 9px;
    font-size: 12px;
    color: var(--text);
    transition: background var(--tr), color var(--tr);
}

.dropdown-menu-custom li a:hover {
    background: #f0faf9;
    color: var(--teal);
}

.dropdown-menu-custom li a i {
    color: var(--teal);
    font-size: 14px;
    width: 18px;
}

.dropdown-menu-custom li a strong {
    font-weight: 700;
}

/* Language switcher (in topbar) */
.lang-switch {
    position: relative;
}

.lang-switch .dropdown-menu-custom {
    top: calc(100% + 5px);
    left: auto;
    right: 0;
    transform: none;
    min-width: 160px;
}

.lang-switch:hover .dropdown-menu-custom {
    display: block;
}

/* ---- MOBILE SUBMENU ---- */
@media (max-width: 991px) {

    .mega-menu,
    .dropdown-menu-custom {
        position: static !important;
        box-shadow: none !important;
        border: 0 !important;
        border-top: 1px solid rgba(255, 255, 255, .12) !important;
        border-radius: 0 !important;
        padding: 8px 0 8px 16px !important;
        width: 100% !important;
        min-width: 0 !important;
        transform: none !important;
        left: auto !important;
        right: auto !important;
        animation: none !important;
        display: none;
    }

    .mega-menu {
        flex-direction: column !important;
        gap: 8px !important;
    }

    .mega-col {
        border-right: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .mega-col-header {
        margin-bottom: 4px;
        padding-bottom: 4px;
    }

    .mega-col-icon,
    .mega-col-sub {
        display: none;
    }

    .mega-col-title {
        color: rgba(255, 255, 255, .65);
        font-size: 10px;
    }

    .mega-link {
        color: rgba(255, 255, 255, .85);
    }

    .mega-link:hover {
        background: rgba(255, 255, 255, .08);
        color: #fff;
    }

    .mega-link>i:first-child {
        color: var(--gold);
    }

    .flyout-menu {
        position: static !important;
        box-shadow: none !important;
        border: 0 !important;
        background: transparent !important;
        padding-left: 20px !important;
        display: block !important;
    }

    .dropdown-menu-custom li a {
        color: rgba(255, 255, 255, .85);
    }

    .dropdown-menu-custom li a:hover {
        background: rgba(255, 255, 255, .08);
        color: #fff;
    }

    .dropdown-menu-custom li a i {
        color: var(--gold);
    }

    .nav-item.mobile-open>.mega-menu,
    .nav-item.mobile-open>.dropdown-menu-custom {
        display: block !important;
    }

    .nav-item.mobile-open>.mega-menu {
        display: flex !important;
    }

    .nav-item.mobile-open>a .bi-chevron-down {
        transform: rotate(180deg);
    }

    .lang-switch:hover .dropdown-menu-custom {
        display: none;
    }

    .lang-switch.mobile-open .dropdown-menu-custom {
        display: block !important;
    }
}

/* =============================================
   HERO (HOME)
   ============================================= */
.hero-section {
    position: relative;
    min-height: 620px;
    overflow: hidden;
    padding: 42px 0 0;
    background: #e8f1ef;
}

.hero-image {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(239, 249, 247, .98) 0%, rgba(239, 249, 247, .90) 30%, rgba(239, 249, 247, .12) 62%, rgba(222, 190, 139, .22) 100%),
        url("https://images.unsplash.com/photo-1548013146-72479768bada?auto=format&fit=crop&w=1800&q=85") center/cover no-repeat;
    /*background:
    linear-gradient(90deg, rgba(239, 249, 247, .98) 0%, rgba(239, 249, 247, .90) 30%, rgba(239, 249, 247, .12) 62%, rgba(222, 190, 139, .22) 100%),
    url("https://images.unsplash.com/photo-1576091160399-112ba8d25d1d?auto=format&fit=crop&w=1800&q=85") center/cover no-repeat;*/
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 47% 55%, transparent 0, rgba(255, 255, 255, .06) 28%, rgba(255, 255, 255, .25) 100%);
}

.hero-copy {
    padding-top: 25px;
    padding-bottom: 80px;
    position: relative;
    z-index: 2;
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .7px;
    color: #176c72;
    background: rgba(255, 255, 255, .82);
    border: 1px solid rgba(0, 100, 110, .10);
    border-radius: 30px;
    padding: 8px 13px;
}

.hero-copy h1 {
    font-family: "Playfair Display", serif;
    font-size: 64px;
    line-height: .96;
    letter-spacing: -2px;
    margin: 18px 0;
    color: #092c35;
}

.hero-copy h1 em,
.section-heading h2 em,
.journey-panel h2 em,
.ai-card h2 em,
.cta-inner h2 em {
    font-style: normal;
    color: #087d7f;
}

.hero-lead {
    font-size: 17px;
    line-height: 1.55;
    color: #324b50;
    margin-bottom: 25px;
}

.hero-trust {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.hero-trust>div {
    display: grid;
    grid-template-columns: 28px auto;
    column-gap: 7px;
    align-items: center;
}

.hero-trust i {
    grid-row: span 2;
    font-size: 24px;
    color: #087d7f;
}

.hero-trust strong {
    font-size: 10px;
}

.hero-trust small {
    font-size: 9px;
    color: #62777b;
}

.hero-actions {
    display: flex;
    gap: 12px;
}

.btn-primary-custom {
    background: #006f73;
    color: #fff;
    border-radius: 12px;
    padding: 14px 22px;
    font-weight: 700;
    transition: var(--tr);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary-custom:hover {
    background: #00575b;
    color: #fff;
}

.btn-light-custom {
    background: rgba(255, 255, 255, .85);
    border: 1px solid #c7d3d2;
    border-radius: 12px;
    padding: 14px 22px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--tr);
}

.btn-light-custom:hover {
    background: #fff;
}

/* Opinion card */
.opinion-card {
    position: relative;
    background: rgba(255, 255, 255, .97);
    border: 1px solid rgba(255, 255, 255, .9);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 20px 55px rgba(2, 35, 40, .18);
    margin-bottom: 75px;
}

.opinion-head {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 15px;
}

.form-icon {
    width: 42px;
    height: 42px;
    border-radius: 13px;
    background: #e8f5f3;
    color: #008184;
    display: grid;
    place-items: center;
    font-size: 22px;
}

.opinion-card h3 {
    font-family: "Playfair Display", serif;
    font-size: 23px;
    margin: 0;
}

.opinion-card>p {
    font-size: 11px;
    color: #758487;
    margin: 2px 0 0;
}

.input-wrap {
    position: relative;
    margin-bottom: 9px;
}

.input-wrap i {
    position: absolute;
    left: 12px;
    top: 12px;
    color: #5f7d80;
    z-index: 1;
}

.input-wrap input {
    padding-left: 36px;
}

.opinion-card input,
.opinion-card select {
    height: 42px;
    border: 1px solid #d8e0df;
    border-radius: 8px;
    width: 100%;
    font-size: 12px;
    padding: 0 12px;
    outline: none;
    background: #fff;
    font-family: "DM Sans", sans-serif;
    transition: border-color var(--tr);
}

.opinion-card input:focus,
.opinion-card select:focus {
    border-color: var(--teal);
}

.phone-row {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 8px;
    margin-bottom: 9px;
}

.form-select-custom {
    margin-bottom: 9px;
}

.upload-box {
    border: 1px dashed #b9c8c7;
    border-radius: 9px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    background: #fafcfb;
    margin-bottom: 10px;
    transition: border-color var(--tr);
}

.upload-box:hover {
    border-color: var(--teal);
}

.upload-box>i {
    font-size: 24px;
    color: #087d7f;
}

.upload-box strong,
.upload-box small {
    display: block;
}

.upload-box strong {
    font-size: 11px;
}

.upload-box small {
    font-size: 9px;
    color: #7c8a8c;
    margin-top: 2px;
}

.submit-btn {
    background: #008c8b;
    color: #fff;
    border-radius: 9px;
    padding: 12px;
    font-weight: 700;
    font-size: 13px;
    border: 0;
    cursor: pointer;
    width: 100%;
    transition: background var(--tr);
}

.submit-btn:hover {
    background: #006e72;
}

.secure {
    text-align: center;
    font-size: 9px;
    color: #667679;
    margin-top: 9px;
}

.country-bar {
    position: absolute;
    bottom: 18px;
    left: var(--bs-gutter-x, .75rem);
    right: var(--bs-gutter-x, .75rem);
    background: rgba(1, 52, 60, .95);
    color: #fff;
    border-radius: 12px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 11px;
    z-index: 3;
}

.country-label {
    font-size: 8px;
    letter-spacing: .8px;
    color: #a9c1c2;
}

.whatsapp-pill {
    margin-left: auto;
    background: #fff;
    color: #173b40;
    padding: 8px 14px;
    border-radius: 25px;
    font-weight: 700;
    transition: var(--tr);
}

.whatsapp-pill:hover {
    background: #1bb45c;
    color: #fff;
}

.whatsapp-pill i {
    color: #1bb45c;
    font-size: 18px;
    vertical-align: middle;
    margin-right: 5px;
}

.whatsapp-pill:hover i {
    color: #fff;
}

/* =============================================
   SERVICES STRIP
   ============================================= */
.services-strip {
    position: relative;
    margin-top: 50px;
    padding: 0 0 28px;
    /*background: #f7faf9;*/
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    background: #fff;
    border-radius: 20px;
    box-shadow: var(--shadow);
    overflow: hidden;
    border: 1px solid #eef1ef;
}

.service-item {
    text-align: center;
    padding: 24px 12px;
    border-right: 1px solid #edf0ef;
    transition: background var(--tr);
}

.service-item:last-child {
    border-right: 0;
}

.service-item:hover {
    background: #f5fdfc;
}

.service-item>span {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #eff8f6;
    color: #008b88;
    display: grid;
    place-items: center;
    margin: 0 auto 10px;
    font-size: 22px;
    transition: transform var(--tr);
}

.service-item:hover>span {
    transform: scale(1.1) rotate(-5deg);
}

.service-item:nth-child(2)>span {
    color: #7a62bd;
    background: #f4f0ff;
}

.service-item:nth-child(3)>span {
    color: #de8e4b;
    background: #fff2e7;
}

.service-item:nth-child(4)>span {
    color: #9a75d2;
    background: #f6efff;
}

.service-item:nth-child(5)>span {
    color: #e36e88;
    background: #fff0f3;
}

.service-item:nth-child(6)>span {
    color: #5c9e69;
    background: #eff9ef;
}

.service-item strong {
    display: block;
    font-size: 11px;
    margin-bottom: 5px;
}

.service-item small {
    font-size: 10px;
    color: #68787b;
    line-height: 1.4;
}

/* =============================================
   SECTIONS
   ============================================= */
.section-pad {
    padding: 65px 0;
}

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 32px;
}

.section-heading h2,
.journey-panel h2 {
    font-family: "Playfair Display", serif;
    font-size: 36px;
    margin: 7px 0 0;
}

.section-heading .section-kicker,
.journey-panel .section-kicker {
    background: transparent;
    border: 0;
    padding: 0;
    font-size: 9px;
    color: #0b7d80;
}

.view-link {
    font-size: 11px;
    font-weight: 700;
    color: #006e73;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap var(--tr), color var(--tr);
}

.view-link:hover {
    color: var(--teal);
    gap: 8px;
}

/* Specialty cards */
.specialty-card {
    height: 100%;
    border: 1px solid #e1e7e6;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    transition: transform var(--tr), box-shadow var(--tr);
    box-shadow: 0 4px 15px rgba(0, 0, 0, .03);
}

.specialty-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 45px rgba(0, 80, 85, .14);
}

.specialty-img {
    height: 120px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.specialty-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(0, 0, 0, .28));
}

.specialty-img.cancer {
    background-image: url("https://plus.unsplash.com/premium_photo-1670981098417-dac28d081825?auto=format&fit=crop&w=500&q=80");
}

.specialty-img.kidney {
    background-image: url("https://images.unsplash.com/photo-1743767587847-08c42b31cdec?auto=format&fit=crop&w=500&q=80");
}

.specialty-img.heart {
    background-image: url("https://images.unsplash.com/photo-1530026405186-ed1f139313f8?auto=format&fit=crop&w=500&q=80");
}

.specialty-img.brain {
    background-image: url("https://images.unsplash.com/photo-1559757148-5c350d0d3c56?auto=format&fit=crop&w=500&q=80");
}

.specialty-img.ortho {
    background-image: url("https://plus.unsplash.com/premium_photo-1678743317001-8ceab745d3e9?auto=format&fit=crop&w=500&q=80");
}

.specialty-img.fertility {
    background-image: url("https://images.unsplash.com/photo-1544126592-807ade215a0b?auto=format&fit=crop&w=500&q=80");
}

.specialty-img.cosmetic {
    background-image: url("https://images.unsplash.com/photo-1576091160550-2173dba999ef?auto=format&fit=crop&w=500&q=80");
}

.specialty-img.urology {
    background-image: url("https://images.unsplash.com/photo-1516549655169-df83a0774514?auto=format&fit=crop&w=500&q=80");
}

.specialty-img.dental {
    background-image: url("https://images.unsplash.com/photo-1606811971618-4486d14f3f99?auto=format&fit=crop&w=500&q=80");
}

.specialty-img.ophthal {
    background-image: url("https://images.unsplash.com/photo-1616587226157-48e49175ee20?auto=format&fit=crop&w=500&q=80");
}

.specialty-card h3 {
    font-size: 13px;
    font-weight: 800;
    margin: 12px 12px 5px;
}

.specialty-card p {
    font-size: 10px;
    color: #6c7b7e;
    min-height: 28px;
    margin: 0 12px 8px;
}

.specialty-card a {
    font-size: 10px;
    color: #007c80;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin: 0 12px 12px;
    transition: gap var(--tr);
}

.specialty-card a:hover {
    gap: 7px;
    color: var(--teal-dark);
}

/* =============================================
   STATS SECTION
   ============================================= */
.stats-section {
    background: var(--navy);
    padding: 28px 0;
    color: #fff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
}

.stats-grid>div {
    display: grid;
    grid-template-columns: 43px auto;
    column-gap: 8px;
    align-items: center;
    justify-content: center;
    border-right: 1px solid rgba(255, 255, 255, .18);
    padding: 12px;
}

.stats-grid>div:last-child {
    border: 0;
}

.stats-grid i {
    grid-row: span 2;
    font-size: 30px;
    color: var(--gold);
}

.stats-grid strong {
    font-size: 26px;
    line-height: 1;
}

.stats-grid span {
    font-size: 9px;
    color: #d2e0df;
    line-height: 1.35;
}

/* =============================================
   JOURNEY + AI
   ============================================= */
.ai-card {
    height: 100%;
    min-height: 310px;
    border-radius: 17px;
    background: linear-gradient(135deg, #052c35, #005866);
    color: #fff;
    padding: 25px;
    position: relative;
    overflow: hidden;
}

.ai-card:after {
    content: "";
    position: absolute;
    width: 210px;
    height: 210px;
    border-radius: 50%;
    right: -70px;
    bottom: -70px;
    background: radial-gradient(circle, rgba(39, 196, 215, .28), transparent 65%);
}

.ai-badge {
    font-size: 9px;
    letter-spacing: .7px;
    color: #aee6e6;
}

.ai-card h2 {
    font-family: "Playfair Display", serif;
    font-size: 27px;
    margin: 13px 0;
}

.ai-card p {
    font-size: 11px;
    line-height: 1.6;
    color: #c9d9da;
    max-width: 240px;
}

.btn-ai {
    background: #008e8e;
    color: #fff;
    border-radius: 9px;
    font-size: 11px;
    font-weight: 700;
    padding: 10px 14px;
    display: inline-block;
    transition: background var(--tr);
}

.btn-ai:hover {
    background: #007172;
    color: #fff;
}

.ai-orb {
    position: absolute;
    right: 28px;
    bottom: 25px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: radial-gradient(circle, #b9ffff 0, #1596a1 32%, rgba(11, 90, 100, .1) 70%);
    box-shadow: 0 0 45px rgba(69, 234, 239, .35);
    color: #fff;
    font-size: 35px;
}

.journey-panel {
    padding: 4px 5px;
}

.muted {
    font-size: 11px;
    color: #748285;
    margin-top: -4px;
}

.journey-line {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 5px;
    margin-top: 30px;
    position: relative;
}

.journey-line:before {
    content: "";
    position: absolute;
    left: 8%;
    right: 8%;
    top: 27px;
    border-top: 1px dashed #a4c5c5;
}

.journey-step {
    position: relative;
    text-align: center;
    z-index: 1;
}

.journey-step i {
    width: 55px;
    height: 55px;
    border: 1px solid #bcd6d5;
    background: #fff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #007f82;
    font-size: 20px;
    margin: 0 auto 9px;
    box-shadow: 0 5px 15px rgba(0, 80, 80, .06);
    transition: transform var(--tr);
}

.journey-step span {
    display: none;
}

.journey-step strong {
    display: block;
    font-size: 10px;
    line-height: 1.25;
}

.journey-step small {
    display: block;
    color: #758487;
    font-size: 8px;
    line-height: 1.4;
    margin-top: 5px;
}

.chatbot-card {
    background: #fff;
    border: 1px solid #e2e9e7;
    border-radius: 16px;
    padding: 17px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .07);
}

.bot-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #eaf8f6;
    color: #008b88;
    display: grid;
    place-items: center;
}

.chatbot-card h4 {
    font-size: 13px;
    margin: 9px 0 3px;
}

.chatbot-card p {
    font-size: 10px;
    color: #7a888a;
}

.chatbot-card button {
    display: flex;
    width: 100%;
    justify-content: space-between;
    border: 1px solid #e3e8e7;
    background: #fff;
    border-radius: 7px;
    padding: 8px 9px;
    font-size: 10px;
    margin: 6px 0;
    cursor: pointer;
    transition: background var(--tr), border-color var(--tr);
    font-family: "DM Sans", sans-serif;
}

.chatbot-card button:hover {
    background: #f5fdfc;
    border-color: var(--teal);
}

.chatbot-btn {
    display: block;
    background: #008d8b;
    color: #fff;
    border-radius: 7px;
    font-size: 11px;
    font-weight: 700;
    text-align: center;
    margin-top: 8px;
    padding: 9px;
    transition: background var(--tr);
}

.chatbot-btn:hover {
    background: #007172;
    color: #fff;
}

/* =============================================
   HOSPITALS SECTION
   ============================================= */
.hospital-section {
    padding: 40px 0;
    background: #f6faf9;
    border-top: 1px solid #e8efed;
    border-bottom: 1px solid #e8efed;
}

.hospital-section h2 {
    font-family: "Playfair Display", serif;
    font-size: 27px;
    margin: 7px 0;
}

.hospital-logos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: #fff;
    border: 1px solid #e2e9e7;
    border-radius: 13px;
    overflow: hidden;
}

.hospital-logos>div {
    padding: 16px;
    text-align: center;
    font-weight: 800;
    font-size: 16px;
    color: #315070;
    border-right: 1px solid #edf0ef;
    border-bottom: 1px solid #edf0ef;
    transition: background var(--tr);
}

.hospital-logos>div:hover {
    background: #f5fdfc;
}

.hospital-logos small {
    font-size: 8px;
    color: #7c888a;
    font-weight: 500;
}

.world-card {
    min-height: 160px;
    border-radius: 17px;
    padding: 22px;
    color: #fff;
    background: linear-gradient(135deg, #006f72, #003c48);
    position: relative;
    overflow: hidden;
}

.world-card:after {
    content: "";
    position: absolute;
    width: 160px;
    height: 160px;
    border: 1px dashed rgba(255, 255, 255, .25);
    border-radius: 50%;
    right: -25px;
    bottom: -50px;
}

.world-card span {
    font-size: 8px;
    letter-spacing: 1px;
    color: #bce8e5;
}

.world-card h3 {
    font-size: 19px;
    margin: 10px 0;
}

.world-card p {
    font-size: 10px;
    color: #d1e6e6;
}

.world-card a {
    font-size: 10px;
    background: #078a8b;
    color: #fff;
    border-radius: 8px;
    padding: 9px 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: background var(--tr);
}

.world-card a:hover {
    background: #059a9b;
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials {
    background: #fff;
}

.testimonial-card {
    height: 100%;
    border: 1px solid #e3e9e7;
    border-radius: 15px;
    padding: 22px;
    position: relative;
    transition: transform var(--tr), box-shadow var(--tr);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 80, 85, .1);
}

.quote {
    font-family: Georgia, serif;
    color: #008e8e;
    font-size: 48px;
    line-height: .5;
}

.testimonial-card p {
    font-size: 12px;
    color: #53686b;
    line-height: 1.65;
    margin: 8px 0 20px;
}

.stars {
    color: #f5a623;
    font-size: 11px;
    margin-bottom: 8px;
}

.patient {
    display: flex;
    gap: 9px;
    align-items: center;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #e4f2ef;
    color: #087c7f;
    font-size: 11px;
    font-weight: 800;
    overflow: hidden;
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.patient strong,
.patient small {
    display: block;
}

.patient strong {
    font-size: 11px;
}

.patient small {
    font-size: 9px;
    color: #748486;
    margin-top: 2px;
}

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
    padding: 30px 0 30px;
}

.cta-inner {
    border-radius: 20px;
    padding: 44px 52px;
    background: linear-gradient(100deg, #004c57, #008b87);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    overflow: hidden;
    position: relative;
}

.cta-inner::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, .06), transparent 65%);
    right: -100px;
    top: -200px;
}

.cta-inner .section-kicker {
    background: transparent;
    color: #bdebea;
    border: 0;
    padding: 0;
}

.cta-inner h2 {
    font-family: "Playfair Display", serif;
    font-size: 34px;
    margin: 6px 0 0;
}

.cta-inner h2 em {
    color: #f4d48e;
}

.cta-inner .btn {
    font-size: 12px;
    padding: 13px 22px;
    border-radius: 10px;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
    background: #032e35;
    color: #c9d8d8;
    padding: 50px 0 0;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
}

.footer-brand i {
    color: var(--gold);
    font-size: 27px;
}

.footer-brand span {
    color: #72d4d0;
}

.footer-brand small {
    font-size: 7px;
    letter-spacing: 3px;
    align-self: end;
    margin-bottom: 2px;
}

.footer p {
    font-size: 10px;
    line-height: 1.65;
    color: #9fb3b4;
    max-width: 270px;
    margin-top: 15px;
}

.footer h4 {
    font-size: 12px;
    color: #fff;
    margin: 4px 0 14px;
    text-transform: uppercase;
    letter-spacing: .6px;
}

.footer>div>a,
.footer .col-lg-2>a,
.col-6>a {
    display: block;
    font-size: 10px;
    color: #a8bbbc;
    margin: 8px 0;
    transition: color var(--tr), padding-left var(--tr);
}

.footer>div>a:hover,
.footer .col-lg-2>a:hover,
.col-6>a:hover {
    color: #e8c17a;
    padding-left: 4px;
}

.socials {
    display: flex;
    gap: 8px;
    margin-top: 18px;
}

.socials a {
    width: 32px;
    height: 32px;
    border: 1px solid #4c7073;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 14px;
    transition: background var(--tr), border-color var(--tr);
}

.socials a:hover {
    background: var(--teal);
    border-color: var(--teal);
    color: #fff;
}

.contact-line {
    display: flex;
    gap: 9px;
    align-items: flex-start;
    font-size: 11px;
    margin-bottom: 10px;
}

.contact-line i {
    color: #e4bc73;
    font-size: 13px;
    margin-top: 1px;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .12);
    margin-top: 38px;
    padding: 16px 0;
    font-size: 9px;
    color: #82999b;
    display: flex;
    justify-content: space-between;
    gap: 15px;
    flex-wrap: wrap;
}

/* =============================================
   FLOATING ELEMENTS
   ============================================= */
.floating-wa {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #20bd5a;
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 28px;
    box-shadow: 0 10px 30px rgba(0, 180, 70, .3);
    z-index: 1060;
    transition: transform var(--tr), background var(--tr);
}

.floating-wa:hover {
    background: #18a84e;
    transform: scale(1.1);
}

.back-top {
    position: fixed;
    right: 22px;
    bottom: 92px;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 50%;
    background: #fff;
    color: #006e72;
    box-shadow: 0 5px 18px rgba(0, 0, 0, .15);
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s, transform .3s;
    z-index: 1059;
    cursor: pointer;
}

.back-top.show {
    opacity: 1;
    pointer-events: auto;
}

.back-top:hover {
    transform: translateY(-3px);
}

/* =============================================
   INNER PAGE STYLES
   ============================================= */

/* ---- PAGE HERO ---- */
.page-hero {
    background: linear-gradient(135deg, #032d35 0%, #005866 100%);
    color: #fff;
    padding: 90px 0 65px;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("https://images.unsplash.com/photo-1576091160550-2173dba999ef?auto=format&fit=crop&w=1800&q=60") center/cover no-repeat;
    opacity: 0.07;
}

.page-hero::after {
    content: '';
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 142, 142, .25), transparent 65%);
    right: -250px;
    top: -300px;
}

.page-hero-content {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    font-family: "Playfair Display", serif;
    font-size: 52px;
    margin: 14px 0 10px;
    color: #fff;
    line-height: 1.1;
}

.page-hero h1 em {
    font-style: normal;
    color: var(--gold);
}

.page-hero p {
    font-size: 16px;
    color: rgba(255, 255, 255, .75);
    max-width: 600px;
    line-height: 1.6;
    margin: 0;
}

.page-hero .section-kicker {
    background: rgba(255, 255, 255, .12);
    border-color: rgba(255, 255, 255, .2);
    color: rgba(255, 255, 255, .9);
}

/* Breadcrumb */
.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: rgba(255, 255, 255, .55);
    margin-bottom: 14px;
}

.breadcrumb-nav a {
    color: rgba(255, 255, 255, .65);
    transition: color var(--tr);
}

.breadcrumb-nav a:hover {
    color: var(--gold);
}

.breadcrumb-nav i {
    font-size: 9px;
}

/* ---- FILTER TABS ---- */
.filter-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 35px;
}

.filter-btn {
    padding: 9px 20px;
    border-radius: 30px;
    border: 1.5px solid var(--border);
    background: #fff;
    color: var(--text);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--tr);
    font-family: "DM Sans", sans-serif;
}

.filter-btn:hover {
    border-color: var(--teal);
    color: var(--teal);
}

.filter-btn.active {
    background: var(--teal);
    color: #fff;
    border-color: var(--teal);
}

/* ---- TREATMENT CARDS ---- */
.treatment-cat-card {
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, .04);
    transition: transform var(--tr), box-shadow var(--tr);
    height: 100%;
}

.treatment-cat-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 50px rgba(0, 80, 85, .13);
}

.tcat-img {
    height: 160px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.tcat-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(255, 255, 255, .93);
    border-radius: 20px;
    padding: 4px 11px;
    font-size: 9px;
    font-weight: 700;
    color: var(--teal);
}

.tcat-body {
    padding: 18px;
}

.tcat-body h3 {
    font-size: 16px;
    font-weight: 800;
    margin: 0 0 7px;
}

.tcat-body p {
    font-size: 11px;
    color: var(--muted);
    line-height: 1.55;
    margin: 0 0 13px;
}

.tcat-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 14px;
}

.tcat-tag {
    background: #f0faf9;
    color: var(--teal);
    font-size: 9px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
    border: 1px solid #cce9e7;
}

.tcat-link {
    font-size: 11px;
    font-weight: 700;
    color: var(--teal);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap var(--tr);
}

.tcat-link:hover {
    gap: 8px;
    color: var(--teal-dark);
}

/* ---- HOSPITAL CARDS ---- */
.hospital-card {
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, .04);
    transition: transform var(--tr), box-shadow var(--tr);
    height: 100%;
}

.hospital-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 80, 85, .13);
}

.hosp-img {
    height: 170px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hosp-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 255, 255, .96);
    border-radius: 20px;
    padding: 5px 11px;
    font-size: 9px;
    font-weight: 700;
    color: #c07c00;
    display: flex;
    align-items: center;
    gap: 3px;
}

.hosp-body {
    padding: 18px;
}

.hosp-body h3 {
    font-size: 15px;
    font-weight: 800;
    margin: 0 0 5px;
}

.hosp-loc {
    font-size: 11px;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 10px;
}

.hosp-loc i {
    color: var(--teal);
}

.hosp-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 14px;
}

.hosp-tag {
    background: #f0faf9;
    color: var(--teal);
    font-size: 9px;
    font-weight: 600;
    padding: 3px 9px;
    border-radius: 20px;
}

.hosp-stats {
    display: flex;
    gap: 0;
    padding: 12px 0;
    border-top: 1px solid var(--border);
}

.hosp-stat {
    text-align: center;
    flex: 1;
    border-right: 1px solid var(--border);
    padding: 4px 0;
}

.hosp-stat:last-child {
    border-right: 0;
}

.hosp-stat strong {
    display: block;
    font-size: 16px;
    font-weight: 800;
    color: var(--navy);
}

.hosp-stat small {
    font-size: 8px;
    color: var(--muted);
}

.hosp-cta {
    display: flex;
    gap: 8px;
    margin-top: 14px;
}

.btn-outline-teal {
    border: 1.5px solid var(--teal);
    color: var(--teal);
    border-radius: 9px;
    padding: 9px 16px;
    font-size: 11px;
    font-weight: 700;
    transition: all var(--tr);
    display: inline-block;
}

.btn-outline-teal:hover {
    background: var(--teal);
    color: #fff;
}

.btn-teal {
    background: var(--teal);
    color: #fff;
    border-radius: 9px;
    padding: 9px 16px;
    font-size: 11px;
    font-weight: 700;
    border: 0;
    transition: background var(--tr);
    display: inline-block;
}

.btn-teal:hover {
    background: var(--teal-dark);
    color: #fff;
}

/* ---- DOCTOR CARDS ---- */
.doctor-card {
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, .04);
    transition: transform var(--tr), box-shadow var(--tr);
    height: 100%;
}

.doctor-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 50px rgba(0, 80, 85, .14);
}

.doc-img {
    height: 195px;
    background-size: cover;
    background-position: center top;
    position: relative;
}

.doc-specialty {
    position: absolute;
    bottom: 10px;
    left: 12px;
    background: var(--teal);
    color: #fff;
    border-radius: 20px;
    padding: 4px 13px;
    font-size: 9px;
    font-weight: 700;
}

.doc-body {
    padding: 18px;
}

.doc-body h3 {
    font-size: 15px;
    font-weight: 800;
    margin: 0 0 3px;
}

.doc-qual {
    font-size: 10px;
    color: var(--muted);
    margin-bottom: 8px;
}

.doc-exp {
    font-size: 12px;
    color: var(--navy);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 5px;
}

.doc-exp i {
    color: var(--teal);
}

.doc-hospital {
    font-size: 10px;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 10px;
}

.doc-hospital i {
    color: var(--teal);
}

.doc-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 700;
    color: #c07c00;
    margin-bottom: 14px;
}

.doc-rating span {
    color: #f5a623;
    letter-spacing: -1px;
}

.doc-cta {
    display: flex;
    gap: 8px;
}

/* ---- SERVICES PAGE ---- */
.service-detail-card {
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 30px;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, .04);
    transition: transform var(--tr), box-shadow var(--tr);
    height: 100%;
}

.service-detail-card:hover {
    box-shadow: 0 18px 45px rgba(0, 80, 85, .11);
    transform: translateY(-5px);
}

.svc-icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    font-size: 28px;
    margin-bottom: 18px;
}

.service-detail-card h3 {
    font-size: 17px;
    font-weight: 800;
    margin: 0 0 9px;
}

.service-detail-card p {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.65;
    margin: 0 0 16px;
}

.svc-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.svc-features li {
    font-size: 11px;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.svc-features li i {
    color: var(--teal);
    font-size: 13px;
    flex-shrink: 0;
}

/* Process steps */
.process-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 26px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: #fff;
    margin-bottom: 16px;
    transition: box-shadow var(--tr);
}

.process-step:hover {
    box-shadow: 0 12px 35px rgba(0, 80, 85, .09);
}

.step-num {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--teal);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 18px;
    font-weight: 800;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 15px;
    font-weight: 800;
    margin: 0 0 6px;
}

.step-content p {
    font-size: 12px;
    color: var(--muted);
    margin: 0;
    line-height: 1.55;
}

/* FAQ */
.faq-item {
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 22px;
    cursor: pointer;
    font-weight: 700;
    font-size: 13px;
    background: #fff;
    transition: background var(--tr);
}

.faq-q:hover {
    background: #f5fdfc;
}

.faq-q i {
    font-size: 14px;
    color: var(--teal);
    transition: transform var(--tr);
    flex-shrink: 0;
}

.faq-item.open .faq-q i {
    transform: rotate(180deg);
}

.faq-a {
    padding: 0 22px;
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .25s ease;
    font-size: 12px;
    color: var(--muted);
    line-height: 1.65;
}

.faq-item.open .faq-a {
    max-height: 200px;
    padding: 0 22px 18px;
}

/* ---- ABOUT PAGE ---- */
.about-stat {
    text-align: center;
    padding: 32px 20px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: #fff;
    transition: transform var(--tr), box-shadow var(--tr);
}

.about-stat:hover {
    box-shadow: 0 14px 40px rgba(0, 80, 85, .11);
    transform: translateY(-5px);
}

.about-stat-num {
    font-size: 46px;
    font-weight: 800;
    color: var(--teal);
    font-family: "Playfair Display", serif;
    line-height: 1;
}

.about-stat-label {
    font-size: 12px;
    color: var(--muted);
    margin-top: 6px;
}

.team-card {
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    transition: transform var(--tr), box-shadow var(--tr);
    text-align: center;
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0, 80, 85, .13);
}

.team-img {
    height: 210px;
    background-size: cover;
    background-position: center top;
}

.team-body {
    padding: 18px;
}

.team-body h4 {
    font-size: 15px;
    font-weight: 800;
    margin: 0 0 4px;
}

.team-body .role {
    font-size: 11px;
    color: var(--teal);
    font-weight: 600;
    margin: 0 0 8px;
}

.team-body small {
    font-size: 10px;
    color: var(--muted);
}

.accred-badge {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 22px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: #fff;
    transition: box-shadow var(--tr);
    height: 100%;
}

.accred-badge:hover {
    box-shadow: 0 10px 30px rgba(0, 80, 85, .09);
}

.accred-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--cream);
    color: var(--teal);
    display: grid;
    place-items: center;
    font-size: 24px;
    flex-shrink: 0;
}

.accred-badge h5 {
    font-size: 13px;
    font-weight: 800;
    margin: 0 0 3px;
}

.accred-badge p {
    font-size: 10px;
    color: var(--muted);
    margin: 0;
}

/* ---- CONTACT PAGE ---- */
.contact-info-card {
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, .04);
    height: 100%;
}

.contact-info-card h3 {
    font-size: 20px;
    font-weight: 800;
    margin: 0 0 22px;
    color: var(--navy);
    font-family: "Playfair Display", serif;
}

.contact-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 22px;
}

.contact-icon {
    width: 46px;
    height: 46px;
    border-radius: 13px;
    background: #e8f5f3;
    color: var(--teal);
    display: grid;
    place-items: center;
    font-size: 21px;
    flex-shrink: 0;
}

.contact-item-text strong {
    display: block;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 4px;
}

.contact-item-text span {
    font-size: 11px;
    color: var(--muted);
}

.contact-form-card {
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 36px;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, .04);
}

.contact-form-card h3 {
    font-size: 24px;
    font-weight: 800;
    margin: 0 0 26px;
    color: var(--navy);
    font-family: "Playfair Display", serif;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 7px;
    text-transform: uppercase;
    letter-spacing: .4px;
}

.form-control-custom {
    width: 100%;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: 12px 15px;
    font-size: 13px;
    color: var(--text);
    background: #fff;
    outline: none;
    transition: border-color var(--tr), box-shadow var(--tr);
    font-family: "DM Sans", sans-serif;
}

.form-control-custom:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(0, 142, 142, .1);
}

textarea.form-control-custom {
    resize: vertical;
    min-height: 130px;
}

.office-card {
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 22px;
    background: #fff;
    transition: box-shadow var(--tr);
    height: 100%;
}

.office-card:hover {
    box-shadow: 0 12px 35px rgba(0, 80, 85, .1);
}

.office-card h5 {
    font-size: 14px;
    font-weight: 800;
    margin: 0 0 6px;
    display: flex;
    align-items: center;
    gap: 7px;
}

.office-card h5 i {
    color: var(--teal);
}

.office-card p {
    font-size: 11px;
    color: var(--muted);
    margin: 0;
    line-height: 1.6;
}

.map-placeholder {
    border-radius: 16px;
    overflow: hidden;
    height: 380px;
    background: linear-gradient(135deg, #e0f5f3, #c8e8e4);
    display: grid;
    place-items: center;
    border: 1px solid var(--border);
}

.map-placeholder-inner {
    text-align: center;
}

.map-placeholder i {
    font-size: 64px;
    color: var(--teal);
    opacity: .3;
    display: block;
    margin-bottom: 12px;
}

.map-placeholder p {
    font-size: 14px;
    color: var(--muted);
    margin: 0;
}

/* =============================================
   UTILITY
   ============================================= */
.bg-cream {
    background: var(--cream) !important;
}

.bg-teal-light {
    background: #f0faf9 !important;
}

.section-bg-alt {
    background: #f7faf9;
}

.badge-teal {
    background: #e0f7f7;
    color: var(--teal);
    border-radius: 20px;
    padding: 3px 11px;
    font-size: 9px;
    font-weight: 700;
    display: inline-block;
}

.badge-gold {
    background: #fff4e0;
    color: #b07c00;
    border-radius: 20px;
    padding: 3px 11px;
    font-size: 9px;
    font-weight: 700;
    display: inline-block;
}

.badge-navy {
    background: #e0ecf0;
    color: var(--navy);
    border-radius: 20px;
    padding: 3px 11px;
    font-size: 9px;
    font-weight: 700;
    display: inline-block;
}

/* Value strip */
.value-strip {
    background: linear-gradient(90deg, #004c57, #008b87);
    color: #fff;
    padding: 18px 0;
}

.value-strip-inner {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 0;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 20px;
}

.value-item i {
    font-size: 22px;
    color: var(--gold);
}

.value-item span {
    font-size: 12px;
    font-weight: 600;
}

/* Section spacer */
.pt-section {
    padding-top: 70px;
}

.pb-section {
    padding-bottom: 70px;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1199px) {
    .hero-copy h1 {
        font-size: 52px;
    }

    .hero-trust {
        gap: 12px;
    }

    .stats-grid strong {
        font-size: 20px;
    }

    .page-hero h1 {
        font-size: 42px;
    }
}

@media (max-width: 991px) {
    .main-nav {
        padding: 10px 0;
    }

    .nav-cta {
        margin-top: 10px;
        display: inline-block;
    }

    .hero-section {
        padding-top: 30px;
    }

    .hero-copy {
        padding-bottom: 15px;
    }

    .hero-copy h1 {
        font-size: 50px;
    }

    .opinion-card {
        margin: 0 0 75px;
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .service-item:nth-child(3) {
        border-right: 0;
    }

    .service-item:nth-child(-n+3) {
        border-bottom: 1px solid #edf0ef;
    }

    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
    }

    .stats-grid>div {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .12);
    }

    .stats-grid>div:nth-child(3n) {
        border-right: 0;
    }

    .stats-grid>div:nth-last-child(-n+3) {
        border-bottom: 0;
    }

    .journey-line {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 25px;
    }

    .journey-line:before {
        display: none;
    }

    .section-pad {
        padding: 45px 0;
    }

    .page-hero {
        padding: 70px 0 50px;
    }

    .page-hero h1 {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .topbar {
        font-size: 10px;
    }

    .topbar .container-fluid>div {
        justify-content: center !important;
    }

    .hero-section {
        min-height: auto;
    }

    .hero-image {
        background-position: 65% center;
        opacity: .35;
    }

    .hero-copy {
        padding-top: 10px;
    }

    .hero-copy h1 {
        font-size: 43px;
        letter-spacing: -1px;
    }

    .hero-lead {
        font-size: 14px;
    }

    .hero-trust {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .country-bar {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        margin: 15px 0 0;
    }

    .whatsapp-pill {
        margin-left: 0;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-item:nth-child(2n) {
        border-right: 0;
    }

    .service-item:nth-child(3) {
        border-right: 1px solid #edf0ef;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-heading {
        align-items: flex-start;
        gap: 10px;
        flex-direction: column;
    }

    .section-heading h2 {
        font-size: 28px;
    }

    .hospital-logos {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 22px;
        padding: 30px;
    }

    .cta-inner h2 {
        font-size: 28px;
    }

    .footer-bottom {
        flex-direction: column;
    }

    .page-hero {
        padding: 60px 0 40px;
    }

    .page-hero h1 {
        font-size: 30px;
    }

    .page-hero p {
        font-size: 14px;
    }

    .value-strip-inner {
        flex-direction: column;
        gap: 6px;
    }
}

@media (max-width: 480px) {
    .brand-name {
        font-size: 18px;
    }

    .brand-mark {
        font-size: 27px;
    }

    .hero-copy h1 {
        font-size: 36px;
    }

    .opinion-card {
        padding: 17px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-item {
        border-right: 0 !important;
        border-bottom: 1px solid #edf0ef;
    }

    .service-item:last-child {
        border-bottom: 0;
    }

    .journey-line {
        grid-template-columns: repeat(2, 1fr);
    }

    .filter-tabs {
        gap: 6px;
    }

    .filter-btn {
        padding: 7px 14px;
        font-size: 11px;
    }
}

/* =============================================
   DOCTORS & HOSPITALS CAROUSEL
   ============================================= */

/* ---- Section wrappers ---- */
.carousel-section {
    background: #fff;
}

.hosp-section-bg {
    background: linear-gradient(135deg, #f0f9f8 0%, #e8f4f3 100%);
}

/* ---- Section heading with nav ---- */
.carousel-nav-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

/* ---- Nav buttons ---- */
.carousel-nav-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid var(--teal);
    background: #fff;
    color: var(--teal);
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--tr);
    flex-shrink: 0;
}

.carousel-nav-btn:hover {
    background: var(--teal);
    color: #fff;
    transform: scale(1.08);
}

/* ---- Track container ---- */
.carousel-track-outer {
    overflow: hidden;
    width: 100%;
}

.carousel-track {
    display: flex;
    gap: 22px;
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

/* ---- Each card item ---- */
.carousel-item-card {
    flex: 0 0 calc(25% - 17px);
    min-width: 260px;
}

/* ---- Dots ---- */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 28px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #c7dbd9;
    border: none;
    cursor: pointer;
    transition: all var(--tr);
    padding: 0;
}

.carousel-dot.active {
    background: var(--teal);
    width: 26px;
    border-radius: 5px;
}

/* ============================================
   DOCTOR CARD (carousel version)
   ============================================ */
.doctor-card-c {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: 0 4px 24px rgba(3, 45, 53, 0.08);
    overflow: hidden;
    transition: transform var(--tr), box-shadow var(--tr);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.doctor-card-c:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(3, 45, 53, 0.15);
}

.doc-img-c {
    height: 220px;
    background-size: cover;
    background-position: center top;
    position: relative;
}

.doc-img-c::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(3, 45, 53, 0.55) 100%);
}

.doc-specialty-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--teal);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    z-index: 2;
    letter-spacing: 0.3px;
}

.doc-body-c {
    padding: 16px 18px 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.doc-body-c h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    margin: 0;
    line-height: 1.2;
}

.doc-qual-c {
    font-size: 11.5px;
    color: var(--muted);
    line-height: 1.4;
}

.doc-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 12px;
    color: var(--teal-dark);
    font-weight: 500;
}

.doc-meta-row i {
    margin-right: 3px;
}

.doc-rating-c {
    font-size: 13px;
    color: var(--text);
    font-weight: 600;
}

.stars-gold {
    color: #f5a623;
    font-size: 13px;
    letter-spacing: 1px;
}

.doc-rating-c small {
    color: var(--muted);
    font-weight: 400;
    font-size: 11px;
}

.doc-cta-c {
    display: flex;
    gap: 8px;
    margin-top: auto;
    padding-top: 10px;
}

/* ---- Shared small buttons ---- */
.btn-teal-sm {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    background: var(--teal);
    color: #fff;
    border-radius: 8px;
    font-size: 12.5px;
    font-weight: 600;
    transition: background var(--tr), transform var(--tr);
    flex: 1;
    text-align: center;
    border: none;
    cursor: pointer;
}

.btn-teal-sm:hover {
    background: var(--teal-dark);
    transform: translateY(-1px);
    color: #fff;
}

.btn-outline-sm {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    background: transparent;
    color: var(--teal);
    border: 1.5px solid var(--teal);
    border-radius: 8px;
    font-size: 12.5px;
    font-weight: 600;
    transition: all var(--tr);
    flex: 1;
    text-align: center;
}

.btn-outline-sm:hover {
    background: var(--teal);
    color: #fff;
    transform: translateY(-1px);
}

/* ============================================
   HOSPITAL CARD (carousel version)
   ============================================ */
.hospital-card-c {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: 0 4px 24px rgba(3, 45, 53, 0.08);
    overflow: hidden;
    transition: transform var(--tr), box-shadow var(--tr);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.hospital-card-c:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(3, 45, 53, 0.15);
}

.hosp-img-c {
    height: 180px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hosp-img-c::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(3, 45, 53, 0.2) 0%, rgba(3, 45, 53, 0.55) 100%);
}

.hosp-badge-row {
    position: absolute;
    top: 14px;
    right: 14px;
    display: flex;
    gap: 5px;
    z-index: 2;
}

.hosp-accred {
    background: var(--gold);
    color: var(--navy);
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 14px;
    letter-spacing: 0.5px;
}

.hosp-body-c {
    padding: 16px 18px 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hosp-body-c h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    margin: 0;
    line-height: 1.2;
}

.hosp-location {
    font-size: 12.5px;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 4px;
}

.hosp-location i {
    color: var(--teal);
}

.hosp-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.hosp-tags span {
    background: #e8f4f3;
    color: var(--teal-dark);
    font-size: 11px;
    font-weight: 600;
    padding: 3px 9px;
    border-radius: 14px;
}

.hosp-stat-row {
    display: flex;
    gap: 4px;
    border-top: 1px solid var(--border);
    padding-top: 10px;
    margin-top: 4px;
}

.hosp-stat-row>div {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1px;
    text-align: center;
}

.hosp-stat-row strong {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.1;
}

.hosp-stat-row small {
    font-size: 10px;
    color: var(--muted);
    font-weight: 500;
}

.hosp-body-c .btn-teal-sm {
    margin-top: auto;
}

/* ---- Responsive ---- */
@media (max-width: 1200px) {
    .carousel-item-card {
        flex: 0 0 calc(33.333% - 15px);
    }
}

@media (max-width: 900px) {
    .carousel-item-card {
        flex: 0 0 calc(50% - 11px);
    }

    .carousel-nav-wrap {
        gap: 6px;
    }
}

@media (max-width: 600px) {
    .carousel-item-card {
        flex: 0 0 calc(85% - 11px);
        min-width: 230px;
    }

    .doc-img-c {
        height: 180px;
    }

    .hosp-img-c {
        height: 150px;
    }

    .section-heading {
        flex-direction: column;
        align-items: flex-start;
    }

    .carousel-nav-wrap {
        align-self: flex-start;
    }
}