/* ===================================================
   MediCare Clinic — style.css
   Design system: Inter (body/UI) + DM Serif Display (headings)
   Palette: Navy #0f1c2e | Teal #0a8c7d | Teal-light #14b8a6
            Slate #475569 | Mist #f4f7fa | White #fff
   =================================================== */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

/* ---------- Reset & Base ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --navy:        #0a3d35;
    --navy-deep:   #072e28;
    --navy-mid:    #0d4f44;
    --teal:        #0a8c7d;
    --teal-light:  #14b8a6;
    --teal-pale:   #e6f7f5;
    --teal-glow:   rgba(10,140,125,0.15);
    --slate:       #475569;
    --slate-light: #64748b;
    --slate-pale:  #cbd5e1;
    --border:      #e2e8f0;
    --mist:        #f4f7fa;
    --white:       #ffffff;
    --red:         #dc2626;
    --green:       #25d366;
    --shadow-sm:   0 1px 4px rgba(0,0,0,0.06);
    --shadow-md:   0 4px 16px rgba(0,0,0,0.09);
    --shadow-lg:   0 10px 32px rgba(0,0,0,0.12);
    --shadow-teal: 0 6px 24px rgba(10,140,125,0.22);
    --radius-sm:   8px;
    --radius-md:   14px;
    --radius-lg:   20px;
    --radius-pill: 50px;
    --max-w:       1320px;
    --font-serif:  'Manrope', 'Segoe UI', sans-serif;
    --font-sans:   'Inter', 'Segoe UI', sans-serif;
    --ease:        cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.65;
    color: var(--slate);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { font-family: inherit; }

/* ==============================================
   TOP BAR
   ============================================== */
.top-bar {
    background: var(--navy);
    color: var(--white);
    padding: 0.55rem 5%;
    font-size: 0.84rem;
    border-bottom: 2px solid var(--teal);
}
.top-bar-content {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.6rem;
}
.top-bar-left { display: flex; gap: 1.75rem; align-items: center; }
.top-bar-left a, .top-bar-left span { color: #e2eef6; transition: color 0.25s; }
.top-bar-left a:hover { color: var(--teal-light); }
.top-bar-left i { margin-right: 0.4rem; color: var(--teal-light); }
.top-bar-right { display: flex; align-items: center; gap: 0.75rem; }
.follow-text { color: #e2eef6; font-weight: 500; }
.top-social { display: flex; gap: 0.65rem; }
.top-social a { color: #e2eef6; font-size: 0.95rem; transition: color 0.25s, transform 0.25s; }
.top-social a:hover { color: var(--teal-light); transform: translateY(-2px); }

/* ==============================================
   HEADER & NAVIGATION
   ============================================== */
header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 5%;
    max-width: var(--max-w);
    margin: 0 auto;
}
.logo {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-family: var(--font-serif);
    font-size: 1.6rem;
    color: var(--navy);
    text-decoration: none;
}
.logo-circle {
    width: 42px; height: 42px;
    background: linear-gradient(135deg, var(--teal), var(--teal-light));
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--white);
    font-family: var(--font-serif);
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-teal);
}
.nav-links {
    display: flex;
    list-style: none;
    gap: 0.1rem;
    margin: 0 auto;
}
.nav-links li { position: relative; }
.nav-links a {
    text-decoration: none;
    color: var(--slate);
    font-weight: 500;
    font-size: 0.93rem;
    padding: 0.48rem 0.85rem;
    border-radius: var(--radius-sm);
    transition: color 0.25s, background 0.25s;
    display: flex; align-items: center; gap: 0.3rem;
}
.nav-links a:hover, .nav-links a.active { color: var(--teal); background: var(--teal-pale); }
.nav-links .dropdown-toggle i { font-size: 0.7rem; transition: transform 0.3s var(--ease); }
.nav-links li:hover .dropdown-toggle i { transform: rotate(180deg); }

