/* ==========================================================================
   HAIR RESTORATION & AESTHETIC CLINIC - MASTER STYLESHEET
   ========================================================================== */

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

html {
  background-color: #F8D8DF;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  scroll-behavior: smooth;
}

body {
  background-color: transparent;
  /* Transparent so canvas animation is 100% visible */
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  color: #1E293B;
}

/* ================= FULLSCREEN FIXED BACKGROUND CANVAS ================= */
#canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  display: block;
  z-index: 1;
  /* Always behind all content */
  pointer-events: none;
}

/* ================= GLASSMORPHISM NAVIGATION BAR (WHITE TEXT) ================= */
.navbar-glass {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 64px);
  max-width: 1380px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 32px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(255, 255, 255, 0.6) inset;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #FFFFFF;
}

.logo-badge {
  width: 36px;
  height: 36px;
  background: #F18698;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(241, 134, 152, 0.4);
}

.logo-badge svg {
  width: 20px;
  height: 20px;
  stroke: #FFFFFF;
}

.logo-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #FFFFFF !important;
}

.logo-amp {
  font-style: italic;
  color: #FFFFFF !important;
  font-weight: 400;
}

/* Center Nav Links (Strictly White Text) */
.nav-center {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-item {
  color: #FFFFFF !important;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: opacity 0.2s ease, transform 0.2s ease;
  padding: 4px 0;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.nav-item:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

/* Right Social Icons (Strictly White) */
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.social-icon {
  color: #FFFFFF !important;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.2s ease;
  text-decoration: none;
}

.social-icon svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.social-icon:hover {
  background: rgba(255, 255, 255, 0.35);
  transform: scale(1.12);
}

/* ================= MAIN CONTENT LAYER ================= */
.page-content {
  position: relative;
  z-index: 10;
  width: 100%;
}

/* ================= 1. HERO SECTION ================= */
.hero-stage {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px 20px 40px;
  position: relative;
}

.hero-glass-card {
  max-width: 680px;
  width: 92%;
  background: rgba(255, 255, 255, 0.44);
  backdrop-filter: blur(30px) saturate(160%);
  -webkit-backdrop-filter: blur(30px) saturate(160%);
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  border-radius: 38px;
  padding: 48px 42px;
  text-align: center;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(255, 255, 255, 0.4) inset;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(236, 94, 131, 0.12);
  border: 1px solid rgba(236, 94, 131, 0.3);
  color: #D25274;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 999px;
  margin-bottom: 22px;
}

.sparkle-icon {
  font-size: 0.85rem;
  color: #EC5E83;
}

.hero-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 3.4rem;
  font-weight: 700;
  color: #1A1619;
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}

.heading-amp {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: #EB6B8C;
  font-size: 3.3rem;
  margin-right: 4px;
}

.heading-gradient {
  background: linear-gradient(135deg, #EB6B8C 0%, #EAA277 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

.hero-description {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.02rem;
  line-height: 1.65;
  color: #4C4348;
  max-width: 530px;
  margin: 0 auto 30px;
  font-weight: 400;
}

.hero-description strong {
  color: #1F191D;
  font-weight: 600;
}

.hero-cta-btn {
  background: linear-gradient(135deg, #ED5E84 0%, #E99A75 100%);
  color: #FFFFFF;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 14px 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 24px rgba(237, 94, 132, 0.38);
  transition: all 0.25s ease;
}

.hero-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(237, 94, 132, 0.55);
}

.btn-arrow {
  font-size: 1.1rem;
  transition: transform 0.2s ease;
}

.hero-cta-btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* Scroll Mouse Cue */
.hero-scroll-cue {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.mouse-icon {
  width: 20px;
  height: 30px;
  border: 1.5px solid rgba(80, 50, 60, 0.38);
  border-radius: 12px;
  position: relative;
}

.mouse-wheel {
  width: 3px;
  height: 6px;
  background: rgba(80, 50, 60, 0.6);
  border-radius: 2px;
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  animation: mouse-scroll 1.5s infinite ease-in-out;
}

@keyframes mouse-scroll {
  0% {
    transform: translate(-50%, 0);
    opacity: 1;
  }

  80% {
    transform: translate(-50%, 8px);
    opacity: 0;
  }

  100% {
    transform: translate(-50%, 0);
    opacity: 0;
  }
}

.scroll-label {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  font-weight: 700;
  color: rgba(80, 50, 60, 0.45);
  text-transform: uppercase;
}

/* ================= 2. CINEMATIC SCROLL SPACER ================= */
.scroll-cinematic-spacer {
  height: 50vh;
}

/* ================= 3. DOCTOR PROFILE / ABOUT GLASS SECTION ================= */
.doctor-profile-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 24px 100px;
  background: transparent;
}

.section-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

/* Ultra Glassmorphic Frosted Card */
.doctor-glass-wrapper {
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(32px) saturate(170%);
  -webkit-backdrop-filter: blur(32px) saturate(170%);
  border: 1.5px solid rgba(255, 255, 255, 0.75);
  border-radius: 40px;
  padding: 64px 54px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(255, 255, 255, 0.5) inset;
}

.doctor-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 56px;
  align-items: center;
}

/* Left: Doctor Card */
.doctor-card-col {
  display: flex;
  justify-content: center;
}

.doctor-profile-card {
  position: relative;
  width: 100%;
  max-width: 420px;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 36px;
  padding: 16px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.05);
}

.doctor-avatar-box {
  position: relative;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(252, 231, 236, 0.7) 0%, rgba(252, 231, 236, 0.4) 50%, rgba(248, 205, 217, 0.55) 100%);
  border: 1px solid rgba(252, 231, 236, 0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 16px 16px 0 16px;
  overflow: visible;
}

.doctor-svg-avatar {
  width: 180px;
  height: 180px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.avatar-svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.08));
}

