/* ==========================================================================
   AAROHI WOMEN'S CARE CLINIC — CLEAN BRIGHT MEDICAL DESIGN
   ========================================================================== */

/* ===== 1. DESIGN TOKENS ===== */
:root {
  --primary: #C62871;
  --primary-dark: #A72060;
  --primary-light: #FFF0F7;
  --primary-rgb: 198, 40, 113;
  --primary-gradient: linear-gradient(135deg, #D62D7A 0%, #A72060 100%);

  --secondary: #16213E;
  --secondary-light: #0F3460;

  --accent-pink: #F8D0E8;
  --accent-soft: #FEF6FB;
  --accent-blue: #E8F4FD;

  --text-dark: #16213E;
  --text-mid: #4A4A68;
  --text-light: #7A7A9A;

  --bg-white: #FFFFFF;
  --bg-light: #FAFAFA;
  --bg-pink-soft: #FDF5F9;

  --border: #F0E6ED;
  --border-pink: rgba(198, 40, 113, 0.12);

  --whatsapp: #25D366;
  --gold: #F59E0B;

  --font-heading: 'Outfit', 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;

  --header-height: 72px;
  --topbar-height: 40px;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 50px;

  --shadow-xs: 0 1px 3px rgba(0,0,0,0.04);
  --shadow-sm: 0 4px 16px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.08);
  --shadow-lg: 0 24px 64px rgba(0,0,0,0.12);
  --shadow-pink: 0 8px 32px rgba(198, 40, 113, 0.3);
  --shadow-card: 0 4px 20px rgba(22, 33, 62, 0.06);

  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.2s ease;
}

/* ===== 2. RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--bg-white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
}
p { color: var(--text-mid); margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* ===== 3. LAYOUT ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.section { padding: 5rem 0; position: relative; }

/* ===== 4. BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.2px;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: var(--transition-fast);
}
.btn:active::after {
  background: rgba(255,255,255,0.15);
}
.btn-primary {
  background: var(--primary-gradient);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-pink);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(var(--primary-rgb), 0.4);
  color: #fff;
  filter: brightness(1.08);
}
.btn-outline {
  background: transparent;
  border-color: var(--primary);
  color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary-gradient);
  color: #fff;
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: var(--shadow-pink);
}
.btn-white {
  background: #fff;
  color: var(--text-dark);
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.btn-white:hover {
  background: var(--primary-light);
  color: var(--primary);
  border-color: var(--primary);
  transform: translateY(-2px);
}
.btn-whatsapp {
  background: linear-gradient(135deg, var(--whatsapp) 0%, #1ebd54 100%);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}
.btn-whatsapp:hover {
  transform: translateY(-3px);
  color: #fff;
  box-shadow: 0 14px 36px rgba(37, 211, 102, 0.4);
  filter: brightness(1.08);
}
.btn-sm { padding: 0.55rem 1.3rem; font-size: 0.82rem; }
.btn-lg { padding: 1rem 2.4rem; font-size: 0.95rem; }
.btn-full { width: 100%; justify-content: center; }

/* ===== 5. PRELOADER ===== */
#preloader {
  position: fixed; inset: 0;
  background: #fff;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s ease;
}
.preloader-inner { text-align: center; }
.preloader-logo { margin-bottom: 20px; animation: pulse 1.8s ease-in-out infinite; }
.preloader-logo-img { width: 120px; height: 120px; object-fit: contain; border-radius: 50%; margin: 0 auto; }
.preloader-spinner {
  width: 44px; height: 44px;
  border: 3px solid var(--primary-light);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto;
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulse { 0%,100%{transform:scale(1);opacity:1} 50%{transform:scale(1.05);opacity:0.8} }

/* ===== 6. TOP BAR ===== */
.topbar {
  background: linear-gradient(90deg, var(--secondary) 0%, var(--secondary-light) 100%);
  color: rgba(255,255,255,0.85);
  font-size: 0.78rem;
  height: var(--topbar-height);
  display: flex;
  align-items: center;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  gap: 1rem;
}
.topbar-left {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  flex-wrap: wrap;
}
.topbar-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.75);
  transition: var(--transition-fast);
  font-size: 0.76rem;
}
.topbar-item:hover { color: #fff; }
.topbar-item i { color: #F48FB1; font-size: 0.8rem; }
.topbar-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.topbar-social {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.72rem;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.1);
}
.topbar-social:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: scale(1.1);
}

