/* ============================================================
   DEBABHUMI MEDICAL STORE — style.css
   Color Palette: Soft White + Teal-Green + Medical Blue
   ============================================================ */

:root {
  --primary:    #0077b6;
  --primary-lt: #90e0ef;
  --green:      #1a9e72;
  --green-dk:   #137a57;
  --green-lt:   #c8f0e0;
  --green-mid:  #2dbf8a;
  --teal:       #00b4a0;
  --teal-lt:    #d0f5ef;
  --white:      #ffffff;
  --off-white:  #f2fbf8;
  --grey-lt:    #e2f4ee;
  --grey:       #6b7280;
  --dark:       #0d1f1a;
  --card-bg:    #ffffff;
  --shadow-sm:  0 2px 10px rgba(26,158,114,.10);
  --shadow-md:  0 6px 24px rgba(26,158,114,.14);
  --shadow-lg:  0 12px 40px rgba(26,158,114,.18);
  --radius:     14px;
  --radius-sm:  8px;
  --transition: .3s cubic-bezier(.4,0,.2,1);
  --font-head:  'Playfair Display', Georgia, serif;
  --font-body:  'DM Sans', 'Segoe UI', sans-serif;

  /* V3 Hero System */
  --v3-bg-base:   #F0FBF7;
  --v3-glow:      #1a9e72;
  --v3-glow-blue: #0077b6;
  --v3-teal:      #00b4a0;
  --v3-mint:      #5ED3A1;
  --v3-lavender:  #D8F5EC;
}

*, *::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(--dark); background: var(--white); line-height: 1.7; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.25;
}
.section-subtitle { color: var(--grey); font-size: 1.05rem; margin-bottom: 48px; max-width: 560px; }
.tag-line {
  display: inline-block;
  background: var(--green-lt);
  color: var(--green-dk);
  font-size: .82rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 4px 14px; border-radius: 50px; margin-bottom: 14px;
}
section { padding: 80px 0; }


/* ============================================================
   NAVBAR
   ============================================================ */
#navbar {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--grey-lt);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; gap: 16px; }
.nav-logo  { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-logo .logo-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--green), var(--teal));
  border-radius: 10px; display: grid; place-items: center;
  font-size: 1.3rem; color: #fff; flex-shrink: 0;
}
.logo-text .brand   { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; color: var(--green-dk); line-height: 1.1; }
.logo-text .tagline { font-size: .65rem; color: var(--teal); text-transform: uppercase; letter-spacing: .08em; }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a { font-size: .9rem; font-weight: 500; color: var(--dark); padding: 8px 14px; border-radius: var(--radius-sm); transition: background var(--transition), color var(--transition); }
.nav-links a:hover { background: var(--off-white); color: var(--green); }
.nav-cta { background: var(--green) !important; color: #fff !important; border-radius: 50px !important; padding: 8px 20px !important; }
.nav-cta:hover { background: var(--green-dk) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; border: none; background: none; }
.hamburger span { width: 24px; height: 2.5px; background: var(--dark); border-radius: 2px; transition: var(--transition); }
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }


/* ============================================================
   HERO V3 — Animated Green Medical Glow Hero
   ============================================================ */
.hero-v3 {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--v3-bg-base);
  will-change: transform, opacity;
}

/* Layer 1: Background */
.v3-bg-system { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.v3-base-color {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, #ffffff 0%, #edf9f4 50%, var(--v3-bg-base) 100%);
}
.v3-mesh-wrap { position: absolute; inset: 0; filter: blur(80px); opacity: 0.65; }
.v3-aurora { position: absolute; border-radius: 50%; will-change: transform; }
.v3-aurora-1 {
  width: 65vw; height: 65vw; top: -25%; left: -15%;
  background: radial-gradient(circle, rgba(200,240,224,0.9) 0%, transparent 70%);
}
.v3-aurora-2 {
  width: 75vw; height: 75vw; bottom: -30%; right: -15%;
  background: radial-gradient(circle, rgba(0,180,160,0.18) 0%, transparent 70%);
}
.v3-aurora-3 {
  width: 55vw; height: 55vw; top: 25%; left: 38%;
  background: radial-gradient(circle, rgba(26,158,114,0.12) 0%, transparent 70%);
}
.v3-cross-pattern {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(26,158,114,0.05) 2px, transparent 2px);
  background-size: 44px 44px;
  opacity: 0.9;
}
.v3-ambient-particles { position: absolute; inset: 0; pointer-events: none; }
.ambient-dot {
  position: absolute; border-radius: 50%;
  background: var(--green-mid);
  box-shadow: 0 0 8px var(--green-mid);
  opacity: 0;
}