.doctor-card-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.85rem;
  font-weight: 700;
  color: #1E293B;
  letter-spacing: -0.02em;
}

/* 10+ Years Exp Floating Badge */
.exp-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 104px;
  height: 104px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FB7185 0%, #F472B6 50%, #EC4899 100%);
  border: 4px solid #FFFFFF;
  box-shadow: 0 12px 28px rgba(236, 72, 153, 0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  user-select: none;
}

.exp-num {
  font-size: 1.85rem;
  font-weight: 700;
  line-height: 1;
}

.exp-plus {
  font-size: 1.35rem;
  font-weight: 300;
}

.exp-label {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 2px;
}

/* Right: Doctor Details */
.doctor-details-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-tag {
  color: #EC4899;
  font-weight: 700;
  letter-spacing: 0.25em;
  font-size: 0.78rem;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

.doctor-main-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 3.4rem;
  font-weight: 700;
  color: #0F172A;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 12px;
}

.doctor-credentials {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: #EC4899;
  font-weight: 500;
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.doctor-bio-paragraphs {
  margin-bottom: 32px;
  max-width: 640px;
}

.doctor-bio-paragraphs p {
  color: #475569;
  font-size: 1.02rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.doctor-bio-paragraphs p:last-child {
  margin-bottom: 0;
}

/* 2x2 Highlights Grid */
.highlights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 640px;
}

.highlight-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  transition: all 0.2s ease;
}

.highlight-card:hover {
  background: rgba(255, 255, 255, 0.75);
  transform: translateY(-2px);
}

.highlight-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, #FB7185 0%, #F472B6 100%);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(244, 114, 182, 0.3);
}

.highlight-icon-box svg {
  width: 22px;
  height: 22px;
}

.highlight-text {
  font-weight: 500;
  color: #1E293B;
  font-size: 0.95rem;
}

/* ================= 4. SERVICES GLASS SECTION ================= */
.services-glass-section {
  min-height: 100vh;
  padding: 80px 24px 100px;
  background: transparent;
  display: flex;
  align-items: center;
}

.services-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}

.services-tag {
  color: #EC4899;
  font-weight: 700;
  letter-spacing: 0.25em;
  font-size: 0.78rem;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.services-main-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: #edeff4;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 16px;
}

.services-subtitle {
  color: #bcc7d6;
  font-size: 1.05rem;
  line-height: 1.65;
  font-weight: 400;
  max-width: 640px;
  margin: 0 auto;
}

