:root {
    --clinic-green: #20855a;
    --clinic-green-dark: #0f4f42;
    --clinic-red: #d95842;
    --clinic-blue: #1886b8;
    --ink: #16302d;
    --muted: #647774;
    --soft: #f2f7f4;
}

body {
    color: var(--ink);
    font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
    background: #fff;
}

.glass-nav {
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(14px);
    box-shadow: 0 8px 30px rgba(19, 48, 44, .08);
}

.navbar { min-height: 76px; }
.navbar-brand { font-weight: 800; color: var(--clinic-green-dark); letter-spacing: 0; }
.brand-icon {
    width: clamp(34px, 4vw, 42px);
    height: clamp(34px, 4vw, 42px);
    flex: 0 0 auto;
    display: inline-block;
    border-radius: 50%;
    background: #fff;
    background-image: var(--brand-logo);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 82%;
    border: 2px solid rgba(32, 133, 90, .18);
    box-shadow: 0 8px 22px rgba(22, 48, 45, .12);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.navbar-brand:hover .brand-icon,
.navbar-brand:focus-visible .brand-icon {
    transform: translateY(-1px);
    border-color: rgba(32, 133, 90, .38);
    box-shadow: 0 12px 28px rgba(22, 48, 45, .18);
}

.btn-clinic {
    --bs-btn-bg: var(--clinic-green);
    --bs-btn-border-color: var(--clinic-green);
    --bs-btn-color: #fff;
    --bs-btn-hover-bg: var(--clinic-green-dark);
    --bs-btn-hover-border-color: var(--clinic-green-dark);
    border-radius: 999px;
    font-weight: 700;
}

.hero {
    min-height: 92vh;
    display: flex;
    align-items: end;
    position: relative;
    overflow: hidden;
    color: #fff;
    background: #173f3b;
}

.hero .swiper, .hero .swiper-wrapper, .hero .swiper-slide { position: absolute; inset: 0; height: 100%; }
.hero img { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(11, 46, 42, .9), rgba(15, 79, 66, .62), rgba(0, 0, 0, .08));
}

.hero-blur-panel {
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
    width: min(58vw, 760px);
    height: 100%;
    background: rgba(10, 55, 48, .42);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    mask-image: linear-gradient(90deg, #000 0%, #000 62%, transparent 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 130px 0 160px;
    max-width: 760px;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 5.8rem);
    line-height: .96;
    font-weight: 900;
    letter-spacing: 0;
}

.hero-tigrinya {
    margin-top: 10px;
    font-size: clamp(1.65rem, 3vw, 3.1rem);
    line-height: 1.05;
    font-weight: 900;
    color: rgba(255,255,255,.96);
}

.hero p { font-size: clamp(1.05rem, 2vw, 1.35rem); color: rgba(255,255,255,.86); }

.donor-card {
    width: min(100%, 560px);
    max-width: 100%;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 16px 20px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .16);
    border: 1px solid rgba(255, 255, 255, .25);
    backdrop-filter: blur(10px);
}

.donor-card img {
    width: min(44vw, 430px);
    height: auto;
    aspect-ratio: 430 / 108.87;
    object-fit: contain;
    border-radius: 8px;
    background: #fff;
    padding: 10px;
    flex: 0 0 auto;
}

.donor-card span {
    display: block;
    font-size: .78rem;
    color: rgba(255,255,255,.72);
    text-transform: uppercase;
    font-weight: 800;
}

.donor-card strong {
    display: block;
    color: #fff;
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.2;
}

.hero-feature-strip {
    position: absolute;
    z-index: 3;
    left: 0;
    right: 0;
    bottom: 22px;
}

.hero-feature {
    min-height: 86px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border-radius: 8px;
    color: #fff;
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .24);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 45px rgba(0,0,0,.14);
    font-weight: 800;
}

.hero-feature i {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: var(--clinic-red);
}

.section-pad { padding: 88px 0; }
.soft-band { background: var(--soft); }
.eyebrow {
    color: var(--clinic-red);
    font-weight: 800;
    text-transform: uppercase;
    font-size: .78rem;
}

.service-card, .content-card, .stat-card {
    border: 1px solid rgba(22, 48, 45, .08);
    border-radius: 8px;
    box-shadow: 0 18px 45px rgba(27, 58, 54, .08);
    background: #fff;
}

.service-card { padding: 28px; height: 100%; }
.service-card i {
    width: 48px;
    height: 48px;
    display: inline-grid;
    place-items: center;
    color: #fff;
    background: var(--clinic-red);
    border-radius: 8px;
    margin-bottom: 18px;
}

.team-card {
    height: 100%;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    border: 1px solid rgba(22, 48, 45, .08);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 45px rgba(27, 58, 54, .08);
}

.team-photo {
    flex: 0 0 auto;
    width: 86px;
    height: 86px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 10px 24px rgba(22, 48, 45, .14);
}

.team-info h5 { margin-bottom: 4px; }
.team-profession {
    color: var(--clinic-green);
    font-weight: 800;
    margin-bottom: 6px;
}

.team-info a {
    display: block;
    color: var(--muted);
    text-decoration: none;
    font-size: .92rem;
    overflow-wrap: anywhere;
}

.team-info a:hover { color: var(--clinic-green); }

.content-card img { height: 230px; object-fit: cover; border-radius: 8px 8px 0 0; }
.gallery-tile img, .gallery-tile video { width: 100%; height: 270px; object-fit: cover; border-radius: 8px; display: block; background: #102f2b; }
.gallery-tile { position: relative; overflow: hidden; border-radius: 8px; }
.gallery-tile span {
    position: absolute;
    left: 12px;
    bottom: 12px;
    background: rgba(15, 79, 66, .86);
    color: #fff;
    padding: 7px 12px;
    border-radius: 999px;
    font-weight: 700;
}

.page-hero {
    padding: 150px 0 70px;
    background: linear-gradient(135deg, var(--clinic-green-dark), #17606d);
    color: #fff;
}

.form-control, .form-select { border-radius: 8px; padding: .78rem .9rem; }
.footer-band { background: #102f2b; color: #fff; }
.footer-links a, .footer-band a { color: rgba(255,255,255,.72); text-decoration: none; }
.footer-links a:hover, .footer-band a:hover { color: #fff; }
.social-link {
    width: 40px;
    height: 40px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255,255,255,.1);
}

.footer-map {
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,.16);
    aspect-ratio: 4 / 3;
    background: rgba(255,255,255,.08);
}

.footer-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

@media (max-width: 991px) {
    .navbar-collapse { padding: 1rem 0; }
    .hero { min-height: 980px; }
    .hero-blur-panel { width: 100%; }
    .hero-content { padding-bottom: 390px; }
    .section-pad { padding: 64px 0; }
}

@media (max-width: 575px) {
    .donor-card {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        padding: 14px;
    }

    .donor-card img {
        width: 100%;
        height: auto;
        max-height: 120px;
    }
}