.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px); left: 0;
    background: var(--white);
    min-width: 218px;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-md);
    padding: 0.65rem 0;
    opacity: 0; visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0.25s;
    z-index: 1000;
    border: 1px solid var(--border);
}
.nav-links li:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a {
    display: flex; align-items: center; gap: 0.7rem;
    padding: 0.6rem 1.2rem;
    color: var(--slate); font-size: 0.9rem;
    transition: background 0.2s, color 0.2s, padding-left 0.2s;
    border-radius: 0; background: none;
}
.dropdown-menu a:hover { background: var(--teal-pale); color: var(--teal); padding-left: 1.5rem; }
.dropdown-menu a i { font-size: 0.95rem; width: 16px; color: var(--teal); flex-shrink: 0; }
.nav-right { display: flex; align-items: center; gap: 1.25rem; }
.btn-appointment {
    background: var(--teal); color: var(--white);
    padding: 0.6rem 1.65rem;
    border-radius: var(--radius-pill);
    font-weight: 600; font-size: 0.9rem;
    transition: background 0.25s, box-shadow 0.25s, transform 0.25s;
    border: none; cursor: pointer; display: inline-block;
}
.btn-appointment:hover { background: #087a6d; box-shadow: var(--shadow-teal); transform: translateY(-2px); }
.menu-toggle { display: none; flex-direction: column; cursor: pointer; gap: 4px; padding: 4px; }
.menu-toggle span { width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: 0.3s; display: block; }

/* ==============================================
   GLOBAL BUTTONS
   ============================================== */
.btn {
    padding: 0.85rem 2.2rem;
    border: none;
    border-radius: var(--radius-pill);
    font-size: 0.97rem;
    font-weight: 600;
    font-family: var(--font-sans);
    cursor: pointer;
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s;
    text-decoration: none;
    display: inline-flex; align-items: center; gap: 0.5rem;
}
.btn-primary { background: var(--white); color: var(--teal); }
.btn-primary:hover { background: var(--teal-pale); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-secondary { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.65); }
.btn-secondary:hover { background: var(--white); color: var(--teal); border-color: var(--white); transform: translateY(-2px); }
.btn-emergency { background: var(--red); color: var(--white); }
.btn-emergency:hover { background: #b91c1c; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(220,38,38,0.3); }
.btn-teal { background: var(--teal); color: var(--white); }
.btn-teal:hover { background: #087a6d; transform: translateY(-2px); box-shadow: var(--shadow-teal); }

/* ==============================================
   HERO SLIDER
   ============================================== */
.hero-slider { position: relative; overflow: hidden; height: 580px; }
.hero-slide {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    opacity: 0; transition: opacity 1s var(--ease);
    display: flex; align-items: center; justify-content: center;
    text-align: center; color: var(--white); padding: 2rem 5%;
}
.hero-slide.active { opacity: 1; }
.hero-slide-1 { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, var(--teal) 100%); }
.hero-slide-2 { background: linear-gradient(135deg, #0c2240 0%, var(--teal) 100%); }
.hero-slide-3 { background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 40%, #0a6e62 100%); }
.hero-content { max-width: 820px; animation: fadeUp 0.8s var(--ease); }
@keyframes fadeUp { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }
.hero-eyebrow {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: var(--radius-pill);
    padding: 0.3rem 1rem;
    font-size: 0.77rem; font-weight: 600;
    letter-spacing: 0.08em; text-transform: uppercase;
    margin-bottom: 1.2rem;
}
.hero-content h1 {
    font-family: var(--font-serif);
    font-size: 3.4rem; line-height: 1.15;
    margin-bottom: 1rem; font-weight: 400;
}
.hero-content p { font-size: 1.2rem; margin-bottom: 2.2rem; opacity: 0.88; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.slider-nav {
    position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
    display: flex; gap: 0.6rem; z-index: 10;
}
.slider-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.4); cursor: pointer; transition: all 0.3s; }
.slider-dot.active { background: var(--white); width: 32px; border-radius: 5px; }
.slider-arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: rgba(255,255,255,0.15); backdrop-filter: blur(8px);
    color: var(--white); border: 1px solid rgba(255,255,255,0.25);
    width: 46px; height: 46px; border-radius: 50%; font-size: 1.2rem;
    cursor: pointer; transition: background 0.25s; z-index: 10;
    display: flex; align-items: center; justify-content: center;
}
.slider-arrow:hover { background: rgba(255,255,255,0.3); }
.slider-arrow.prev { left: 20px; }
.slider-arrow.next { right: 20px; }

/* ==============================================
   QUICK INFO BAR
   ============================================== */
.quick-info {
    background: var(--navy); padding: 1.3rem 5%;
    display: flex; justify-content: space-around; flex-wrap: wrap; gap: 1.5rem;
    max-width: 100%;
}
.quick-info-inner {
    max-width: var(--max-w); margin: 0 auto; width: 100%;
    display: flex; justify-content: space-around; flex-wrap: wrap; gap: 1.5rem;
}
.info-item { display: flex; align-items: center; gap: 0.85rem; }
.info-icon { font-size: 1.7rem; color: var(--teal-light); width: 30px; text-align: center; }
.info-content h3 { font-size: 0.75rem; font-weight: 500; color: var(--slate-pale); margin-bottom: 0.12rem; text-transform: uppercase; letter-spacing: 0.05em; }
.info-content p { font-size: 1rem; font-weight: 600; color: var(--white); }

/* ==============================================
   SECTION LAYOUT
   ============================================== */
.section { padding: 5rem 5%; max-width: var(--max-w); margin: 0 auto; }
.section-bg { background: var(--mist); }
.section-title { text-align: center; margin-bottom: 3rem; }
.section-title .eyebrow { display: inline-block; color: var(--teal); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.6rem; }
.section-title h2 { font-family: var(--font-serif); font-size: 2.35rem; color: var(--navy); margin-bottom: 0.6rem; line-height: 1.2; font-weight: 400; }
.section-title p { color: var(--slate-light); font-size: 1.02rem; max-width: 540px; margin: 0 auto; }
.title-line { width: 44px; height: 3px; background: var(--teal); border-radius: 2px; margin: 0.9rem auto 0; }

/* ==============================================
   DEPARTMENTS GRID
   ============================================== */
.departments-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.4rem; }
.department-card {
    background: var(--white); padding: 2rem 1.65rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all 0.35s var(--ease);
    text-align: center;
    border: 1px solid var(--border);
    position: relative; overflow: hidden;
}
.department-card::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0;
    height: 3px; background: linear-gradient(90deg, var(--teal), var(--teal-light));
    transform: scaleX(0); transition: transform 0.35s var(--ease);
}
.department-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.department-card:hover::after { transform: scaleX(1); }
.department-icon { font-size: 2.6rem; margin-bottom: 0.9rem; color: var(--teal); transition: transform 0.35s; }
.department-card:hover .department-icon { transform: scale(1.1); }
.department-card h3 { font-size: 1.2rem; margin-bottom: 0.55rem; color: var(--navy); font-weight: 600; }
.department-card p { color: var(--slate-light); line-height: 1.65; font-size: 0.9rem; }

/* ==============================================
   INTRO / ABOUT SPLIT
   ============================================== */
.intro-section { padding: 5rem 5%; max-width: var(--max-w); margin: 0 auto; }
.intro-content { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.intro-image-placeholder {
    width: 100%; height: 460px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%);
    border-radius: var(--radius-lg);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.25); font-size: 4rem;
    box-shadow: var(--shadow-lg);
}
.intro-image img { width: 100%; height: 460px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.intro-text .eyebrow { display: inline-block; color: var(--teal); font-size: 0.77rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.7rem; }
.intro-text h2 { font-family: var(--font-serif); font-size: 2.3rem; color: var(--navy); margin-bottom: 0.9rem; line-height: 1.2; font-weight: 400; }
.intro-text p { color: var(--slate-light); line-height: 1.8; margin-bottom: 1.1rem; font-size: 0.97rem; }
.intro-features { margin: 1.65rem 0; }
.intro-features li { padding: 0.5rem 0; color: var(--slate); display: flex; align-items: center; gap: 0.8rem; font-size: 0.95rem; border-bottom: 1px solid var(--border); }
.intro-features li:last-child { border-bottom: none; }
.intro-features li i { color: var(--teal); font-size: 0.95rem; width: 18px; text-align: center; flex-shrink: 0; }
.intro-btn {
    display: inline-flex; align-items: center; gap: 0.65rem;
    background: var(--teal); color: var(--white);
    padding: 0.82rem 2.1rem; border-radius: var(--radius-pill);
    font-weight: 600; font-size: 0.93rem;
    transition: background 0.25s, box-shadow 0.25s, transform 0.25s;
    margin-top: 1.2rem;
}
.intro-btn:hover { background: #087a6d; transform: translateY(-2px); box-shadow: var(--shadow-teal); }

/* ==============================================
   WHY CHOOSE
   ============================================== */
.why-choose-section {
    background: var(--navy); padding: 5rem 5%;
    position: relative; overflow: hidden;
}
.why-choose-section::before {
    content: ''; position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 60% 60% at 10% 50%, rgba(10,140,125,0.12) 0%, transparent 60%),
        radial-gradient(ellipse 60% 60% at 90% 50%, rgba(20,184,166,0.08) 0%, transparent 60%);
    pointer-events: none;
}
.why-choose-content { max-width: var(--max-w); margin: 0 auto; position: relative; z-index: 1; }
.why-choose-header { text-align: center; margin-bottom: 3.25rem; }
.why-choose-header .eyebrow { display: inline-block; color: var(--teal-light); font-size: 0.77rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.6rem; }
.why-choose-header h2 { font-family: var(--font-serif); font-size: 2.35rem; color: var(--white); margin-bottom: 0.7rem; font-weight: 400; }
.why-choose-header p { color: #c8dfd9; font-size: 1.02rem; }
.why-choose-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.4rem; }
.why-choose-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 2.2rem 1.65rem; border-radius: var(--radius-md);
    text-align: center; transition: all 0.35s var(--ease);
}
.why-choose-card:hover {
    transform: translateY(-6px);
    background: rgba(10,140,125,0.1);
    border-color: rgba(10,140,125,0.3);
    box-shadow: 0 10px 30px rgba(10,140,125,0.15);
}
.why-choose-icon {
    width: 68px; height: 68px;
    background: linear-gradient(135deg, var(--teal), var(--teal-light));
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.3rem; font-size: 1.9rem; color: var(--white);
    transition: transform 0.35s var(--ease);
}
.why-choose-card:hover .why-choose-icon { transform: scale(1.08) rotate(4deg); }
.why-choose-card h3 { color: var(--white); font-size: 1.15rem; margin-bottom: 0.7rem; font-weight: 600; }
.why-choose-card p { color: #c8dfd9; line-height: 1.75; font-size: 0.9rem; }

/* ==============================================
   DOCTORS SECTION
   ============================================== */
.doctors-carousel { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px,1fr)); gap: 1.65rem; margin-top: 1.5rem; }
.doctor-card {
    background: var(--white); border-radius: var(--radius-md); overflow: hidden;
    box-shadow: var(--shadow-sm); border: 1px solid var(--border);
    transition: all 0.3s var(--ease);
}
.doctor-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.doctor-image {
    width: 100%; height: 270px;
    background: linear-gradient(135deg, var(--navy), var(--teal));
    display: flex; align-items: center; justify-content: center;
    font-size: 4.5rem; color: rgba(255,255,255,0.28);
}
.doctor-info { padding: 1.35rem 1.5rem; }
.doctor-info h3 { font-size: 1.15rem; color: var(--navy); margin-bottom: 0.25rem; font-weight: 600; }
.doctor-specialty { color: var(--teal); font-weight: 700; font-size: 0.82rem; margin-bottom: 0.8rem; text-transform: uppercase; letter-spacing: 0.04em; }
.doctor-rating { display: flex; align-items: center; gap: 0.4rem; margin-bottom: 0.8rem; }
.stars { color: #f59e0b; font-size: 0.95rem; }
.doctor-info > p { color: var(--slate-light); font-size: 0.88rem; line-height: 1.6; }

/* ==============================================
   TESTIMONIALS
   ============================================== */
.testimonials-slider { position: relative; max-width: var(--max-w); margin: 0 auto; overflow: hidden; padding: 1rem 0 2rem; }
.testimonials-track { display: flex; transition: transform 0.5s var(--ease); }
.testimonial-slide { min-width: 50%; padding: 0 0.7rem; }
.testimonial-card {
    background: var(--white); padding: 2.1rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    position: relative; height: 100%;
}
.quote-icon { font-size: 2.25rem; color: var(--teal); opacity: 0.13; position: absolute; top: 1rem; left: 1.4rem; }
.testimonial-text { font-style: italic; color: var(--slate); margin-bottom: 1.35rem; line-height: 1.8; position: relative; z-index: 1; font-size: 0.97rem; }
.patient-info { display: flex; align-items: center; gap: 0.8rem; }
.patient-avatar {
    width: 48px; height: 48px; border-radius: 50%;
    background: linear-gradient(135deg, var(--teal), var(--teal-light));
    display: flex; align-items: center; justify-content: center;
    color: var(--white); font-size: 1.2rem; font-weight: 700; flex-shrink: 0;
}
.patient-details h4 { color: var(--navy); margin-bottom: 0.12rem; font-weight: 600; font-size: 0.92rem; }
.patient-details p { color: var(--slate-light); font-size: 0.83rem; }
.testimonial-nav { display: flex; justify-content: center; align-items: center; gap: 1.4rem; margin-top: 1.75rem; }
.testimonial-arrow {
    background: var(--teal); color: var(--white); border: none;
    width: 40px; height: 40px; border-radius: 50%; font-size: 0.95rem;
    cursor: pointer; transition: background 0.25s, transform 0.25s;
    display: flex; align-items: center; justify-content: center;
}
.testimonial-arrow:hover { background: #087a6d; transform: scale(1.08); }
.testimonial-dots { display: flex; gap: 0.55rem; }
.testimonial-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border); cursor: pointer; transition: all 0.3s; }
.testimonial-dot.active { background: var(--teal); width: 24px; border-radius: 4px; }