/* ===== 7. HEADER / NAV ===== */
#header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
  transition: var(--transition);
}
#header.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.08);
}
.navbar {
  height: var(--header-height);
  display: flex;
  align-items: center;
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: 100%;
  max-width: 1280px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}
.nav-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  flex: 1;
  justify-content: center;
}
.nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-mid);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
  position: relative;
}
.nav-link:hover {
  color: var(--primary);
  background: var(--primary-light);
}
.nav-link.active {
  color: var(--primary);
  font-weight: 600;
}
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 3px;
  background: var(--primary-gradient);
  border-radius: 3px;
}
.nav-cta { flex-shrink: 0; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== 8. HERO SECTION ===== */
.hero-section {
  background: linear-gradient(160deg, #FEF6FB 0%, #fff 40%, #FDF5F9 100%);
  min-height: calc(100vh - var(--header-height) - var(--topbar-height));
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
  padding: 3rem 0;
}
/* decorative blobs */
.hero-section::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--primary-rgb), 0.07) 0%, transparent 70%);
  pointer-events: none;
  animation: floatBlob 8s ease-in-out infinite;
}
.hero-section::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 450px; height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--primary-rgb), 0.05) 0%, transparent 70%);
  pointer-events: none;
  animation: floatBlob 10s ease-in-out infinite reverse;
}
@keyframes floatBlob {
  0%,100% { transform: translate(0, 0); }
  50% { transform: translate(15px, -15px); }
}
.hero-container {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}
.hero-left { position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.4rem;
  border: 1px solid var(--border-pink);
  animation: fadeInUp 0.6s ease both;
}
.hero-badge i { color: var(--gold); }
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-heading {
  font-size: clamp(2.1rem, 4.2vw, 3.2rem);
  font-weight: 800;
  line-height: 1.12;
  color: var(--text-dark);
  margin-bottom: 1.2rem;
  letter-spacing: -0.5px;
}
.hero-heading span {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 1.8rem;
  max-width: 520px;
}
.hero-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin-bottom: 2.2rem;
}
.hero-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}
.hero-feature:hover {
  background: var(--primary-light);
}
.hero-feature-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 0.85rem;
  flex-shrink: 0;
  border: 1px solid var(--border-pink);
}
.hero-feature-text strong {
  display: block;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1px;
}
.hero-feature-text span {
  font-size: 0.74rem;
  color: var(--text-light);
  line-height: 1.35;
}
.hero-buttons {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}

/* Hero right */
.hero-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-img-wrap {
  position: relative;
  width: 100%;
  max-width: 480px;
  animation: fadeInUp 0.8s ease 0.2s both;
}
.hero-img-blob {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 62% 38% 55% 45% / 45% 55% 45% 55%;
  background: linear-gradient(145deg, var(--accent-pink) 0%, var(--primary-light) 50%, #FDE8F0 100%);
  overflow: hidden;
  position: relative;
  box-shadow: 0 30px 80px rgba(var(--primary-rgb), 0.15);
  animation: morphBlob 8s ease-in-out infinite;
}
@keyframes morphBlob {
  0%,100% { border-radius: 62% 38% 55% 45% / 45% 55% 45% 55%; }
  33% { border-radius: 55% 45% 62% 38% / 38% 62% 38% 62%; }
  66% { border-radius: 48% 52% 45% 55% / 55% 45% 55% 45%; }
}
.hero-img-blob img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s ease;
}
.hero-img-blob:hover img {
  transform: scale(1.04);
}
.hero-rating-badge {
  position: absolute;
  bottom: 20px;
  right: -16px;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 0.9rem 1.3rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  border: 1px solid var(--border);
  text-align: center;
  min-width: 140px;
  animation: fadeInUp 1s ease 0.5s both;
}
.hero-rating-badge .stars { color: var(--gold); font-size: 0.72rem; display: flex; gap: 2px; }
.hero-rating-badge .rating-num { font-size: 1.6rem; font-weight: 800; color: var(--text-dark); line-height: 1; }
.hero-rating-badge .rating-label { font-size: 0.72rem; color: var(--text-light); line-height: 1.3; }

