/* ============================================================
   ANNAM DENTAL CLINIC — Global Stylesheet
   ============================================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&family=Poppins:wght@600&display=swap');

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  /* ── Agency-Grade Refined Palette ─────────────────────── */
  --color-primary: #6CC04A;
  /* Brighter, intentional Agency Green */
  --color-secondary: #7ED957;
  /* Fresh hover green */
  --color-accent: #123B4A;
  /* Teal-tinted deep navy */
  --color-charcoal: #0F172A;
  /* Deep Slate/Navy */
  --color-white: #FFFFFF;
  --color-bg-soft: #F0F5F9;
  /* Crisp blue-tinted light grey */
  --color-bg-hero: #0F2D2A;

  /* ── Text ────────────────────────────── */
  --color-text-dark: #1E293B;
  --color-text-mid: #475569;
  --color-border: #CBD5E1;
  --color-error: #EF4444;
  --color-whatsapp: #25D366;

  --font-display: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius-card: 20px;
  --radius-btn: 14px;

  --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.05);
  --shadow-card-hover: 0 20px 50px rgba(108, 192, 74, 0.15);
  --shadow-nav: 0 4px 20px rgba(18, 59, 74, 0.08);
  --shadow-btn-glow: 0 8px 20px rgba(108, 192, 74, 0.25);

  --container-width: 1140px;
  --nav-height-desktop: 80px;
  --nav-height-mobile: 64px;
  --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text-dark);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section--soft {
  background: var(--color-bg-soft);
}

.section--white {
  background: var(--color-white);
}

.section--green {
  background: var(--color-primary);
}

.section--accent {
  background: var(--color-accent);
}

.section__eyebrow {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-bottom: 8px;
  text-align: center;
}

.two-col__heading {
  font-family: var(--font-display);
  font-size: 36px;
  line-height: 1.1;
  color: var(--color-accent);
  margin-bottom: 24px;
}

.two-col__heading span {
  color: var(--color-primary);
}

.section__heading {
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 1.2;
  color: var(--color-accent);
  margin-bottom: 16px;
}

.section__heading--center {
  text-align: center;
}

.section__heading--white {
  color: var(--color-white);
}

.section__heading--primary {
  color: var(--color-primary);
}

.section__subtext {
  font-size: 16px;
  color: var(--color-text-mid);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
}

.section__subtext--white {
  color: rgba(255, 255, 255, 0.85);
  max-width: 100%;
  margin-bottom: 24px;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 1px 16px rgba(0, 0, 0, 0.06);
  height: var(--nav-height-desktop);
  display: flex;
  align-items: center;
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.navbar__brand {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  letter-spacing: -0.3px;
  white-space: nowrap;
}

.navbar__logo {
  height: 40px;
  width: auto;
  border-radius: 4px;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.navbar__links a {
  font-family: var(--font-body);
  font-size: 15px;
  color: #444444;
  position: relative;
  transition: color 0.2s ease;
  font-weight: 500;
}

.navbar__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--color-primary);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.navbar__links a:hover,
.navbar__links a.active {
  color: var(--color-primary);
}

.navbar__links a.active::after,
.navbar__links a:hover::after {
  transform: scaleX(1);
}

/* Hamburger */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  border-radius: 4px;
}

.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
  transition: var(--transition);
}

.navbar__hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.navbar__hamburger.open span:nth-child(2) {
  opacity: 0;
}

.navbar__hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.navbar__mobile {
  display: none;
  flex-direction: column;
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
  position: absolute;
  top: var(--nav-height-mobile);
  left: 0;
  right: 0;
  z-index: 999;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.navbar__mobile.open {
  display: flex;
}

.navbar__mobile a {
  display: block;
  padding: 16px 24px;
  font-size: 16px;
  color: #444444;
  border-bottom: 1px solid var(--color-border);
  transition: color 0.2s ease, background 0.2s ease;
}

.navbar__mobile a:hover,
.navbar__mobile a.active {
  color: var(--color-primary);
  background: var(--color-bg-soft);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  border-radius: var(--radius-btn);
  padding: 16px 32px;
  cursor: pointer;
  border: 2.5px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
  min-height: 54px;
}

.btn--primary {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-btn-glow);
}