/* ==============================================
   FACILITIES / GALLERY
   ============================================== */
.facilities-section { padding: 5rem 5%; max-width: var(--max-w); margin: 0 auto; }
.facilities-header { text-align: center; margin-bottom: 2.4rem; }
.facilities-header h2 { font-family: var(--font-serif); font-size: 2.35rem; color: var(--navy); margin-bottom: 0.5rem; font-weight: 400; }
.facilities-header p { color: var(--slate-light); font-size: 1.02rem; }
.virtual-tour-box {
    background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%);
    border-radius: var(--radius-md); padding: 1.85rem 2.5rem;
    margin-bottom: 2.25rem; display: flex; align-items: center;
    justify-content: space-between; gap: 2rem; flex-wrap: wrap;
}
.virtual-tour-box h3 { color: var(--white); font-size: 1.3rem; margin-bottom: 0.35rem; }
.virtual-tour-box p { color: rgba(255,255,255,0.85); font-size: 0.93rem; }
.tour-button {
    display: inline-flex; align-items: center; gap: 0.65rem;
    background: var(--white); color: var(--teal);
    padding: 0.8rem 1.65rem; border-radius: var(--radius-pill);
    font-weight: 600; font-size: 0.9rem; transition: transform 0.25s, box-shadow 0.25s; flex-shrink: 0;
}
.tour-button:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.facilities-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px,1fr)); gap: 1.15rem; }
.facility-card {
    position: relative; border-radius: var(--radius-md); overflow: hidden;
    cursor: pointer; box-shadow: var(--shadow-sm); transition: all 0.3s var(--ease);
    height: 232px; border: 1px solid var(--border);
}
.facility-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.facility-image {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, var(--navy), var(--teal));
    display: flex; align-items: center; justify-content: center;
    font-size: 3.25rem; color: rgba(255,255,255,0.28); transition: transform 0.3s;
}
.facility-card:hover .facility-image { transform: scale(1.05); }
.facility-overlay {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.78), transparent);
    padding: 1.2rem; color: var(--white);
}
.facility-overlay h3 { font-size: 1.05rem; margin-bottom: 0.18rem; font-weight: 600; }
.facility-overlay p { font-size: 0.83rem; opacity: 0.88; }
.view-icon {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255,255,255,0.92);
    width: 50px; height: 50px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; color: var(--teal);
    opacity: 0; transition: opacity 0.3s;
}
.facility-card:hover .view-icon { opacity: 1; }

/* ==============================================
   LIGHTBOX
   ============================================== */
.lightbox { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.94); z-index: 9999; align-items: center; justify-content: center; }
.lightbox.active { display: flex; }
.lightbox-content { position: relative; max-width: 90%; max-height: 90%; animation: zoomIn 0.3s var(--ease); }
@keyframes zoomIn { from { transform:scale(0.85); opacity:0; } to { transform:scale(1); opacity:1; } }
.lightbox-placeholder {
    width: 800px; height: 560px; max-width: 90vw; max-height: 80vh;
    background: linear-gradient(135deg, var(--navy), var(--teal));
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    font-size: 6rem; color: rgba(255,255,255,0.28);
}
.lightbox-info {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    padding: 2rem; color: var(--white);
    border-radius: 0 0 var(--radius-md) var(--radius-md);
}
.lightbox-info h3 { font-size: 1.35rem; margin-bottom: 0.35rem; }
.lightbox-close {
    position: absolute; top: 16px; right: 16px;
    background: rgba(255,255,255,0.15); backdrop-filter: blur(8px);
    border: none; color: var(--white); width: 44px; height: 44px;
    border-radius: 50%; font-size: 1.2rem; cursor: pointer;
    transition: background 0.25s, transform 0.25s;
    display: flex; align-items: center; justify-content: center;
}
.lightbox-close:hover { background: rgba(255,255,255,0.28); transform: rotate(90deg); }
.lightbox-nav {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: rgba(255,255,255,0.15); backdrop-filter: blur(8px);
    border: none; color: var(--white); width: 44px; height: 44px;
    border-radius: 50%; font-size: 1.2rem; cursor: pointer;
    transition: background 0.25s;
    display: flex; align-items: center; justify-content: center;
}
.lightbox-nav:hover { background: rgba(255,255,255,0.28); }
.lightbox-nav.prev { left: 16px; }
.lightbox-nav.next { right: 16px; }

/* ==============================================
   APPOINTMENT CTA
   ============================================== */