/* ===== 9. SECTION HEADER ===== */
.section-header { text-align: center; max-width: 700px; margin: 0 auto 3rem auto; }
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  margin-bottom: 0.75rem;
}
.section-badge::before,
.section-badge::after {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background: var(--primary);
  opacity: 0.5;
}
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}
.section-subtitle {
  font-size: 1rem;
  color: var(--text-mid);
}

/* ===== 10. SPECIALTIES SECTION ===== */
.specialties-section {
  padding: 3.5rem 0;
  background: var(--bg-light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
}
.specialties-section .section-header { margin-bottom: 2rem; }
.specialties-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 0.85rem;
}
.specialty-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.4rem 0.5rem 1.2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: #fff;
  cursor: pointer;
  transition: var(--transition);
  gap: 0.6rem;
  position: relative;
}
.specialty-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--primary-gradient);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  opacity: 0;
  transition: var(--transition);
}
.specialty-card:hover::before { opacity: 1; }
.specialty-card:hover {
  border-color: var(--border-pink);
  background: #fff;
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.specialty-icon {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--primary);
  transition: var(--transition);
  border: 1px solid var(--border-pink);
}
.specialty-card:hover .specialty-icon {
  background: var(--primary-gradient);
  color: #fff;
  border-color: transparent;
  transform: scale(1.08);
  box-shadow: var(--shadow-pink);
}
.specialty-name {
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.25;
}
.specialty-desc {
  font-size: 0.68rem;
  color: var(--text-light);
  line-height: 1.35;
  margin: 0;
}
.specialties-action {
  text-align: center;
  margin-top: 2rem;
}
.specialties-action a {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-gradient);
  padding: 0.7rem 1.8rem;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-pink);
  transition: var(--transition);
}
.specialties-action a:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(var(--primary-rgb), 0.4);
  color: #fff;
  gap: 12px;
}

/* ===== 11. ABOUT + DOCTORS SECTION ===== */
.about-doctors-section {
  padding: 5.5rem 0;
  background: linear-gradient(180deg, var(--bg-pink-soft) 0%, #fff 100%);
  position: relative;
  overflow: hidden;
}
.about-doctors-section::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 280px;
  height: 280px;
  background-image: url('../images/aarohi-womens-care-clinic-chennai.webp');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom left;
  opacity: 0.06;
  pointer-events: none;
  z-index: 0;
}
.about-doctors-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--border-pink) 50%, transparent 100%);
}
.about-doctors-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
/* About left */
.about-left h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  margin-bottom: 1rem;
  letter-spacing: -0.3px;
}
.about-left p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.about-checklist { list-style: none; margin-bottom: 1.5rem; }
.about-checklist li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.9rem;
  color: var(--text-mid);
  padding: 0.4rem 0;
  font-weight: 500;
}
.about-checklist li i {
  color: #fff;
  background: var(--primary-gradient);
  width: 22px; height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  flex-shrink: 0;
}
/* Stats */
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.stat-box {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.1rem 0.8rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.stat-box::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--primary-gradient);
  opacity: 0;
  transition: var(--transition);
}
.stat-box:hover::after { opacity: 1; }
.stat-box:hover {
  border-color: var(--border-pink);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.stat-box .stat-num {
  font-size: 1.8rem;
  font-weight: 800;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}
.stat-box .stat-num sup {
  -webkit-text-fill-color: var(--primary);
}
.stat-box .stat-label {
  font-size: 0.76rem;
  color: var(--text-light);
  margin-top: 5px;
  font-weight: 500;
}
/* Timing card */
.timing-card {
  background: var(--secondary);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.timing-icon {
  width: 42px; height: 42px;
  background: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.timing-info .timing-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.82rem;
}
.timing-badge {
  background: rgba(255,255,255,0.15);
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
}
.timing-time { color: rgba(255,255,255,0.85); font-size: 0.82rem; }

/* Doctors right */
.doctors-right h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  margin-bottom: 1.5rem;
}
.doctor-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.doctor-card-compact {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-xs);
  padding: 1.5rem 1rem;
}
.doctor-card-compact:hover {
  border-color: var(--border-pink);
  box-shadow: 0 16px 48px rgba(var(--primary-rgb), 0.12);
  transform: translateY(-6px);
}
.doctor-card-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--primary-light);
  margin: 0 auto 1.2rem;
  border: 3px solid #FFF0F7;
  box-shadow: 0 6px 16px rgba(198, 40, 113, 0.15);
  flex-shrink: 0;
}
.doctor-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.4s ease;
}
.doctor-card-compact:hover .doctor-card-img img {
  transform: scale(1.06);
}
.doctor-card-body {
  padding: 0.9rem;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.doctor-card-body h3 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.2rem;
  line-height: 1.2;
}
.doctor-card-body .doctor-degree {
  font-size: 0.72rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 0.2rem;
}
.doctor-card-body .doctor-exp {
  font-size: 0.7rem;
  color: var(--text-light);
  margin-bottom: 0.7rem;
}
.doctor-card-body .btn-outline {
  font-size: 0.75rem;
  padding: 0.4rem 0.9rem;
  width: 100%;
  border-width: 1.5px;
  margin-top: auto;
}

