.hero-eyebrow,.hero h1,.hero-sub,.hero-actions,.hero-stats {
    opacity:0; transform:translateY(22px);
    animation: heroUp .8s cubic-bezier(.16,.8,.3,1) forwards;
}
.hero-eyebrow   { animation-delay:.05s; }
.hero h1        { animation-delay:.15s; }
.hero-sub       { animation-delay:.30s; }
.hero-actions   { animation-delay:.42s; }
.hero-stats     { animation-delay:.54s; }
@keyframes heroUp { to { opacity:1; transform:translateY(0); } }
.hero-logo{
    display:flex;
    justify-content:center;
    align-items:center;
    width:100%;
    height:100%;
}
.orbit-item {
    text-decoration: none;
    color: inherit;
}
.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.hero-esrs-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    color: var(--sea-deep);
    background: rgba(30,138,124,0.08);
    border: 1px solid rgba(30,138,124,0.25);
    border-radius: 40px;
    padding: 8px 16px 8px 8px;
    transition: .2s;
    line-height: 1.5;
    white-space: nowrap;
}
.hero-esrs-badge i {
    font-size: 13px;
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(30,138,124,0.15);
    border-radius: 50%;
    transition: background .2s;
}
.hero-esrs-badge:hover {
    background: var(--sea);
    color: #fff;
    border-color: var(--sea);
    transform: translateY(-2px);
}
.hero-esrs-badge:hover i { background: rgba(255,255,255,0.2); }
.hero-badge-static { cursor: default; }
.hero-badge-static:hover {
    background: rgba(30,138,124,0.08);
    color: var(--sea-deep);
    border-color: rgba(30,138,124,0.25);
    transform: none;
}
.hero-badge-static:hover i { background: rgba(30,138,124,0.15); }

html[data-theme="dark"] .hero-esrs-badge {
    background: rgba(78,168,222,0.12);
    border-color: rgba(78,168,222,0.3);
}
html[data-theme="dark"] .hero-esrs-badge i { background: rgba(78,168,222,0.18); }
html[data-theme="dark"] .hero-badge-static:hover {
    background: rgba(78,168,222,0.12);
    border-color: rgba(78,168,222,0.3);
    color: var(--sea-deep);
}

@media (max-width: 640px) {
    .hero-stats { flex-direction: column; align-items: flex-start; gap: 16px; }
    .hero-badges { flex-direction: row; flex-wrap: wrap; width: 100%; gap: 8px; }
    .hero-esrs-badge {
        font-size: 11.5px;
        padding: 6px 12px 6px 6px;
        white-space: normal;
        flex: 0 1 auto;
    }
    .hero-esrs-badge i { width: 18px; height: 18px; font-size: 11px; }
}
.clinic-gallery {
    padding: 100px 64px;
    background: var(--paper);
}
.clinic-gallery-wrap {
    max-width: 1200px;
    aspect-ratio: 16 / 8;
    margin: 48px auto 0;
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 25px 60px -20px rgba(12,43,58,.25);
}
.clinic-gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .6s cubic-bezier(.16,.8,.3,1);
}
.clinic-gallery-wrap:hover .clinic-gallery-img { transform: scale(1.04); }
.clinic-gallery-caption {
    position: absolute;
    inset-inline-start: 0;
    bottom: 0;
    width: 100%;
    padding: 40px 36px 26px;
    background: linear-gradient(to top, rgba(12,43,58,.85), transparent);
    color: #fff;
}
.clinic-gallery-caption p {
    font-size: 15.5px;
    font-weight: 500;
    max-width: 560px;
    line-height: 1.8;
}
@media (max-width: 900px) {
    .clinic-gallery { padding: 60px 24px; }
    .clinic-gallery-wrap { aspect-ratio: 4 / 3; }
}
@media (max-width: 480px) {
    .clinic-gallery { padding: 48px 16px; }
    .clinic-gallery-wrap { aspect-ratio: 1 / 1; border-radius: 20px; }
    .clinic-gallery-caption { padding: 28px 20px 18px; }
}
/* --- مدار خدمات دور لوگو --- */
.hero-orbit {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.orbit-item {
    position: absolute;
    top: 50%;
    left: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    width: 108px;
    margin-top: -54px;
    margin-left: -54px;
    text-align: center;
    pointer-events: auto;
    transform: rotate(var(--angle)) translate(240px) rotate(calc(-1 * var(--angle)));
    animation: orbitBob 5s ease-in-out infinite;
}

.orbit-item:nth-child(odd)  { animation-delay: .2s; }
.orbit-item:nth-child(even) { animation-delay: 1s; }

.orbit-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 14px 32px -10px rgba(12, 43, 58, .22);
    font-size: 20px;
    color: var(--sea-deep);
    transition: transform .3s cubic-bezier(.34,1.56,.64,1);
}