.appointment-cta-section {
    background: linear-gradient(135deg, var(--teal) 0%, #076557 100%);
    padding: 6rem 5%; text-align: center; position: relative; overflow: hidden;
}
.appointment-cta-section::before {
    content: ''; position: absolute; inset: 0;
    background: repeating-linear-gradient(45deg, transparent, transparent 12px, rgba(255,255,255,0.025) 12px, rgba(255,255,255,0.025) 24px);
    pointer-events: none;
}
.appointment-cta-content { max-width: 720px; margin: 0 auto; position: relative; z-index: 1; }
.appointment-cta-content h2 { font-family: var(--font-serif); font-size: 2.75rem; color: var(--white); margin-bottom: 1.2rem; font-weight: 400; }
.appointment-cta-content p { font-size: 1.15rem; color: rgba(255,255,255,0.9); margin-bottom: 2.4rem; line-height: 1.75; }
.cta-big-button {
    display: inline-flex; align-items: center; gap: 0.85rem;
    background: var(--white); color: var(--teal);
    padding: 1.15rem 3.25rem; border-radius: var(--radius-pill);
    font-size: 1.1rem; font-weight: 700;
    transition: all 0.35s var(--ease);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border: 2px solid transparent;
}
.cta-big-button:hover { background: transparent; color: var(--white); border-color: var(--white); transform: translateY(-4px) scale(1.02); }

/* ==============================================
   CONTACT/MAP (footer section)
   ============================================== */
.contact-map-section { background: var(--navy-deep); padding: 4rem 5%; border-bottom: 1px solid #1a2840; }
.contact-map-container { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.contact-form-wrapper h3, .map-wrapper h3 { font-family: var(--font-serif); color: var(--white); font-size: 1.6rem; margin-bottom: 0.7rem; font-weight: 400; }
.contact-form-wrapper > p { color: #c8dfd9; margin-bottom: 1.65rem; font-size: 0.93rem; }
.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-group { display: flex; flex-direction: column; }
.form-group label { color: #d4e8e2; margin-bottom: 0.38rem; font-weight: 500; font-size: 0.84rem; text-transform: uppercase; letter-spacing: 0.04em; }
.form-group input, .form-group textarea, .form-group select {
    padding: 0.82rem 1.05rem;
    border: 1px solid #2a7a6e;
    background: #ffffff;
    color: #0a3d35; border-radius: var(--radius-sm);
    font-size: 0.93rem; font-family: var(--font-sans);
    transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    outline: none; border-color: var(--teal);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(10,140,125,0.18);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: #7aaba3; }
.form-group textarea { resize: vertical; min-height: 108px; }
.quick-action-buttons { display: flex; gap: 0.8rem; margin-bottom: 1.2rem; }
.quick-btn {
    flex: 1; display: inline-flex; align-items: center; justify-content: center;
    gap: 0.6rem; padding: 0.82rem 1.15rem; border-radius: var(--radius-sm);
    font-weight: 600; font-size: 0.9rem; transition: all 0.25s;
    border: none; cursor: pointer; font-family: var(--font-sans);
}
.quick-btn.call { background: var(--teal); color: var(--white); }
.quick-btn.call:hover { background: #087a6d; transform: translateY(-2px); }
.quick-btn.whatsapp { background: var(--green); color: var(--white); }
.quick-btn.whatsapp:hover { background: #1da851; transform: translateY(-2px); }
.submit-btn {
    background: var(--teal); color: var(--white);
    padding: 0.88rem 2rem; border: none; border-radius: var(--radius-pill);
    font-size: 0.97rem; font-weight: 600; cursor: pointer;
    transition: background 0.25s, box-shadow 0.25s, transform 0.25s;
    display: inline-flex; align-items: center; justify-content: center;
    gap: 0.65rem; font-family: var(--font-sans);
}
.submit-btn:hover { background: #087a6d; transform: translateY(-2px); box-shadow: var(--shadow-teal); }
.map-container { border-radius: var(--radius-md); overflow: hidden; height: 440px; box-shadow: var(--shadow-lg); border: 1px solid #1a2840; margin-top: 1rem; }
.map-iframe { width: 100%; height: 100%; border: none; }
.map-placeholder {
    width: 100%; height: 100%; background: var(--navy);
    display: flex; align-items: center; justify-content: center;
    flex-direction: column; gap: 0.8rem; color: var(--slate-pale);
}
.map-placeholder i { font-size: 3.25rem; color: var(--teal); }
.map-placeholder p { font-size: 0.97rem; }

/* ==============================================
   FOOTER
   ============================================== */
footer { background: var(--navy); color: #d4e8e2; }
.footer-main { padding: 3.25rem 5% 1.5rem; }
.footer-content {
    max-width: var(--max-w); margin: 0 auto;
    display: grid; grid-template-columns: repeat(auto-fit, minmax(215px,1fr));
    gap: 2.5rem; margin-bottom: 2rem;
}
.footer-section h3 { color: var(--white); margin-bottom: 0.9rem; font-size: 1.05rem; font-weight: 600; }
.footer-section h3 i { margin-right: 0.4rem; color: var(--teal-light); }
.footer-section p, .footer-section a {
    color: #c8dfd9; text-decoration: none; display: block;
    margin-bottom: 0.45rem; line-height: 1.7; font-size: 0.9rem; transition: color 0.25s;
}
.footer-section a:hover { color: var(--teal-light); }
.social-links { display: flex; gap: 0.65rem; margin-top: 0.9rem; }
.social-links a {
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 0.95rem; transition: all 0.25s; margin-bottom: 0;
}
.social-links a:hover { background: var(--teal); border-color: var(--teal); transform: translateY(-3px); color: var(--white); }
.footer-bottom {
    max-width: var(--max-w); margin: 0 auto;
    text-align: center; padding-top: 1.4rem;
    border-top: 1px solid rgba(255,255,255,0.06);
    color: #8fbfb5; font-size: 0.85rem;
}

/* ==============================================
   PAGE HERO (inner pages)
   ============================================== */
.page-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 55%, var(--teal) 100%);
    padding: 4.5rem 5%; text-align: center; color: var(--white);
    position: relative; overflow: hidden;
}
.page-hero::before {
    content: ''; position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 400'%3E%3Cdefs%3E%3Cpattern id='g' width='40' height='40' patternUnits='userSpaceOnUse'%3E%3Cpath d='M 40 0 L 0 0 0 40' fill='none' stroke='rgba(255,255,255,0.035)' stroke-width='1'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='1200' height='400' fill='url(%23g)'/%3E%3C/svg%3E");
}
.page-hero-content { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.page-hero h1 { font-family: var(--font-serif); font-size: 2.75rem; font-weight: 400; margin-bottom: 0.8rem; line-height: 1.15; }
.page-hero p { font-size: 1.12rem; opacity: 0.88; margin-bottom: 1.35rem; line-height: 1.65; }
.breadcrumb { display: flex; align-items: center; gap: 0.45rem; justify-content: center; font-size: 0.86rem; opacity: 0.72; flex-wrap: wrap; }
.breadcrumb a { color: var(--white); }
.breadcrumb a:hover { color: var(--teal-light); }
.breadcrumb i { font-size: 0.62rem; }

/* ==============================================
   ABOUT PAGE — unique sections
   ============================================== */
.mv-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.4rem; margin-top: 2.4rem; }
.mv-card {
    background: var(--white); border-radius: var(--radius-md); padding: 2.1rem;
    text-align: center; box-shadow: var(--shadow-sm);
    border: 1px solid var(--border); border-top: 3px solid var(--teal); transition: transform 0.3s;
}
.mv-card:nth-child(2) { border-top-color: var(--teal-light); }
.mv-card:nth-child(3) { border-top-color: #076557; }
.mv-card:hover { transform: translateY(-5px); }
.mv-icon { width: 68px; height: 68px; border-radius: 50%; background: linear-gradient(135deg, var(--teal), var(--teal-light)); display: flex; align-items: center; justify-content: center; font-size: 1.7rem; color: var(--white); margin: 0 auto 1.3rem; }
.mv-card h3 { font-size: 1.25rem; color: var(--navy); margin-bottom: 0.8rem; font-weight: 600; }
.mv-card p { color: var(--slate-light); line-height: 1.8; font-size: 0.91rem; }

.story-section { background: var(--mist); padding: 5rem 5%; }
.story-inner { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.story-image { position: relative; }
.story-placeholder {
    width: 100%; height: 490px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%);
    border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center;
    font-size: 5rem; color: rgba(255,255,255,0.22); box-shadow: var(--shadow-lg);
}
.story-badge {
    position: absolute; bottom: -16px; right: -16px;
    background: var(--teal); color: var(--white);
    border-radius: var(--radius-md); padding: 1.15rem 1.6rem;
    text-align: center; box-shadow: var(--shadow-teal);
}
.story-badge .num { font-size: 2.4rem; font-weight: 800; line-height: 1; }
.story-badge span { font-size: 0.82rem; opacity: 0.88; }
.story-text h2 { font-family: var(--font-serif); font-size: 2.25rem; color: var(--navy); margin-bottom: 0.7rem; line-height: 1.2; font-weight: 400; }
.story-text h3 { color: var(--teal); font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1.35rem; }
.story-text p { color: var(--slate-light); line-height: 1.8; margin-bottom: 1.05rem; font-size: 0.95rem; }
.story-stats { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.15rem; margin-top: 1.9rem; }
.stat-box { background: var(--white); border-radius: var(--radius-sm); padding: 1.15rem; text-align: center; border: 1px solid var(--border); }
.stat-box .stat-num { font-size: 1.8rem; font-weight: 800; color: var(--teal); font-family: var(--font-serif); }
.stat-box .stat-label { color: var(--slate-light); font-size: 0.83rem; margin-top: 0.22rem; }

.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px,1fr)); gap: 1.65rem; margin-top: 1.5rem; }
.team-card { background: var(--white); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--border); transition: all 0.3s; text-align: center; }
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.team-image { height: 230px; background: linear-gradient(135deg, var(--navy), var(--teal)); display: flex; align-items: center; justify-content: center; font-size: 3.75rem; color: rgba(255,255,255,0.28); }
.team-info { padding: 1.35rem; }
.team-info h3 { color: var(--navy); font-size: 1.1rem; font-weight: 600; margin-bottom: 0.28rem; }
.team-role { color: var(--teal); font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; }

.timeline { position: relative; padding-left: 1.75rem; }
.timeline::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, var(--teal), var(--teal-light)); border-radius: 2px; }
.timeline-item { position: relative; padding: 0 0 2.4rem 1.85rem; }
.timeline-dot { position: absolute; left: -2.35rem; top: 0.22rem; width: 13px; height: 13px; border-radius: 50%; background: var(--teal); border: 3px solid var(--white); box-shadow: 0 0 0 2px var(--teal); }
.timeline-year { font-size: 0.76rem; font-weight: 700; color: var(--teal); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.35rem; }
.timeline-item h3 { color: var(--navy); font-size: 1.05rem; margin-bottom: 0.35rem; font-weight: 600; }
.timeline-item p { color: var(--slate-light); font-size: 0.91rem; line-height: 1.7; }

/* ==============================================
   SERVICES PAGE
   ============================================== */
.filter-tabs { display: flex; justify-content: center; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 2.4rem; }
.filter-tab {
    padding: 0.52rem 1.4rem; border-radius: var(--radius-pill);
    border: 1.5px solid var(--border); background: var(--white);
    color: var(--slate); font-weight: 500; cursor: pointer;
    transition: all 0.25s; font-size: 0.88rem; font-family: var(--font-sans);
}
.filter-tab:hover, .filter-tab.active { background: var(--teal); border-color: var(--teal); color: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(305px,1fr)); gap: 1.65rem; }
.service-card {
    background: var(--white); border-radius: var(--radius-md); overflow: hidden;
    box-shadow: var(--shadow-sm); border: 1px solid var(--border); transition: all 0.3s var(--ease);
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: transparent; }
.service-header { padding: 1.65rem; background: linear-gradient(135deg, var(--navy), var(--navy-mid)); color: var(--white); display: flex; align-items: center; gap: 1.15rem; }
.service-icon-wrap { width: 62px; height: 62px; background: rgba(10,140,125,0.2); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 1.75rem; color: var(--teal-light); flex-shrink: 0; }
.service-header h3 { font-size: 1.2rem; margin-bottom: 0.22rem; font-weight: 600; }
.service-header span { font-size: 0.82rem; opacity: 0.62; }
.service-body { padding: 1.4rem 1.65rem; }
.service-body > p { color: var(--slate-light); line-height: 1.7; margin-bottom: 1.2rem; font-size: 0.91rem; }
.service-features { list-style: none; }
.service-features li { padding: 0.35rem 0; color: var(--slate); font-size: 0.88rem; display: flex; align-items: center; gap: 0.6rem; border-bottom: 1px solid var(--border); }
.service-features li:last-child { border-bottom: none; }
.service-features li i { color: var(--teal); font-size: 0.72rem; flex-shrink: 0; }

/* ==============================================
   DOCTORS PAGE
   ============================================== */
.doctors-page-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(295px,1fr)); gap: 1.65rem; }
.doctor-page-card { background: var(--white); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--border); transition: all 0.3s; }
.doctor-page-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.doctor-card-image { height: 255px; background: linear-gradient(135deg, var(--navy), var(--teal)); display: flex; align-items: center; justify-content: center; font-size: 4.25rem; color: rgba(255,255,255,0.25); }
.doctor-card-body { padding: 1.4rem; }
.doctor-card-body h3 { font-size: 1.15rem; color: var(--navy); margin-bottom: 0.22rem; font-weight: 600; }
.doctor-card-spec { color: var(--teal); font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.8rem; }
.doctor-card-meta { display: flex; flex-direction: column; gap: 0.38rem; margin-bottom: 0.95rem; }
.doctor-card-meta span { color: var(--slate-light); font-size: 0.86rem; display: flex; align-items: center; gap: 0.45rem; }
.doctor-card-meta i { color: var(--teal); width: 13px; }
.doctor-tags { display: flex; flex-wrap: wrap; gap: 0.38rem; margin-bottom: 1.05rem; }
.tag { background: var(--teal-pale); color: var(--teal); border-radius: var(--radius-pill); padding: 0.18rem 0.72rem; font-size: 0.76rem; font-weight: 600; }
.btn-book {
    display: inline-flex; align-items: center; gap: 0.45rem;
    background: var(--teal); color: var(--white);
    padding: 0.62rem 1.4rem; border-radius: var(--radius-pill);
    font-size: 0.86rem; font-weight: 600; transition: background 0.25s, transform 0.25s;
}
.btn-book:hover { background: #087a6d; transform: translateY(-2px); }

/* ==============================================
   GALLERY PAGE
   ============================================== */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px,1fr)); gap: 1rem; }