/* ===== 12. SERVICES SECTION ===== */
.services-section {
  padding: 5rem 0;
  background: #fff;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: var(--primary-gradient);
  opacity: 0;
  transition: var(--transition);
}
.service-card:hover::before { opacity: 1; }
.service-card:hover {
  border-color: var(--border-pink);
  box-shadow: 0 12px 40px rgba(var(--primary-rgb), 0.1);
  transform: translateY(-5px);
}
.service-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-md);
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--primary);
  transition: var(--transition);
  flex-shrink: 0;
  border: 1px solid var(--border-pink);
}
.service-card:hover .service-icon {
  background: var(--primary-gradient);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-pink);
  transform: rotate(-5deg) scale(1.05);
}
.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
}
.service-card p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin: 0;
  flex: 1;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--primary);
  margin-top: 0.4rem;
  transition: var(--transition);
}
.service-link:hover { gap: 12px; color: var(--primary-dark); }
.service-link i { transition: transform 0.3s ease; }
.service-link:hover i { transform: translateX(2px); }
.services-action { text-align: center; margin-top: 2.5rem; }

/* ===== 13. WHY US SECTION ===== */
.why-section {
  padding: 5rem 0;
  background: var(--bg-pink-soft);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.why-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.why-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--primary-gradient);
  opacity: 0;
  transition: var(--transition);
}
.why-card:hover::after { opacity: 1; }
.why-card:hover {
  border-color: var(--border-pink);
  box-shadow: 0 12px 40px rgba(var(--primary-rgb), 0.1);
  transform: translateY(-6px);
}
.why-icon-wrapper { margin-bottom: 1rem; }
.why-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: var(--primary);
  margin: 0 auto;
  transition: var(--transition);
  border: 1px solid var(--border-pink);
}
.why-card:hover .why-icon {
  background: var(--primary-gradient);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-pink);
  transform: scale(1.08);
}
.why-content h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.4rem; }
.why-content p { font-size: 0.85rem; color: var(--text-light); margin: 0; line-height: 1.5; }

