*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --navy: #0b2447;
    --navy-mid: #163566;
    --navy-light: #1e4d8c;
    --teal: #0d9488;
    --teal-light: #14b8a6;
    --teal-pale: #ccfbf1;
    --gold: #c89b3c;
    --gold-light: #f0c060;
    --offwhite: #f7f5f0;
    --cream: #fefcf8;
    --text-dark: #0e1b2e;
    --text-mid: #334e6e;
    --text-muted: #6b8cae;
    --border: rgba(13,148,136,0.18);
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'DM Sans', system-ui, sans-serif;
    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.7;
  }

  /* ====== NAVBAR ====== */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(11,36,71,0.95);
    backdrop-filter: blur(12px);
    padding: 0 clamp(1rem, 4vw, 3rem);
    height: 68px;
    display: flex; align-items: center; justify-content: space-between;
    border-bottom: 1px solid rgba(13,148,136,0.25);
  }
  .nav-brand {
    display: flex; align-items: center; gap: 12px;
    text-decoration: none; color: white;
  }
  .nav-logo {
    width: 40px; height: 40px; background: var(--teal);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-size: 15px; color: white; font-weight: 600;
  }
  .nav-name { font-size: 13px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.9); }
  .nav-dept { font-size: 11px; color: var(--teal-light); letter-spacing: 0.1em; }
  .nav-links { display: flex; gap: 2rem; list-style: none; }
  .nav-links a { color: rgba(255,255,255,0.75); text-decoration: none; font-size: 13px; letter-spacing: 0.04em; transition: color 0.2s; font-weight: 400; }
  .nav-links a:hover { color: var(--teal-light); }
  .nav-cta {
    background: var(--teal); color: white; border: none; padding: 9px 20px;
    border-radius: 4px; font-size: 13px; cursor: pointer; font-family: var(--font-body);
    font-weight: 500; letter-spacing: 0.04em; transition: background 0.2s;
  }
  .nav-cta:hover { background: var(--teal-light); }
  .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
  .hamburger span { width: 24px; height: 2px; background: white; border-radius: 1px; transition: 0.3s; }

  /* ====== HERO ====== */
  .hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 55%, #0f3d3a 100%);
    display: flex; align-items: center;
    padding: clamp(5rem, 8vw, 7rem) clamp(1.5rem, 6vw, 6rem) clamp(3rem, 6vw, 5rem);
    position: relative; overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(13,148,136,0.12) 0%, transparent 70%);
    pointer-events: none;
  }
  .hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; width: 100%; max-width: 1300px; margin: 0 auto; position: relative; z-index: 1; }

  .hero-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(13,148,136,0.2); border: 1px solid rgba(13,148,136,0.4);
    color: var(--teal-light); padding: 6px 16px; border-radius: 100px;
    font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 500;
    margin-bottom: 1.5rem;
    opacity: 0; animation: fadeUp 0.8s var(--ease) 0.2s forwards;
  }
  .hero-eyebrow::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--teal-light); display: inline-block; }

  .hero-title {
    font-family: var(--font-display); font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 1.05; color: white; font-weight: 500; margin-bottom: 1.5rem;
    opacity: 0; animation: fadeUp 0.8s var(--ease) 0.35s forwards;
  }
  .hero-title em { color: var(--teal-light); font-style: italic; }
  .hero-title span { display: block; }

  .hero-desc {
    font-size: clamp(15px, 1.5vw, 17px); color: rgba(255,255,255,0.72); line-height: 1.8;
    max-width: 500px; margin-bottom: 2.5rem;
    opacity: 0; animation: fadeUp 0.8s var(--ease) 0.5s forwards;
  }

  .hero-actions {
    display: flex; gap: 1rem; flex-wrap: wrap;
    opacity: 0; animation: fadeUp 0.8s var(--ease) 0.65s forwards;
  }
  .btn-primary {
    background: var(--teal); color: white; padding: 14px 28px; border-radius: 4px;
    text-decoration: none; font-size: 14px; font-weight: 500; letter-spacing: 0.03em;
    transition: background 0.25s, transform 0.2s; display: inline-block;
  }
  .btn-primary:hover { background: var(--teal-light); transform: translateY(-1px); }
  .btn-outline {
    background: transparent; color: rgba(255,255,255,0.9); padding: 14px 28px;
    border-radius: 4px; text-decoration: none; font-size: 14px; font-weight: 500;
    border: 1px solid rgba(255,255,255,0.3); transition: border-color 0.25s, color 0.25s;
    display: inline-block;
  }
  .btn-outline:hover { border-color: var(--teal-light); color: var(--teal-light); }

  .hero-visual {
    position: relative;
    opacity: 0; animation: fadeIn 1.2s var(--ease) 0.4s forwards;
  }
  .hero-img-wrap {
    border-radius: 8px; overflow: hidden;
    border: 1px solid rgba(13,148,136,0.3);
    position: relative;
  }
  .hero-img-wrap img { width: 100%; height: 420px; object-fit: cover; display: block; }
  .hero-img-placeholder {
    width: 100%; height: 420px;
    background: linear-gradient(160deg, #0d4f6e 0%, #0a3d5c 40%, #083350 100%);
    display: flex; align-items: center; justify-content: center;
    flex-direction: column; gap: 1rem;
  }
  .hero-img-icon { font-size: 5rem; opacity: 0.25; }
  .hero-badge {
    position: absolute; bottom: -1.5rem; left: 2rem;
    background: var(--navy); border: 1px solid rgba(13,148,136,0.4);
    border-radius: 8px; padding: 1rem 1.5rem;
    display: flex; gap: 1.5rem; align-items: center;
  }
  .hero-badge-stat { text-align: center; }
  .hero-badge-stat strong { display: block; font-family: var(--font-display); font-size: 2rem; color: var(--teal-light); line-height: 1; }
  .hero-badge-stat span { font-size: 11px; color: rgba(255,255,255,0.55); letter-spacing: 0.06em; text-transform: uppercase; }
  .hero-badge-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.12); }

  /* ====== TICKER ====== */
  .ticker { background: var(--teal); padding: 10px 0; overflow: hidden; }
  .ticker-inner { display: flex; white-space: nowrap; animation: ticker 40s linear infinite; }
  .ticker-inner:hover { animation-play-state: paused; }
  .ticker-item { display: inline-flex; align-items: center; gap: 8px; padding: 0 2.5rem; font-size: 12px; color: white; font-weight: 500; letter-spacing: 0.04em; }
  .ticker-dot { width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,0.5); flex-shrink: 0; }

  /* ====== SECTION BASE ====== */
  section { padding: clamp(4rem, 7vw, 7rem) clamp(1.5rem, 6vw, 6rem); }
  .section-inner { max-width: 1300px; margin: 0 auto; }
  .section-label {
    font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--teal);
    font-weight: 500; margin-bottom: 0.75rem; display: flex; align-items: center; gap: 10px;
  }
  .section-label::before { content: ''; width: 28px; height: 1px; background: var(--teal); }
  .section-heading {
    font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.2rem);
    color: var(--navy); line-height: 1.15; font-weight: 500;
  }
  .section-heading em { font-style: italic; color: var(--teal); }

  /* ====== ABOUT ====== */
  .about { background: var(--offwhite); }
  .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
  .about-content { }
  .about-text { color: var(--text-mid); font-size: 16px; line-height: 1.85; margin-top: 1.5rem; }
  .about-text + .about-text { margin-top: 1rem; }
  .about-timeline { margin-top: 2.5rem; }
  .timeline-item { display: flex; gap: 1rem; margin-bottom: 1.5rem; position: relative; }
  .timeline-item::before { content: ''; position: absolute; left: 19px; top: 36px; bottom: -1.5rem; width: 1px; background: var(--border); }
  .timeline-item:last-child::before { display: none; }
  .timeline-dot { width: 40px; height: 40px; border-radius: 50%; background: var(--teal-pale); border: 2px solid var(--teal); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-family: var(--font-display); font-size: 13px; font-weight: 600; color: var(--teal); }
  .timeline-body { padding-top: 6px; }
  .timeline-year { font-size: 12px; color: var(--teal); font-weight: 500; letter-spacing: 0.06em; }
  .timeline-text { font-size: 14px; color: var(--text-mid); line-height: 1.6; margin-top: 2px; }
  .about-img-area { position: relative; }
  .about-img-wrap { border-radius: 8px; overflow: hidden; position: relative; }
  .about-img-wrap img { width: 100%; height: 480px; object-fit: cover; display: block; }
  .about-img-placeholder {
    width: 100%; height: 480px;
    background: linear-gradient(145deg, var(--navy-light) 0%, var(--navy) 100%);
    display: flex; align-items: center; justify-content: center;
    font-size: 4rem; opacity: 0.3;
  }
  .about-floatcard {
    position: absolute; bottom: -2rem; right: -2rem;
    background: var(--navy); color: white; border-radius: 8px;
    padding: 1.25rem 1.5rem; width: 200px;
    border: 1px solid rgba(13,148,136,0.3);
    box-shadow: 0 20px 40px rgba(11,36,71,0.2);
  }
  .about-floatcard .big-num { font-family: var(--font-display); font-size: 2.8rem; color: var(--teal-light); line-height: 1; }
  .about-floatcard p { font-size: 12px; color: rgba(255,255,255,0.6); margin-top: 4px; }

  /* ====== SPECIALTIES / SERVICES ====== */
  .specialties { background: var(--cream); }
  .specs-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3rem; flex-wrap: wrap; gap: 1.5rem; }
  .specs-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.5rem; }
  .spec-card {
    background: white; border-radius: 8px; padding: 2rem 1.75rem;
    border: 1px solid var(--border);
    position: relative; overflow: hidden; cursor: pointer;
    transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.3s;
    opacity: 0; transform: translateY(30px);
  }
  .spec-card.visible { opacity: 1; transform: translateY(0); }
  .spec-card::before {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--teal), var(--gold));
    transform: scaleX(0); transform-origin: left; transition: transform 0.35s var(--ease);
  }
  .spec-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(11,36,71,0.1); border-color: var(--teal); }
  .spec-card:hover::before { transform: scaleX(1); }
  .spec-icon { font-size: 2.5rem; margin-bottom: 1.25rem; display: block; }
  .spec-name { font-family: var(--font-display); font-size: 1.3rem; color: var(--navy); font-weight: 500; margin-bottom: 0.5rem; }
  .spec-desc { font-size: 13.5px; color: var(--text-muted); line-height: 1.65; }
  .spec-tag {
    display: inline-block; margin-top: 1rem;
    background: var(--teal-pale); color: var(--teal); padding: 4px 12px;
    border-radius: 100px; font-size: 11px; font-weight: 500; letter-spacing: 0.04em;
  }

  /* ====== DYNAMIC DEPT CAROUSEL ====== */
  .departments { background: var(--navy); padding: clamp(4rem, 7vw, 6rem) 0; overflow: hidden; }
  .dept-header { padding: 0 clamp(1.5rem, 6vw, 6rem); margin-bottom: 2.5rem; max-width: 1300px; margin-left: auto; margin-right: auto; }
  .dept-header .section-label { color: var(--teal-light); }
  .dept-header .section-label::before { background: var(--teal-light); }
  .dept-header .section-heading { color: white; }
  .dept-scroll-area { position: relative; padding: 0 clamp(1.5rem, 6vw, 6rem); }
  .dept-track { display: flex; gap: 1.25rem; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; padding-bottom: 1rem; }
  .dept-track::-webkit-scrollbar { display: none; }
  .dept-card {
    flex: 0 0 300px; scroll-snap-align: start;
    border-radius: 8px; overflow: hidden; position: relative;
    border: 1px solid rgba(255,255,255,0.08); cursor: pointer;
    transition: border-color 0.3s;
  }
  .dept-card:hover { border-color: var(--teal); }
  .dept-card-img {
    height: 190px; overflow: hidden; position: relative;
    background: var(--navy-mid);
  }
  .dept-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); filter: brightness(0.85); }
  .dept-card:hover .dept-card-img img { transform: scale(1.06); }
  .dept-card-img-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-size: 3rem; opacity: 0.2;
  }
  .dept-card-body { background: rgba(11,36,71,0.96); padding: 1.25rem 1.25rem 1.5rem; }
  .dept-card-name { font-family: var(--font-display); font-size: 1.15rem; color: white; font-weight: 500; }
  .dept-card-tag { font-size: 11px; color: var(--teal-light); letter-spacing: 0.08em; text-transform: uppercase; margin-top: 4px; }
  .dept-card-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 0.75rem; font-size: 12px; color: var(--teal-light); text-decoration: none; font-weight: 500; transition: gap 0.2s; }
  .dept-card-link:hover { gap: 10px; }
  .dept-nav { display: flex; gap: 10px; justify-content: flex-end; padding: 0 clamp(1.5rem, 6vw, 6rem); margin-top: 1.5rem; max-width: 1300px; margin-left: auto; margin-right: auto; }
  .dept-btn {
    width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15); color: white;
    display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 18px;
    transition: background 0.2s, border-color 0.2s;
  }
  .dept-btn:hover { background: var(--teal); border-color: var(--teal); }

  /* ====== DOCTORS ====== */
  .doctors { background: var(--offwhite); }
  .doctors-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 2rem; margin-top: 3rem; }
  .doctor-card {
    background: white; border-radius: 8px; overflow: hidden;
    border: 1px solid var(--border); text-align: center;
    transition: transform 0.3s var(--ease), box-shadow 0.3s;
    opacity: 0; transform: translateY(24px);
  }
  .doctor-card.visible { opacity: 1; transform: translateY(0); }
  .doctor-card:hover { transform: translateY(-5px); box-shadow: 0 16px 32px rgba(11,36,71,0.1); }
  .doctor-img-wrap { height: 220px; overflow: hidden; background: var(--navy-light); position: relative; }
  .doctor-img-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform 0.5s var(--ease); display: block; }
  .doctor-card:hover .doctor-img-wrap img { transform: scale(1.04); }
  .doctor-img-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-size: 3rem;
    background: linear-gradient(145deg, var(--navy-mid) 0%, var(--navy-light) 100%);
  }
  .doctor-info { padding: 1.25rem; }
  .doctor-name { font-family: var(--font-display); font-size: 1.1rem; font-weight: 500; color: var(--navy); }
  .doctor-role { font-size: 12px; color: var(--teal); font-weight: 500; letter-spacing: 0.04em; margin-top: 3px; }
  .doctor-tag { display: inline-block; background: var(--teal-pale); color: var(--teal); padding: 3px 10px; border-radius: 100px; font-size: 11px; margin-top: 8px; }

  /* ====== VISION/MISSION ====== */
  .values { background: var(--cream); }
  .values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 3rem; }
  .value-card {
    border-radius: 8px; padding: 2.5rem;
    position: relative; overflow: hidden;
  }
  .value-card.navy { background: var(--navy); }
  .value-card.teal { background: linear-gradient(135deg, #0d4f4a 0%, #0a3d3a 100%); }
  .value-card h3 { font-family: var(--font-display); font-size: 1.5rem; color: var(--teal-light); font-weight: 500; margin-bottom: 1rem; }
  .value-card p { color: rgba(255,255,255,0.78); font-size: 15px; line-height: 1.8; }
  .value-card-icon { position: absolute; top: 1.5rem; right: 1.5rem; font-size: 3rem; opacity: 0.07; }
  .core-values-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 1rem; margin-top: 2rem; }
  .core-tag { background: white; border: 1px solid var(--border); border-radius: 8px; padding: 1rem; text-align: center; }
  .core-tag .icon { font-size: 1.5rem; display: block; margin-bottom: 6px; }
  .core-tag p { font-size: 13px; font-weight: 500; color: var(--navy); }

  /* ====== CONTACT/FOOTER ====== */
  footer {
    background: var(--text-dark); padding: clamp(3rem, 5vw, 5rem) clamp(1.5rem, 6vw, 6rem) 2rem;
  }
  .footer-grid { max-width: 1300px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 4rem; }
  .footer-brand { }
  .footer-logo-wrap { display: flex; align-items: center; gap: 10px; margin-bottom: 1rem; }
  .footer-brand-name { color: white; font-weight: 500; font-size: 15px; }
  .footer-brand-sub { color: rgba(255,255,255,0.45); font-size: 12px; }
  .footer-desc { color: rgba(255,255,255,0.5); font-size: 13px; line-height: 1.75; max-width: 280px; }
  .footer-contact { margin-top: 1.5rem; }
  .footer-contact-item { display: flex; align-items: flex-start; gap: 8px; color: rgba(255,255,255,0.55); font-size: 13px; margin-bottom: 8px; }
  .footer-col h4 { color: var(--teal-light); font-size: 11px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 1.25rem; }
  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 10px; }
  .footer-col ul a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 13px; transition: color 0.2s; }
  .footer-col ul a:hover { color: var(--teal-light); }
  .footer-bottom { max-width: 1300px; margin: 3rem auto 0; border-top: 1px solid rgba(255,255,255,0.07); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
  .footer-bottom p { color: rgba(255,255,255,0.3); font-size: 12px; }

  /* ====== HOD HIGHLIGHT ====== */
  .hod-section { background: white; padding: clamp(4rem, 6vw, 6rem) clamp(1.5rem, 6vw, 6rem); }
  .hod-inner { max-width: 1300px; margin: 0 auto; display: grid; grid-template-columns: auto 1fr; gap: 4rem; align-items: center; }
  .hod-photo-wrap { position: relative; }
  .hod-photo { width: 280px; height: 320px; border-radius: 8px; overflow: hidden; border: 4px solid var(--teal-pale); position: relative; }
  .hod-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
  .hod-photo-placeholder {
    width: 100%; height: 100%;
    background: linear-gradient(145deg, var(--navy-mid), var(--navy-light));
    display: flex; align-items: center; justify-content: center; font-size: 5rem; opacity: 0.3;
  }
  .hod-badge {
    position: absolute; bottom: -1rem; left: 50%; transform: translateX(-50%);
    background: var(--teal); color: white; padding: 6px 20px; border-radius: 100px;
    font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
    white-space: nowrap;
  }
  .hod-content { }
  .hod-title { font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 3rem); color: var(--navy); margin-bottom: 0.25rem; font-weight: 500; }
  .hod-role { color: var(--teal); font-size: 14px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 1.5rem; }
  .hod-quote {
    font-family: var(--font-display); font-size: 1.3rem; font-style: italic;
    color: var(--text-mid); line-height: 1.65; border-left: 3px solid var(--teal);
    padding-left: 1.5rem; margin-bottom: 1.5rem;
  }
  .hod-text { color: var(--text-mid); font-size: 15px; line-height: 1.8; }

  /* ====== CLINIC DAYS ====== */
  .clinic { background: var(--navy); padding: clamp(4rem, 7vw, 6rem) clamp(1.5rem, 6vw, 6rem); }
  .clinic .section-label { color: var(--teal-light); }
  .clinic .section-label::before { background: var(--teal-light); }
  .clinic .section-heading { color: white; }
  .clinic-note { color: rgba(255,255,255,0.55); font-size: 14px; margin-top: 0.5rem; }
  .week-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem; margin-top: 2.5rem;
  }
  .day-col {
    border-radius: 8px; overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
    transition: border-color 0.3s, transform 0.3s var(--ease);
  }
  .day-col:hover { border-color: var(--teal); transform: translateY(-4px); }
  .day-col.today { border-color: var(--teal); }
  .day-head {
    padding: 0.85rem 1rem;
    text-align: center; font-size: 11px; font-weight: 600;
    letter-spacing: 0.12em; text-transform: uppercase;
    background: rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.55);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    position: relative;
  }
  .day-col.today .day-head {
    background: var(--teal); color: white;
  }
  .today-pill {
    display: inline-block; background: var(--gold); color: var(--navy);
    font-size: 9px; font-weight: 700; padding: 2px 7px; border-radius: 100px;
    letter-spacing: 0.08em; text-transform: uppercase; margin-left: 6px;
    vertical-align: middle;
  }
  .day-body { padding: 1rem; display: flex; flex-direction: column; gap: 0.6rem; background: rgba(11,36,71,0.6); }
  .clinic-slot {
    background: rgba(255,255,255,0.04); border-radius: 6px;
    padding: 0.75rem; border-left: 3px solid var(--teal);
    transition: background 0.2s;
  }
  .clinic-slot:hover { background: rgba(13,148,136,0.12); }
  .clinic-slot.subspecialty { border-left-color: var(--gold); }
  .clinic-slot.special { border-left-color: #a78bfa; }
  .slot-name { font-size: 13px; font-weight: 500; color: white; line-height: 1.3; }
  .slot-time { font-size: 11px; color: var(--teal-light); margin-top: 3px; font-weight: 500; }
  .clinic-slot.subspecialty .slot-time { color: var(--gold-light); }
  .clinic-slot.special .slot-time { color: #c4b5fd; }
  .slot-tag {
    display: inline-block; margin-top: 5px;
    font-size: 9px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
    padding: 2px 8px; border-radius: 100px;
    background: rgba(13,148,136,0.2); color: var(--teal-light);
  }
  .clinic-slot.subspecialty .slot-tag { background: rgba(200,155,60,0.2); color: var(--gold-light); }
  .clinic-slot.special .slot-tag { background: rgba(167,139,250,0.2); color: #c4b5fd; }
  .day-off {
    padding: 2rem 1rem; text-align: center;
    color: rgba(255,255,255,0.2); font-size: 13px; font-style: italic;
    background: rgba(11,36,71,0.6);
  }
  .clinic-legend { display: flex; gap: 1.5rem; flex-wrap: wrap; margin-top: 1.75rem; }
  .legend-item { display: flex; align-items: center; gap: 8px; font-size: 12px; color: rgba(255,255,255,0.55); }
  .legend-dot { width: 12px; height: 12px; border-radius: 2px; flex-shrink: 0; }
  @media (max-width: 900px) {
    .week-grid { grid-template-columns: repeat(3, 1fr); }
  }
  @media (max-width: 600px) {
    .week-grid { grid-template-columns: 1fr 1fr; }
  }

  /* ====== SCROLL REVEAL ====== */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  @keyframes ticker {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  /* ====== RESPONSIVE ====== */
  @media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero-visual { display: none; }
    .about-grid { grid-template-columns: 1fr; }
    .about-img-area { display: none; }
    .values-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
    .hod-inner { grid-template-columns: 1fr; }
    .hod-photo { width: 100%; height: 260px; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
  }
  @media (max-width: 600px) {
    .footer-grid { grid-template-columns: 1fr; }
    .hero-badge { flex-direction: column; gap: 0.75rem; width: calc(100% - 2rem); }
    .hero-badge-divider { display: none; }
    .dept-card { flex: 0 0 260px; }
    .nav-cta { display: none; }
  }

  /* Mobile nav toggle */
  .mobile-nav {
    display: none; position: fixed; top: 68px; left: 0; right: 0; z-index: 99;
    background: rgba(11,36,71,0.98); backdrop-filter: blur(12px);
    padding: 1.5rem clamp(1.5rem, 6vw, 3rem) 2rem;
    border-bottom: 1px solid rgba(13,148,136,0.2);
  }
  .mobile-nav.open { display: block; }
  .mobile-nav a { display: block; color: rgba(255,255,255,0.8); text-decoration: none; padding: 0.6rem 0; font-size: 15px; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .mobile-nav a:last-child { border-bottom: none; }
  .mobile-nav a:hover { color: var(--teal-light); }