.btn--primary:hover {
  background: var(--color-secondary);
  border-color: var(--color-secondary);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(139, 195, 74, 0.3);
}

.btn--outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn--outline:hover {
  background: var(--color-primary);
  color: var(--color-accent);
  transform: translateY(-2px);
}

.btn--outline-white {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn--outline-white:hover {
  background: var(--color-white);
  color: var(--color-accent);
  border-color: var(--color-white);
  transform: translateY(-2px);
}

.btn--inverted {
  background: var(--color-white);
  color: var(--color-accent);
  border-color: var(--color-white);
}

.btn--inverted:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  transform: translateY(-2px);
}

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: var(--color-white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 24px;
  transition: var(--transition);
  border-top: 3px solid var(--color-secondary);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
}

.card__title {
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.3;
  color: var(--color-text-dark);
  margin-bottom: 8px;
}

.card__body {
  font-size: 14px;
  color: var(--color-text-mid);
  line-height: 1.6;
}

/* Grid layouts */
.grid--6 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

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

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

.grid--2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(108, 192, 74, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 20% 80%, rgba(108, 192, 74, 0.05) 0%, transparent 50%),
    linear-gradient(135deg, #0f2d2a 0%, #123b4a 50%, #1c2f3a 100%);
  z-index: 0;
}

/* Decorative circles in hero bg */
.hero__bg::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  top: -100px;
  right: -80px;
}

.hero__bg::after {
  content: '';
  position: absolute;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  bottom: -60px;
  right: 200px;
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 80px 0;
}

.hero__tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  margin-bottom: 20px;
}

.hero__heading {
  font-family: var(--font-display);
  font-size: 48px;
  line-height: 1.15;
  color: var(--color-white);
  margin-bottom: 16px;
  max-width: 560px;
}

.hero__subheading {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 36px;
  max-width: 480px;
  line-height: 1.6;
}

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

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: var(--color-bg-hero);
  padding: 72px 0;
  text-align: center;
  border-bottom: 3px solid var(--color-primary);
}

.page-hero__heading {
  font-family: var(--font-display);
  font-size: 40px;
  color: var(--color-white);
  margin-bottom: 12px;
}

.page-hero__sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.72);
  max-width: 560px;
  margin: 0 auto;
}

/* ============================================================
   TWO-COLUMN LAYOUT (About, Doctor sections)
   ============================================================ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.two-col__image {
  border-radius: var(--radius-card);
  overflow: hidden;
  height: 420px;
  background: linear-gradient(135deg, #2D2D2D, #1E1E1E);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
}

.two-col__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-card);
}

.two-col__image--placeholder {
  flex-direction: column;
  gap: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.two-col__eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-bottom: 8px;
}

.two-col__heading {
  font-family: var(--font-display);
  font-size: 30px;
  color: var(--color-text-dark);
  margin-bottom: 8px;
  line-height: 1.2;
}

.two-col__doctor-name {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--color-primary);
  margin-bottom: 4px;
}

.two-col__qualification {
  font-size: 13px;
  color: var(--color-text-mid);
  margin-bottom: 20px;
}

.two-col__body {
  color: var(--color-text-mid);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 24px;
}

/* ============================================================
   WHY CHOOSE US (icon grid)
   ============================================================ */
.why-item {
  text-align: center;
  padding: 24px 16px;
}

.why-item__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  background: rgba(46, 125, 94, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-item__icon svg {
  width: 32px;
  height: 32px;
}

.why-item__title {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--color-text-dark);
  margin-bottom: 8px;
}

.why-item__body {
  font-size: 14px;
  color: var(--color-text-mid);
  line-height: 1.6;
}

