/* ================================================================
   pages.css — all section and page-specific CSS for Ayat Medical
   ================================================================ */

/* ── HEADER ───────────────────────────────────────────────────── */
.top-bar {
    background: #0d6e6e;
    padding: 6px 0;
    font-size: 0.8rem;
}

.top-bar-link {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    transition: color .15s;
}

.top-bar-link:hover { color: #fff; }

.main-navbar {
    background: #fff;
    border-bottom: 1px solid #eaf0f0;
    padding: 0.55rem 0;
    transition: box-shadow .25s, padding .25s;
    z-index: 1030;
}

.main-navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    padding: 0.3rem 0;
}

.nav-logo { border-radius: 6px; }

.brand-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #0d6e6e;
    line-height: 1.1;
}

.brand-sub {
    font-size: 0.7rem;
    color: #6c757d;
    line-height: 1;
}

.main-navbar .nav-link {
    color: #1a2e2e;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    transition: color .15s, background .15s;
    position: relative;
}

.main-navbar .nav-link:hover,
.main-navbar .nav-link.active {
    color: #0d6e6e;
    background: #f0fafa;
}

.main-navbar .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 2px;
    background: #0d6e6e;
    border-radius: 2px;
}

.nav-btn-primary {
    background: #0d6e6e;
    color: #fff !important;
    border: none;
    border-radius: 8px;
    padding: 0.45rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    transition: background .15s, transform .15s;
}

.nav-btn-primary:hover {
    background: #0a5858;
    transform: translateY(-1px);
}

.nav-btn-outline {
    background: transparent;
    color: #0d6e6e !important;
    border: 1.5px solid #0d6e6e;
    border-radius: 8px;
    padding: 0.42rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all .15s;
}

.nav-btn-outline:hover {
    background: #0d6e6e;
    color: #fff !important;
}

.nav-btn-ghost {
    background: transparent;
    color: #1a2e2e !important;
    border: 1.5px solid #dee2e6;
    border-radius: 8px;
    padding: 0.42rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all .15s;
}

.nav-btn-ghost:hover {
    border-color: #0d6e6e;
    color: #0d6e6e !important;
}

.navbar-toggler {
    border: none;
    padding: 6px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: transparent;
}

.navbar-toggler:focus { box-shadow: none; }

.toggler-bar {
    display: block;
    width: 26px;
    height: 2px;
    background: #1a2e2e;
    border-radius: 2px;
    transition: transform .25s, opacity .25s;
}

.navbar-toggler[aria-expanded="true"] .toggler-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .toggler-bar:nth-child(2) {
    opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .toggler-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 991.98px) {
    #navCollapse {
        background: #fff;
        border-top: 1px solid #eaf0f0;
        padding: 1rem 0.5rem;
        margin-top: 0.5rem;
        border-radius: 0 0 12px 12px;
    }

    .main-navbar .nav-link.active::after { display: none; }

    .main-navbar .nav-link {
        padding: 0.65rem 0.75rem;
        border-radius: 8px;
    }

    .nav-btn-primary,
    .nav-btn-outline,
    .nav-btn-ghost {
        width: 100%;
        text-align: center;
    }
}

.dropdown-menu {
    border-radius: 10px;
    padding: 6px;
    font-size: 0.875rem;
}

.dropdown-item {
    border-radius: 6px;
    padding: 8px 12px;
    transition: background .12s;
}