/* ===== 14. TESTIMONIALS ===== */
.testimonials-section { padding: 5.5rem 0; background: #fff; position: relative; }
.rating-summary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--primary-light);
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-pill);
  margin-top: 1rem;
  border: 1px solid var(--border-pink);
}
.rating-summary .rating-num {
  font-size: 1.15rem;
  font-weight: 850;
  color: var(--text-dark);
}
.rating-summary .stars { color: var(--gold); font-size: 0.78rem; display: flex; gap: 2px; }
.rating-summary .rating-count { font-size: 0.82rem; color: var(--text-mid); font-weight: 500; }
.testimonials-slider { overflow: hidden; margin-top: 1rem; }
.testimonials-track {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.8rem;
}
.testimonial-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2.2rem;
  transition: var(--transition);
  box-shadow: var(--shadow-xs);
  position: relative;
}
.testimonial-card::before {
  content: '“';
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-size: 4rem;
  font-family: Georgia, serif;
  color: rgba(198, 40, 113, 0.08);
  line-height: 1;
}
.testimonial-card:hover {
  border-color: var(--border-pink);
  box-shadow: 0 16px 40px rgba(var(--primary-rgb), 0.08);
  transform: translateY(-4px);
}
.test-header { display: flex; align-items: center; gap: 0.85rem; margin-bottom: 1.2rem; }
.test-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--primary-gradient);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: var(--shadow-pink);
}
.test-info { flex: 1; }
.test-name { font-size: 0.92rem; font-weight: 700; color: var(--text-dark); display: block; }
.test-stars { color: var(--gold); font-size: 0.72rem; display: flex; gap: 2px; margin-top: 2px; }
.google-badge { color: #4285F4; font-size: 1.15rem; }
.test-text { font-size: 0.92rem; color: var(--text-mid); line-height: 1.75; font-style: italic; margin-bottom: 0.85rem; position: relative; z-index: 1; }
.test-date { font-size: 0.75rem; color: var(--text-light); font-weight: 500; }

/* ===== 15. FAQ ===== */
.faq-section { padding: 5.5rem 0; background: var(--bg-pink-soft); }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.85rem; }
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-xs);
  border-left: 4px solid transparent;
}
.faq-item.active {
  border-color: var(--border-pink);
  border-left-color: var(--primary);
  box-shadow: var(--shadow-md);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.4rem 1.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text-dark);
  text-align: left;
  gap: 1rem;
  transition: var(--transition-fast);
}
.faq-question:hover { color: var(--primary); }
.faq-icon {
  color: var(--primary);
  transition: var(--transition);
  flex-shrink: 0;
  font-size: 0.9rem;
}
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease; }
.faq-answer p { padding: 0 1.8rem 1.4rem; font-size: 0.92rem; color: var(--text-mid); line-height: 1.75; margin: 0; }

/* ===== 16. PROCESS ===== */
.process-section { padding: 5.5rem 0; background: #fff; }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.process-step {
  text-align: center;
  padding: 2.5rem 2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: #fff;
  position: relative;
  transition: var(--transition);
  box-shadow: var(--shadow-xs);
}
.process-step:hover {
  border-color: var(--border-pink);
  box-shadow: 0 16px 40px rgba(var(--primary-rgb), 0.08);
  transform: translateY(-6px);
}
.step-number {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 38px; height: 38px;
  background: var(--primary-gradient);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.92rem;
  box-shadow: var(--shadow-pink);
}
.step-icon {
  width: 70px; height: 70px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0.8rem auto 1.4rem;
  border: 1px solid var(--border-pink);
  transition: var(--transition);
}
.process-step:hover .step-icon {
  background: var(--primary-gradient);
  color: #fff;
  border-color: transparent;
  transform: scale(1.06) rotate(-5deg);
  box-shadow: var(--shadow-pink);
}
.process-step h3 { font-size: 1.1rem; margin-bottom: 0.6rem; font-weight: 700; color: var(--text-dark); }
.process-step p { font-size: 0.9rem; color: var(--text-mid); margin: 0; line-height: 1.6; }