/* 3x3 Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-glass-card {
  background: rgba(255, 255, 255, 0.48);
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  border: 1.5px solid rgba(255, 255, 255, 0.75);
  border-radius: 28px;
  padding: 32px 28px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(255, 255, 255, 0.8) inset;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-glass-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.75);
  border-color: rgba(244, 114, 182, 0.6);
  box-shadow: 0 20px 45px rgba(236, 72, 153, 0.12);
}

.service-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(253, 242, 248, 0.75);
  border: 1px solid rgba(251, 207, 232, 0.8);
  color: #EC4899;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.service-glass-card:hover .service-icon-box {
  transform: scale(1.08);
  background: rgba(253, 242, 248, 0.95);
}

.service-icon-box svg {
  width: 24px;
  height: 24px;
}

.service-card-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
  transition: color 0.2s ease;
}

.service-glass-card:hover .service-card-title {
  color: #DB2777;
}

.service-card-desc {
  font-size: 0.92rem;
  line-height: 1.65;
  color: #475569;
  margin-bottom: 24px;
  font-weight: 400;
}

.service-card-footer {
  padding-top: 8px;
}

.service-price-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(253, 242, 248, 0.75);
  border: 1px solid rgba(251, 207, 232, 0.8);
  color: #DB2777;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background-color 0.2s ease;
}

.service-glass-card:hover .service-price-pill {
  background: rgba(251, 207, 232, 0.85);
}

.price-symbol {
  color: #F472B6;
  font-weight: 700;
}

/* ================= 5. CONTACT / WHATSAPP GLASS SECTION ================= */
.contact-glass-section {
  min-height: 100vh;
  padding: 80px 24px 80px;
  background: transparent;
  display: flex;
  align-items: center;
}

.contact-glass-wrapper {
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(32px) saturate(170%);
  -webkit-backdrop-filter: blur(32px) saturate(170%);
  border: 1.5px solid rgba(255, 255, 255, 0.75);
  border-radius: 40px;
  padding: 64px 54px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(255, 255, 255, 0.5) inset;
}

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

/* Left: Clinic Info */
.contact-info-col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-main-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: #0F172A;
  line-height: 1.2;
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 36px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(253, 242, 248, 0.85);
  border: 1px solid rgba(251, 207, 232, 0.8);
  color: #EC4899;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(244, 114, 182, 0.2);
}

.contact-icon-box svg {
  width: 22px;
  height: 22px;
}

.contact-item-title {
  font-weight: 600;
  color: #0F172A;
  font-size: 1rem;
  margin-bottom: 2px;
}

.contact-item-desc {
  color: #475569;
  font-size: 0.92rem;
  line-height: 1.5;
}

.contact-item-sub {
  color: #64748B;
  font-size: 0.88rem;
}

.contact-phone-link {
  color: #EC4899;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-phone-link:hover {
  color: #DB2777;
}

/* Follow Us */
.follow-us-container {
  padding-top: 12px;
}

.follow-us-tag {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #475569;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: block;
}

.follow-us-buttons {
  display: flex;
  align-items: center;
  gap: 14px;
}

.social-btn {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  transition: all 0.25s ease;
}

.social-btn svg {
  width: 20px;
  height: 20px;
}

.social-btn:hover {
  transform: translateY(-3px) scale(1.05);
}

.facebook-btn {
  background: #1877F2;
}

.instagram-btn {
  background: linear-gradient(45deg, #f09433 0%, #dc2743 50%, #bc1888 100%);
}

.tiktok-btn {
  background: #010101;
}

.whatsapp-btn {
  background: #25D366;
}

.location-btn {
  background: linear-gradient(135deg, #EA4335 0%, #FF6D5A 100%);
}

/* Right: WhatsApp Action Card */
.whatsapp-action-card {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1.5px solid rgba(255, 255, 255, 0.85);
  border-radius: 36px;
  padding: 48px 42px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
}

.whatsapp-card-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.3rem;
  font-weight: 700;
  color: #0F172A;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.whatsapp-card-desc {
  color: #475569;
  font-size: 1.02rem;
  line-height: 1.65;
  margin-bottom: 32px;
  font-weight: 400;
}

.whatsapp-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 16px 36px;
  border-radius: 20px;
  background: #25D366;
  color: #FFFFFF;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35);
  transition: all 0.25s ease;
  cursor: pointer;
}

.whatsapp-cta-btn:hover {
  background: #20BD5A;
  transform: translateY(-2px);
  box-shadow: 0 14px 35px rgba(37, 211, 102, 0.45);
}

.whatsapp-btn-icon {
  width: 24px;
  height: 24px;
  transition: transform 0.2s ease;
}

.whatsapp-cta-btn:hover .whatsapp-btn-icon {
  transform: scale(1.1);
}