/* Layer 2: Capsule Animation */
.v3-animation-layer { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.v3-capsule-container {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%) perspective(1000px);
  width: 300px; height: 600px;
  display: flex; align-items: center; justify-content: center; z-index: 3;
}
.v3-capsule-svg { width: 100%; height: 100%; overflow: visible; transform-style: preserve-3d; }
.v3-scatter-particles { position: absolute; inset: 0; z-index: 2; }
.scatter-dot {
  position: absolute; top: 50%; left: 50%;
  width: 6px; height: 6px;
  background: #fff; border-radius: 50%;
  box-shadow: 0 0 12px var(--teal);
  opacity: 0;
}

/* Floating decorative elements */
.v3-floats { position: absolute; inset: 0; z-index: 1; }
.v3-float  { position: absolute; opacity: 0; will-change: transform, opacity; }
.v3-f-dna   { top: 20%; right: 12%; width: 72px; }
.v3-f-ecg   { bottom: 22%; left: 8%;  width: 240px; }
.v3-f-cross { top: 28%;  left: 18%; }
.v3-f-shield{ bottom: 28%; right: 18%; }
.v3-f-hex   { top: 60%; left: 60%; }
.v3-f-pill  { top: 14%; left: 12%; }

.glass-icon {
  width: 58px; height: 58px;
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.85);
  border-radius: 16px;
  display: grid; place-items: center;
  font-size: 1.4rem;
  color: var(--green);
  box-shadow: 0 8px 28px rgba(26,158,114,0.15);
}

/* Layer 3: Two-column content */
.v3-container {
  position: relative; z-index: 10;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 48px;
  padding: 60px 8%;
  min-height: 100vh;
}

/* LEFT — text */
.v3-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 60px;
}

.v3-badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(26,158,114,0.1); color: var(--green-dk);
  font-size: .79rem; font-weight: 700; text-transform: uppercase;
  padding: 7px 20px; border-radius: 50px; margin-bottom: 28px;
  border: 1px solid rgba(26,158,114,0.2);
  width: fit-content;
  opacity: 0;
  line-height: 1.6;
  white-space: nowrap;
}
.v3-bdot { width: 7px; height: 7px; background: var(--green); border-radius: 50%; animation: pulse-dot 2s infinite; }

@keyframes pulse-dot {
  0%,100% { box-shadow: 0 0 0 0 rgba(26,158,114,0.4); }
  50% { box-shadow: 0 0 0 5px rgba(26,158,114,0); }
}

.v3-heading {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  line-height: 1.3;
  color: var(--dark);
  margin-bottom: 22px;
  position: relative;
  text-align: left;
  word-break: normal;
  overflow-wrap: normal;
  white-space: normal;
}
.v3-heading .char { display: inline-block; will-change: transform, opacity; }
.v3-h-green { color: var(--green); }
.v3-h-amp   { color: var(--teal); }

/* Light sweep */
.v3-heading::after {
  content: '';
  position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.7), transparent);
  transform: skewX(-20deg);
  animation: lightSweep 7s infinite;
  pointer-events: none; mix-blend-mode: overlay;
}
@keyframes lightSweep { 0%,60% { left: -100%; } 100% { left: 220%; } }

/* Glow pulse on heading */
@keyframes textGlowPulse {
  0%   { text-shadow: 0 0 0px rgba(26,158,114,0); }
  50%  { text-shadow: 0 0 18px rgba(26,158,114,0.25); }
  100% { text-shadow: 0 0 0px rgba(26,158,114,0); }
}

.v3-subtitle {
  font-size: 1.1rem; color: #4B6358; font-weight: 500;
  margin-bottom: 28px; opacity: 0; will-change: filter, transform, opacity;
  line-height: 1.7;
}

.v3-timing {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--green-lt);
  border-left: 3px solid var(--green);
  padding: 10px 20px; border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-bottom: 34px; font-size: 1rem; font-weight: 500; color: var(--dark);
  opacity: 0; width: fit-content;
}
.v3-tdot { width: 8px; height: 8px; background: var(--green); border-radius: 50%; }