.dropdown-item:hover { background: #f0fafa; }

/* ── HERO ─────────────────────────────────────────────────────── */
.hero-section {
    background: linear-gradient(135deg, #073d3d 0%, #0d6e6e 55%, #0a5858 100%);
    color: #fff;
    padding: 5rem 0 6.5rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.28);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 1.35rem;
    backdrop-filter: blur(8px);
}

.hero-badge .live-dot {
    width: 9px; height: 9px;
    background: #6effa8;
    border-radius: 50%;
    animation: blink 1.6s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes blink {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.4; transform: scale(0.7); }
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.08;
    margin-bottom: 0.85rem;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.82);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-phone-block {
    background: rgba(255,255,255,0.1);
    border: 1.5px solid rgba(255,255,255,0.25);
    border-radius: 16px;
    padding: 18px 22px;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.phone-icon-ring {
    width: 56px; height: 56px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    position: relative;
    flex-shrink: 0;
}

.phone-icon-ring::before, .phone-icon-ring::after {
    content: '';
    position: absolute;
    inset: -7px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.25);
    animation: ripple 2.2s ease-out infinite;
}

.phone-icon-ring::after { animation-delay: 1.1s; }

@keyframes ripple {
    0%   { transform: scale(1); opacity: 0.7; }
    100% { transform: scale(1.65); opacity: 0; }
}

.phone-icon-ring i { font-size: 1.4rem; color: #6effa8; }

.hero-phone-link {
    font-size: 2.4rem;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    letter-spacing: 0.015em;
    line-height: 1;
    display: block;
    transition: color .15s;
}

.hero-phone-link:hover { color: #6effa8; }

.hero-phone-label {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 3px;
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 10px; }

.btn-hero-white {
    background: #fff;
    color: #0d6e6e;
    border: none;
    border-radius: 10px;
    padding: 0.68rem 1.6rem;
    font-weight: 700;
    font-size: 0.92rem;
    text-decoration: none;
    transition: all .2s;
    display: inline-flex;
    align-items: center;
}

.btn-hero-white:hover {
    background: #6effa8;
    color: #063d3d;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.btn-hero-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.45);
    border-radius: 10px;
    padding: 0.66rem 1.6rem;
    font-weight: 600;
    font-size: 0.92rem;
    text-decoration: none;
    transition: all .2s;
    display: inline-flex;
    align-items: center;
}

.btn-hero-outline:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.1);
    color: #fff;
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 2.5rem;
}

.hero-stat {
    background: rgba(255,255,255,0.09);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 14px;
    padding: 14px 22px;
    flex: 1 1 130px;
    text-align: center;
    backdrop-filter: blur(6px);
}

.hero-stat-num {
    font-size: 1.65rem;
    font-weight: 800;
    color: #6effa8;
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.7);
    margin-top: 5px;
    line-height: 1.3;
}

.hero-img-col img {
    width: 100%;
    max-width: 440px;
    border-radius: 22px;
    box-shadow: 0 24px 70px rgba(0,0,0,0.35);
    border: 2px solid rgba(255,255,255,0.1);
    object-fit: cover;
}

.hero-wave {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    line-height: 0;
    pointer-events: none;
}

@media (max-width: 991px) {
    .hero-title { font-size: 2.2rem; }
    .hero-phone-link { font-size: 1.9rem; }
    .hero-section { padding: 3.5rem 0 5.5rem; }
}

@media (max-width: 575px) {
    .hero-title { font-size: 1.8rem; }
    .hero-phone-link { font-size: 1.55rem; }
    .hero-img-col { display: none; }
    .hero-phone-block { flex-direction: column; text-align: center; width: 100%; }
}

.director-strip {
    background: #fff;
    padding: 3rem 0;
    border-bottom: 1px solid #eaf3f3;
}

.director-eyebrow {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #0d6e6e;
    margin-bottom: 4px;
}