.whatsapp-btn-arrow {
  width: 20px;
  height: 20px;
  transition: transform 0.2s ease;
}

.whatsapp-cta-btn:hover .whatsapp-btn-arrow {
  transform: translateX(4px);
}

.whatsapp-card-foot {
  font-size: 0.78rem;
  color: #94A3B8;
  margin-top: 18px;
}

/* ================= 6. FOOTER GLASS SECTION ================= */
.footer-glass-section {
  padding: 20px 24px 60px;
  background: transparent;
  position: relative;
  z-index: 10;
}

.footer-glass-wrapper {
  background: rgba(255, 255, 255, 0.48);
  backdrop-filter: blur(32px) saturate(170%);
  -webkit-backdrop-filter: blur(32px) saturate(170%);
  border: 1.5px solid rgba(255, 255, 255, 0.75);
  border-radius: 40px;
  padding: 56px 54px 32px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(255, 255, 255, 0.5) inset;
}

.footer-main-grid {
  display: grid;
  grid-template-columns: 2fr 1.3fr 1.3fr;
  gap: 48px;
  margin-bottom: 44px;
}

/* Brand Col */
.footer-brand-col {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-bottom: 18px;
}

.footer-logo-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #0F172A;
}

.footer-brand-desc {
  font-size: 0.92rem;
  line-height: 1.65;
  color: #475569;
  max-width: 360px;
  font-weight: 400;
}

/* Quick Links Col */
.footer-links-col {
  display: flex;
  flex-direction: column;
}

.footer-col-title {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #0F172A;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-list a {
  color: #475569;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  transition: all 0.2s ease;
  display: inline-block;
}

.footer-links-list a:hover {
  color: #EC4899;
  transform: translateX(3px);
}

/* Contact Col */
.footer-contact-col {
  display: flex;
  flex-direction: column;
}

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

.footer-contact-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-item-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.footer-link-text {
  color: #475569;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-link-text:hover {
  color: #EC4899;
}

.footer-social-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.footer-social-btn {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(251, 207, 232, 0.8);
  color: #475569;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.2s ease;
}

.footer-social-btn svg {
  width: 16px;
  height: 16px;
}

.footer-social-btn:hover {
  background: #EC4899;
  color: #FFFFFF;
  border-color: #EC4899;
  transform: translateY(-2px);
}

.whatsapp-foot-btn:hover {
  background: #25D366 !important;
  border-color: #25D366 !important;
}

/* Bottom Bar */
.footer-bottom-bar {
  border-top: 1px solid rgba(241, 245, 249, 0.85);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: #64748B;
}

.footer-copy {
  font-weight: 400;
}

.footer-cred {
  font-weight: 500;
  color: #475569;
}

/* ================= RESPONSIVE DESIGN ================= */
@media (max-width: 1024px) {

  .doctor-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .footer-main-grid {
    grid-template-columns: 1fr 1fr;
  }

  .doctor-glass-wrapper,
  .contact-glass-wrapper,
  .footer-glass-wrapper {
    padding: 44px 32px;
  }
}

@media (max-width: 768px) {
  .navbar-glass {
    width: calc(100% - 32px);
    padding: 10px 20px;
  }

  .nav-center {
    display: none;
  }

  .hero-glass-card {
    padding: 36px 24px;
    border-radius: 28px;
  }

  .hero-heading {
    font-size: 2.3rem;
  }

  .heading-amp {
    font-size: 2.2rem;
  }

  .hero-description {
    font-size: 0.9rem;
  }

  .doctor-main-title,
  .services-main-title,
  .contact-main-title,
  .whatsapp-card-title {
    font-size: 2.2rem;
  }

  .highlights-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-bottom-bar {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .whatsapp-action-card {
    padding: 36px 24px;
  }

  .whatsapp-cta-btn {
    width: 100%;
  }

  .exp-badge {
    width: 88px;
    height: 88px;
    bottom: -12px;
    right: -12px;
  }

  .exp-num {
    font-size: 1.5rem;
  }
}

/* ================= DOCTOR REAL PHOTO ================= */
.doctor-real-photo {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 16px 48px rgba(241, 134, 152, 0.25), 0 4px 16px rgba(0, 0, 0, 0.12);
  border: 2px solid rgba(255, 255, 255, 0.45);
}

.doctor-photo-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: 20px;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.doctor-real-photo:hover .doctor-photo-img {
  transform: scale(1.03);
}