/* ============================================================
   CTA BANNER — dark green background, bright green phone
   ============================================================ */
.cta-banner {
  background: var(--color-primary);
  padding: 80px 0;
  text-align: center;
}

.cta-banner__heading {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--color-accent);
  margin-bottom: 12px;
}

.cta-banner__sub {
  font-size: 18px;
  color: rgba(0, 0, 0, 0.7);
  margin-bottom: 32px;
}

.cta-banner__phone {
  display: block;
  font-family: var(--font-display);
  font-size: 42px;
  color: var(--color-accent);
  margin-bottom: 32px;
  transition: var(--transition);
  font-weight: 700;
}

.cta-banner__phone:hover {
  opacity: 0.8;
  transform: scale(1.05);
}

/* ============================================================
   MISSION SECTION
   ============================================================ */
.mission {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.mission blockquote {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--color-primary);
  font-style: italic;
  line-height: 1.55;
  margin: 24px 0;
  padding: 24px 32px;
  border-left: 4px solid var(--color-secondary);
  background: rgba(46, 125, 94, 0.04);
  border-radius: 0 12px 12px 0;
  text-align: left;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: start;
}

.contact-info-card {
  background: var(--color-bg-soft);
  border-radius: var(--radius-card);
  padding: 32px;
  border: 1px solid var(--color-border);
}

.contact-info-block {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 28px;
}

.contact-info-block:last-child {
  margin-bottom: 0;
}

.contact-info-block__icon {
  width: 40px;
  height: 40px;
  background: var(--color-primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-block__icon svg {
  width: 20px;
  height: 20px;
  fill: white;
}

.contact-info-block__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-text-mid);
  margin-bottom: 4px;
}

.contact-info-block__value {
  font-size: 15px;
  color: var(--color-text-dark);
  line-height: 1.5;
}

.contact-info-block__value a {
  color: var(--color-primary);
  font-weight: 600;
  transition: color 0.2s;
}

.contact-info-block__value a:hover {
  color: var(--color-accent);
}

/* ============================================================
   FORM
   ============================================================ */
.form-card {
  background: var(--color-white);
  border-radius: var(--radius-card);
  padding: 32px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border);
}

.form-card__heading {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--color-text-dark);
  margin-bottom: 24px;
}

.form__group {
  margin-bottom: 20px;
}

.form__label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-mid);
  margin-bottom: 6px;
  letter-spacing: 0.2px;
}

.form__input,
.form__textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-text-dark);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  appearance: none;
}

.form__input:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(139, 195, 74, 0.15);
}

.form__textarea {
  resize: vertical;
  min-height: 120px;
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: #ADADAD;
}

.form__submit {
  width: 100%;
}

.form__success {
  display: none;
  margin-top: 16px;
  padding: 14px 18px;
  background: rgba(139, 195, 74, 0.1);
  border: 1px solid var(--color-primary);
  border-radius: 8px;
  color: var(--color-accent);
  font-weight: 700;
  font-size: 15px;
  text-align: center;
}

.form__success.visible {
  display: block;
}

/* ============================================================
   GOOGLE MAPS
   ============================================================ */
.map-wrapper {
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  margin-top: 40px;
}

.map-wrapper iframe {
  display: block;
  width: 100%;
  height: 380px;
  border: 0;
}

/* ============================================================
   SERVICES PAGE — Category labels
   ============================================================ */
.category-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.category-header__line {
  flex: 1;
  height: 1px;
  background: var(--color-border);
}

.category-header__text {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--color-text-dark);
  white-space: nowrap;
}

/* ============================================================
   FOOTER — dark charcoal
   ============================================================ */
.footer {
  background: var(--color-charcoal);
  padding: 56px 0 32px;
  color: rgba(255, 255, 255, 0.75);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer__brand {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--color-white);
  margin-bottom: 12px;
}

.footer__tagline {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  max-width: 260px;
}

.footer__heading {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 16px;
}