.orbit-item:hover .orbit-icon {
    transform: scale(1.12) rotate(-4deg);
    color: #fff;
    background: var(--sea);
}

.orbit-label {
    font-size: 11.5px;
    font-weight: 700;
    color: var(--ink);
    background: #fff;
    padding: 3px 10px;
    border-radius: 20px;
    border: 1px solid var(--line);
    white-space: nowrap;
}

@keyframes orbitBob {
    0%, 100% { margin-top: -54px; }
    50%      { margin-top: -64px; }
}

/* حالت تیره */
html[data-theme="dark"] .orbit-icon,
html[data-theme="dark"] .orbit-label {
    background: #1c2541 !important;
    color: #fff !important;
    border-color: var(--line) !important;
}
html[data-theme="dark"] .orbit-item:hover .orbit-icon {
    background: var(--sea) !important;
}

@media (max-width: 1024px) {
    .hero-orbit { display: none; }
}
.hero-portrait {
    position: relative;
    width: min(78%, 380px);
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}
.hero-portrait::before {
    content: "";
    position: absolute;
    inset: -14px;
    border-radius: 50%;
    background: conic-gradient(from 210deg, var(--sea), var(--coral), var(--sea));
    opacity: .16;
    filter: blur(2px);
}
.hero-portrait::after {
    content: "";
    position: absolute;
    inset: -14px;
    border-radius: 50%;
    border: 2px dashed var(--sea);
    opacity: .35;
    animation: spinSlow 40s linear infinite;
}
.hero-portrait img {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    border-radius: 50%;
    border: 7px solid #fff;
    box-shadow: 0 25px 55px -18px rgba(12,43,58,.4);
}
@keyframes spinSlow { to { transform: rotate(360deg); } }
html[data-theme="dark"] .hero-portrait img { border-color: #1c2541; }

@keyframes float{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-10px);
    }
}
/* Base Founder Styles */
.founder-section {
    padding: 100px 64px;
    background: var(--paper-2);
    position: relative;
    overflow: hidden;
}

.founder-card {
    max-width: 1100px;
    margin: 0 auto;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 28px;
    padding: 48px;
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 48px;
    align-items: center;
    box-shadow: 0 20px 50px -15px rgba(12, 43, 58, 0.08);
}

.founder-img-box {
    position: relative;
    text-align: center;
}

.founder-avatar-wrap {
    width: 260px;
    height: 260px;
    margin: 0 auto;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--sea) 0%, var(--sea-deep) 100%);
    padding: 6px;
    box-shadow: 0 15px 35px rgba(30, 138, 124, 0.25);
}

.founder-avatar-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.founder-avatar-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.founder-badge-wrap {
    margin-top: 16px;
}

.founder-badge {
    display: inline-block;
    background: rgba(30, 138, 124, 0.12);
    color: var(--sea-deep);
    font-size: 12px;
    font-weight: 800;
    padding: 6px 16px;
    border-radius: 30px;
}

.founder-label {
    color: var(--sea-deep);
    margin-bottom: 8px;
}

.founder-name {
    font-size: 28px;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 6px;
}

.founder-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--sea-deep);
    margin-bottom: 20px;
}

.founder-bio {
    font-size: 15px;
    color: var(--ink-soft);
    line-height: 1.9;
}

/* Responsive Breakpoints */
@media (max-width: 900px) {
    .founder-section {
        padding: 70px 24px;
    }

    .founder-card {
        grid-template-columns: 1fr;
        padding: 32px 24px;
        gap: 28px;
        text-align: center;
    }

    .founder-name {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .founder-section {
        padding: 50px 16px;
    }

    .founder-card {
        padding: 24px 16px;
        border-radius: 20px;
    }

    .founder-avatar-wrap {
        width: 190px;
        height: 190px;
    }
}
.hero-visual { opacity:0; transform:translateY(20px) scale(.97); animation: heroVisIn 1s cubic-bezier(.16,.8,.3,1) forwards; animation-delay:.3s; }
@keyframes heroVisIn { to { opacity:1; transform:translateY(0) scale(1); } }

.float-card { animation: bob 5s ease-in-out infinite; }
.float-1    { animation-delay:.2s; }
.float-2    { animation-delay:1.4s; }
@keyframes bob { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-9px);} }

.pip { animation: pip-pulse 2.6s ease-in-out 3; }
@keyframes pip-pulse { 0%,100%{box-shadow:0 0 0 4px rgba(232,105,74,0.13);} 50%{box-shadow:0 0 0 6px rgba(232,105,74,0.05);} }