.v3-ctas {
  display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 24px; opacity: 0;
}

.v3-btn-primary {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 32px; border-radius: 50px;
  background: linear-gradient(135deg, var(--green), var(--teal));
  color: #fff; font-weight: 700; font-size: 1rem;
  box-shadow: 0 6px 24px rgba(26,158,114,0.32);
  transition: all 0.35s cubic-bezier(0.175,0.885,0.32,1.275);
  position: relative; overflow: hidden;
}
.v3-btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--teal), var(--green));
  opacity: 0; transition: opacity 0.3s;
}
.v3-btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(26,158,114,0.42); }
.v3-btn-primary:hover::before { opacity: 1; }
.v3-btn-primary span { position: relative; z-index: 1; }

.v3-btn-outline {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 32px; border-radius: 50px;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(12px);
  color: var(--green-dk); font-weight: 700; font-size: 1rem;
  border: 2px solid rgba(26,158,114,0.35);
  box-shadow: 0 4px 16px rgba(26,158,114,0.1);
  transition: all 0.35s cubic-bezier(0.175,0.885,0.32,1.275);
}
.v3-btn-outline:hover { transform: translateY(-3px); background: #fff; border-color: var(--green); box-shadow: 0 8px 28px rgba(26,158,114,0.2); }

.v3-disclaimer { font-size: .76rem; color: var(--grey); font-style: italic; opacity: 0; }

/* RIGHT — image + stats */
.v3-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
  opacity: 0;
  background: transparent;
  align-self: center;
}
.v3-img-panel {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(26,158,114,0.18), 0 4px 16px rgba(0,0,0,0.08);
  position: relative;
  border: 2px solid rgba(26,158,114,0.12);
  background: transparent;
  height: 340px;
}
.v3-img-panel img { width: 100%; height: 100%; object-fit: cover; display: block; }

.v3-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  opacity: 0;
  background: transparent;
}
.v3-stat {
  padding: 16px 12px;
  text-align: center;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(26,158,114,0.10);
  border: 1px solid rgba(26,158,114,0.12);
}
.v3-stat-icon { font-size: 1.3rem; margin-bottom: 5px; }
.v3-stat-num  { font-family: var(--font-head); font-size: 1.4rem; font-weight: 700; color: var(--green-dk); line-height: 1; }
.v3-stat-num sup { font-size: 0.7rem; }
.v3-stat-lbl  { font-size: .66rem; color: var(--grey); text-transform: uppercase; font-weight: 600; letter-spacing: .04em; margin-top: 4px; }



/* ============================================================
   ABOUT
   ============================================================ */
#about { background: var(--off-white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-visual { position: relative; }
.about-img-wrap {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-lg); aspect-ratio: 4/3;
  background: var(--grey-lt); display: flex; align-items: center; justify-content: center;
}
.about-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: linear-gradient(135deg, var(--green), var(--teal));
  color: #fff; border-radius: var(--radius); padding: 18px 22px;
  text-align: center; box-shadow: var(--shadow-md);
}
.about-badge .yrs { font-family: var(--font-head); font-size: 2rem; font-weight: 700; }
.about-badge .yrs-lbl { font-size: .75rem; text-transform: uppercase; letter-spacing: .06em; opacity: .9; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }
.feature-chip {
  display: flex; align-items: center; gap: 10px;
  background: var(--white); border-radius: var(--radius-sm);
  padding: 12px 16px; box-shadow: var(--shadow-sm);
  font-size: .88rem; font-weight: 500; transition: var(--transition);
}
.feature-chip:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.feature-chip .icon { font-size: 1.2rem; }


/* ============================================================
   LAB SERVICES
   ============================================================ */
#lab-tests { background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px,1fr)); gap: 18px; }
.service-card {
  background: var(--card-bg); border: 1px solid var(--grey-lt);
  border-radius: var(--radius); padding: 22px 18px;
  text-align: center; transition: var(--transition);
  cursor: default; position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--green), var(--teal));
  transform: scaleX(0); transform-origin: left; transition: transform var(--transition);
}
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-card .svc-icon { font-size: 2rem; margin-bottom: 10px; }
.service-card h3 { font-size: .9rem; font-weight: 600; color: var(--dark); margin-bottom: 4px; }
.service-card p  { font-size: .78rem; color: var(--grey); }