.gallery-item { position: relative; border-radius: var(--radius-sm); overflow: hidden; cursor: pointer; height: 215px; box-shadow: var(--shadow-sm); transition: all 0.3s; }
.gallery-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.gallery-img { width: 100%; height: 100%; background: linear-gradient(135deg, var(--navy), var(--teal)); display: flex; align-items: center; justify-content: center; font-size: 2.9rem; color: rgba(255,255,255,0.26); transition: transform 0.3s; }
.gallery-item:hover .gallery-img { transform: scale(1.06); }
.gallery-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.7), transparent 55%); display: flex; flex-direction: column; justify-content: flex-end; padding: 1rem; color: var(--white); opacity: 0; transition: opacity 0.3s; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay h4 { font-size: 0.92rem; font-weight: 600; }

/* ==============================================
   CONTACT PAGE
   ============================================== */
.quick-cards { background: var(--navy-deep); padding: 2.4rem 5%; }
.quick-cards-inner { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(195px,1fr)); gap: 1.15rem; }
.qcard { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-md); padding: 1.65rem 1.35rem; text-align: center; transition: all 0.3s; }
.qcard:hover { background: rgba(10,140,125,0.1); border-color: rgba(10,140,125,0.35); transform: translateY(-4px); }
.qcard i { font-size: 2.1rem; color: var(--teal-light); margin-bottom: 0.8rem; display: block; }
.qcard h3, .qcard h4 { color: var(--white) !important; font-size: 1rem; font-weight: 600; margin-bottom: 0.38rem; }
.qcard p, .qcard a { color: #c8dfd9 !important; font-size: 0.86rem; text-decoration: none; line-height: 1.6; }
.qcard a:hover { color: var(--teal-light) !important; }

.contact-section-full { padding: 5rem 5%; max-width: var(--max-w); margin: 0 auto; }
.contact-two-col { display: grid; grid-template-columns: 1fr 1.35fr; gap: 4rem; align-items: start; }
.contact-info-col h2 { font-family: var(--font-serif); font-size: 2.1rem; color: var(--navy); margin-bottom: 0.7rem; font-weight: 400; }
.contact-info-col > p { color: var(--slate-light); margin-bottom: 1.9rem; line-height: 1.75; font-size: 0.95rem; }
.contact-detail-list { display: flex; flex-direction: column; gap: 0.9rem; margin-bottom: 1.9rem; }
.contact-detail-item { display: flex; align-items: flex-start; gap: 0.9rem; padding: 0.9rem 1rem; background: var(--mist); border-radius: var(--radius-sm); border: 1px solid var(--border); }
.contact-detail-item i { color: var(--teal); font-size: 1.2rem; margin-top: 0.1rem; width: 18px; text-align: center; }
.contact-detail-item h4 { color: var(--navy); font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.18rem; }
.contact-detail-item p, .contact-detail-item a { color: var(--slate-light); font-size: 0.9rem; text-decoration: none; }
.contact-detail-item a:hover { color: var(--teal); }
.hours-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.hours-table tr { border-bottom: 1px solid var(--border); }
.hours-table td { padding: 0.55rem 0.35rem; color: var(--slate); }
.hours-table td:last-child { color: var(--teal); font-weight: 600; text-align: right; }
.hours-table tr:last-child { border-bottom: none; }
.contact-form-col { background: var(--white); border-radius: var(--radius-md); padding: 2.4rem; box-shadow: var(--shadow-md); border: 1px solid var(--border); }
.contact-form-col h3 { font-family: var(--font-serif); font-size: 1.65rem; color: var(--navy); margin-bottom: 0.45rem; font-weight: 400; }
.contact-form-col > p { color: var(--slate-light); margin-bottom: 1.65rem; font-size: 0.91rem; }
.contact-form-light .form-group label { color: var(--slate); }
.contact-form-light .form-group input,
.contact-form-light .form-group textarea,
.contact-form-light .form-group select { background: var(--mist); color: var(--navy); border-color: var(--border); }
.contact-form-light .form-group input::placeholder,
.contact-form-light .form-group textarea::placeholder { color: var(--slate-pale); }
.contact-form-light .form-group input:focus,
.contact-form-light .form-group textarea:focus,
.contact-form-light .form-group select:focus { background: var(--white); border-color: var(--teal); box-shadow: 0 0 0 3px rgba(10,140,125,0.1); }

/* ==============================================
   RESPONSIVE
   ============================================== */
@media (max-width: 1200px) {
    .why-choose-grid { grid-template-columns: repeat(2,1fr); }
    .departments-grid { grid-template-columns: repeat(2,1fr); }
    .mv-grid { grid-template-columns: repeat(2,1fr); }
    .contact-two-col { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 992px) {
    .intro-content, .story-inner, .contact-map-container { grid-template-columns: 1fr; gap: 2.4rem; }
    .hero-content h1 { font-size: 2.6rem; }
    .testimonial-slide { min-width: 100%; }
    .virtual-tour-box { flex-direction: column; text-align: center; }
}
@media (max-width: 768px) {
    .top-bar-content { flex-direction: column; text-align: center; gap: 0.45rem; }
    .top-bar-left { flex-direction: column; gap: 0.35rem; }
    .nav-links {
        display: none; flex-direction: column;
        position: absolute; top: 100%; left: 0;
        width: 100%; background: var(--white);
        padding: 0.75rem; box-shadow: var(--shadow-md);
        border-bottom: 1px solid var(--border); gap: 0;
    }
    .nav-links.active { display: flex; }
    .nav-links li { width: 100%; }
    .nav-links a { padding: 0.72rem 1rem; border-radius: var(--radius-sm); font-size: 0.97rem; }
    .dropdown-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; background: var(--mist); margin-top: 0.25rem; margin-left: 0.85rem; display: none; border: none; border-radius: var(--radius-sm); }
    .nav-links li:hover .dropdown-menu, .nav-links li.open .dropdown-menu { display: block; }
    .nav-right { display: none; }
    .menu-toggle { display: flex; }
    .hero-slider { height: 500px; }
    .hero-content h1 { font-size: 2.1rem; }
    .hero-content p { font-size: 1.02rem; }
    .hero-eyebrow { display: none; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .btn { width: 100%; max-width: 275px; justify-content: center; }
    .quick-info-inner { flex-direction: column; align-items: center; text-align: center; }
    .info-item { flex-direction: column; }
    .section-title h2 { font-size: 1.95rem; }
    .departments-grid, .doctors-carousel, .mv-grid { grid-template-columns: 1fr; }
    .appointment-cta-content h2 { font-size: 2rem; }
    .cta-big-button { padding: 1rem 2.25rem; font-size: 0.97rem; }
    .quick-action-buttons { flex-direction: column; }
    .map-container { height: 310px; }
    .why-choose-grid { grid-template-columns: 1fr; }
    .page-hero h1 { font-size: 1.95rem; }
    .lightbox-placeholder { width: 100%; height: 360px; font-size: 3.5rem; }
    .lightbox-nav, .lightbox-close { width: 38px; height: 38px; font-size: 0.95rem; }
    .lightbox-nav.prev { left: 8px; }
    .lightbox-nav.next { right: 8px; }
    .story-inner { grid-template-columns: 1fr; gap: 2rem; }
    .story-badge { bottom: -14px; right: -10px; }
}
@media (max-width: 480px) {
    .hero-slider { height: 440px; }
    .hero-content h1 { font-size: 1.75rem; }
    nav { padding: 0.72rem 4%; }
    .section { padding: 3.25rem 4%; }
    .footer-main { padding: 2.25rem 4% 1.25rem; }
    .page-hero { padding: 3.25rem 4%; }
    .contact-form-col { padding: 1.75rem; }
}

/* ==============================================
   ACCESSIBILITY
   ============================================== */
:focus-visible { outline: 2px solid var(--teal); outline-offset: 3px; border-radius: 4px; }
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ===================================================
   ABOUT PAGE — additional sections
   =================================================== */

/* Values grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem;
    margin-top: 1rem;
}
.value-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 2rem 1.75rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: transform 0.3s, box-shadow 0.3s;
}
.value-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.value-icon {
    width: 52px; height: 52px;
    border-radius: var(--radius-sm);
    background: var(--teal-pale);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; color: var(--teal);
    margin-bottom: 1.1rem;
}
.value-card h3 { font-size: 1.1rem; color: var(--navy); font-weight: 600; margin-bottom: 0.6rem; }
.value-card p  { font-size: 0.9rem; color: var(--slate-light); line-height: 1.7; }

/* Leadership grid */
.leadership-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 1rem;
}
.leader-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}
.leader-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.leader-photo {
    height: 180px;
    display: flex; align-items: center; justify-content: center;
    font-size: 3.5rem; color: rgba(255,255,255,0.4);
}
.leader-photo.bg1 { background: linear-gradient(135deg, var(--navy), var(--teal)); }
.leader-photo.bg2 { background: linear-gradient(135deg, var(--teal), var(--teal-light)); }
.leader-photo.bg3 { background: linear-gradient(135deg, #0c2240, var(--teal)); }
.leader-info { padding: 1.4rem 1.5rem; }
.leader-info h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.4rem; }
.leader-role {
    font-size: 0.82rem; color: var(--teal); font-weight: 600;
    display: flex; align-items: center; gap: 0.4rem;
    margin-bottom: 0.75rem;
}
.leader-info > p { font-size: 0.88rem; color: var(--slate-light); line-height: 1.65; }

/* Accreditations */
.accred-section {
    background: var(--navy);
    padding: 4rem 5%;
}
.accred-inner {
    max-width: var(--max-w); margin: 0 auto; text-align: center;
}
.accred-inner h2 {
    font-family: var(--font-serif); font-size: 2.1rem;
    color: var(--white); margin-bottom: 0.6rem; font-weight: 700;
}
.accred-inner > p { color: var(--slate-pale); margin-bottom: 2.5rem; }
.accred-grid {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem;
}
.accred-badge {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-pill);
    padding: 0.75rem 1.5rem;
    display: flex; align-items: center; gap: 0.65rem;
    color: var(--white); font-size: 0.9rem; font-weight: 600;
    transition: background 0.25s, border-color 0.25s;
}
.accred-badge:hover {
    background: rgba(10,140,125,0.18);
    border-color: rgba(10,140,125,0.4);
}
.accred-badge i { color: var(--teal-light); font-size: 1.1rem; }