.hero {
    min-height: 100vh; display: grid; grid-template-columns: 1.05fr 0.95fr;
    align-items: center; gap: 30px; padding: 150px 64px 80px;
    position: relative; background: var(--paper); overflow: hidden;
}
.hero-glow {
    position: absolute; top:-260px; left:-220px; width:680px; height:680px; border-radius:50%;
    background: radial-gradient(circle at 30% 30%,rgba(30,138,124,0.07),rgba(30,138,124,0) 68%);
}
.hero-text { position:relative; z-index:2; }

.hero-eyebrow {
    display: inline-flex; align-items: center; gap: 9px;
    font-size: 12.5px; font-weight: 700; letter-spacing:.04em; color: var(--sea-deep);
    margin-bottom: 30px; padding: 7px 6px 7px 16px;
    border: 1px solid var(--line); border-radius: 40px; background: #fff;
}
.hero-eyebrow .pip { width:7px; height:7px; border-radius:50%; background:var(--coral); flex-shrink:0; box-shadow:0 0 0 4px rgba(232,105,74,0.15); }

.hero h1 { font-size:clamp(40px,5vw,68px); font-weight:800; line-height:1.18; color:var(--ink); margin-bottom:22px; letter-spacing:-0.01em; }
.hero h1 .accent { color:var(--sea-deep); font-weight:900; position:relative; }

.hero-sub { font-size:17.5px; font-weight:400; color:var(--ink-soft); line-height:1.9; margin-bottom:40px; max-width:460px; }

.hero-actions { display:flex; gap:14px; align-items:center; flex-wrap:wrap; }

.btn-primary {
    background:var(--sea); color:#fff; border:none; border-radius:40px;
    padding:16px 34px; font-family:inherit; font-size:15px; font-weight:700;
    cursor:pointer; transition:.2s; box-shadow:0 8px 20px -10px rgba(30,138,124,0.4);
    position:relative; overflow:hidden;
}
.btn-primary::after { content:''; position:absolute; inset:0; background:rgba(255,255,255,0.22); transform:translateX(101%); transition:transform .5s cubic-bezier(.16,.8,.3,1); }
.btn-primary:hover::after { transform:translateX(0); }
.btn-primary:hover { background:var(--sea-deep); transform:translateY(-2px); }

.btn-ghost {
    background:transparent; color:var(--ink); border:1.5px solid var(--line);
    border-radius:40px; padding:14.5px 30px; font-family:inherit; font-size:15px; font-weight:500; cursor:pointer; transition:.2s;
}
.btn-ghost:hover { border-color:var(--ink); background:#fff; }

.hero-stats { display:flex; gap:40px; margin-top:56px; padding-top:34px; border-top:1px solid var(--line); }
.stat-num { font-size:30px; font-weight:800; color:var(--ink); line-height:1; margin-bottom:5px; display:inline-flex; }
.stat-num span { color:var(--sea); }
.stat-label { font-size:12.5px; color:var(--muted); font-weight:500; }
.theme-toggle-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--ink, #0C2B3A);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s, transform 0.2s;
    margin-left: 14px;
}
.theme-toggle-btn:hover { transform: scale(1.08); color: var(--sea); }
.theme-toggle-btn .sun-icon { display: none; }
.theme-toggle-btn .moon-icon { display: block; }
html[data-theme="dark"] {
    --paper: #0b132b;
    --paper-2: #1c2541;
    --ink: #ffffff;
    --ink-soft: #cbd5e1;
    --muted: #64748b;
    --line: #222d4a;
    --sea-deep: #4ea8de;

    background-color: #0b132b;
    color: #f8fafc;
}
@media (max-width: 900px) {
    .founder-card {
        grid-template-columns: 1fr !important;
        padding: 32px 24px !important;
        gap: 28px !important;
        text-align: center;
    }
    .founder-card .founder-content {
        text-align: center;
    }
    .founder-card style + div,
    .founder-card div[style*="display: flex"] {
        justify-content: center;
    }
}

