/*
Theme Name: Sahil Hospital
Theme URI: https://sahilhospital.com
Author: Lifeline Strategy Partner
Author URI: https://sahilhospital.com
Description: Official website theme for Sahil Hospital, Thane. Multispecialty private hospital with General Surgery, Cardiology, Gynaecology, General Medicine, Physiotherapy and Dental services.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: Proprietary
Tags: hospital, medical, healthcare, thane
*/


/* ===== SAHIL HOSPITAL THEME STYLES ===== */

  :root {
    --navy: #1B3A6B;
    --navy-deep: #122a52;
    --teal: #2A9BA8;
    --teal-light: #3db8c8;
    --teal-pale: #e8f7f9;
    --white: #ffffff;
    --off-white: #f7fbfc;
    --grey: #6b7280;
    --grey-light: #f0f4f8;
    --text: #1a2740;
    --grad: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 50%, var(--teal) 100%);
    --grad-soft: linear-gradient(135deg, #1B3A6B 0%, #2A9BA8 100%);
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
  }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(27, 58, 107, 0.97);
    backdrop-filter: blur(12px);
    padding: 0 40px;
    display: flex; align-items: center; justify-content: space-between;
    height: 68px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .nav-logo {
    display: flex; align-items: center; gap: 12px;
    text-decoration: none;
  }

  .logo-cross {
    width: 36px; height: 36px;
    position: relative;
  }
  .logo-cross::before, .logo-cross::after {
    content: ''; position: absolute;
    background: var(--teal-light);
    border-radius: 3px;
  }
  .logo-cross::before { width: 12px; height: 36px; left: 12px; top: 0; }
  .logo-cross::after  { width: 36px; height: 12px; left: 0; top: 12px; }

  .logo-text { display: flex; flex-direction: column; line-height: 1.1; }
  .logo-text span:first-child {
    font-family: 'Playfair Display', serif;
    font-size: 18px; font-weight: 700;
    color: var(--white); letter-spacing: 0.5px;
  }
  .logo-text span:last-child {
    font-size: 10px; font-weight: 400;
    color: var(--teal-light); letter-spacing: 2px; text-transform: uppercase;
  }

  .nav-links {
    display: flex; gap: 32px; list-style: none;
  }
  .nav-links a {
    color: rgba(255,255,255,0.8); text-decoration: none;
    font-size: 13px; font-weight: 500; letter-spacing: 0.5px;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--teal-light); }

  .nav-cta {
    background: var(--teal); color: white;
    border: none; padding: 10px 22px; border-radius: 6px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px; font-weight: 600;
    cursor: pointer; transition: all 0.2s;
    text-decoration: none;
  }
  .nav-cta:hover { background: var(--teal-light); transform: translateY(-1px); }

  /* ── HERO ── */
  #hero {
    min-height: 100vh;
    background: var(--grad);
    position: relative; overflow: hidden;
    display: flex; align-items: center;
    padding: 100px 80px 60px;
  }

  /* Decorative circles */
  .hero-circle {
    position: absolute; border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.08);
  }
  .hero-circle:nth-child(1) { width: 600px; height: 600px; right: -100px; top: -100px; }
  .hero-circle:nth-child(2) { width: 400px; height: 400px; right: 50px; top: 50px; }
  .hero-circle:nth-child(3) { width: 200px; height: 200px; right: 150px; top: 150px;
    background: rgba(42,155,168,0.15); }

  /* Floating teal blob */
  .hero-blob {
    position: absolute; right: 0; top: 0;
    width: 45%; height: 100%;
    background: linear-gradient(160deg, rgba(42,155,168,0.3) 0%, transparent 60%);
    clip-path: ellipse(70% 80% at 80% 50%);
  }

  .hero-content { position: relative; z-index: 2; max-width: 600px; }

  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 6px 16px; border-radius: 20px;
    color: var(--teal-light); font-size: 12px; font-weight: 500;
    letter-spacing: 1.5px; text-transform: uppercase;
    margin-bottom: 28px;
  }
  .hero-badge::before { content: '●'; font-size: 8px; color: var(--teal-light); }

  .hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(40px, 5vw, 62px);
    font-weight: 700; color: white;
    line-height: 1.1; margin-bottom: 20px;
  }
  .hero-content h1 em {
    font-style: normal; color: var(--teal-light);
  }

  .hero-content p {
    font-size: 16px; color: rgba(255,255,255,0.75);
    line-height: 1.7; margin-bottom: 36px; max-width: 480px;
  }

  .hero-hindi {
    font-size: 14px; color: rgba(255,255,255,0.5);
    font-style: italic; margin-bottom: 36px;
    margin-top: -20px;
  }

  .hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

  .btn-primary {
    background: var(--white); color: var(--navy);
    padding: 14px 32px; border-radius: 8px;
    font-weight: 600; font-size: 14px;
    text-decoration: none; transition: all 0.2s;
    display: inline-flex; align-items: center; gap: 8px;
  }
  .btn-primary:hover { background: var(--teal-pale); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }

  .btn-secondary {
    background: transparent; color: white;
    padding: 14px 32px; border-radius: 8px;
    font-weight: 600; font-size: 14px;
    text-decoration: none; transition: all 0.2s;
    border: 1.5px solid rgba(255,255,255,0.4);
    display: inline-flex; align-items: center; gap: 8px;
  }
  .btn-secondary:hover { background: rgba(255,255,255,0.1); transform: translateY(-2px); }

  .hero-stats {
    display: flex; gap: 40px; margin-top: 56px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.15);
  }
  .stat-item { text-align: left; }
  .stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 36px; font-weight: 700; color: white;
    line-height: 1;
  }
  .stat-label { font-size: 12px; color: rgba(255,255,255,0.55); margin-top: 4px; letter-spacing: 0.5px; }

  /* Scroll indicator */
  .scroll-hint {
    position: absolute; bottom: 32px; left: 50%;
    transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    color: rgba(255,255,255,0.4); font-size: 11px; letter-spacing: 2px;
    text-transform: uppercase;
  }
  .scroll-hint::after {
    content: '';
    width: 1px; height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
    animation: scrollPulse 2s infinite;
  }
  @keyframes scrollPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
  }

  /* ── SECTION COMMON ── */
  section { padding: 90px 80px; }

  .section-label {
    display: inline-block;
    font-size: 11px; font-weight: 600;
    letter-spacing: 3px; text-transform: uppercase;
    color: var(--teal); margin-bottom: 12px;
  }

  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 700; color: var(--navy);
    line-height: 1.2; margin-bottom: 16px;
  }

  .section-sub {
    font-size: 15px; color: var(--grey);
    line-height: 1.7; max-width: 560px;
    margin-bottom: 52px;
  }

  /* ── ABOUT ── */
  #about { background: var(--white); }

  .about-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  }

  .about-visual {
    position: relative;
  }

  .about-card-main {
    background: var(--grad);
    border-radius: 20px; padding: 48px 40px;
    color: white; position: relative; overflow: hidden;
  }
  .about-card-main::after {
    content: '🏥';
    position: absolute; right: 24px; bottom: 24px;
    font-size: 80px; opacity: 0.15;
  }
  .about-card-main h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px; margin-bottom: 16px;
  }
  .about-card-main p { font-size: 14px; line-height: 1.7; opacity: 0.85; }

  .founding-principle {
    margin: 24px 0;
    padding: 20px 24px;
    border-left: 4px solid rgba(255,255,255,0.6);
    border-radius: 0 12px 12px 0;
  }
  .principle-quote {
    font-family: 'Playfair Display', serif;
    font-size: 17px; font-weight: 600;
    color: white; line-height: 1.5;
    font-style: italic; display: block;
    letter-spacing: 0.3px;
  }

  .about-card-float {
    position: absolute; bottom: -24px; right: -24px;
    background: white;
    border-radius: 16px; padding: 20px 24px;
    box-shadow: 0 20px 60px rgba(27,58,107,0.15);
    display: flex; align-items: center; gap: 16px;
    min-width: 200px;
  }
  .float-icon {
    width: 48px; height: 48px; border-radius: 12px;
    background: var(--teal-pale);
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; flex-shrink: 0;
  }
  .float-text span:first-child {
    display: block; font-size: 22px; font-weight: 700; color: var(--navy);
    font-family: 'Playfair Display', serif;
  }
  .float-text span:last-child { font-size: 11px; color: var(--grey); }

  .about-values { display: flex; flex-direction: column; gap: 28px; }

  .value-item { display: flex; gap: 20px; align-items: flex-start; }
  .value-icon {
    width: 52px; height: 52px; border-radius: 14px;
    background: var(--teal-pale); flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
  }
  .value-text h4 { font-size: 16px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
  .value-text p { font-size: 14px; color: var(--grey); line-height: 1.6; }

  /* ── SPECIALTIES ── */
  #specialties { background: var(--off-white); }

  .spec-grid {
    display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px;
  }
  @media (max-width: 1100px) {
    .spec-grid { grid-template-columns: repeat(3, 1fr); }
  }

  .spec-card {
    background: white; border-radius: 16px;
    padding: 32px 24px; text-align: center;
    transition: all 0.3s; cursor: pointer;
    border: 1.5px solid transparent;
    position: relative; overflow: hidden;
  }
  .spec-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: var(--grad-soft);
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.3s;
  }
  .spec-card:hover { transform: translateY(-6px); border-color: var(--teal-light); box-shadow: 0 16px 48px rgba(42,155,168,0.15); }
  .spec-card:hover::before { transform: scaleX(1); }

  .spec-icon {
    width: 64px; height: 64px; border-radius: 18px;
    background: var(--teal-pale);
    display: flex; align-items: center; justify-content: center;
    font-size: 28px; margin: 0 auto 20px;
    transition: background 0.3s;
  }
  .spec-card:hover .spec-icon { background: var(--navy); }

  .spec-card h3 { font-size: 16px; font-weight: 600; color: var(--navy); margin-bottom: 10px; }
  .spec-card p { font-size: 13px; color: var(--grey); line-height: 1.6; }

  .spec-services {
    margin-top: 14px; padding-top: 14px;
    border-top: 1px solid var(--grey-light);
    text-align: left;
  }
  .spec-services li {
    font-size: 12px; color: var(--grey);
    list-style: none; padding: 3px 0;
    display: flex; align-items: center; gap: 6px;
  }
  .spec-services li::before { content: '→'; color: var(--teal); font-size: 10px; }

  /* ── DOCTORS ── */
  #doctors { background: white; }

  .doctors-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
  }
  .doctors-grid .doctor-card:nth-child(4),
  .doctors-grid .doctor-card:nth-child(5) {
    grid-column: auto;
  }
  @media (min-width: 1200px) {
    .doctors-grid { grid-template-columns: repeat(5, 1fr); }
  }
  @media (min-width: 901px) and (max-width: 1199px) {
    .doctors-grid { grid-template-columns: repeat(3, 1fr); }
  }

  .doctor-card {
    border-radius: 20px; overflow: hidden;
    border: 1.5px solid #e8eef5;
    transition: all 0.3s;
    background: white;
  }
  .doctor-card:hover { transform: translateY(-8px); box-shadow: 0 24px 60px rgba(27,58,107,0.12); }

  .doctor-header {
    background: var(--grad);
    padding: 32px 24px 24px;
    text-align: center; position: relative;
  }

  .doctor-avatar {
    width: 110px; height: 110px; border-radius: 50%;
    border: 3px solid rgba(255,255,255,0.4);
    margin: 0 auto 16px;
    background: rgba(255,255,255,0.2);
    display: flex; align-items: center; justify-content: center;
    font-size: 36px; overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  }
  .doctor-avatar img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center center;
    border-radius: 50%;
  }

  .doctor-years {
    position: absolute; top: 16px; right: 16px;
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 20px; padding: 4px 10px;
    font-size: 10px; color: white; font-weight: 600;
    letter-spacing: 0.5px;
  }

  .doctor-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 18px; font-weight: 700; color: white;
    margin-bottom: 4px;
  }
  .doctor-header .qual {
    font-size: 12px; color: rgba(255,255,255,0.75);
  }
  .doctor-header .specialty-tag {
    display: inline-block; margin-top: 10px;
    background: rgba(255,255,255,0.15);
    padding: 4px 12px; border-radius: 12px;
    font-size: 11px; color: white; font-weight: 500;
  }

  .doctor-body { padding: 20px 20px 24px; }

  .doctor-services h4 {
    font-size: 11px; font-weight: 600; color: var(--teal);
    letter-spacing: 1.5px; text-transform: uppercase;
    margin-bottom: 12px;
  }

  .service-tags { display: flex; flex-wrap: wrap; gap: 6px; }
  .service-tag {
    background: var(--teal-pale); color: var(--navy);
    padding: 4px 10px; border-radius: 20px;
    font-size: 11px; font-weight: 500;
  }

  .doctor-contact {
    margin-top: 16px; padding-top: 16px;
    border-top: 1px solid var(--grey-light);
    display: flex; align-items: center; justify-content: space-between;
  }
  .doctor-phone { font-size: 12px; color: var(--grey); }
  .doctor-btn {
    background: var(--navy); color: white;
    padding: 7px 16px; border-radius: 6px;
    font-size: 11px; font-weight: 600;
    text-decoration: none; transition: background 0.2s;
  }
  .doctor-btn:hover { background: var(--teal); }

  /* ── SERVICES / FACILITIES ── */
  #services { background: var(--navy); position: relative; overflow: hidden; }
  #services::before {
    content: '';
    position: absolute; top: -100px; right: -100px;
    width: 500px; height: 500px; border-radius: 50%;
    background: radial-gradient(circle, rgba(42,155,168,0.15) 0%, transparent 70%);
  }

  #services .section-label { color: var(--teal-light); }
  #services .section-title { color: white; }
  #services .section-sub { color: rgba(255,255,255,0.6); }

  .services-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  }

  .service-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px; padding: 32px 28px;
    transition: all 0.3s;
  }
  .service-card:hover {
    background: rgba(42,155,168,0.15);
    border-color: rgba(42,155,168,0.4);
    transform: translateY(-4px);
  }

  .service-card-icon {
    font-size: 32px; margin-bottom: 20px;
    display: block;
  }
  .service-card h3 { font-size: 18px; font-weight: 600; color: white; margin-bottom: 10px; }
  .service-card p { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.7; }
  .service-card ul { margin-top: 16px; padding-left: 0; list-style: none; }
  .service-card ul li {
    font-size: 13px; color: rgba(255,255,255,0.55);
    padding: 4px 0;
    display: flex; align-items: center; gap: 8px;
  }
  .service-card ul li::before { content: '✦'; color: var(--teal-light); font-size: 8px; }

  /* ── CONSULTATION TIMINGS ── */
  #timings { background: var(--off-white); }

  .timings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 40px;
  }
  @media (max-width: 1100px) {
    .timings-grid { grid-template-columns: repeat(2, 1fr); }
  }

  .timing-card {
    background: white; border-radius: 20px;
    border: 1.5px solid #e8eef5;
    overflow: hidden; transition: all 0.3s;
    display: flex; flex-direction: column;
  }
  .timing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 56px rgba(27,58,107,0.1);
  }

  .timing-header {
    background: var(--grad);
    padding: 24px 24px 20px;
    display: flex; align-items: center; gap: 16px;
  }
  .timing-avatar {
    width: 52px; height: 52px; border-radius: 50%;
    background: rgba(255,255,255,0.2);
    border: 2px solid rgba(255,255,255,0.35);
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; flex-shrink: 0;
  }
  .timing-doc-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 16px; font-weight: 700;
    color: white; margin-bottom: 3px; line-height: 1.2;
  }
  .timing-doc-info span {
    font-size: 11px; color: rgba(255,255,255,0.7);
  }

  .timing-body {
    padding: 20px 24px; flex: 1;
  }
  .timing-body-center {
    display: flex; align-items: center; justify-content: center;
  }

  .timing-table { width: 100%; border-collapse: collapse; }
  .timing-table tr { border-bottom: 1px solid #f0f4f8; }
  .timing-table tr:last-child { border-bottom: none; }
  .timing-table td {
    padding: 9px 0; font-size: 13px;
  }
  .timing-table td:first-child {
    color: var(--navy); font-weight: 500; width: 45%;
  }
  .timing-table td:last-child {
    color: var(--teal); font-weight: 600; text-align: right;
  }
  .timing-table tr.closed td {
    color: #bbb;
  }
  .timing-table tr.closed td:last-child {
    color: #ccc; font-weight: 400;
  }
  .timing-table tr.appt-only td:last-child {
    color: var(--orange, #E8651A); font-weight: 500; font-style: italic;
  }

  .appt-only-block {
    text-align: center; padding: 16px 8px;
  }
  .appt-icon { font-size: 32px; display: block; margin-bottom: 12px; }
  .appt-only-block p {
    font-size: 13px; color: var(--grey); line-height: 1.6; margin-bottom: 4px;
  }
  .appt-only-block p:first-of-type {
    font-weight: 600; color: var(--navy); font-size: 14px;
  }

  .timing-book-btn {
    display: block; text-align: center;
    background: var(--teal-pale); color: var(--navy);
    padding: 13px; font-size: 13px; font-weight: 600;
    text-decoration: none; transition: all 0.2s;
    border-top: 1px solid #e8eef5;
  }
  .timing-book-btn:hover {
    background: var(--navy); color: white;
  }

  .timings-note {
    display: flex; align-items: center; justify-content: center;
    gap: 12px; padding: 20px 28px;
    background: var(--teal-pale);
    border-radius: 12px; text-align: center;
  }
  .timings-note span { font-size: 22px; flex-shrink: 0; }
  .timings-note p { font-size: 14px; color: var(--navy); }
  .timings-note a { color: var(--teal); font-weight: 600; text-decoration: none; }
  .timings-note a:hover { text-decoration: underline; }

  /* ── APPOINTMENT ── */
  #appointment { background: var(--teal-pale); }

  .appt-wrap {
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
  }

  .appt-info { }
  .appt-info .section-title { margin-bottom: 12px; }

  .consult-schedule { margin-top: 32px; }
  .consult-schedule h4 {
    font-size: 12px; font-weight: 600; color: var(--teal);
    letter-spacing: 2px; text-transform: uppercase;
    margin-bottom: 16px;
  }

  .schedule-table { width: 100%; border-collapse: collapse; }
  .schedule-table td {
    padding: 10px 0;
    border-bottom: 1px solid rgba(27,58,107,0.08);
    font-size: 14px;
  }
  .schedule-table td:first-child { color: var(--navy); font-weight: 500; }
  .schedule-table td:last-child { color: var(--grey); text-align: right; }

  .appt-form {
    background: white; border-radius: 20px; padding: 40px;
    box-shadow: 0 16px 48px rgba(27,58,107,0.1);
  }

  .appt-form h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px; color: var(--navy);
    margin-bottom: 8px;
  }
  .appt-form p { font-size: 13px; color: var(--grey); margin-bottom: 28px; }

  .form-group { margin-bottom: 20px; }
  .form-group label {
    display: block; font-size: 12px; font-weight: 600;
    color: var(--navy); margin-bottom: 6px;
    letter-spacing: 0.5px;
  }
  .form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 12px 16px;
    border: 1.5px solid #dde3ee;
    border-radius: 8px; font-family: 'DM Sans', sans-serif;
    font-size: 14px; color: var(--text);
    background: var(--off-white);
    transition: border-color 0.2s;
    outline: none;
  }
  .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--teal); background: white;
  }
  .form-group textarea { resize: vertical; min-height: 80px; }

  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

  .form-submit {
    width: 100%; padding: 14px;
    background: var(--grad-soft); color: white;
    border: none; border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px; font-weight: 600;
    cursor: pointer; transition: all 0.2s;
    margin-top: 8px;
  }
  .form-submit:hover { opacity: 0.9; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(27,58,107,0.25); }

  .form-note {
    text-align: center; font-size: 12px; color: var(--grey);
    margin-top: 12px;
  }
  .form-note a { color: var(--teal); text-decoration: none; font-weight: 600; }

  /* ── BLOG / HEALTH TIPS ── */
  #blog { background: var(--off-white); }

  .blog-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
  }

  .blog-card {
    background: white; border-radius: 16px; overflow: hidden;
    transition: all 0.3s; border: 1px solid #eaeff5;
  }
  .blog-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(27,58,107,0.1); }

  .blog-img {
    height: 160px;
    display: flex; align-items: center; justify-content: center;
    font-size: 48px;
    position: relative;
  }
  .blog-img-1 { background: linear-gradient(135deg, #e8f4fb, #c8e8f5); }
  .blog-img-2 { background: linear-gradient(135deg, #e8fbf0, #c8f0d8); }
  .blog-img-3 { background: linear-gradient(135deg, #fef4e8, #fde0c0); }

  .blog-tag {
    position: absolute; top: 12px; left: 12px;
    background: var(--navy); color: white;
    padding: 4px 10px; border-radius: 4px;
    font-size: 10px; font-weight: 600; letter-spacing: 1px;
    text-transform: uppercase;
  }

  .blog-body { padding: 24px; }
  .blog-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 17px; color: var(--navy);
    margin-bottom: 10px; line-height: 1.4;
  }
  .blog-body p { font-size: 13px; color: var(--grey); line-height: 1.7; margin-bottom: 16px; }

  .blog-meta {
    display: flex; align-items: center; justify-content: space-between;
    font-size: 11px; color: var(--grey);
  }
  .blog-read { color: var(--teal); font-weight: 600; text-decoration: none; }
  .blog-read:hover { text-decoration: underline; }

  /* ── CONTACT ── */
  #contact { background: white; }

  .contact-wrap {
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
  }

  .contact-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px; color: var(--navy); margin-bottom: 16px;
  }
  .contact-info p { font-size: 15px; color: var(--grey); line-height: 1.7; margin-bottom: 36px; }

  .contact-items { display: flex; flex-direction: column; gap: 24px; }

  .contact-item {
    display: flex; gap: 16px; align-items: flex-start;
  }
  .contact-item-icon {
    width: 48px; height: 48px; border-radius: 12px;
    background: var(--teal-pale); flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
  }
  .contact-item-text h4 { font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
  .contact-item-text p, .contact-item-text a {
    font-size: 14px; color: var(--grey);
    text-decoration: none; line-height: 1.6;
  }
  .contact-item-text a:hover { color: var(--teal); }

  .contact-map {
    border-radius: 20px; overflow: hidden;
    border: 1.5px solid #e0e8f0;
    box-shadow: 0 12px 40px rgba(27,58,107,0.08);
  }

  .map-placeholder {
    background: linear-gradient(135deg, #e8eef5, #d4e0ee);
    height: 400px; display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 16px;
    text-align: center; padding: 24px;
  }
  .map-placeholder .map-pin { font-size: 48px; }
  .map-placeholder h3 { font-family: 'Playfair Display', serif; font-size: 22px; color: var(--navy); }
  .map-placeholder p { font-size: 14px; color: var(--grey); max-width: 280px; line-height: 1.6; }
  .map-directions {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--navy); color: white;
    padding: 12px 24px; border-radius: 8px;
    font-size: 13px; font-weight: 600; text-decoration: none;
    margin-top: 8px; transition: background 0.2s;
  }
  .map-directions:hover { background: var(--teal); }

  /* ── FOOTER ── */
  footer {
    background: var(--navy-deep);
    padding: 60px 80px 32px;
  }

  .footer-top {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px; margin-bottom: 48px;
  }

  .footer-brand p {
    font-size: 13px; color: rgba(255,255,255,0.5);
    line-height: 1.7; margin-top: 16px; max-width: 280px;
  }

  .footer-col h4 {
    font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.9);
    letter-spacing: 2px; text-transform: uppercase; margin-bottom: 20px;
  }
  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 10px; }
  .footer-col ul li a {
    font-size: 13px; color: rgba(255,255,255,0.5);
    text-decoration: none; transition: color 0.2s;
  }
  .footer-col ul li a:hover { color: var(--teal-light); }

  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 28px;
    display: flex; align-items: center; justify-content: space-between;
  }
  .footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.35); }
  .footer-bottom .emergency {
    display: flex; align-items: center; gap: 10px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 8px 18px; border-radius: 20px;
    font-size: 12px; color: rgba(255,255,255,0.6);
  }
  .footer-bottom .emergency span { color: #ff6b6b; font-weight: 700; }

  /* ── EMERGENCY STRIP ── */
  .emergency-strip {
    background: #d63031; padding: 10px 80px;
    display: flex; align-items: center; justify-content: center; gap: 16px;
  }
  .emergency-strip p { font-size: 13px; color: white; font-weight: 500; }
  .emergency-strip a { color: white; font-weight: 700; text-decoration: none; }

  /* ── WHATSAPP FLOAT ── */
  .whatsapp-float {
    position: fixed; bottom: 28px; right: 28px; z-index: 200;
    width: 56px; height: 56px; border-radius: 50%;
    background: #25D366;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    text-decoration: none; transition: all 0.2s;
    font-size: 28px;
  }
  .whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,0.5); }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .fade-up {
    opacity: 0; animation: fadeUp 0.7s ease forwards;
  }
  .delay-1 { animation-delay: 0.1s; }
  .delay-2 { animation-delay: 0.25s; }
  .delay-3 { animation-delay: 0.4s; }
  .delay-4 { animation-delay: 0.55s; }

  /* ── TOAST ── */
  .toast {
    position: fixed; bottom: 100px; right: 28px; z-index: 300;
    background: var(--navy); color: white;
    padding: 16px 24px; border-radius: 12px;
    font-size: 14px; font-weight: 500;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    transform: translateY(20px); opacity: 0;
    transition: all 0.3s; pointer-events: none;
  }
  .toast.show { transform: translateY(0); opacity: 1; }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    nav { padding: 0 24px; }
    .nav-links { display: none; }
    section { padding: 60px 24px; }
    #hero { padding: 100px 24px 60px; }
    .hero-stats { gap: 24px; }
    .about-grid, .appt-wrap, .contact-wrap { grid-template-columns: 1fr; gap: 40px; }
    .spec-grid { grid-template-columns: 1fr 1fr; }
    .doctors-grid { grid-template-columns: 1fr 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
    .emergency-strip { padding: 10px 24px; }
    .about-card-float { right: 0; }
  }