/* newsletter-wrap (used in index footer too but defined here for all pages) */
.newsletter-wrap { position: relative; }
.newsletter-wrap input {
    width: 100%;
    padding: 0.72rem 2.8rem 0.72rem 0.95rem;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-sm);
    font-size: 0.9rem; font-family: var(--font-sans);
    background: rgba(255,255,255,0.08);
    color: var(--white);
}
.newsletter-wrap input::placeholder { color: var(--slate-pale); }
.newsletter-wrap input:focus { outline: none; border-color: var(--teal); }
.newsletter-wrap button {
    position: absolute; right: 8px; top: 50%; transform: translateY(-50%);
    background: none; border: none; cursor: pointer;
    color: var(--teal-light); font-size: 1rem;
}

/* ===================================================
   SERVICES PAGE — additional sections
   =================================================== */

/* Stats highlights banner */
.highlights-banner {
    background: var(--navy);
    padding: 2.5rem 5%;
}
.highlights-inner {
    max-width: var(--max-w); margin: 0 auto;
    display: flex; justify-content: space-around; flex-wrap: wrap; gap: 1.5rem;
    text-align: center;
}
.highlight-item {}
.highlight-num {
    font-family: var(--font-serif);
    font-size: 2.4rem; font-weight: 800;
    color: var(--teal-light); line-height: 1;
    margin-bottom: 0.35rem;
}
.highlight-label {
    font-size: 0.85rem; font-weight: 600;
    color: var(--slate-pale); text-transform: uppercase; letter-spacing: 0.06em;
}

/* Service card footer */
.service-footer {
    padding: 1rem 1.65rem 1.4rem;
    display: flex; align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--border);
    gap: 0.75rem;
}
.service-link {
    color: var(--teal); font-weight: 600; font-size: 0.88rem;
    display: inline-flex; align-items: center; gap: 0.4rem;
    transition: gap 0.25s;
}
.service-link:hover { gap: 0.7rem; }
.service-badge {
    background: var(--teal-pale); color: var(--teal);
    border-radius: var(--radius-pill); padding: 0.22rem 0.85rem;
    font-size: 0.75rem; font-weight: 700;
    white-space: nowrap;
}

/* Process section */
.process-section { background: var(--mist); padding: 5rem 5%; }
.process-inner { max-width: var(--max-w); margin: 0 auto; }
.process-steps {
    display: flex; gap: 0; margin-top: 1rem;
    counter-reset: none;
}
.process-step {
    flex: 1;
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
}
.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 2.75rem; right: 0;
    width: 1px; height: 40px;
    background: var(--border);
}
.step-num {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--teal);
    color: var(--white);
    font-size: 1.1rem; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1rem;
}
.process-step h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.process-step p  { font-size: 0.87rem; color: var(--slate-light); line-height: 1.65; }