/* ===== 17. APPOINTMENT ===== */
.appointment-section { padding: 5.5rem 0; background: var(--bg-pink-soft); }
.appointment-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 0;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.appointment-info {
  background: linear-gradient(145deg, var(--secondary) 0%, var(--secondary-light) 100%);
  padding: 3.5rem 3rem;
  color: #fff;
  position: relative;
  z-index: 1;
}
.appointment-info::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(var(--primary-rgb), 0.15) 0%, transparent 60%);
  pointer-events: none;
  z-index: -1;
}
.appointment-info .section-badge { color: #F48FB1; }
.appointment-info .section-badge::before,
.appointment-info .section-badge::after { background: #F48FB1; opacity: 0.6; }
.appointment-info h2 { color: #fff; font-size: 2.1rem; margin: 0.6rem 0 1.2rem; font-weight: 800; line-height: 1.2; }
.appointment-info p { color: rgba(255,255,255,0.8); font-size: 0.95rem; line-height: 1.7; }
.appt-contact-quick { display: flex; flex-direction: column; gap: 0.85rem; margin: 2rem 0; }
.appt-contact-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 0.85rem 1.2rem;
  color: #fff;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.06);
}
.appt-contact-item:hover {
  background: rgba(255,255,255,0.14);
  color: #fff;
  border-color: rgba(255,255,255,0.15);
  transform: translateX(4px);
}
.appt-contact-icon {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  flex-shrink: 0;
}
.appt-contact-icon.wa { background: rgba(37, 211, 102, 0.25); color: #25D366; }
.appt-contact-item span { font-size: 0.76rem; color: rgba(255,255,255,0.6); display: block; margin-bottom: 2px; }
.appt-contact-item strong { font-size: 0.95rem; color: #fff; display: block; font-weight: 700; }
.appt-hours { margin-top: 2rem; background: rgba(255,255,255,0.05); border-radius: var(--radius-md); padding: 1.2rem 1.4rem; border: 1px solid rgba(255,255,255,0.04); }
.appt-hours h3 { color: #fff; font-size: 0.92rem; margin-bottom: 0.6rem; display: flex; align-items: center; gap: 8px; font-weight: 700; }
.appt-hours h3 i { color: #F48FB1; }
.appt-hours p { color: rgba(255,255,255,0.8); font-size: 0.88rem; margin: 0.3rem 0; }
.appointment-form { padding: 3.5rem 3rem; }
.appointment-form h3 { font-size: 1.4rem; margin-bottom: 1.8rem; font-weight: 800; color: var(--text-dark); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.2rem; }
.form-group label { font-size: 0.85rem; font-weight: 700; color: var(--text-dark); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.85rem 1.1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text-dark);
  background: var(--bg-light);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(var(--primary-rgb), 0.08);
}
.field-error { font-size: 0.76rem; color: #e53935; min-height: 16px; font-weight: 500; }
.form-success {
  background: #e8f5e9;
  color: #2e7d32;
  padding: 1.1rem;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1rem;
  font-weight: 600;
  border: 1px solid #c8e6c9;
}

/* ===== 18. EMERGENCY BANNER ===== */
.emergency-banner {
  background: linear-gradient(135deg, #b71c1c 0%, #d32f2f 100%);
  padding: 3rem 0;
  color: #fff;
  box-shadow: 0 10px 30px rgba(211, 47, 47, 0.2);
}
.emergency-content { display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; }
.emergency-icon { font-size: 2.8rem; animation: pulseRed 2s infinite; }
@keyframes pulseRed {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.8; }
  100% { transform: scale(1); opacity: 1; }
}
.emergency-text { flex: 1; }
.emergency-text h2 { color: #fff; font-size: 1.8rem; margin-bottom: 0.4rem; font-weight: 800; }
.emergency-text p { color: rgba(255,255,255,0.9); margin: 0; font-size: 1rem; line-height: 1.6; }

/* ===== 19. STICKY CALL BAR ===== */
.sticky-call-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(22, 33, 62, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #fff;
  z-index: 990;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 0.9rem 2rem;
  box-shadow: 0 -8px 32px rgba(0,0,0,0.15);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.sticky-call-bar p {
  color: rgba(255,255,255,0.9);
  font-size: 0.92rem;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 600;
}
.sticky-call-bar p i { color: #F48FB1; font-size: 1.1rem; }
.sticky-call-bar .phone-num {
  font-size: 1.2rem;
  font-weight: 850;
  color: #fff;
  letter-spacing: 0.5px;
}
.sticky-call-bar .sticky-btns { display: flex; gap: 0.85rem; align-items: center; }

/* ===== 20. CONTACT SECTION ===== */
.contact-section { padding: 5.5rem 0; background: #fff; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.25fr; gap: 3rem; align-items: stretch; }
.contact-card {
  background: #fff;
  padding: 3rem 2.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}
.contact-item { display: flex; align-items: flex-start; gap: 1.1rem; }
.contact-icon {
  width: 48px; height: 48px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: var(--transition);
  border: 1px solid var(--border-pink);
}
.contact-item:hover .contact-icon {
  background: var(--primary-gradient);
  color: #fff;
  border-color: transparent;
  transform: scale(1.08);
  box-shadow: var(--shadow-pink);
}
.contact-icon.wa-icon { background: rgba(37, 211, 102, 0.08); color: var(--whatsapp); border-color: rgba(37,211,102,0.15); }
.contact-item:hover .contact-icon.wa-icon {
  background: linear-gradient(135deg, var(--whatsapp) 0%, #1ebd54 100%);
  color: #fff;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.25);
}
.contact-text h3 { font-size: 1.05rem; margin-bottom: 5px; color: var(--text-dark); font-weight: 700; }
.contact-text p, .contact-text a { font-size: 0.92rem; color: var(--text-mid); margin: 0; line-height: 1.6; }
.contact-text a { font-weight: 600; }
.contact-text a:hover { color: var(--primary); }
.map-wrapper {
  height: 100%;
  min-height: 450px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.map-wrapper iframe { display: block; width: 100%; height: 100%; border: 0; }

/* ===== 21. FOOTER ===== */
.footer { background: var(--secondary); position: relative; }
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--primary-gradient);
}
.footer-top { padding: 4.5rem 0 2.5rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.2rem;
}
.footer-logo-img { height: 50px; width: auto; object-fit: contain; }
.footer-logo-name { font-size: 1.25rem; font-weight: 800; color: #fff; display: block; letter-spacing: 0.5px; }
.footer-logo-sub { font-size: 0.76rem; color: rgba(255,255,255,0.45); display: block; margin-top: 1px; }
.footer-col > p { color: rgba(255,255,255,0.5); font-size: 0.9rem; line-height: 1.75; margin-bottom: 1.8rem; }
.footer-social { display: flex; gap: 0.6rem; }
.social-link {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.05);
}
.social-link:hover {
  background: var(--primary-gradient);
  color: #fff;
  border-color: transparent;
  transform: translateY(-3px) scale(1.05);
  box-shadow: var(--shadow-pink);
}
.footer-col h4 { color: #fff; font-size: 1.05rem; margin-bottom: 1.4rem; font-weight: 700; letter-spacing: 0.3px; position: relative; padding-bottom: 0.4rem; }
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 30px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}
.footer-links { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-links a { color: rgba(255,255,255,0.55); font-size: 0.88rem; transition: var(--transition-fast); }
.footer-links a:hover { color: #fff; padding-left: 6px; }
.footer-contact { display: flex; flex-direction: column; gap: 0.85rem; }
.fc-item { display: flex; align-items: flex-start; gap: 0.7rem; font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.5; }
.fc-item i { color: #F48FB1; flex-shrink: 0; margin-top: 3px; font-size: 0.9rem; }
.fc-item a { color: rgba(255,255,255,0.55); transition: var(--transition-fast); }
.fc-item a:hover { color: #fff; }
.areas-we-serve { margin-top: 3rem; padding-top: 2.2rem; border-top: 1px solid rgba(255,255,255,0.06); text-align: center; }
.areas-we-serve h4 { color: rgba(255,255,255,0.7); font-size: 0.9rem; margin-bottom: 0.85rem; font-weight: 700; }
.areas-we-serve p { color: rgba(255,255,255,0.4); font-size: 0.84rem; line-height: 1.7; max-width: 850px; margin: 0 auto; }
.areas-we-serve strong { color: rgba(255,255,255,0.65); font-weight: 600; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 1.4rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-bottom p { color: rgba(255,255,255,0.35); font-size: 0.82rem; margin: 0; }

/* ===== 22. FLOATING BUTTONS ===== */
.floating-buttons {
  position: fixed;
  bottom: 6rem;
  right: 1.5rem;
  z-index: 995;
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-end;
  gap: 0.6rem;
}
.fab-menu-items {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.floating-buttons.active .fab-menu-items {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.fab-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.1rem;
  border-radius: var(--radius-pill);
  font-size: 0.84rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
  color: #fff;
  box-shadow: var(--shadow-md);
}
.fab-call { background: var(--primary-gradient); box-shadow: var(--shadow-pink); }
.fab-wa { background: linear-gradient(135deg, var(--whatsapp) 0%, #1ebd54 100%); }
.fab-map { background: var(--secondary); }
.fab-main {
  background: var(--primary-gradient);
  width: 52px; height: 52px;
  border-radius: 50%;
  padding: 0;
  justify-content: center;
  font-size: 1.15rem;
  box-shadow: var(--shadow-pink);
}
.floating-buttons.active .fab-main i { transform: rotate(45deg); }
.fab-main i { transition: transform 0.3s ease; }
.fab-top {
  background: var(--secondary);
  width: 44px; height: 44px;
  border-radius: 50%;
  padding: 0;
  justify-content: center;
  font-size: 0.9rem;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: var(--shadow-md);
}
.fab-top.visible { opacity: 1; pointer-events: auto; }
.fab-btn:hover { transform: scale(1.06) translateY(-2px); filter: brightness(1.05); }



/* ===== 24. RESPONSIVE ===== */
@media (max-width: 1100px) {
  .specialties-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .hero-container { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
  .hero-features { grid-template-columns: 1fr 1fr; text-align: left; }
  .hero-buttons { justify-content: center; }
  .hero-right { order: -1; max-width: 340px; margin: 0 auto; }
  .hero-img-blob { max-width: 300px; margin: 0 auto; }
  .hero-desc { margin: 0 auto 1.5rem; }
  .hero-rating-badge { right: -10px; bottom: 10px; }

  .about-doctors-grid { grid-template-columns: 1fr; gap: 3rem; }
  .doctor-cards-grid { grid-template-columns: repeat(3, 1fr); }


  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .appointment-wrapper { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .testimonials-track { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --header-height: 60px; --topbar-height: auto; }

  .topbar-left { display: none; }
  .topbar-inner { justify-content: center; padding: 0.5rem 1.5rem; }
  .topbar-social { width: 26px; height: 26px; font-size: 0.68rem; }

  /* Premium Mobile Navigation Drawer */
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
    padding: 5rem 1.5rem 2rem;
    box-shadow: -10px 0 30px rgba(0,0,0,0.08);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
  }
  .nav-menu.is-open { right: 0; }
  .nav-link {
    padding: 0.8rem 1rem;
    width: 100%;
    font-size: 1.05rem;
    border-radius: var(--radius-sm);
  }
  .nav-link.active::after {
    left: 1rem;
    transform: none;
    bottom: 6px;
    width: 16px;
  }
  .nav-toggle {
    display: flex;
    z-index: 1001;
    position: relative;
  }
  .nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .nav-cta { display: none; }

  .section { padding: 4rem 0; }
  .hero-section { padding: 1.5rem 0 3rem; }
  .hero-heading { font-size: 2.1rem; }
  .hero-features { grid-template-columns: 1fr; gap: 0.5rem; }

  /* Swipeable Specialty Grid for Mobile App feel */
  .specialties-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1rem;
    padding: 0.5rem 1.5rem 1.5rem;
    margin: 0 -1.5rem;
    scrollbar-width: none; /* Firefox */
  }
  .specialties-grid::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
  }
  .specialty-card {
    flex: 0 0 160px;
    scroll-snap-align: start;
    padding: 1.5rem 0.8rem;
  }

  .about-stats { grid-template-columns: 1fr 1fr; }
  .doctor-cards-grid { grid-template-columns: 1fr; gap: 1.5rem; max-width: 320px; margin: 0 auto; }

  .why-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .services-grid { grid-template-columns: 1fr; gap: 1.2rem; }

  /* Slim Mobile Call Bar */
  .sticky-call-bar {
    padding: 0.6rem 1.2rem;
    justify-content: space-between;
    gap: 1rem;
  }
  .sticky-call-bar p { display: none; }
  .sticky-call-bar .phone-num { font-size: 1.05rem; }
  .sticky-call-bar .sticky-btns .btn { padding: 0.5rem 1rem; font-size: 0.76rem; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .floating-buttons { bottom: 5.5rem; right: 1rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .hero-heading { font-size: 1.85rem; }
  .hero-buttons { flex-direction: column; width: 100%; gap: 0.75rem; }
  .hero-buttons .btn { width: 100%; }
  
  .about-stats { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  
  .appointment-form { padding: 2.2rem 1.5rem; }
  .appointment-info { padding: 2.5rem 1.5rem; }
  
  .sticky-call-bar .phone-num { display: none; }
  .sticky-call-bar { justify-content: center; }
  .sticky-call-bar .sticky-btns { width: 100%; display: grid; grid-template-columns: 1fr 1.2fr; gap: 0.5rem; }
  .sticky-call-bar .sticky-btns .btn { width: 100%; padding: 0.6rem 0.5rem; text-align: center; }
}