html[data-theme="dark"] .theme-toggle-btn { color: #ffb703; }
html[data-theme="dark"] .theme-toggle-btn .sun-icon { display: block; }
html[data-theme="dark"] .theme-toggle-btn .moon-icon { display: none; }

html[data-theme="dark"] nav {
    background: rgba(11, 19, 43, 0.85) !important;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
}
html[data-theme="dark"] .nav-logo { color: #fff !important; }
html[data-theme="dark"] .nav-links a { color: #cbd5e1 !important; }
html[data-theme="dark"] .nav-links a:hover { color: #5BE0A8 !important; }
html[data-theme="dark"] .nav-mobile-panel { background-color: #0b132b !important; border-color: var(--line) !important; }
html[data-theme="dark"] .nav-mobile-panel a { color: #fff !important; }

html[data-theme="dark"] .hero-eyebrow { background: #1c2541 !important; }
html[data-theme="dark"] .btn-ghost { color: #fff; border-color: var(--line); }
html[data-theme="dark"] .btn-ghost:hover { background: #1c2541; border-color: var(--muted); }
html[data-theme="dark"] .search-wrap { background: #1c2541 !important; }
html[data-theme="dark"] .search-wrap input { color: #fff !important; }
html[data-theme="dark"] .monitor { background: #1c2541 !important; border: 1px solid var(--line); }
html[data-theme="dark"] .float-card { background: #1c2541 !important; color: #fff !important; }

html[data-theme="dark"] .services { background: #070d1f !important; }
html[data-theme="dark"] .service-item { background: #070d1f !important; }
html[data-theme="dark"] .service-item:hover { background: #1c2541 !important; }
html[data-theme="dark"] .live-strip-item { background: #1c2541 !important; }

html[data-theme="dark"] .article-card,
html[data-theme="dark"] .doctor-card { background: #1c2541 !important; }
html[data-theme="dark"] .doctor-btn { color: #fff; border-color: var(--line); }
html[data-theme="dark"] .doctor-btn:hover { background: #fff; color: #0b132b; }
html[data-theme="dark"] .doctor-ring-label { color: #fff; }
html[data-theme="dark"] .dr-ring-track { stroke: var(--line); }

html[data-theme="dark"] footer { background: #070d1f !important; border-top: 1px solid var(--line); }
html[data-theme="dark"] footer a { color: #cbd5e1 !important; }
html[data-theme="dark"] footer a:hover { color: #5BE0A8 !important; }
html[data-theme="dark"] .contact,
html[data-theme="dark"] .services {
    background-color: #070d1f !important;
}

html[data-theme="dark"] .contact .section-title {
    color: #ffffff !important;
}
html[data-theme="dark"] .contact-sub {
    color: rgba(255, 255, 255, 0.6) !important;
}

html[data-theme="dark"] .contact-card {
    background: rgba(255, 255, 255, 0.03) !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
}
html[data-theme="dark"] .contact-card:hover {
    background: rgba(255, 255, 255, 0.06) !important;
    border-color: rgba(255, 255, 255, 0.15) !important;
}
html[data-theme="dark"] .contact-card .c-label {
    color: rgba(255, 255, 255, 0.5) !important;
}
html[data-theme="dark"] .contact-card .c-value,
html[data-theme="dark"] .contact-card .c-value a {
    color: #ffffff !important;
}
html[data-theme="dark"] .contact-card .c-sub {
    color: rgba(255, 255, 255, 0.4) !important;
}

html[data-theme="dark"] .contact-hours {
    background: rgba(91, 224, 168, 0.05) !important;
    border-color: rgba(91, 224, 168, 0.15) !important;
    color: #ffffff !important;
}


html[data-theme="dark"] .fab-item {
    background: #1c2541 !important;
    color: #ffffff !important;
    border: 1px solid #222d4a !important;
}
html[data-theme="dark"] .nav-cta {
    background: var(--sea, #1E8A7C) !important;
    color: #ffffff !important;
}

html[data-theme="dark"] .nav-cta:hover {
    background: #5BE0A8 !important;
    color: #0b132b !important;
}


html[data-theme="dark"] .search-btn {
    background: var(--sea, #1E8A7C) !important;
    color: #ffffff !important;
}
html[data-theme="dark"] .search-btn:hover {
    background: #5BE0A8 !important;
    color: #0b132b !important;
}

.hero-visual { position:relative; z-index:2; }
.monitor {
    background:var(--ink); border-radius:28px; padding:34px 30px 28px;
    box-shadow:0 30px 70px -20px rgba(12,43,58,0.45); position:relative; overflow:hidden;
    animation: monitorIn 1s cubic-bezier(.16,.8,.3,1) .25s both;
}
@keyframes monitorIn { from{opacity:0;transform:translateY(14px);}to{opacity:1;transform:translateY(0);} }
.monitor::before { content:''; position:absolute; inset:0; background:radial-gradient(circle at 80% 0%,rgba(30,138,124,0.25),transparent 55%); }
.monitor-head { display:flex; justify-content:space-between; align-items:center; margin-bottom:26px; position:relative; z-index:1; }
.monitor-title { color:#fff; font-size:13px; font-weight:700; letter-spacing:.03em; display:flex; align-items:center; gap:8px; }
.live-dot { width:7px; height:7px; border-radius:50%; background:#5BE0A8; animation:liveblink 1.6s ease-in-out infinite; }
@keyframes liveblink { 0%,100%{opacity:1;} 50%{opacity:.25;} }
.monitor-sub { color:rgba(255,255,255,0.4); font-size:11.5px; font-weight:500; }

.wave-box { background:rgba(255,255,255,0.04); border:1px solid rgba(255,255,255,0.08); border-radius:16px; padding:18px 16px 6px; position:relative; z-index:1; }
.wave-box svg { display:block; width:100%; height:auto; }
.wave-path { fill:none; stroke:#5BE0A8; stroke-width:2.4; stroke-linecap:round; stroke-linejoin:round; stroke-dasharray:1400; stroke-dashoffset:1400; animation:draw 3.4s linear infinite; }
@keyframes draw { 0%{stroke-dashoffset:1400;} 65%{stroke-dashoffset:0;} 100%{stroke-dashoffset:-40;} }
.wave-grid line { stroke:rgba(255,255,255,0.05); stroke-width:1; }

.monitor-readouts { display:grid; grid-template-columns:repeat(3,1fr); margin-top:22px; padding-top:20px; border-top:1px solid rgba(255,255,255,0.08); position:relative; z-index:1; }
.readout { text-align:center; }
.readout-val { color:#fff; font-size:22px; font-weight:800; line-height:1; margin-bottom:6px; }
.readout-val span { color:#5BE0A8; font-size:13px; font-weight:600; margin-right:2px; }
.readout-label { color:rgba(255,255,255,0.4); font-size:11px; font-weight:500; }

.float-card {
    position:absolute; background:#fff; border:1px solid var(--line); border-radius:14px;
    padding:13px 18px; box-shadow:0 16px 40px -12px rgba(12,43,58,0.18);
    display:flex; align-items:center; gap:10px; font-size:12.5px; font-weight:700; color:var(--ink);
}
.float-card .ico { font-size:18px; }
.float-1 { top:-26px; left:-34px; }
.float-2 { bottom:-22px; right:-26px; }

.search-section { padding:0 64px 90px; background:var(--paper-2); position:relative; z-index:3; margin-top:-44px; }
.search-wrap {
    max-width:680px; margin:0 auto; background:#fff; border:1px solid var(--line);
    border-radius:50px; display:flex; align-items:center; padding:8px 8px 8px 28px;
    box-shadow:0 18px 50px -16px rgba(12,43,58,0.22);
}
.search-wrap input { flex:1; border:none; outline:none; font-family:inherit; font-size:15px; color:var(--ink); background:transparent; }
.search-wrap input::placeholder { color:var(--muted); }
.search-btn { background:var(--ink); color:#fff; border:none; border-radius:40px; padding:13px 28px; font-family:inherit; font-size:14px; font-weight:700; cursor:pointer; display:flex; align-items:center; gap:8px; transition:.2s; white-space:nowrap; }
.search-btn:hover { background:var(--sea); }

.services { padding:120px 64px; background:var(--ink); position:relative; overflow:hidden; }
.services::after { content:''; position:absolute; bottom:-140px; left:-140px; width:420px; height:420px; border-radius:50%; background:radial-gradient(circle,rgba(30,138,124,0.16),transparent 70%); }
.services .section-label { color:#5BE0A8; }
.services .section-title { color:#fff; margin-bottom:64px; }

.services-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:rgba(255,255,255,0.08); border:1px solid rgba(255,255,255,0.08); border-radius:20px; overflow:hidden; position:relative; z-index:1; }
.service-item { padding:42px 36px; background:var(--ink); transition:background .3s; position:relative; }
.service-item::before { content:''; position:absolute; inset:0; background:linear-gradient(135deg,rgba(91,224,168,0.08),transparent 60%); opacity:0; transition:opacity .35s ease; pointer-events:none; }
.service-item:hover::before { opacity:1; }
.service-item:hover { background:#13384A; }
.service-icon { font-size:30px; margin-bottom:22px; display:inline-block; transition:transform .35s cubic-bezier(.34,1.56,.64,1); }
.service-item:hover .service-icon { transform:scale(1.08) rotate(-2deg); }
.service-name { font-size:18.5px; font-weight:700; color:#fff; margin-bottom:11px; }
.service-desc { font-size:14px; color:rgba(255,255,255,0.45); line-height:1.85; font-weight:400; }

.live-strip { margin-top:28px; display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:rgba(255,255,255,0.08); border:1px solid rgba(255,255,255,0.08); border-radius:20px; overflow:hidden; position:relative; z-index:1; }
.live-strip-item { background:#0F3142; padding:26px 28px 22px; position:relative; }
.live-strip-head { display:flex; align-items:center; gap:9px; font-size:12.5px; font-weight:600; color:rgba(255,255,255,0.5); margin-bottom:14px; }
.live-strip-head .live-dot { width:6px; height:6px; background:#5BE0A8; }
.live-strip-val { font-size:30px; font-weight:800; color:#fff; line-height:1; margin-bottom:16px; }
.live-strip-val span { font-size:13px; font-weight:600; color:rgba(255,255,255,0.45); margin-right:4px; }
.mini-wave { width:100%; height:38px; display:block; }
.mini-wave-path { fill:none; stroke:#5BE0A8; stroke-width:2.2; stroke-linecap:round; stroke-linejoin:round; stroke-dasharray:600; stroke-dashoffset:600; animation:miniDraw 3s linear infinite; opacity:.85; }
@keyframes miniDraw { 0%{stroke-dashoffset:600;} 65%{stroke-dashoffset:0;} 100%{stroke-dashoffset:-30;} }
.bars { display:flex; align-items:flex-end; gap:6px; height:38px; }
.bars span { flex:1; background:linear-gradient(180deg,#E8694A,rgba(232,105,74,0.35)); border-radius:3px; height:var(--h); animation:barPulse 2.6s ease-in-out infinite; transform-origin:bottom; }
.bars span:nth-child(1){animation-delay:0s;} .bars span:nth-child(2){animation-delay:.15s;} .bars span:nth-child(3){animation-delay:.3s;} .bars span:nth-child(4){animation-delay:.45s;} .bars span:nth-child(5){animation-delay:.6s;} .bars span:nth-child(6){animation-delay:.75s;} .bars span:nth-child(7){animation-delay:.9s;}
@keyframes barPulse { 0%,100%{transform:scaleY(1);} 50%{transform:scaleY(.55);} }
.ring-mini { width:38px; height:38px; transform:rotate(-90deg); }
.ring-track { fill:none; stroke:rgba(255,255,255,0.1); stroke-width:5; }
.ring-fill { fill:none; stroke:#5BE0A8; stroke-width:5; stroke-linecap:round; stroke-dasharray:170; stroke-dashoffset:170; transition:stroke-dashoffset 1.4s cubic-bezier(.16,.8,.3,1); }
.live-strip.in .ring-fill { stroke-dashoffset:3.4; }

.articles { padding:120px 64px; background:var(--paper-2); }
.articles-header { display:flex; align-items:flex-end; justify-content:space-between; margin-bottom:58px; gap:20px; }
.see-all { color:var(--sea-deep); font-size:14px; font-weight:700; text-decoration:none; display:flex; align-items:center; gap:6px; white-space:nowrap; transition:transform .25s ease; }
.see-all:hover { transform:translateX(-4px); }

.articles-layout { display:grid; grid-template-columns:1.4fr 1fr; grid-template-rows:repeat(3,auto); gap:24px; }
.article-card { display:block; text-decoration:none; border-radius:20px; overflow:hidden; background:var(--paper); transition:transform .3s; border:1px solid var(--line); }
.article-card:hover { transform:translateY(-5px); }
.article-card.featured { grid-row:1/4; }
.article-img { width:100%; height:250px; object-fit:cover; display:block; transition:transform .6s cubic-bezier(.16,.8,.3,1); }
.article-card { overflow:hidden; }
.article-card:hover .article-img { transform:scale(1.08); }
.article-card.featured .article-img { height:336px; }
.article-body { padding:28px; }
.article-tag { display:inline-block; background:rgba(30,138,124,0.10); color:var(--sea-deep); font-size:11px; font-weight:700; letter-spacing:.04em; padding:5px 14px; border-radius:40px; margin-bottom:14px; }
.article-title { font-size:17px; font-weight:700; color:var(--ink); line-height:1.5; margin-bottom:13px; }
.article-card.featured .article-title { font-size:22px; }
.article-meta { display:flex; gap:14px; font-size:12px; color:var(--muted); flex-wrap:wrap; }
.article-more { display:inline-flex; align-items:center; gap:6px; margin-top:16px; font-size:13px; font-weight:700; color:var(--sea-deep); text-decoration:none; cursor:pointer; }
.article-more:hover { text-decoration:underline; }


.research-preview { display:flex; flex-direction:column; gap:14px; }
.research-item {
    display:flex; align-items:center; gap:18px; text-decoration:none;
    padding:20px 26px; border-radius:16px; background:var(--paper); border:1px solid var(--line);
    transition:transform .25s, border-color .25s, box-shadow .25s; cursor:pointer;
}
.research-item:hover { transform:translateX(-4px); border-color:var(--sea); box-shadow:0 8px 24px rgba(30,138,124,0.10); }
.research-num {
    flex-shrink:0; width:38px; height:38px; border-radius:50%; display:flex; align-items:center; justify-content:center;
    background:rgba(30,138,124,0.10); color:var(--sea-deep); font-weight:800; font-size:14px;
}
.research-title { flex:1; min-width:0; font-size:15.5px; font-weight:700; color:var(--ink); line-height:1.7; text-align:left; }
.research-arrow { flex-shrink:0; color:var(--muted); transition:.25s; }
.research-item:hover .research-arrow { color:var(--sea-deep); transform:translate(2px,-2px); }
html[data-theme="dark"] .research-item { background:#1c2541 !important; border-color:var(--line); }
@media (max-width:640px) {
    .research-item { padding:16px 18px; gap:12px; }
    .research-num { width:32px; height:32px; font-size:12.5px; }
    .research-title { font-size:14.5px; }
}


.doctors { padding:120px 64px 40px; background:var(--paper); }
.doctors-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; margin-top:58px; }
.doctor-card { background:#fff; border-radius:20px; overflow:hidden; transition:transform .3s; border:1px solid var(--line); }
.doctor-card:hover { transform:translateY(-5px); }
.doctor-img-wrap { height:220px; display:flex; align-items:center; justify-content:center; background:linear-gradient(135deg,var(--ink) 0%,#15495E 100%); position:relative; overflow:hidden; }
.doctor-img-wrap::after { content:''; position:absolute; inset:0; background:repeating-linear-gradient(120deg,rgba(255,255,255,0.04) 0 2px,transparent 2px 26px); }
.doctor-avatar { width:94px; height:94px; border-radius:50%; background:rgba(255,255,255,0.08); border:1.5px solid rgba(255,255,255,0.25); display:flex; align-items:center; justify-content:center; font-size:38px; color:rgba(255,255,255,0.8); position:relative; z-index:1; transition:transform .4s cubic-bezier(.34,1.56,.64,1); }
.doctor-card:hover .doctor-avatar { transform:scale(1.08) translateY(-3px); }
.doctor-body { padding:24px; }
.doctor-top { display:flex; align-items:flex-start; justify-content:space-between; gap:14px; }
.doctor-name { font-size:17px; font-weight:700; color:var(--ink); margin-bottom:4px; }
.doctor-spec { font-size:13px; color:var(--sea-deep); font-weight:500; margin-bottom:18px; }
.doctor-footer { display:flex; justify-content:space-between; align-items:center; padding-top:16px; border-top:1px solid var(--line); }
.doctor-exp { font-size:12px; color:var(--muted); }
.doctor-btn { background:transparent; color:var(--ink); border:1.5px solid var(--line); border-radius:40px; padding:8px 18px; font-family:inherit; font-size:12px; font-weight:700; cursor:pointer; transition:.2s; text-decoration:none; position:relative; }
.doctor-btn:hover { background:var(--ink); color:#fff; border-color:var(--ink); }
.doctor-ring-wrap { position:relative; width:54px; height:54px; flex-shrink:0; }
.doctor-ring-wrap svg { width:100%; height:100%; transform:rotate(-90deg); }
.dr-ring-track { fill:none; stroke:var(--line); stroke-width:4; }
.dr-ring-fill { fill:none; stroke:var(--sea); stroke-width:4; stroke-linecap:round; stroke-dasharray:138; stroke-dashoffset:138; transition:stroke-dashoffset 1.3s cubic-bezier(.16,.8,.3,1); }
.doctor-card.in .dr-ring-fill { stroke-dashoffset:7; }
.doctor-ring-label { position:absolute; inset:0; display:flex; align-items:center; justify-content:center; font-size:11.5px; font-weight:800; color:var(--ink); }
.contact { padding:120px 64px; background:var(--ink); position:relative; overflow:hidden; }
.contact::before { content:''; position:absolute; top:-180px; right:-160px; width:520px; height:520px; border-radius:50%; background:radial-gradient(circle,rgba(30,138,124,0.18),transparent 70%); }
.contact-inner { position:relative; z-index:1; }
.contact .section-label { color:#5BE0A8; }
.contact .section-title { color:#fff; margin-bottom:14px; }
.contact-sub { color:rgba(255,255,255,0.5); font-size:15.5px; font-weight:400; max-width:480px; line-height:1.85; margin-bottom:56px; }

.contact-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.contact-card { background:rgba(255,255,255,0.04); border:1px solid rgba(255,255,255,0.10); border-radius:20px; padding:32px 26px; transition:background .25s, border-color .25s; position:relative; }
.contact-card:hover { background:rgba(255,255,255,0.07); border-color:rgba(255,255,255,0.2); }
.contact-card .c-icon { width:48px; height:48px; border-radius:13px; background:rgba(91,224,168,0.12); display:flex; align-items:center; justify-content:center; margin-bottom:22px; color:#5BE0A8; transition:transform .4s cubic-bezier(.34,1.56,.64,1), background .3s; }
.contact-card:hover .c-icon { transform:scale(1.06) rotate(-3deg); background:rgba(91,224,168,0.22); }
.contact-card .c-label { font-size:12.5px; font-weight:700; color:rgba(255,255,255,0.45); letter-spacing:.03em; margin-bottom:10px; }
.contact-card .c-value { font-size:16.5px; font-weight:700; color:#fff; line-height:1.6; }
.contact-card .c-value a { text-decoration:none; color:#fff; transition:color .2s; }
.contact-card .c-value a:hover { color:#5BE0A8; }
.contact-card .c-sub { font-size:13px; color:rgba(255,255,255,0.4); margin-top:8px; font-weight:400; }
.c-messenger-row { display:flex; flex-direction:column; gap:8px; }
.c-messenger-row a { display:flex; align-items:center; gap:8px; }
.c-messenger-row .tag { font-size:11px; font-weight:700; color:#5BE0A8; background:rgba(91,224,168,0.12); padding:2px 9px; border-radius:20px; }

.contact-hours { margin-top:24px; display:flex; align-items:center; gap:12px; background:rgba(91,224,168,0.08); border:1px solid rgba(91,224,168,0.18); border-radius:14px; padding:16px 22px; color:#fff; font-size:13.5px; font-weight:500; flex-wrap:wrap; }
.contact-hours b { color:#5BE0A8; font-weight:700; }

.online-badge { display:inline-flex; align-items:center; gap:10px; background:rgba(91,224,168,0.1); border:1px solid rgba(91,224,168,0.25); border-radius:40px; padding:9px 18px 9px 14px; margin-bottom:26px; font-size:13px; font-weight:700; color:#5BE0A8; }
.online-badge .ping-wrap { position:relative; width:9px; height:9px; }
.online-badge .ping-wrap::before,
.online-badge .ping-wrap::after { content:''; position:absolute; inset:0; border-radius:50%; background:#5BE0A8; }
.online-badge .ping-wrap::before { animation:ping 1.8s cubic-bezier(0,0,.2,1) infinite; }
.online-badge .ping-wrap::after  { opacity:.9; }
@keyframes ping { 0%{transform:scale(1);opacity:.8;} 75%,100%{transform:scale(2.6);opacity:0;} }

.skip-link { position:absolute; right:16px; top:-60px; background:var(--ink); color:#fff; padding:12px 20px; border-radius:10px; z-index:1000; font-size:13px; font-weight:700; text-decoration:none; transition:top .2s; }
.skip-link:focus { top:16px; }
@media (max-width:1024px) {
    .hero { grid-template-columns:1fr; padding:110px 24px 56px; }
    .hero-visual { margin-top:30px; }
    .float-card { display:none; }
    .services, .articles, .doctors, .contact { padding:70px 24px; }
    .services-grid { grid-template-columns:1fr 1fr; }
    .articles-layout { grid-template-columns:1fr; }
    .article-card.featured { grid-row:auto; }
    .doctors-grid { grid-template-columns:1fr 1fr; }
    .contact-grid { grid-template-columns:1fr 1fr; }
    .search-section { padding:0 24px 70px; }
}
@media (max-width:1024px) {
    .doctors { padding-bottom: 30px; }
}
.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-only {
    display: inline-block;
    text-decoration: none;
    line-height: 0;
}

.footer-logo-svg {
    display: block;
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.2));
    transition: transform 0.35s cubic-bezier(0.16, 0.8, 0.3, 1), filter 0.35s ease;
}

.footer-logo-only:hover .footer-logo-svg {
    transform: scale(1.06);
    filter: drop-shadow(0 14px 30px rgba(78, 168, 222, 0.3));
}
@media (max-width:640px) {
    .services-grid { grid-template-columns:1fr; }
    .doctors-grid  { grid-template-columns:1fr; }
    .contact-grid  { grid-template-columns:1fr; }
    .hero-stats { flex-wrap:wrap; gap:24px; }
}
.hero-glow { inset-inline-end: -220px; left: auto; }
.float-1 { inset-inline-end: -34px; left: auto; }
.float-2 { inset-inline-start: -26px; right: auto; }
.services::after { inset-inline-end: -140px; left: auto; }
.contact::before { inset-inline-start: -160px; right: auto; }

html[dir="ltr"] .see-all:hover { transform: translateX(4px); }
html[dir="ltr"] .research-item:hover { transform: translateX(4px); }
@media (max-width: 1024px) {
    nav .nav-cta { display: none; }
}