/* ===================================================
   DOCTORS PAGE — additional sections
   =================================================== */

/* Search & filter bar */
.search-filter {
    background: var(--mist);
    padding: 1.5rem 5%;
    border-bottom: 1px solid var(--border);
}
.search-filter-inner {
    max-width: var(--max-w); margin: 0 auto;
    display: flex; gap: 1rem; align-items: center; flex-wrap: wrap;
}
.search-box {
    flex: 1; min-width: 240px;
    position: relative;
    display: flex; align-items: center;
}
.search-box i {
    position: absolute; left: 1rem;
    color: var(--slate-light); font-size: 0.95rem;
}
.search-box input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.75rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    font-size: 0.92rem; font-family: var(--font-sans);
    background: var(--white); color: var(--navy);
    transition: border-color 0.25s, box-shadow 0.25s;
}
.search-box input:focus {
    outline: none; border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(10,140,125,0.1);
}
.filter-select {
    padding: 0.72rem 1.2rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    font-size: 0.9rem; font-family: var(--font-sans);
    background: var(--white); color: var(--slate);
    cursor: pointer; min-width: 170px;
    transition: border-color 0.25s;
}
.filter-select:focus { outline: none; border-color: var(--teal); }

/* Doctors section */
.doctors-section {
    padding: 2.5rem 5% 5rem;
    max-width: var(--max-w); margin: 0 auto;
}
.results-count {
    font-size: 0.9rem; color: var(--slate-light); margin-bottom: 1.5rem;
}
.results-count strong { color: var(--navy); }
.doctors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 1.5rem;
}

