/* ==========================================================================
   Delta Clinic & Hospital: front-end design layer (loads after style.css).
   Brand: navy #2d2a6e (primary) + pink #e5127d (secondary), taken from the logo.
   ========================================================================== */
:root {
    --dch-navy: #2d2a6e;
    --dch-navy-dark: #1b1950;
    --dch-ink: #141238;
    --dch-pink: #e5127d;
    --dch-pink-soft: #fff0f7;
    --dch-tint: #f5f6fb;
    --dch-line: #e6e8f5;
    --dch-text: #4a4e6d;
    --dch-shadow: 0 10px 30px rgba(45, 42, 110, .10);
    --dch-shadow-lg: 0 22px 50px rgba(27, 25, 80, .18);
}

body { color: var(--dch-text); font-family: 'DM Sans', 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif; -webkit-font-smoothing: antialiased; }
h1, h2, h3, h4, h5, h6 { font-family: 'DM Sans', 'Inter', system-ui, sans-serif; color: var(--dch-navy); letter-spacing: -.01em; }
a { text-decoration: none; }
img { max-width: 100%; }
.btn { font-weight: 600; letter-spacing: .01em; }
.btn-secondary { box-shadow: 0 8px 20px rgba(229, 18, 125, .28); }
.btn-secondary:hover { box-shadow: 0 10px 24px rgba(229, 18, 125, .38); transform: translateY(-1px); }
.form-control, .form-select { border-radius: 10px; border-color: #d9dcf0; padding: .68rem 1rem; }
.form-control:focus, .form-select:focus { border-color: var(--dch-navy); box-shadow: 0 0 0 .2rem rgba(45, 42, 110, .12); }
.shadow-sm { box-shadow: 0 6px 22px rgba(45, 42, 110, .08) !important; }
.rich-content a { color: var(--dch-pink); }

/* ---------------------------------------------------------------- highlighted consultation fees */
.dch-fee { display: inline-flex; align-items: center; gap: 8px; padding: 8px 18px; border-radius: 40px; font-size: .92rem; font-weight: 500; line-height: 1.2;
    background: #fff; color: var(--dch-navy); box-shadow: 0 6px 18px rgba(0, 0, 0, .14); }
.dch-fee strong { font-size: 1.18rem; font-weight: 800; }
.dch-fee--video { background: linear-gradient(135deg, #e5127d, #ff4f9d); color: #fff; box-shadow: 0 8px 24px rgba(229, 18, 125, .5); }
.dch-fee--video strong { background: #fff; color: var(--dch-pink); padding: 1px 12px; border-radius: 20px; }
.dch-fee--opd i { color: var(--dch-pink); }

/* ---------------------------------------------------------------- header */
.dch-header { position: sticky; top: 0; z-index: 1030; background: #fff; box-shadow: 0 2px 16px rgba(20, 18, 56, .08); }
.dch-topbar { background: var(--dch-navy-dark); color: #d9dbf3; font-size: .82rem; height: 42px; }
.dch-topbar .container { height: 42px; }
.dch-topbar a, .dch-topbar span { color: #d9dbf3; }
.dch-topbar a:hover { color: #fff; }
.dch-topbar i { color: #ff77b8; margin-right: 8px; }
.dch-topbar-info { display: flex; align-items: center; gap: 26px; }
.dch-topbar-side { display: flex; align-items: center; gap: 18px; }
.dch-topbar .dch-topbar-video { background: var(--dch-pink); color: #fff; padding: 4px 14px; border-radius: 30px; font-weight: 500; }
.dch-topbar .dch-topbar-video i { color: #fff; margin-right: 6px; }
.dch-topbar .dch-topbar-video strong { font-weight: 800; }
.dch-topbar-social a { margin-left: 14px; }
.dch-topbar-social i { margin: 0; color: #d9dbf3; }
.dch-topbar-social a:hover i { color: #fff; }

.dch-nav { position: relative; background: #fff; }
.dch-nav .navbar { position: static; padding: 10px 0; }
.dch-nav .navbar-brand img { height: 54px; width: auto; max-height: none; }
.dch-nav .navbar-nav { background: transparent !important; width: auto !important; border-radius: 0 !important; }
.dch-nav .navbar-nav .nav-item { position: relative; display: flex; align-items: center; padding: 0 15px; }
.dch-nav .navbar-nav .nav-item.position-static { position: static; }
.dch-nav .navbar-nav .nav-link { padding: 26px 0 !important; font-weight: 600; font-size: .96rem; color: var(--dch-navy); }
.dch-nav .navbar-nav .nav-item:hover > .nav-link,
.dch-nav .navbar-nav .nav-link.active,
.dch-nav .navbar-nav .nav-item.active > .nav-link { color: var(--dch-pink) !important; }
.dch-nav .navbar-nav .nav-item::before { content: ""; position: absolute; left: 15px; right: 15px; bottom: 0; height: 3px; background: var(--dch-pink); border-radius: 3px 3px 0 0; transform: scaleX(0); transition: transform .25s; }
.dch-nav .navbar-nav .nav-item:hover::before { transform: scaleX(1); }
.dch-nav .dropdown-toggle::after { border: none; content: "\f107"; font-family: "Font Awesome 5 Free"; font-weight: 900; margin-left: 6px; font-size: .8rem; vertical-align: baseline; }
.dch-nav-actions { display: flex; align-items: center; gap: 12px; }
.dch-nav-cta { padding: 11px 24px; white-space: nowrap; }
.dch-icon-btn { width: 42px; height: 42px; border-radius: 50%; background: var(--dch-tint); color: var(--dch-navy); border: 0; display: inline-flex; align-items: center; justify-content: center; transition: .2s; }
.dch-icon-btn:hover { background: var(--dch-navy); color: #fff; }
.dch-nav .navbar-toggler { border: 1px solid var(--dch-line); color: var(--dch-navy); padding: 8px 14px; border-radius: 10px; }

@media (min-width: 992px) {
    .dch-nav .nav-item .dropdown-menu { display: block; visibility: hidden; opacity: 0; transform: translateY(10px); top: 100%; margin-top: 0 !important; transition: .2s ease;
        border: 0; border-top: 3px solid var(--dch-pink); border-radius: 0 0 14px 14px; box-shadow: 0 22px 44px rgba(20, 18, 56, .16); background: #fff !important;
        width: auto; min-width: 230px; padding: 8px; }
    .dch-nav .nav-item:hover > .dropdown-menu { visibility: visible; opacity: 1; transform: none; margin-top: 0 !important; }
    .dch-nav .nav-item.position-static > .dropdown-menu { position: absolute; left: 0; right: 0; width: 100% !important; padding: 0; border-radius: 0 0 18px 18px; max-height: 76vh; overflow-y: auto; }
    .dch-nav .dropdown-item { border-radius: 8px; padding: 9px 14px; font-weight: 500; color: var(--dch-navy); }
    .dch-nav .dropdown .dropdown-menu .dropdown-item:hover { background: var(--dch-pink-soft); color: var(--dch-pink); }
    .dch-nav .list-group-item { border: 0; padding: 7px 10px; color: var(--dch-text); background: transparent; border-radius: 8px; }
    .dch-nav .list-group-item:hover { background: var(--dch-pink-soft); color: var(--dch-pink); }
    .dch-nav .list-group-item b { color: var(--dch-navy); font-size: 1rem; }
}
@media (max-width: 991px) {
    .dch-nav .navbar-nav { margin-top: 12px; padding: 6px 0; border: 1px solid var(--dch-line); border-radius: 14px !important; background: #fff !important; }
    .dch-nav .navbar-nav .nav-item { padding: 0 18px; border-bottom: 1px solid var(--dch-line); flex-direction: column; align-items: stretch; }
    .dch-nav .navbar-nav .nav-item:last-child { border-bottom: 0; }
    .dch-nav .navbar-nav .nav-item::before { display: none; }
    .dch-nav .navbar-nav .nav-link { padding: 14px 0 !important; }
    .dch-nav .dropdown-menu { position: static; width: 100% !important; box-shadow: none; border: 0; background: var(--dch-tint) !important; margin-bottom: 10px; }
    .dch-nav-actions { padding: 14px 0 6px; }
    .dch-nav-cta { flex: 1; text-align: center; }
}

/* ---------------------------------------------------------------- hero slider */
.dch-hero { position: relative; overflow: hidden; background: var(--dch-navy-dark); }
.dch-slide { padding: 70px 0 150px; color: #fff;
    background: radial-gradient(900px 420px at 88% 18%, rgba(229, 18, 125, .38), transparent 62%), radial-gradient(700px 380px at 5% 100%, rgba(120, 110, 255, .28), transparent 60%), linear-gradient(120deg, #1b1950 0%, #2d2a6e 58%, #3b3690 100%); }
.dch-slide--full { background-size: cover; background-position: center right; background-repeat: no-repeat; }
.dch-slide .row { min-height: 420px; }
.dch-hero-badge { display: inline-block; padding: 7px 18px; margin-bottom: 18px; border-radius: 30px; font-size: .86rem; font-weight: 600; letter-spacing: .02em;
    background: rgba(255, 255, 255, .13); border: 1px solid rgba(255, 255, 255, .28); color: #fff; }
.dch-hero-title { color: #fff; font-size: clamp(2rem, 4.3vw, 3.4rem); font-weight: 800; line-height: 1.12; margin: 0 0 18px; letter-spacing: -.02em; }
.dch-hero-text { color: rgba(255, 255, 255, .86); font-size: 1.1rem; line-height: 1.7; max-width: 560px; margin-bottom: 8px; }
.dch-hero-fees { display: flex; flex-wrap: wrap; gap: 12px; margin: 22px 0 4px; }
.dch-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.dch-hero-actions .btn { padding: 14px 30px; font-size: 1rem; }
.dch-hero-actions .btn-light { color: var(--dch-navy); }
.dch-hero-photo { position: relative; display: inline-block; }
.dch-hero-photo::before { content: ""; position: absolute; inset: 10% -4% -4% 8%; border-radius: 28px; background: rgba(255, 255, 255, .10); border: 1px solid rgba(255, 255, 255, .18); }
.dch-hero-photo img { position: relative; max-height: 470px; width: auto; max-width: 100%; border-radius: 24px; object-fit: cover; box-shadow: 0 26px 60px rgba(0, 0, 0, .38); }
.dch-hero-arrow { width: 46px; height: 46px; border-radius: 50%; background: rgba(255, 255, 255, .16); color: #fff; display: flex; align-items: center; justify-content: center; transition: .2s; }
.dch-hero-nav { width: 72px; opacity: 1; bottom: 70px; z-index: 5; }
.dch-hero-nav:hover .dch-hero-arrow { background: var(--dch-pink); }
.dch-hero-dots { bottom: 96px; z-index: 6; margin-bottom: 0; }
.dch-hero-dots button { width: 34px; height: 4px; border-radius: 4px; }
@media (max-width: 991px) {
    .dch-slide { padding: 44px 0 110px; }
    .dch-slide .row { min-height: 0; }
    .dch-hero-nav { display: none; }
    .dch-hero-photo img { max-height: 280px; }
    .dch-hero-dots { bottom: 84px; }
    .dch-slide--full { background-position: 60% center; }
}
@media (max-width: 575px) {
    .dch-hero-actions .btn { width: 100%; }
    .dch-fee { font-size: .85rem; padding: 7px 14px; }
}

/* ---------------------------------------------------------------- quick action cards (overlap the hero) */
.dch-quick { position: relative; z-index: 10; margin-top: -92px; padding-bottom: 30px; }
.dch-quick-card { position: relative; background: #fff; border-radius: 20px; padding: 28px 26px; height: 100%; text-align: center; box-shadow: var(--dch-shadow-lg); border-top: 4px solid var(--dch-navy); transition: transform .25s; }
.dch-quick-card:hover { transform: translateY(-5px); }
.dch-quick-card--video { border-top-color: var(--dch-pink); }
.dch-quick-icon { width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 14px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; background: var(--dch-tint); color: var(--dch-navy); }
.dch-quick-card--video .dch-quick-icon { background: var(--dch-pink-soft); color: var(--dch-pink); }
.dch-quick-card h2 { font-size: 1.2rem; font-weight: 800; margin-bottom: 8px; }
.dch-quick-card p { font-size: .92rem; margin-bottom: 14px; }
.dch-quick-fee { display: inline-flex; align-items: baseline; gap: 6px; margin-bottom: 14px; padding: 6px 18px; border-radius: 30px; background: var(--dch-tint); color: var(--dch-navy); font-weight: 800; font-size: 1.5rem; line-height: 1.2; }
.dch-quick-fee small { font-size: .78rem; font-weight: 600; color: var(--dch-text); }
.dch-quick-card--video .dch-quick-fee { background: linear-gradient(135deg, #e5127d, #ff4f9d); color: #fff; box-shadow: 0 8px 20px rgba(229, 18, 125, .35); }
.dch-quick-card--video .dch-quick-fee small { color: rgba(255, 255, 255, .9); }
.dch-quick-note { display: block; font-size: .82rem; color: var(--dch-text); margin: -6px 0 14px; }
@media (max-width: 767px) { .dch-quick { margin-top: -70px; } }

/* ---------------------------------------------------------------- section headings and rhythm */
.dch-eyebrow { display: inline-block; font-size: .8rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--dch-pink) !important; margin: 0 0 6px; }
.dch-eyebrow::before { content: ""; display: inline-block; width: 28px; height: 2px; background: var(--dch-pink); vertical-align: middle; margin-right: 10px; }
.dch-title { font-size: clamp(1.75rem, 3.1vw, 2.45rem) !important; font-weight: 800; line-height: 1.2; margin: .3rem 0 .8rem !important; color: var(--dch-navy); }
.dch-lead { color: var(--dch-text); max-width: 680px; margin-left: auto; margin-right: auto; }
.dch-section { padding: 84px 0; }
@media (max-width: 767px) { .dch-section { padding: 56px 0; } }
.container-fluid.py-5 > .container.py-5 { padding-top: 1.5rem !important; padding-bottom: 1.5rem !important; }

/* ---------------------------------------------------------------- cards used on the home page and lists */
.feature .feature-item { border-radius: 18px; border: 1px solid var(--dch-line); box-shadow: var(--dch-shadow); }
.blog .blog-item, .blog-item { border-radius: 18px; overflow: hidden; background: #fff; box-shadow: var(--dch-shadow); transition: transform .25s, box-shadow .25s; }
.blog-item:hover { transform: translateY(-5px); box-shadow: var(--dch-shadow-lg); }
.blog-item .blog-content h4, .blog-item .blog-content .h4 { font-size: 1.15rem; font-weight: 700; line-height: 1.35; }
.team-item .team-img img, .team .rounded { border-radius: 16px !important; }
.about-item-content, .dch-card { border-radius: 20px !important; }

/* ---------------------------------------------------------------- about section */
.dch-about-img { position: relative; }
.dch-about-img img { border-radius: 22px; width: 100%; box-shadow: var(--dch-shadow-lg); }
.dch-about-badge { position: absolute; right: -14px; bottom: 26px; background: var(--dch-pink); color: #fff; padding: 14px 20px; border-radius: 16px; box-shadow: 0 14px 30px rgba(229, 18, 125, .4); font-weight: 700; line-height: 1.25; }
.dch-about-badge span { display: block; font-size: 1.7rem; font-weight: 800; }
.dch-checks { list-style: none; padding: 0; margin: 0 0 26px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 18px; }
.dch-checks li { display: flex; gap: 10px; align-items: flex-start; font-weight: 600; color: var(--dch-navy); font-size: .95rem; }
.dch-checks i { color: #fff; background: var(--dch-pink); border-radius: 50%; width: 22px; height: 22px; flex: 0 0 22px; font-size: .68rem; display: flex; align-items: center; justify-content: center; margin-top: 2px; }
@media (max-width: 575px) { .dch-checks { grid-template-columns: 1fr; } .dch-about-badge { right: 8px; } }

/* ---------------------------------------------------------------- "how it works" steps */
.dch-steps { position: relative; }
.dch-step { position: relative; text-align: center; padding: 0 12px; }
.dch-step-icon { position: relative; width: 84px; height: 84px; border-radius: 50%; margin: 0 auto 18px; display: flex; align-items: center; justify-content: center; background: #fff; color: var(--dch-navy); font-size: 1.7rem; box-shadow: var(--dch-shadow); border: 2px solid var(--dch-line); }
.dch-step-num { position: absolute; top: -6px; right: -6px; width: 30px; height: 30px; border-radius: 50%; background: var(--dch-pink); color: #fff; font-size: .85rem; font-weight: 800; display: flex; align-items: center; justify-content: center; }
.dch-step h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 6px; }
.dch-step p { font-size: .9rem; margin: 0; }
@media (min-width: 992px) { .dch-step:not(:last-child)::after { content: ""; position: absolute; top: 42px; left: calc(50% + 52px); width: calc(100% - 104px); border-top: 2px dashed #c9cce8; } }
.dch-steps-fee { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 36px; }
.dch-steps-fee .dch-fee { box-shadow: var(--dch-shadow); }

/* ---------------------------------------------------------------- testimonial cards */
.dch-quote { color: var(--dch-pink); font-size: 1.6rem; opacity: .25; margin-bottom: 10px; display: block; }

/* ---------------------------------------------------------------- inner page banner */
.bg-breadcrumb { background: linear-gradient(120deg, rgba(27, 25, 80, .94), rgba(45, 42, 110, .86)), url('../medical1.jpeg') center/cover no-repeat !important; padding: 54px 0 !important; }
.bg-breadcrumb h1, .bg-breadcrumb h4 { color: #fff; font-weight: 800; letter-spacing: -.01em; }
.bg-breadcrumb .breadcrumb-item, .bg-breadcrumb .breadcrumb-item a { color: rgba(255, 255, 255, .85); }
.bg-breadcrumb .breadcrumb-item.active { color: #ff8cc4; }
.bg-breadcrumb .breadcrumb-item + .breadcrumb-item::before { color: rgba(255, 255, 255, .6); }

/* ---------------------------------------------------------------- booking page: highlighted fee */
#feeLine { display: inline-block; margin-top: 12px; padding: 9px 18px; border-radius: 12px; background: var(--dch-tint); border: 1px solid var(--dch-line); color: var(--dch-navy); font-weight: 800; font-size: 1.05rem; }
#feeLine:empty { display: none; }
#feeLine.dch-feebox--video { background: var(--dch-pink-soft); border-color: #f7b3d6; color: #b20a62; }

/* ---------------------------------------------------------------- footer call-to-action band */
.dch-cta { background: linear-gradient(115deg, #e5127d 0%, #a3167f 42%, #2d2a6e 100%); color: #fff; padding: 46px 0; }
.dch-cta-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 26px; }
.dch-cta h2 { color: #fff; font-weight: 800; font-size: clamp(1.5rem, 2.6vw, 2rem); margin: 0 0 6px; }
.dch-cta p { color: rgba(255, 255, 255, .9); margin: 0 0 12px; }
.dch-cta-fees { display: flex; flex-wrap: wrap; gap: 10px; }
.dch-cta .dch-fee--video { background: #fff; color: var(--dch-pink); box-shadow: 0 8px 22px rgba(0, 0, 0, .22); }
.dch-cta .dch-fee--video strong { background: var(--dch-pink); color: #fff; }
.dch-cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.dch-cta-actions .btn { padding: 13px 26px; }
.dch-cta-actions .btn-secondary { background: #fff; border-color: #fff; color: var(--dch-pink); box-shadow: none; }
.dch-cta-actions .btn-light { background: rgba(255, 255, 255, .18); border-color: rgba(255, 255, 255, .5); color: #fff; }
.dch-cta-actions .btn-light:hover { background: #fff; color: var(--dch-navy); }

/* ---------------------------------------------------------------- footer */
.dch-footer { background: var(--dch-ink); color: #b7bad8; padding: 66px 0 0; }
.dch-footer-brand img { height: 60px; width: auto; background: #fff; border-radius: 12px; padding: 8px 14px; }
.dch-footer-about { margin: 18px 0; line-height: 1.75; font-size: .95rem; max-width: 340px; }
.dch-footer-social { display: flex; gap: 10px; }
.dch-footer-social a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255, 255, 255, .08); color: #fff; display: flex; align-items: center; justify-content: center; transition: .2s; }
.dch-footer-social a:hover { background: var(--dch-pink); }
.dch-footer-title { color: #fff; font-size: 1.1rem; font-weight: 700; margin-bottom: 20px; position: relative; padding-bottom: 12px; }
.dch-footer-title::after { content: ""; position: absolute; left: 0; bottom: 0; width: 34px; height: 3px; border-radius: 3px; background: var(--dch-pink); }
.dch-footer-links { list-style: none; margin: 0; padding: 0; }
.dch-footer-links li { margin-bottom: 10px; }
.dch-footer-links a { color: #b7bad8; font-size: .94rem; transition: .2s; }
.dch-footer-links a:hover { color: #fff; padding-left: 4px; }
.dch-footer-contact { list-style: none; margin: 0; padding: 0; }
.dch-footer-contact li { display: flex; gap: 14px; margin-bottom: 16px; font-size: .92rem; line-height: 1.6; }
.dch-footer-contact i { color: var(--dch-pink); margin-top: 5px; width: 16px; flex: 0 0 16px; text-align: center; }
.dch-footer-contact a { color: #fff; }
.dch-footer-contact a:hover { color: #ff8cc4; }
.dch-footer-bottom { margin-top: 48px; padding: 20px 0; border-top: 1px solid rgba(255, 255, 255, .09); font-size: .85rem; }
.dch-footer-note { color: #8e91b3; }

/* ---------------------------------------------------------------- floating buttons and mobile action bar */
.dch-wa-float { position: fixed; right: 20px; bottom: 90px; width: 52px; height: 52px; border-radius: 50%; background: #25d366; color: #fff; font-size: 30px; display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 26px rgba(37, 211, 102, .45); z-index: 1040; }
.dch-wa-float:hover { color: #fff; transform: scale(1.06); }
.dch-mobile-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 1045; display: flex; background: #fff; box-shadow: 0 -6px 20px rgba(20, 18, 56, .14); padding: 6px 8px calc(6px + env(safe-area-inset-bottom)); gap: 8px; }
.dch-mobile-bar a { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 2px; padding: 6px 0; border-radius: 12px; color: var(--dch-navy); font-size: .74rem; font-weight: 700; }
.dch-mobile-bar a i { font-size: 1.15rem; }
.dch-mobile-bar .dch-mobile-book { background: var(--dch-pink); color: #fff; }
@media (max-width: 991px) {
    body { padding-bottom: 66px; }
    .dch-wa-float { display: none; }
    .back-to-top { bottom: 84px !important; right: 14px !important; }
}

/* Back-to-top and WhatsApp: same size, same right edge, stacked (WhatsApp above) */
.back-to-top { right: 20px !important; bottom: 26px !important; width: 52px !important; height: 52px !important; padding: 0 !important; display: flex; align-items: center; justify-content: center; z-index: 1039; }
@media (max-width: 991px) {
    .back-to-top { bottom: 84px !important; right: 14px !important; width: 46px !important; height: 46px !important; }
}

/* Meet the specialist: name card */
.dch-doc-card { text-align: center; padding: 22px 18px; border-radius: 16px; background: linear-gradient(135deg, #2d2a6e 0%, #3b3690 100%); color: #fff; position: relative; overflow: hidden; }
.dch-doc-card::after { content: ""; position: absolute; right: -40px; top: -40px; width: 130px; height: 130px; border-radius: 50%; background: rgba(229, 18, 125, .35); }
.dch-doc-name { position: relative; z-index: 1; color: #fff !important; font-size: clamp(1.4rem, 2.4vw, 1.9rem); font-weight: 800; margin: 0 0 4px; letter-spacing: -.01em; }
.dch-doc-title { position: relative; z-index: 1; display: inline-block; margin: 8px 0 10px; padding: 5px 16px; border-radius: 30px; background: var(--dch-pink); color: #fff; font-size: .85rem; font-weight: 700; }
.dch-doc-qual { position: relative; z-index: 1; display: block; color: rgba(255, 255, 255, .85); font-size: .9rem; line-height: 1.6; }
/* Department cards: keep the icon visible on hover (the theme slid a dark layer over it) */
.feature .feature-item .feature-icon::after { display: none !important; }
.feature .feature-item .feature-icon { background: var(--dch-tint); border-radius: 0 0 16px 16px; }
.feature .feature-item:hover .feature-icon { background: #fff; }
.feature .feature-item:hover { background: var(--dch-navy); }

/* About page: numbers strip, extra sections, flat quick cards */
.dch-stats { padding: 44px 0; background: #fff; border-bottom: 1px solid var(--dch-line); }
.dch-stat { text-align: center; padding: 6px 10px; }
.dch-stat strong { display: block; font-size: clamp(1.9rem, 3.4vw, 2.6rem); font-weight: 800; color: var(--dch-pink); line-height: 1.1; }
.dch-stat span { font-size: .92rem; color: var(--dch-text); font-weight: 600; }
.dch-block img { border-radius: 20px; width: 100%; box-shadow: var(--dch-shadow-lg); }
.dch-quick--flat { margin-top: 0; padding: 64px 0; }