.franchise-partner-banner {
  display: grid; grid-template-columns: 340px 1fr; gap: 40px;
  align-items: center; margin-top: 56px;
  background: var(--off-white); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--grey-lt);
}
.franchise-partner-img-wrap { height: 280px; overflow: hidden; flex-shrink: 0; }
.franchise-partner-img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.franchise-partner-text { padding: 36px 40px 36px 0; }
.franchise-partner-text h3 { font-family: var(--font-head); font-size: 1.7rem; margin-bottom: 12px; color: var(--dark); }


/* ============================================================
   FRANCHISE / TEAM
   ============================================================ */
#franchise { background: var(--off-white); }
.owners-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.owner-card {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-md);
  transition: var(--transition); display: flex; flex-direction: column;
}
.owner-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.owner-img { width: 100%; height: 280px; object-fit: cover; object-position: center top; background: var(--grey-lt); }
.owner-img-placeholder { width: 100%; height: 280px; background: linear-gradient(135deg, var(--grey-lt), var(--green-lt)); display: flex; align-items: center; justify-content: center; font-size: 5rem; color: var(--green); }
.owner-info { padding: 26px; }
.owner-info .owner-role { display: inline-block; background: var(--green-lt); color: var(--green-dk); font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; padding: 3px 12px; border-radius: 50px; margin-bottom: 10px; }
.owner-info h3 { font-family: var(--font-head); font-size: 1.35rem; margin-bottom: 10px; }
.owner-info p  { font-size: .9rem; color: var(--grey); }


/* ============================================================
   DOCTORS
   ============================================================ */
.doctors-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: 24px; }
.doctor-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--grey-lt);
  transition: var(--transition); display: flex; flex-direction: column;
}
.doctor-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.doctor-color-bar { height: 5px; width: 100%; flex-shrink: 0; }
.doctor-body { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 5px; flex: 1; }
.doctor-specialty { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; margin-bottom: 4px; }
.doctor-name { font-family: var(--font-head); font-size: 1.15rem; color: var(--dark); margin-bottom: 2px; line-height: 1.3; }
.doctor-qual { font-size: .8rem; color: var(--primary); font-weight: 600; line-height: 1.5; }
.doctor-role { font-size: .82rem; color: var(--grey); margin-bottom: 14px; line-height: 1.5; }
.doctor-schedule { margin-top: auto; background: var(--off-white); border-radius: var(--radius-sm); padding: 12px 14px; display: flex; flex-direction: column; gap: 6px; }
.sched-row { display: flex; align-items: flex-start; gap: 8px; font-size: .83rem; color: var(--dark); font-weight: 500; }
.sched-row span { color: var(--grey); font-weight: 400; }


/* ============================================================
   SHOP TIMING
   ============================================================ */
#timing {
  background: linear-gradient(135deg, var(--green-dk) 0%, #0e7a55 40%, var(--teal) 100%);
  color: #fff; text-align: center; padding: 70px 0;
}
#timing .tag-line    { background: rgba(255,255,255,.2); color: #fff; }
#timing .section-title { color: #fff; }
#timing .section-subtitle { color: rgba(255,255,255,.8); margin: 0 auto; }
.timing-display { display: flex; justify-content: center; align-items: center; gap: 40px; margin-top: 40px; flex-wrap: wrap; }
.timing-block {
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.28);
  backdrop-filter: blur(8px); border-radius: var(--radius);
  padding: 28px 40px; text-align: center; min-width: 180px;
}
.timing-block .t-icon  { font-size: 2rem; margin-bottom: 8px; }
.timing-block .t-label { font-size: .8rem; opacity: .75; text-transform: uppercase; letter-spacing: .07em; margin-bottom: 6px; }
.timing-block .t-value { font-family: var(--font-head); font-size: 1.5rem; font-weight: 700; }
.timing-divider { font-size: 2.5rem; opacity: .4; font-weight: 300; }


/* ============================================================
   MAP
   ============================================================ */
#map-section { background: var(--white); }
.map-wrapper { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); position: relative; }
.map-wrapper iframe { width: 100%; height: 420px; border: none; display: block; }
.map-overlay { position: absolute; top: 20px; left: 20px; background: var(--white); border-radius: var(--radius); padding: 18px 22px; box-shadow: var(--shadow-md); max-width: 260px; }
.map-overlay h4 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; color: var(--green); }
.map-overlay p  { font-size: .82rem; color: var(--grey); margin-bottom: 14px; }
.btn-directions {
  background: var(--green); color: #fff; padding: 10px 18px;
  border-radius: 50px; font-size: .85rem; font-weight: 600;
  display: inline-flex; align-items: center; gap: 6px; transition: var(--transition);
}
.btn-directions:hover { background: var(--green-dk); }