.footer__body {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.75;
}

.footer__body a {
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.2s;
}

.footer__body a:hover {
  color: var(--color-primary);
}

.footer__divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-bottom: 24px;
}

.footer__copyright {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
}

/* ============================================================
   WHATSAPP FLOATING BUTTON
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-whatsapp);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45);
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.55);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: white;
}

/* ============================================================
   ABOUT DOCTOR INTERIOR THUMBNAIL
   ============================================================ */
.interior-thumb {
  margin-top: 20px;
  border-radius: 10px;
  overflow: hidden;
  height: 120px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ============================================================
   HIGHLIGHT CARDS (About page)
   ============================================================ */
.highlight-card {
  text-align: center;
}

.highlight-card .card__icon {
  margin: 0 auto 16px;
  width: 64px;
  height: 64px;
  background: rgba(46, 125, 94, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.highlight-card .card__icon svg {
  width: 32px;
  height: 32px;
}

/* ============================================================
   CTA ROW (about page bottom)
   ============================================================ */
.cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 8px;
}

.cta-row__phone {
  font-weight: 600;
  font-size: 17px;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}

.cta-row__phone:hover {
  color: var(--color-accent);
}

/* ============================================================
   SERVICES FOOTER CTA
   ============================================================ */
.services-cta {
  background: var(--color-accent);
  padding: 60px 0;
  text-align: center;
}

.services-cta__heading {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--color-white);
  margin-bottom: 16px;
}

.services-cta__phone {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--color-primary);
  margin-bottom: 24px;
  transition: var(--transition);
  font-weight: 700;
}

.services-cta__phone:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

/* ============================================================
   RESPONSIVE — TABLET (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .grid--6 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
  .section {
    padding: 48px 0;
  }

  /* Nav */
  .navbar {
    height: var(--nav-height-mobile);
  }

  .navbar__links {
    display: none;
  }

  .navbar__hamburger {
    display: flex;
  }

  /* Hero */
  .hero {
    min-height: 380px;
  }

  .hero__content {
    padding: 56px 0;
    text-align: center;
  }

  .hero__heading {
    font-size: 28px;
    max-width: 100%;
  }

  .hero__subheading {
    font-size: 15px;
    max-width: 100%;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__tag {
    font-size: 11px;
  }

  /* Page hero */
  .page-hero {
    padding: 48px 0;
  }

  .page-hero__heading {
    font-size: 26px;
  }

  /* Section headings */
  .section__heading {
    font-size: 22px;
  }

  .section__subtext {
    margin-bottom: 32px;
  }

  /* Grids */
  .grid--6,
  .grid--4,
  .grid--3 {
    grid-template-columns: 1fr;
  }

  .grid--2col {
    grid-template-columns: 1fr;
  }

  /* Two col */
  .two-col {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .two-col__image {
    height: 260px;
  }

  .two-col__heading {
    font-size: 22px;
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
  }

  /* Map */
  .map-wrapper iframe {
    height: 280px;
  }

  /* CTA Banner */
  .cta-banner {
    padding: 48px 0;
  }

  .cta-banner__heading {
    font-size: 24px;
  }

  .cta-banner__phone {
    font-size: 24px;
  }

  /* Mission */
  .mission blockquote {
    font-size: 18px;
    padding: 20px 20px;
  }

  /* Footer */
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* CTA row */
  .cta-row {
    flex-direction: column;
    gap: 16px;
  }

  /* Services CTA */
  .services-cta__heading {
    font-size: 20px;
  }

  .services-cta__phone {
    font-size: 22px;
  }

  /* Category header */
  .category-header__text {
    font-size: 20px;
  }

  /* Buttons stacked */
  .btn {
    width: 100%;
    justify-content: center;
  }

  .hero__actions .btn {
    width: auto;
  }
}

@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
    gap: 12px;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .cta-row {
    gap: 12px;
  }
}