/* Doctor card (doctors page - richer version) */
.doctor-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: all 0.3s;
    display: flex; flex-direction: column;
}
.doctor-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.doctor-photo {
    height: 200px;
    display: flex; align-items: center; justify-content: center;
    font-size: 4rem; color: rgba(255,255,255,0.35);
    position: relative;
}
.doctor-photo.c1 { background: linear-gradient(135deg, var(--navy), var(--teal)); }
.doctor-photo.c2 { background: linear-gradient(135deg, #0c2240, var(--teal-light)); }
.doctor-photo.c3 { background: linear-gradient(135deg, #0a3d35, #2dd4bf); }
.doctor-photo.c4 { background: linear-gradient(135deg, var(--navy-mid), var(--teal)); }
.doctor-photo.c5 { background: linear-gradient(135deg, #0e2a3a, #0a8c7d); }
.doctor-photo.c6 { background: linear-gradient(135deg, #0a1e34, var(--teal-light)); }
.avail-badge {
    position: absolute; top: 0.75rem; right: 0.75rem;
    background: #16a34a; color: var(--white);
    font-size: 0.7rem; font-weight: 700;
    padding: 0.22rem 0.7rem; border-radius: var(--radius-pill);
}
.avail-badge.busy { background: #d97706; }
.doctor-info { padding: 1.35rem; flex: 1; }
.doctor-info h3 { font-size: 1.1rem; color: var(--navy); font-weight: 700; margin-bottom: 0.25rem; }
.doctor-specialty {
    font-size: 0.82rem; color: var(--teal); font-weight: 600;
    margin-bottom: 0.7rem;
    display: flex; align-items: center; gap: 0.4rem;
}
.doctor-rating { display: flex; align-items: center; gap: 0.4rem; margin-bottom: 0.7rem; }
.stars { color: #f59e0b; font-size: 0.85rem; }
.rating-text { font-size: 0.78rem; color: var(--slate-light); }
.doctor-meta { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 0.75rem; }
.meta-item {
    font-size: 0.78rem; color: var(--slate-light);
    display: flex; align-items: center; gap: 0.3rem;
}
.meta-item i { color: var(--teal); font-size: 0.75rem; }
.doctor-bio {
    font-size: 0.87rem; color: var(--slate-light); line-height: 1.6;
    margin-bottom: 0.85rem;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.doctor-tags { display: flex; flex-wrap: wrap; gap: 0.35rem; margin-bottom: 1.1rem; }
.doctor-tag {
    background: var(--teal-pale); color: var(--teal);
    border-radius: var(--radius-pill); padding: 0.18rem 0.7rem;
    font-size: 0.72rem; font-weight: 600;
}
.doctor-actions { display: flex; gap: 0.65rem; }
.btn-profile {
    flex: 1; padding: 0.62rem;
    border: 1.5px solid var(--border); border-radius: var(--radius-sm);
    background: none; color: var(--slate); font-size: 0.85rem; font-weight: 600;
    cursor: pointer; font-family: var(--font-sans); transition: all 0.25s;
}
.btn-profile:hover { border-color: var(--teal); color: var(--teal); }
.btn-book {
    flex: 1; padding: 0.62rem;
    background: var(--teal); color: var(--white); border: none;
    border-radius: var(--radius-sm); font-size: 0.85rem; font-weight: 600;
    cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 0.4rem;
    transition: background 0.25s; font-family: var(--font-sans);
    text-decoration: none;
}
.btn-book:hover { background: #087a6d; }

/* Doctor CTA banner */
.doc-cta {
    background: var(--teal);
    padding: 3.5rem 5%;
    text-align: center;
}
.doc-cta h2 {
    font-family: var(--font-serif); font-size: 2rem;
    color: var(--white); margin-bottom: 0.75rem; font-weight: 700;
}
.doc-cta p { color: rgba(255,255,255,0.88); margin-bottom: 1.75rem; font-size: 1rem; }
.cta-btn {
    display: inline-flex; align-items: center; gap: 0.65rem;
    background: var(--white); color: var(--teal);
    padding: 0.9rem 2.25rem; border-radius: var(--radius-pill);
    font-weight: 700; font-size: 0.95rem; transition: all 0.25s;
}
.cta-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,0.15); }

/* ===================================================
   GALLERY PAGE — additional sections
   =================================================== */

.gallery-section {
    padding: 2.5rem 5% 5rem;
    max-width: var(--max-w); margin: 0 auto;
}
.gallery-filter { padding: 2.5rem 5% 0; max-width: var(--max-w); margin: 0 auto; }

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: all 0.3s;
}
.gallery-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.gallery-img-placeholder {
    width: 100%;
    display: flex; align-items: center; justify-content: center;
    font-size: 2.75rem; color: rgba(255,255,255,0.3);
    transition: transform 0.3s;
}
.gallery-item:hover .gallery-img-placeholder { transform: scale(1.04); }
.gallery-overlay {
    position: absolute; inset: 0;
    background: rgba(0,0,0,0);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; color: var(--white); opacity: 0;
    transition: all 0.3s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; background: rgba(0,0,0,0.3); }
.gallery-caption {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
    padding: 1rem;
    transform: translateY(100%);
    transition: transform 0.3s;
}
.gallery-item:hover .gallery-caption { transform: translateY(0); }
.gallery-caption h4 { color: var(--white); font-size: 0.9rem; font-weight: 600; margin-bottom: 0.2rem; }
.gallery-caption span { color: rgba(255,255,255,0.75); font-size: 0.78rem; }

/* Lightbox */
.lightbox {
    display: none; position: fixed; inset: 0;
    background: rgba(0,0,0,0.92); z-index: 9999;
    align-items: center; justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox-inner {
    position: relative; max-width: 860px; width: 90vw;
    animation: zoomIn 0.3s var(--ease);
}
.lightbox-media {
    width: 100%; height: 540px; border-radius: var(--radius-md); overflow: hidden;
}
.lightbox-info {
    background: rgba(0,0,0,0.7); backdrop-filter: blur(8px);
    padding: 1.25rem 1.5rem; border-radius: 0 0 var(--radius-md) var(--radius-md);
    margin-top: -4px;
}
.lightbox-info h3 { color: var(--white); font-size: 1.2rem; margin-bottom: 0.3rem; }
.lightbox-info p  { color: var(--slate-pale); font-size: 0.9rem; }
.lb-close {
    position: absolute; top: -48px; right: 0;
    background: rgba(255,255,255,0.15); backdrop-filter: blur(6px);
    border: none; color: var(--white); width: 40px; height: 40px;
    border-radius: 50%; font-size: 1rem; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.25s, transform 0.25s;
}
.lb-close:hover { background: rgba(255,255,255,0.28); transform: rotate(90deg); }
.lb-nav {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: rgba(255,255,255,0.15); backdrop-filter: blur(6px);
    border: none; color: var(--white); width: 44px; height: 44px;
    border-radius: 50%; font-size: 1.1rem; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.25s;
}
.lb-nav:hover { background: rgba(255,255,255,0.28); }
.lb-nav.prev { left: -56px; }
.lb-nav.next { right: -56px; }

/* Video section */
.video-section { padding: 5rem 5%; background: var(--mist); }
.video-inner { max-width: var(--max-w); margin: 0 auto; }
.video-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
    margin-top: 1rem;
}
.video-card {
    background: var(--white); border-radius: var(--radius-md);
    overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--border);
    transition: all 0.3s; cursor: pointer;
}
.video-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.video-thumb {
    height: 200px; position: relative;
    display: flex; align-items: center; justify-content: center;
    font-size: 3rem; color: rgba(255,255,255,0.3);
}
.video-thumb.v1 { background: linear-gradient(135deg, var(--navy), var(--teal)); }
.video-thumb.v2 { background: linear-gradient(135deg, var(--teal), var(--teal-light)); }
.video-thumb.v3 { background: linear-gradient(135deg, var(--navy-mid), var(--teal)); }
.play-btn {
    position: absolute;
    width: 56px; height: 56px;
    background: rgba(255,255,255,0.92); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; color: var(--teal);
    box-shadow: var(--shadow-md);
    transition: transform 0.25s;
}
.video-card:hover .play-btn { transform: scale(1.1); }
.video-info { padding: 1.1rem 1.25rem; }
.video-info h4 { font-size: 0.97rem; font-weight: 700; color: var(--navy); margin-bottom: 0.3rem; }
.video-info span { font-size: 0.82rem; color: var(--slate-light); display: flex; align-items: center; gap: 0.35rem; }

/* ===================================================
   CONTACT PAGE — additional sections
   =================================================== */

/* Quick cards (contact page version with icon wrapper) */
.qcard-icon {
    width: 52px; height: 52px;
    background: rgba(10,140,125,0.15);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; color: var(--teal-light);
    margin: 0 auto 0.9rem;
}

/* Main contact section */
.contact-main { padding: 5rem 5%; background: var(--white); }
.contact-main-inner {
    max-width: var(--max-w); margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; align-items: start;
}
.contact-info h2 {
    font-family: var(--font-serif); font-size: 2.1rem;
    color: var(--navy); margin-bottom: 0.75rem; font-weight: 700;
}
.contact-info > p { color: var(--slate-light); line-height: 1.75; margin-bottom: 2rem; font-size: 0.97rem; }

.info-block {
    display: flex; gap: 1rem; align-items: flex-start;
    padding: 1rem; margin-bottom: 1rem;
    background: var(--mist); border-radius: var(--radius-sm); border: 1px solid var(--border);
}
.info-block .info-icon {
    width: 42px; height: 42px; flex-shrink: 0;
    background: var(--teal-pale); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--teal); font-size: 1.1rem;
}
.info-details h4 {
    font-size: 0.8rem; font-weight: 700; color: var(--navy);
    text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.3rem;
}
.info-details p, .info-details a {
    font-size: 0.9rem; color: var(--slate-light); line-height: 1.7;
    text-decoration: none; display: block;
}
.info-details a:hover { color: var(--teal); }

/* Contact form box (white version) */
.contact-form-box {
    background: var(--white); border-radius: var(--radius-lg);
    padding: 2.5rem; box-shadow: var(--shadow-md); border: 1px solid var(--border);
}
.contact-form-box h3 {
    font-family: var(--font-serif); font-size: 1.7rem;
    color: var(--navy); margin-bottom: 0.45rem; font-weight: 700;
}
.contact-form-box > p { color: var(--slate-light); margin-bottom: 1.5rem; font-size: 0.93rem; }

/* Form row */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* Quick action buttons */
.quick-actions { display: flex; gap: 0.85rem; margin-bottom: 1.5rem; }
.qa-btn {
    flex: 1; display: inline-flex; align-items: center; justify-content: center;
    gap: 0.6rem; padding: 0.8rem 1rem;
    border-radius: var(--radius-sm); font-weight: 600; font-size: 0.9rem;
    transition: all 0.25s; border: none; cursor: pointer; font-family: var(--font-sans);
    text-decoration: none;
}
.qa-btn.call { background: var(--teal); color: var(--white); }
.qa-btn.call:hover { background: #087a6d; transform: translateY(-2px); }
.qa-btn.wa { background: #25d366; color: var(--white); }
.qa-btn.wa:hover { background: #1da851; transform: translateY(-2px); }

/* Success message */
.success-msg {
    display: none; align-items: center; gap: 0.75rem;
    background: #dcfce7; border: 1px solid #86efac;
    border-radius: var(--radius-sm); padding: 1rem 1.25rem;
    color: #166534; font-size: 0.92rem; font-weight: 500;
    margin-bottom: 1.25rem;
}
.success-msg.show { display: flex; }
.success-msg i { font-size: 1.2rem; flex-shrink: 0; }

/* Hours table */
.hours-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; margin-top: 0.5rem; }
.hours-table th { text-align: left; padding: 0.5rem 0.4rem; font-size: 0.78rem; font-weight: 700; color: var(--slate-light); text-transform: uppercase; letter-spacing: 0.05em; border-bottom: 2px solid var(--border); }
.hours-table td { padding: 0.6rem 0.4rem; color: var(--slate); border-bottom: 1px solid var(--border); }
.hours-table tr.open td:last-child { color: var(--teal); font-weight: 600; }
.hours-table tr:last-child td { border-bottom: none; }

/* Map section */
.map-section { padding: 4rem 5%; background: var(--mist); }
.map-inner { max-width: var(--max-w); margin: 0 auto; }
.map-placeholder {
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius-md); padding: 3rem 2rem;
    text-align: center; box-shadow: var(--shadow-sm);
    display: flex; flex-direction: column; align-items: center; gap: 0.65rem;
}
.map-placeholder i { font-size: 3rem; color: var(--teal); }
.map-placeholder p { font-size: 1rem; font-weight: 600; color: var(--navy); }
.map-placeholder span { font-size: 0.9rem; color: var(--slate-light); }
.map-placeholder a { color: var(--teal); font-weight: 600; font-size: 0.9rem; display: inline-flex; align-items: center; gap: 0.4rem; }

/* FAQ */
.faq-section { padding: 5rem 5%; max-width: var(--max-w); margin: 0 auto; }
.faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-top: 1rem; }
.faq-item {
    border: 1px solid var(--border); border-radius: var(--radius-md);
    overflow: hidden; background: var(--white);
    transition: border-color 0.25s;
}
.faq-item.open { border-color: var(--teal); }
.faq-q {
    padding: 1.1rem 1.35rem;
    font-size: 0.95rem; font-weight: 600; color: var(--navy);
    cursor: pointer; display: flex; justify-content: space-between; align-items: center;
    gap: 0.75rem;
    transition: background 0.2s;
}
.faq-q:hover { background: var(--teal-pale); }
.faq-q i { color: var(--teal); font-size: 0.85rem; flex-shrink: 0; transition: transform 0.3s; }
.faq-item.open .faq-q i { transform: rotate(180deg); }
.faq-a {
    padding: 0 1.35rem;
    font-size: 0.9rem; color: var(--slate-light); line-height: 1.75;
    max-height: 0; overflow: hidden;
    transition: max-height 0.35s var(--ease), padding 0.35s;
}
.faq-a.open { max-height: 300px; padding: 0 1.35rem 1.25rem; }

/* ===================================================
   RESPONSIVE — page-specific
   =================================================== */
@media (max-width: 1024px) {
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .leadership-grid { grid-template-columns: repeat(2, 1fr); }
    .process-steps { flex-wrap: wrap; gap: 1rem; }
    .process-step { min-width: 45%; }
    .process-step::after { display: none; }
    .video-grid { grid-template-columns: repeat(2, 1fr); }
    .faq-grid { grid-template-columns: 1fr; }
    .contact-main-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .lb-nav.prev { left: -50px; }
    .lb-nav.next { right: -50px; }
}
@media (max-width: 768px) {
    .values-grid { grid-template-columns: 1fr; }
    .leadership-grid { grid-template-columns: 1fr; }
    .process-steps { flex-direction: column; }
    .process-step { min-width: 100%; }
    .video-grid { grid-template-columns: 1fr; }
    .doctors-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .quick-actions { flex-direction: column; }
    .highlights-inner { justify-content: center; }
    .lb-nav { display: none; }
    .lightbox-media { height: 320px; }
}