/* ============================================================
   CONTACT
   ============================================================ */
#contact { background: var(--off-white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 48px; }
.contact-info h3 { font-family: var(--font-head); font-size: 1.5rem; margin-bottom: 24px; }
.info-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 22px; }
.info-item .info-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: linear-gradient(135deg, var(--green), var(--teal));
  display: grid; place-items: center; font-size: 1.2rem; color: #fff; flex-shrink: 0;
}
.info-item .info-text .lbl { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--green); margin-bottom: 2px; }
.info-item .info-text p { font-size: .92rem; color: var(--dark); }
.info-item .info-text a { color: var(--green); font-weight: 600; }
.info-item .info-text a:hover { color: var(--green-dk); }
.contact-form { background: var(--white); border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow-md); }
.contact-form h3 { font-family: var(--font-head); font-size: 1.4rem; margin-bottom: 26px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: .83rem; font-weight: 600; margin-bottom: 6px; color: var(--dark); }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid #c8e8d8; border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: .92rem; color: var(--dark);
  background: var(--off-white); transition: border-color var(--transition), box-shadow var(--transition); outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--green); box-shadow: 0 0 0 3px rgba(26,158,114,.12); background: #fff;
}
.form-group textarea { resize: vertical; min-height: 110px; }
.btn-submit {
  width: 100%; background: linear-gradient(135deg, var(--green), var(--teal));
  color: #fff; padding: 14px; border: none; border-radius: 50px;
  font-weight: 700; font-size: 1rem; cursor: pointer;
  transition: var(--transition); letter-spacing: .03em;
}
.btn-submit:hover { opacity: .88; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(26,158,114,.3); }


/* ============================================================
   FOOTER
   ============================================================ */
footer { background: var(--dark); color: rgba(255,255,255,.8); padding: 56px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand .nav-logo { margin-bottom: 14px; }
.footer-brand .nav-logo .logo-icon { background: rgba(255,255,255,.1); }
.footer-brand .logo-text .brand   { color: #fff; }
.footer-brand .logo-text .tagline { color: var(--green-lt); }
.footer-brand p { font-size: .87rem; line-height: 1.8; color: rgba(255,255,255,.6); margin-bottom: 20px; }
.social-links { display: flex; gap: 10px; }
.social-links a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,.2); display: grid; place-items: center; font-size: 1rem; transition: var(--transition); }
.social-links a:hover { background: var(--green); border-color: var(--green); }
.footer-col h4 { color: #fff; font-size: .92rem; font-weight: 700; margin-bottom: 18px; text-transform: uppercase; letter-spacing: .06em; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: .87rem; color: rgba(255,255,255,.6); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--green-lt); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; font-size: .82rem; color: rgba(255,255,255,.45); flex-wrap: wrap; gap: 10px; }


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .about-grid    { grid-template-columns: 1fr; }
  .about-visual  { display: none; }
  .contact-grid  { grid-template-columns: 1fr; }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
  .owners-grid   { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
}

@media (max-width: 900px) {
  .v3-container {
    grid-template-columns: 1fr;
    padding: 60px 5%;
    gap: 40px;
  }
  .v3-right {
    height: 60vw; min-height: 300px; max-height: 440px;
  }
  .v3-floats { display: none; }
}

@media (max-width: 700px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--grey-lt); padding: 16px 24px; gap: 4px; box-shadow: var(--shadow-md); }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .footer-grid   { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
  .timing-display { flex-direction: column; gap: 16px; }
  .timing-divider { display: none; }
  .services-grid  { grid-template-columns: repeat(auto-fill, minmax(150px,1fr)); }
  .franchise-partner-banner { grid-template-columns: 1fr; }
  .franchise-partner-img-wrap { height: 220px; }
  .franchise-partner-text { padding: 24px; }
  .v3-ctas { flex-direction: column; }
  .v3-btn-primary, .v3-btn-outline { width: 100%; justify-content: center; }
}

@media (max-width: 600px) { .doctors-grid { grid-template-columns: 1fr; } }
@media (max-width: 420px) { section { padding: 56px 0; } }