.director-name { color: #0f2727; }

.director-role {
    font-size: 0.78rem;
    color: #888;
    margin-bottom: 8px;
}

.director-photo {
    width: 110px; height: 110px;
    object-fit: cover;
    object-position: top;
    border-radius: 50%;
    border: 3px solid #0d6e6e;
    box-shadow: 0 4px 16px rgba(13,110,110,0.15);
}

.director-quote {
    font-size: 0.98rem;
    color: #444;
    line-height: 1.8;
    font-style: italic;
    border-left: 3px solid #0d6e6e;
    padding-left: 16px;
    margin-top: 10px;
}

/* ── TOP SERVICES ─────────────────────────────────────────────── */
.top-services-section {
    padding: 80px 0;
    background: #fff;
}

.ts-header { text-align: center; margin-bottom: 48px; }

.ts-badge {
    display: inline-block;
    background: #e6f7f7;
    color: #0d6e6e;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 50px;
    margin-bottom: 12px;
}

.ts-title {
    font-size: 2rem;
    font-weight: 800;
    color: #0f2727;
    margin-bottom: 10px;
}

.ts-sub {
    font-size: 0.95rem;
    color: #6c757d;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}

.ts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 20px;
}

.ts-card {
    background: #fff;
    border: 1.5px solid #e6f7f7;
    border-radius: 16px;
    padding: 28px 20px 24px;
    text-align: center;
    transition: all .25s;
    cursor: default;
}

.ts-card:hover {
    border-color: #0d6e6e;
    box-shadow: 0 10px 32px rgba(13,110,110,0.12);
    transform: translateY(-5px);
}

.ts-icon-wrap {
    width: 80px; height: 80px;
    border-radius: 50%;
    background: #e6f7f7;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 18px;
    overflow: hidden;
    transition: background .25s;
}

.ts-card:hover .ts-icon-wrap { background: #0d6e6e; }

.ts-icon-wrap img {
    width: 50px; height: 50px;
    object-fit: cover;
    border-radius: 8px;
    transition: filter .25s;
}

.ts-card-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #0f2727;
    margin-bottom: 6px;
    transition: color .25s;
}

.ts-card:hover .ts-card-title { color: #0d6e6e; }

.ts-card-sub {
    font-size: 0.78rem;
    color: #6c757d;
    line-height: 1.5;
    margin-bottom: 0;
}

@media (max-width: 575px) {
    .ts-title { font-size: 1.6rem; }
    .ts-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .top-services-section { padding: 50px 0; }
}

/* ── OUR DOCTORS ──────────────────────────────────────────────── */
.our-doctors-section {
    padding: 80px 0;
    background: #f5fafa;
}

.od-head {
    text-align: center;
    margin-bottom: 50px;
}

.od-badge {
    display: inline-block;
    background: #e6f7f7;
    color: #0d6e6e;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 50px;
    margin-bottom: 12px;
}

.od-title {
    font-size: 2rem;
    font-weight: 700;
    color: #0f2727;
    margin-bottom: 10px;
}

.od-sub {
    color: #6c757d;
    font-size: 0.95rem;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.7;
}

.dr-hcard {
    background: #fff;
    border-radius: 16px;
    border: 1.5px solid #eaf3f3;
    overflow: hidden;
    display: flex;
    transition: box-shadow .25s, transform .25s, border-color .25s;
    height: 100%;
}

.dr-hcard:hover {
    box-shadow: 0 10px 32px rgba(13,110,110,0.12);
    transform: translateY(-4px);
    border-color: #0d6e6e;
}

.dr-hcard-photo {
    flex: 0 0 130px;
    width: 130px;
    position: relative;
    overflow: hidden;
}

.dr-hcard-photo img {
    width: 130px;
    height: 100%;
    min-height: 190px;
    object-fit: cover;
    object-position: top;
    display: block;
    transition: transform .4s ease;
}

.dr-hcard:hover .dr-hcard-photo img {
    transform: scale(1.05);
}

.dr-gender-tag {
    position: absolute;
    top: 8px;
    left: 8px;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 20px;
}

.dr-hcard-info {
    flex: 1;
    padding: 18px 16px 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 0;
}

.dr-hcard-name {
    font-size: 1rem;
    font-weight: 700;
    color: #0f2727;
    margin-bottom: 1px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dr-hcard-name-en {
    font-size: 0.75rem;
    color: #999;
    margin-bottom: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dr-hcard-specialist {
    font-size: 0.82rem;
    font-weight: 600;
    color: #0d6e6e;
    line-height: 1.4;
    margin-bottom: 1px;
}

.dr-hcard-specialist-en {
    font-size: 0.72rem;
    color: #aaa;
    line-height: 1.3;
    margin-bottom: 8px;
}

.dr-hcard-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 10px;
}

.dr-meta-row {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    font-size: 0.75rem;
    color: #555;
    line-height: 1.4;
}

.dr-meta-row i {
    color: #0d6e6e;
    font-size: 0.7rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.dr-hcard-schedule {
    background: #f0fafa;
    border-left: 3px solid #0d6e6e;
    border-radius: 0 6px 6px 0;
    padding: 5px 9px;
    font-size: 0.72rem;
    color: #444;
    line-height: 1.4;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.dr-hcard-schedule i { color: #0d6e6e; margin-right: 4px; }

.btn-dr-appt {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #0d6e6e;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 6px 14px;
    font-size: 0.78rem;
    font-weight: 600;
    text-decoration: none;
    transition: background .15s;
    align-self: flex-start;
}

.btn-dr-appt:hover {
    background: #0a5858;
    color: #fff;
}

.btn-see-all {
    background: #0d6e6e;
    color: #fff;
    border-radius: 10px;
    padding: 0.65rem 2rem;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background .2s, transform .2s;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-see-all:hover {
    background: #0a5858;
    color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 575px) {
    .dr-hcard-photo { flex: 0 0 100px; width: 100px; }
    .dr-hcard-photo img { width: 100px; }
    .od-title { font-size: 1.6rem; }
    .our-doctors-section { padding: 50px 0; }
}

/* ── CTA PHONE ────────────────────────────────────────────────── */
.cta-phone-section {
    background: linear-gradient(120deg, #063d3d 0%, #0d6e6e 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.cta-phone-section::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 260px; height: 260px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
}

.cta-phone-section::after {
    content: '';
    position: absolute;
    bottom: -80px; left: -40px;
    width: 320px; height: 320px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
}

.cta-eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #6effa8;
    margin-bottom: 10px;
}

.cta-headline {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.5rem;
}

.cta-sub {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.75);
    margin-bottom: 0;
}

.cta-phone-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.cta-phone-icon {
    width: 64px; height: 64px;
    background: rgba(255,255,255,0.12);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    position: relative;
    flex-shrink: 0;
    border: 2px solid rgba(255,255,255,0.2);
}

.cta-phone-icon i { font-size: 1.6rem; color: #6effa8; }

.cta-phone-icon::before, .cta-phone-icon::after {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.15);
    animation: cta-ripple 2.4s ease-out infinite;
}

.cta-phone-icon::after { animation-delay: 1.2s; }

@keyframes cta-ripple {
    0%   { transform: scale(1); opacity: 0.7; }
    100% { transform: scale(1.8); opacity: 0; }
}

.cta-number {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    letter-spacing: 0.02em;
    line-height: 1;
    transition: color .15s;
    display: block;
}

.cta-number:hover { color: #6effa8; }

.cta-number-label {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.55);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 4px;
}

.cta-divider {
    width: 1px;
    height: 80px;
    background: rgba(255,255,255,0.2);
    margin: 0 2rem;
}

.btn-cta-appt {
    background: #fff;
    color: #0d6e6e;
    border: none;
    border-radius: 12px;
    padding: 0.85rem 2rem;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all .2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-cta-appt:hover {
    background: #6effa8;
    color: #063d3d;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

@media (max-width: 767px) {
    .cta-headline { font-size: 1.5rem; }
    .cta-number { font-size: 2.1rem; }
    .cta-divider { display: none; }
    .cta-phone-section { padding: 3rem 0; }
}

/* ── DEPARTMENTS ──────────────────────────────────────────────── */
.dept-section {
    padding: 80px 0;
    background: #f5fafa;
}

.dept-header { text-align: center; margin-bottom: 48px; }

.dept-badge {
    display: inline-block;
    background: #e6f7f7;
    color: #0d6e6e;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 50px;
    margin-bottom: 12px;
}

.dept-title {
    font-size: 2rem;
    font-weight: 800;
    color: #0f2727;
    margin-bottom: 10px;
}

.dept-sub {
    font-size: 0.95rem;
    color: #6c757d;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}

.dept-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.dept-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px 16px 22px;
    text-align: center;
    border: 1.5px solid #eaf3f3;
    transition: all .25s;
}

.dept-card:hover {
    border-color: #0d6e6e;
    box-shadow: 0 12px 36px rgba(13,110,110,0.12);
    transform: translateY(-5px);
}

.dept-icon-circle {
    width: 72px; height: 72px;
    border-radius: 50%;
    background: #e6f7f7;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 18px;
    transition: background .25s;
}

.dept-card:hover .dept-icon-circle { background: #0d6e6e; }

.dept-icon-circle i {
    font-size: 1.6rem;
    color: #0d6e6e;
    transition: color .25s;
}

.dept-card:hover .dept-icon-circle i { color: #fff; }

.dept-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: #0f2727;
    margin-bottom: 6px;
    transition: color .25s;
}

.dept-card:hover .dept-name { color: #0d6e6e; }

.dept-desc {
    font-size: 0.75rem;
    color: #6c757d;
    line-height: 1.5;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 991px) {
    .dept-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 575px) {
    .dept-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .dept-title { font-size: 1.6rem; }
    .dept-section { padding: 50px 0; }
}

/* ── DIAGNOSTIC SERVICES ──────────────────────────────────────── */
.diag-section {
    padding: 80px 0;
    background: #fff;
}

.diag-header { text-align: center; margin-bottom: 48px; }

.diag-badge {
    display: inline-block;
    background: #e6f7f7;
    color: #0d6e6e;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 50px;
    margin-bottom: 12px;
}

.diag-title {
    font-size: 2rem;
    font-weight: 800;
    color: #0f2727;
    margin-bottom: 10px;
}

.diag-sub {
    font-size: 0.95rem;
    color: #6c757d;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}

.diag-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 18px;
}

.diag-card {
    background: #f5fafa;
    border: 1.5px solid #eaf3f3;
    border-radius: 16px;
    padding: 28px 16px 22px;
    text-align: center;
    transition: all .25s;
    position: relative;
    overflow: hidden;
}

.diag-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: #0d6e6e;
    transform: scaleX(0);
    transition: transform .25s;
    border-radius: 16px 16px 0 0;
}

.diag-card:hover {
    border-color: #0d6e6e;
    box-shadow: 0 12px 36px rgba(13,110,110,0.1);
    transform: translateY(-5px);
    background: #fff;
}

.diag-card:hover::before { transform: scaleX(1); }

.diag-icon-wrap {
    width: 76px; height: 76px;
    border-radius: 50%;
    background: #e6f7f7;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px;
    transition: background .25s;
    font-size: 2rem;
    color: #0d6e6e;
    line-height: 1;
}

.diag-card:hover .diag-icon-wrap {
    background: #0d6e6e;
    color: #fff;
}

.diag-icon-wrap svg,
.diag-icon-wrap i,
.diag-icon-wrap img {
    max-width: 38px;
    max-height: 38px;
    transition: filter .25s;
}

.diag-card-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #0f2727;
    margin-bottom: 6px;
    transition: color .25s;
}

.diag-card:hover .diag-card-title { color: #0d6e6e; }

.diag-card-desc {
    font-size: 0.75rem;
    color: #6c757d;
    line-height: 1.5;
    margin-bottom: 0;
}

@media (max-width: 575px) {
    .diag-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .diag-title { font-size: 1.6rem; }
    .diag-section { padding: 50px 0; }
}

/* ── SERVICES LIST ────────────────────────────────────────────── */
.svc-list-section {
    padding: 80px 0;
    background: #f5fafa;
}

.svc-header { text-align: center; margin-bottom: 48px; }

.svc-badge {
    display: inline-block;
    background: #e6f7f7;
    color: #0d6e6e;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 50px;
    margin-bottom: 12px;
}

.svc-title {
    font-size: 2rem;
    font-weight: 800;
    color: #0f2727;
    margin-bottom: 0;
}

.svc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.svc-item {
    background: #fff;
    border: 1.5px solid #eaf3f3;
    border-radius: 14px;
    padding: 20px 16px 18px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    transition: all .22s;
}

.svc-item:hover {
    border-color: #0d6e6e;
    box-shadow: 0 8px 28px rgba(13,110,110,0.1);
    transform: translateY(-3px);
}

.svc-num {
    width: 42px; height: 42px;
    min-width: 42px;
    border-radius: 10px;
    background: #e6f7f7;
    color: #0d6e6e;
    font-size: 1rem;
    font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    transition: background .22s, color .22s;
}

.svc-item:hover .svc-num {
    background: #0d6e6e;
    color: #fff;
}

.svc-body {
    font-size: 0.85rem;
    color: #374151;
    line-height: 1.55;
    padding-top: 8px;
}

.svc-body p { margin-bottom: 0; }

@media (max-width: 991px) {
    .svc-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 575px) {
    .svc-grid { grid-template-columns: 1fr; gap: 12px; }
    .svc-title { font-size: 1.6rem; }
    .svc-list-section { padding: 50px 0; }
}

/* ── ABOUT US ─────────────────────────────────────────────────── */
.about-us-section {
    padding: 80px 0;
    background: #fff;
}

.about-badge {
    display: inline-block;
    background: #e6f7f7;
    color: #0d6e6e;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 50px;
    margin-bottom: 12px;
}

.about-title {
    font-size: 2rem;
    font-weight: 800;
    color: #0f2727;
    margin-bottom: 12px;
    line-height: 1.2;
}

.about-lead {
    font-size: 0.95rem;
    color: #6c757d;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-features { margin-bottom: 24px; }

.about-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
}

.about-feature-icon {
    width: 40px; height: 40px;
    min-width: 40px;
    border-radius: 10px;
    background: #e6f7f7;
    display: flex; align-items: center; justify-content: center;
    color: #0d6e6e;
    font-size: 0.9rem;
}

.about-feature-text {
    font-size: 0.85rem;
    color: #374151;
    line-height: 1.5;
    padding-top: 8px;
    font-weight: 500;
}

.about-contact-strip {
    background: #f5fafa;
    border-radius: 14px;
    padding: 18px 20px;
    margin-bottom: 24px;
}

.about-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.82rem;
    color: #444;
    line-height: 1.5;
}

.about-contact-item:last-child { margin-bottom: 0; }

.about-contact-item i {
    color: #0d6e6e;
    font-size: 0.85rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.about-contact-item a {
    color: #0d6e6e;
    font-weight: 700;
    text-decoration: none;
    transition: color .15s;
}

.about-contact-item a:hover { color: #0a5858; text-decoration: underline; }

.btn-about-appt {
    background: #0d6e6e;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 0.7rem 1.8rem;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all .2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-about-appt:hover {
    background: #0a5858;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13,110,110,0.25);
}

.about-img-wrap { position: relative; }

.about-img-wrap img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 12px 40px rgba(13,110,110,0.12);
    object-fit: cover;
    max-height: 520px;
}

.about-stat-badge {
    position: absolute;
    bottom: 24px;
    left: -16px;
    background: #0d6e6e;
    color: #fff;
    border-radius: 14px;
    padding: 14px 20px;
    box-shadow: 0 8px 28px rgba(13,110,110,0.3);
    text-align: center;
    min-width: 120px;
}

.about-stat-badge .num {
    font-size: 1.8rem;
    font-weight: 800;
    color: #6effa8;
    line-height: 1;
}

.about-stat-badge .lbl {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.8);
    margin-top: 4px;
    line-height: 1.3;
}

@media (max-width: 991px) {
    .about-stat-badge { left: 10px; }
}

@media (max-width: 575px) {
    .about-title { font-size: 1.6rem; }
    .about-us-section { padding: 50px 0; }
    .about-stat-badge { position: static; margin-top: 14px; display: inline-block; }
}

/* ── BREADCRUMB ───────────────────────────────────────────────── */
.page-breadcrumb {
    background: linear-gradient(90deg, #f0fafa 0%, #e6f7f7 100%);
    border-bottom: 1px solid #d4eeee;
    padding: 18px 0;
}

.page-breadcrumb h1 {
    font-size: 1.45rem;
    font-weight: 800;
    color: #0f2727;
    margin: 0;
}

.page-breadcrumb .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    font-size: 0.8rem;
}

.page-breadcrumb .breadcrumb-item a {
    color: #0d6e6e;
    text-decoration: none;
    font-weight: 500;
}

.page-breadcrumb .breadcrumb-item a:hover { text-decoration: underline; }

.page-breadcrumb .breadcrumb-item.active { color: #6c757d; }

.page-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    content: '›';
    color: #0d6e6e;
    font-size: 1rem;
    line-height: 1;
}

/* ── SEARCH PANEL ─────────────────────────────────────────────── */
.search-panel-wrap {
    background: #fff;
    border-radius: 14px;
    padding: 1.5rem;
    box-shadow: 0 4px 24px rgba(13,110,110,0.08);
    border: 1px solid #e6f7f7;
    margin: 1.5rem 0;
}

.search-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: #0d6e6e;
    margin-bottom: 5px;
    display: block;
}

.input-icon-wrap { position: relative; }

.input-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #0d6e6e;
    font-size: 0.85rem;
    z-index: 5;
}

.search-field {
    height: 48px;
    border-radius: 10px;
    border: 1.5px solid #d0eaea;
    padding-left: 40px;
    font-size: 0.9rem;
    transition: border-color .15s, box-shadow .15s;
}

.search-field:focus {
    border-color: #0d6e6e;
    box-shadow: 0 0 0 3px rgba(13,110,110,0.1);
    outline: none;
}

.search-submit-btn {
    height: 48px;
    background: #0d6e6e;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background .15s;
}

.search-submit-btn:hover { background: #0a5858; color: #fff; }

/* ── FIND DOCTOR PAGE ─────────────────────────────────────────── */
.find-doctor-page {
    background: #f5fafa;
    min-height: 60vh;
    padding-bottom: 60px;
}

.result-summary {
    font-size: 0.875rem;
    color: #6c757d;
    padding: 8px 0 16px;
}

.result-summary strong { color: #0d6e6e; }

.doc-list-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    border: 1px solid #eaf3f3;
    display: flex;
    gap: 0;
    overflow: hidden;
    transition: box-shadow .2s, transform .2s;
}

.doc-list-card:hover {
    box-shadow: 0 8px 28px rgba(13,110,110,0.1);
    transform: translateY(-2px);
}

.doc-photo-wrap {
    flex: 0 0 130px;
    position: relative;
}

.doc-photo-wrap img {
    width: 130px;
    height: 100%;
    min-height: 180px;
    object-fit: cover;
    object-position: top;
    display: block;
}

.doc-gender-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 20px;
}

.doc-info {
    flex: 1;
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.doc-name-bn {
    font-size: 1rem;
    font-weight: 700;
    color: #0f2727;
    margin-bottom: 1px;
}

.doc-name-en {
    font-size: 0.78rem;
    color: #888;
    margin-bottom: 8px;
}

.doc-specialist-bn {
    font-size: 0.82rem;
    font-weight: 600;
    color: #0d6e6e;
    line-height: 1.4;
    margin-bottom: 1px;
}

.doc-specialist-en {
    font-size: 0.75rem;
    color: #999;
    line-height: 1.3;
    margin-bottom: 8px;
}

.doc-meta { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 10px; }

.doc-meta-item {
    display: flex;
    align-items: flex-start;
    gap: 5px;
    font-size: 0.76rem;
    color: #555;
    line-height: 1.4;
}

.doc-meta-item i {
    color: #0d6e6e;
    margin-top: 2px;
    flex-shrink: 0;
    font-size: 0.7rem;
}

.doc-meta-item-full { width: 100%; }

.doc-schedule-box {
    background: #f0fafa;
    border-left: 3px solid #0d6e6e;
    border-radius: 0 6px 6px 0;
    padding: 6px 10px;
    font-size: 0.76rem;
    color: #444;
    line-height: 1.5;
    margin-bottom: 12px;
}

.doc-schedule-box strong { color: #0d6e6e; font-size: 0.72rem; }

.doc-actions { display: flex; gap: 8px; flex-wrap: wrap; }

.btn-appt {
    background: #0d6e6e;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 6px 14px;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: background .15s;
}

.btn-appt:hover { background: #0a5858; color: #fff; }

.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #6c757d;
}

.empty-state i { font-size: 3rem; color: #cde8e8; margin-bottom: 16px; }
.empty-state h5 { color: #444; }

@media (max-width: 575px) {
    .doc-list-card { flex-direction: column; }
    .doc-photo-wrap { flex: none; width: 100%; }
    .doc-photo-wrap img { width: 100%; height: 200px; min-height: unset; }
    .doc-gender-badge { top: 10px; left: 10px; }
}

/* ── APPOINTMENT PAGE ─────────────────────────────────────────── */
.appt-page {
    background: #f5fafa;
    padding: 50px 0 70px;
}

.appt-info-panel {
    background: linear-gradient(145deg, #073d3d 0%, #0d6e6e 100%);
    border-radius: 20px;
    padding: 40px 32px;
    color: #fff;
    height: 100%;
}

.appt-info-panel h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.appt-info-panel p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    margin-bottom: 28px;
}

.appt-info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
}

.appt-info-icon {
    width: 40px; height: 40px;
    min-width: 40px;
    border-radius: 10px;
    background: rgba(255,255,255,0.12);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.95rem;
    color: #6effa8;
}

.appt-info-text { font-size: 0.82rem; color: rgba(255,255,255,0.8); line-height: 1.5; }
.appt-info-text strong { color: #fff; display: block; margin-bottom: 2px; }

.appt-phone-big {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    margin-top: 24px;
    transition: background .2s;
}

.appt-phone-big:hover { background: rgba(255,255,255,0.18); }
.appt-phone-big i { color: #6effa8; font-size: 1.2rem; }
.appt-phone-big span { font-size: 1.3rem; font-weight: 800; color: #fff; }

.appt-form-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 36px;
    box-shadow: 0 4px 32px rgba(13,110,110,0.08);
    border: 1.5px solid #eaf3f3;
}

.appt-form-badge {
    display: inline-block;
    background: #e6f7f7;
    color: #0d6e6e;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 50px;
    margin-bottom: 10px;
}

.appt-form-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0f2727;
    margin-bottom: 6px;
}

.appt-form-sub {
    font-size: 0.82rem;
    color: #6c757d;
    margin-bottom: 28px;
}

.appt-form-card .form-label {
    font-size: 0.78rem;
    font-weight: 700;
    color: #0f2727;
    margin-bottom: 5px;
}

.appt-form-card .form-control,
.appt-form-card .form-select {
    border: 1.5px solid #d0eaea;
    border-radius: 10px;
    font-size: 0.88rem;
    padding: 10px 14px;
    height: 46px;
    transition: border-color .15s, box-shadow .15s;
}

.appt-form-card textarea.form-control { height: auto; }

.appt-form-card .form-control:focus,
.appt-form-card .form-select:focus {
    border-color: #0d6e6e;
    box-shadow: 0 0 0 3px rgba(13,110,110,0.1);
    outline: none;
}

.btn-appt-submit {
    background: #0d6e6e;
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 0.85rem 0;
    font-weight: 700;
    font-size: 1rem;
    width: 100%;
    transition: all .2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 8px;
}

.btn-appt-submit:hover {
    background: #0a5858;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(13,110,110,0.3);
}

.select2-container--default .select2-selection--single {
    height: 46px !important;
    border: 1.5px solid #d0eaea !important;
    border-radius: 10px !important;
    padding: 6px 12px !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 32px !important;
    font-size: 0.88rem;
    color: #374151;
}

.select2-container--default.select2-container--focus .select2-selection--single {
    border-color: #0d6e6e !important;
    box-shadow: 0 0 0 3px rgba(13,110,110,0.1) !important;
}

@media (max-width: 991px) {
    .appt-info-panel { margin-bottom: 24px; }
    .appt-form-card { padding: 24px 18px; }
    .appt-page { padding: 30px 0 50px; }
}

/* ── CONTACT PAGE ─────────────────────────────────────────────── */
.contact-page { background: #f5fafa; padding-bottom: 70px; }

.contact-info-card {
    background: #fff;
    border: 1.5px solid #eaf3f3;
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    transition: all .25s;
    height: 100%;
}

.contact-info-card:hover {
    border-color: #0d6e6e;
    box-shadow: 0 10px 32px rgba(13,110,110,0.1);
    transform: translateY(-4px);
}

.contact-card-icon {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: #e6f7f7;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.4rem;
    color: #0d6e6e;
    transition: background .25s, color .25s;
}

.contact-info-card:hover .contact-card-icon {
    background: #0d6e6e;
    color: #fff;
}

.contact-card-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: #0d6e6e;
    margin-bottom: 6px;
}

.contact-card-value {
    font-size: 0.88rem;
    color: #374151;
    line-height: 1.6;
}

.contact-card-value a {
    color: #0d6e6e;
    font-weight: 700;
    text-decoration: none;
    font-size: 1rem;
}

.contact-card-value a:hover { text-decoration: underline; }

.map-wrap {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(13,110,110,0.08);
    border: 1.5px solid #eaf3f3;
}

.contact-form-card {
    background: #fff;
    border-radius: 18px;
    padding: 40px 36px;
    box-shadow: 0 4px 32px rgba(13,110,110,0.07);
    border: 1.5px solid #eaf3f3;
}

.form-section-badge {
    display: inline-block;
    background: #e6f7f7;
    color: #0d6e6e;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 50px;
    margin-bottom: 10px;
}

.form-section-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: #0f2727;
    margin-bottom: 6px;
}

.form-section-sub {
    font-size: 0.85rem;
    color: #6c757d;
    margin-bottom: 28px;
}

.contact-form-card .form-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: #0f2727;
    margin-bottom: 5px;
}

.contact-form-card .form-control,
.contact-form-card .form-select {
    border: 1.5px solid #d0eaea;
    border-radius: 10px;
    font-size: 0.88rem;
    padding: 10px 14px;
    transition: border-color .15s, box-shadow .15s;
}

.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
    border-color: #0d6e6e;
    box-shadow: 0 0 0 3px rgba(13,110,110,0.1);
    outline: none;
}

.btn-contact-submit {
    background: #0d6e6e;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 0.75rem 2.5rem;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all .2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-contact-submit:hover {
    background: #0a5858;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13,110,110,0.25);
}

@media (max-width: 575px) {
    .contact-form-card { padding: 24px 16px; }
    .form-section-title { font-size: 1.3rem; }
}

/* ── FOOTER ───────────────────────────────────────────────────── */
.site-footer {
    background: linear-gradient(135deg, #063d3d 0%, #0a4545 100%);
    color: rgba(255,255,255,0.85);
    padding: 60px 0 0;
}

.footer-brand-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
}

.footer-brand-sub {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 14px;
}

.footer-brand-desc {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    margin-bottom: 18px;
}

.footer-socials { display: flex; gap: 10px; }

.footer-socials a {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.75);
    font-size: 0.85rem;
    text-decoration: none;
    transition: all .2s;
}

.footer-socials a:hover {
    background: #0d6e6e;
    border-color: #0d6e6e;
    color: #fff;
    transform: translateY(-3px);
}

.footer-col-title {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: #6effa8;
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 28px; height: 2px;
    background: #0d6e6e;
    border-radius: 2px;
}

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 9px; }

.footer-links a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color .15s, padding-left .15s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-links a:hover { color: #6effa8; padding-left: 4px; }
.footer-links a i { font-size: 0.65rem; color: #0d6e6e; }

.footer-contact { list-style: none; padding: 0; margin: 0; }

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.5;
}

.footer-contact li i {
    color: #6effa8;
    margin-top: 2px;
    flex-shrink: 0;
    font-size: 0.85rem;
}

.footer-contact a { color: rgba(255,255,255,0.75); text-decoration: none; transition: color .15s; }
.footer-contact a:hover { color: #6effa8; }

.footer-phone-big {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    padding: 12px 16px;
    margin-bottom: 14px;
    text-decoration: none;
    transition: background .2s, border-color .2s;
}

.footer-phone-big:hover { background: rgba(13,110,110,0.3); border-color: #0d6e6e; }
.footer-phone-big i { color: #6effa8; font-size: 1.1rem; }
.footer-phone-big span { font-size: 1.15rem; font-weight: 800; color: #fff; letter-spacing: 0.02em; }

.footer-hours { list-style: none; padding: 0; margin: 0; }

.footer-hours li {
    display: flex;
    justify-content: space-between;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.6);
    padding: 5px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-hours li:last-child { border-bottom: none; }
.footer-hours li span:first-child { color: rgba(255,255,255,0.8); }
.footer-hours-emergency { color: #6effa8 !important; font-weight: 700; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 50px;
    padding: 18px 0;
}

.footer-bottom-text { font-size: 0.78rem; color: rgba(255,255,255,0.45); margin: 0; }
.footer-bottom-text a { color: #6effa8; text-decoration: none; }
.footer-bottom-text a:hover { text-decoration: underline; }