/* ============================================================
   ACTION BAR — Call + WhatsApp dual button strip
   ============================================================ */
.action-bar {
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 16px 0;
}

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

.action-bar__label {
  font-size: 15px;
  color: var(--color-text-mid);
  font-weight: 600;
  margin-right: 8px;
}

.btn--call {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
  font-size: 15px;
  padding: 12px 28px;
  border-radius: var(--radius-btn);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  transition: var(--transition);
  border: 2px solid var(--color-primary);
  min-height: 48px;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  white-space: nowrap;
}

.btn--call:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  transform: scale(1.02);
}

.btn--whatsapp {
  background: #25D366;
  color: var(--color-white);
  border: 2px solid #25D366;
  font-size: 15px;
  padding: 12px 28px;
  border-radius: var(--radius-btn);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  transition: var(--transition);
  min-height: 48px;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  white-space: nowrap;
}

.btn--whatsapp:hover {
  background: #1ebe57;
  border-color: #1ebe57;
  transform: scale(1.02);
}

.btn--whatsapp svg,
.btn--call svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex-shrink: 0;
}

/* Mobile sticky bottom bar */
.sticky-action-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.1);
  padding: 10px 16px;
  gap: 12px;
}

.sticky-action-bar a {
  flex: 1;
  text-align: center;
  padding: 12px 8px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: var(--font-body);
}

.sticky-action-bar a svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex-shrink: 0;
}

.sticky-action-bar .sab-call {
  background: var(--color-primary);
  color: var(--color-white);
  border: 2px solid var(--color-primary);
}

.sticky-action-bar .sab-wa {
  background: #25D366;
  color: var(--color-white);
  border: 2px solid #25D366;
}

/* Make space at bottom for sticky bar on mobile */
@media (max-width: 768px) {
  .sticky-action-bar {
    display: flex;
  }

  body {
    padding-bottom: 72px;
  }

  /* Hide the regular whatsapp float on mobile since we have the bar */
  .whatsapp-float {
    display: none;
  }

  /* action bar buttons full width on mobile */
  .action-bar__inner {
    gap: 12px;
  }

  .btn--call,
  .btn--whatsapp {
    font-size: 13px;
    padding: 11px 20px;
  }
}

/* ------------------ PATIENT EDUCATION SECTION ------------------ */
.education-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.education-image {
  background: white;
  padding: 15px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transform: rotate(-2deg);
  transition: transform 0.3s ease;
}

.education-image:hover {
  transform: rotate(0deg);
}

.poster-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
  display: block;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease;
}

.poster-img:hover {
  transform: scale(1.02);
}

.education-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .education-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.education-list {
  margin-top: 20px;
  padding-left: 20px;
}

.education-list li {
  margin-bottom: 12px;
  position: relative;
  list-style: none;
}

.education-list li::before {
  content: "✓";
  color: var(--color-primary);
  font-weight: bold;
  position: absolute;
  left: -25px;
}

@media (max-width: 768px) {
  .education-layout {
    gap: 30px;
    grid-template-columns: 1fr;
  }

  .education-image {
    transform: none;
  }
}

/* ------------------ SERVICES PAGE BANNER ------------------ */
.services-intro {
  margin-bottom: 48px;
  align-items: flex-start;
}

.services-banner-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
}

.services-banner-img {
  width: 100%;
  height: auto;
  display: block;
}

/* ------------------ CONTACT PAGE SIGNAGE ------------------ */
.contact-signage-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
}

.contact-signage-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center 20%;
  max-height: 400px;
  /* Limit height and use cover to maintain focus */
}

/* ------------------ OUR LOCATION SECTION ------------------ */
.location-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.location-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
}

.signage-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  max-height: 500px;
}

@media (max-width: 768px) {
  .location-layout {
    gap: 32px;
    grid-template-columns: 1fr;
  }

  .signage-img {
    max-height: 400px;
  }

  .services-intro {
    flex-direction: column;
    gap: 24px;
  }
}