/* ============================================================
   GURGAONCARE — Global Stylesheet
   Mobile-first. Base: 375px. Breakpoints: 768px, 1024px.
   ============================================================ */

/* --- Google Fonts (loaded async via HTML preload — not here) --- */

/* --- CSS Custom Properties --- */
:root {
  --navy:       #0a2540;
  --teal:       #1D9C75;
  --teal-light: #5DCAA5;
  --teal-dark:  #0F6E56;
  --amber:      #EF9F27;
  --off-white:  #F5F7FA;
  --text-dark:  #1a1a2e;
  --text-muted: #6b7280;
  --white:      #ffffff;
  --wa-green:      #25D366;
  --wa-green-dark: #1ebe5a;
  --teal-mint:     #9FE1CB;
  --error:         #ef4444;
  --error-bg:      rgba(239,68,68,0.1);

  --font-head: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;

  --nav-h-mobile:  56px;
  --nav-h-desktop: 64px;
  --cta-bar-h:     56px;
  --section-pad-mobile:  64px;
  --section-pad-desktop: 96px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-card: 0 4px 24px rgba(10,37,64,0.10);
  --shadow-nav:  0 2px 16px rgba(10,37,64,0.18);
  --transition: 0.22s ease;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.8;
  padding-bottom: var(--cta-bar-h);
}
@media (min-width: 768px) { body { padding-bottom: 0; } }

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.25;
  color: var(--navy);
}
h1 { font-size: clamp(32px, 5vw, 52px); letter-spacing: -0.02em; margin-bottom: 24px; }
h2 { font-size: clamp(26px, 4vw, 40px); letter-spacing: -0.01em; margin-bottom: 20px; }
h3 { font-size: clamp(18px, 3vw, 24px); margin-bottom: 16px; }
p  { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* --- Section Spacing --- */
.section-pad {
  padding-top: var(--section-pad-mobile);
  padding-bottom: var(--section-pad-mobile);
}
@media (min-width: 768px) {
  .section-pad {
    padding-top: var(--section-pad-desktop);
    padding-bottom: var(--section-pad-desktop);
  }
}

/* --- Container --- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) { .container { padding: 0 32px; } }

/* --- Premium Narrow Container --- */
.container--narrow {
  max-width: 800px;
  background: var(--white);
  padding: 40px 24px;
  border-radius: 24px;
  box-shadow: 0 16px 40px rgba(10, 37, 64, 0.06);
  border: 1px solid rgba(10, 37, 64, 0.05);
  margin-top: 24px;
  margin-bottom: 24px;
}
.container--narrow > h2 {
  margin-bottom: 24px;
}
.container--narrow > p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-dark);
}
@media (min-width: 768px) {
  .container--narrow {
    padding: 56px 48px;
    margin-top: 32px;
    margin-bottom: 32px;
  }
  .container--narrow > h2 {
    margin-bottom: 32px;
  }
}
.bg-white .container--narrow {
  background: var(--off-white);
  border-color: rgba(10, 37, 64, 0.03);
}
.bg-navy .container--narrow {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0 20px;
  margin-top: 0;
  margin-bottom: 0;
}

/* --- Two Column Layout --- */
.two-col {
  display: flex;
  flex-direction: column-reverse;
  gap: 32px;
  align-items: center;
}
@media (min-width: 992px) {
  .two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
  .two-col.two-col--reverse > div:first-child {
    order: 2;
  }
}
.two-col img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(10, 37, 64, 0.08);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
  border-radius: 10px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
  min-height: 48px;
  padding: 0 24px;
  text-align: center;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.btn-primary:hover { background: var(--teal-dark); border-color: var(--teal-dark); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-ghost:hover { background: var(--white); color: var(--navy); }

.btn-ghost-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-ghost-navy:hover { background: var(--navy); color: var(--white); }

.btn-call {
  background: var(--wa-green);
  color: var(--white);
  border-color: var(--wa-green);
  font-size: 18px;
  min-height: 52px;
}
.btn-call:hover { background: var(--wa-green-dark); border-color: var(--wa-green-dark); }

.btn-lg {
  font-size: 18px;
  min-height: 52px;
  padding: 0 32px;
}

.btn-full { width: 100%; }

/* --- Badge / Pill --- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
}
.badge-teal  { background: rgba(29,158,117,0.12); color: var(--teal); border: 1px solid rgba(29,158,117,0.3); }
.badge-navy  { background: var(--navy); color: var(--white); }
.badge-white { background: rgba(255,255,255,0.15); color: var(--white); border: 1px solid rgba(255,255,255,0.3); }
.badge-amber { background: rgba(239,159,39,0.15); color: var(--amber); border: 1px solid rgba(239,159,39,0.35); }

/* --- Cards --- */
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(10,37,64,0.08);
  padding: 28px 24px;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}
.card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(10,37,64,0.12); }

/* --- Section backgrounds --- */
.bg-navy      { background: linear-gradient(135deg, #06182c, var(--navy)); color: var(--white); }
.bg-navy h1, .bg-navy h2, .bg-navy h3 { color: var(--white); }
.bg-teal      { background: linear-gradient(135deg, var(--teal-dark), var(--teal)); color: var(--white); }
.bg-teal h1, .bg-teal h2, .bg-teal h3 { color: var(--white); }
.bg-teal-dark { background: var(--teal-dark); color: var(--white); }
.bg-off-white { background: linear-gradient(to bottom, var(--white), var(--off-white)); }
.bg-white     { background: var(--white); }

/* --- Text utilities --- */
.text-teal   { color: var(--teal); }
.text-navy   { color: var(--navy); }
.text-muted  { color: var(--text-muted); }
.text-white  { color: var(--white); }
.text-amber  { color: var(--amber); }
.text-center { text-align: center; }
.text-sm     { font-size: 14px; }
.text-xs     { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; }
.highlight   { background-color: rgba(29, 158, 117, 0.15); color: var(--navy); font-weight: 600; padding: 0 4px; border-radius: 4px; }
.hero .highlight, .page-hero .highlight, .bg-navy .highlight { background-color: rgba(255, 255, 255, 0.15); color: #fff; text-shadow: none; }

/* --- Grid --- */
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 24px; }
.grid-4 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (min-width: 768px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr 1fr 1fr; }
}

/* --- Flex utilities --- */
.flex         { display: flex; }
.flex-center  { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-8  { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }

/* ===========================
   NAVBAR
   =========================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 37, 64, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  height: var(--nav-h-mobile);
  display: flex;
  align-items: center;
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow-nav); }
@media (min-width: 768px) { .navbar { height: var(--nav-h-desktop); } }

.navbar__inner {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 768px) { .navbar__inner { padding: 0 32px; } }

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.navbar__logo-icon { width: 40px; height: 40px; flex-shrink: 0; }
@media (min-width: 768px) { .navbar__logo-icon { width: 48px; height: 48px; } }
.navbar__logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.navbar__logo-name { font-family: var(--font-head); font-weight: 700; font-size: 20px; color: var(--white); }
.navbar__logo-name span { color: var(--teal-light); }
.navbar__logo-tagline { font-size: 11px; color: rgba(255,255,255,0.75); letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500; }
@media (min-width: 768px) {
  .navbar__logo-name { font-size: 22px; }
  .navbar__logo-tagline { font-size: 12px; }
}

.navbar__links { display: none; align-items: center; gap: 28px; }
@media (min-width: 1024px) { .navbar__links { display: flex; } }
.navbar__links a {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
  padding: 4px 0;
  border-bottom: 2px solid transparent;
}
.navbar__links a:hover,
.navbar__links a.active { color: var(--teal-light); border-bottom-color: var(--teal-light); }

.navbar__cta { display: none; align-items: center; gap: 12px; }
@media (min-width: 768px) { .navbar__cta { display: flex; } }
.navbar__phone {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  background: rgba(29,158,117,0.18);
  border: 1px solid rgba(29,158,117,0.4);
  border-radius: 999px;
  padding: 6px 16px;
  min-height: 36px;
  display: flex;
  align-items: center;
  transition: background var(--transition);
}
.navbar__phone:hover { background: var(--teal); }

.navbar__mobile-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (min-width: 1024px) { .navbar__mobile-actions { display: none !important; } }
.navbar__wa {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  background: rgba(37,211,102,0.18);
  border: 1px solid rgba(37,211,102,0.4);
  border-radius: 999px;
  padding: 6px 16px;
  min-height: 36px;
  display: flex;
  align-items: center;
  transition: background var(--transition);
}
.navbar__wa:hover { background: var(--wa-green); }

.navbar__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
  align-items: center;
}
.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.navbar__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__hamburger.open span:nth-child(2) { opacity: 0; }
.navbar__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.navbar__mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 37, 64, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 80px 32px 32px;
}
.navbar__mobile-menu.open { display: flex; }
.navbar__mobile-menu a {
  display: block;
  width: 100%;
  text-align: center;
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  padding: 16px;
  min-height: 52px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color var(--transition);
}
.navbar__mobile-menu a:hover { color: var(--teal-light); }
.navbar__mobile-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 32px;
  cursor: pointer;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.navbar__mobile-cta {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

/* ===========================
   MOBILE STICKY BOTTOM CTA BAR
   =========================== */
.cta-bar {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: var(--cta-bar-h);
  z-index: 9999;
}
@media (min-width: 768px) { .cta-bar { display: none; } }
.cta-bar__call,
.cta-bar__wa,
.cta-bar__whatsapp {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  border: none;
  cursor: pointer;
  min-height: 48px;
}
.cta-bar__call { background: var(--teal); }
.cta-bar__wa, .cta-bar__whatsapp   { background: var(--wa-green); }

/* ===========================
   FLOATING WHATSAPP BUTTON (desktop)
   =========================== */
.wa-float {
  display: none;
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: var(--wa-green);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  z-index: 9998;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  text-decoration: none;
  animation: waPulse 2s infinite;
}
@media (min-width: 768px) { .wa-float { display: flex; } }
.wa-float svg { width: 32px; height: 32px; fill: var(--white); }

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: var(--navy);
  color: var(--white);
  padding: 56px 0 24px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; }
}
.footer__logo-name { font-family: var(--font-head); font-size: 24px; font-weight: 700; color: var(--white); }
.footer__logo-name span { color: var(--teal-light); }
.footer__tagline { color: rgba(255,255,255,0.75); font-size: 13px; margin: 6px 0 16px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; }
.footer__serve   { color: rgba(255,255,255,0.7); font-size: 14px; margin-bottom: 16px; }
.footer__phone a { color: var(--teal-light); font-family: var(--font-head); font-size: 20px; font-weight: 700; }
.footer h4 {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a { color: rgba(255,255,255,0.75); font-size: 14px; transition: color var(--transition); }
.footer__links a:hover { color: var(--teal-light); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
}
@media (min-width: 768px) {
  .footer__bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}
.footer__bottom p { color: var(--text-muted); font-size: 13px; margin: 0; }

/* ===========================
   HERO SECTION
   =========================== */
.hero {
  background: var(--navy);
  color: var(--white);
  min-height: calc(100vh - var(--nav-h-mobile));
  display: flex;
  align-items: center;
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .hero { min-height: calc(100vh - var(--nav-h-desktop)); padding: 80px 0; }
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 1024px) { .hero__inner { grid-template-columns: 1fr 1fr; gap: 64px; } }
.hero__eyebrow { margin-bottom: 16px; }
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero__sub {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 560px;
}
@media (min-width: 768px) { .hero__sub { font-size: 17px; } }
.hero__cta-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
@media (min-width: 480px) { .hero__cta-row { flex-direction: row; flex-wrap: wrap; } }
.hero__trust { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.hero__trust-marquee-wrapper { margin-bottom: 24px; overflow: hidden; width: 100%; mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent); -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent); }
.hero__trust-marquee-track { display: flex; flex-wrap: nowrap; width: max-content; gap: 16px; animation: marqueeScroll 20s linear infinite; }
.hero__trust-marquee-track > * { flex-shrink: 0; }
@keyframes marqueeScroll { 0% { transform: translateX(0); } 100% { transform: translateX(calc(-50% - 8px)); } }
.hero__trust-marquee-track:hover { animation-play-state: paused; }
.hero__img-wrap { border-radius: var(--radius-lg); overflow: hidden; max-height: 480px; }
.hero__img-wrap img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-lg); }
.hero__content { order: 1; }
.hero__image   { order: 2; }

/* ===========================
   STATS BAR
   =========================== */
.stats-bar { background: var(--teal-dark); padding: 32px 0; }
.stats-bar__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  text-align: center;
}
@media (min-width: 768px) { .stats-bar__grid { grid-template-columns: repeat(4, 1fr); } }
.stats-bar__num { font-family: var(--font-head); font-size: 36px; font-weight: 700; color: var(--white); line-height: 1; }
.stats-bar__label { font-size: 13px; color: var(--teal-mint); margin-top: 4px; }

/* ===========================
   STEPS / HOW IT WORKS
   =========================== */
.steps { display: flex; flex-direction: column; gap: 40px; }
@media (min-width: 768px) { .steps { flex-direction: row; gap: 32px; } }
.step:not(:last-child)::after {
  content: '';
  display: block;
  width: 24px;
  height: 24px;
  margin: 16px auto -8px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23cbd5e1'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
@media (min-width: 768px) {
  .step:not(:last-child)::after {
    position: absolute;
    top: 28px;
    right: -28px;
    margin: 0;
    transform: translateY(-50%);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23cbd5e1'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M9 5l7 7-7 7'/%3E%3C/svg%3E");
  }
}
.step__icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(29,158,117,0.1);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.step__icon svg { width: 28px; height: 28px; fill: var(--teal); }
.step h3 { margin-bottom: 8px; }
.step p   { color: var(--text-muted); font-size: 15px; margin: 0; }

/* ===========================
   SERVICE CARDS
   =========================== */
.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  box-shadow: 0 10px 30px rgba(10,37,64,0.08);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.service-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(10,37,64,0.12); }
.service-card__icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(29,158,117,0.1);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.service-card__icon svg { width: 26px; height: 26px; fill: var(--teal); }
.service-card h3 { margin-bottom: 8px; font-size: 18px; }
.service-card p  { color: var(--text-muted); font-size: 14px; flex: 1; margin-bottom: 16px; }
.service-card__link { color: var(--teal); font-weight: 600; font-size: 14px; margin-top: auto; }
.service-card__link:hover { text-decoration: underline; }
.service-card__img {
  width: calc(100% + 48px);
  margin: -28px -24px 20px -24px;
  height: 180px;
  overflow: hidden;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}
.service-card__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
}
.service-card:hover .service-card__img img { transform: scale(1.04); }

/* ===========================
   FEATURE GRID (Why Us)
   =========================== */
.feature-item { display: flex; gap: 16px; }
.feature-item__icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(29,158,117,0.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.feature-item__icon svg { width: 24px; height: 24px; fill: var(--teal); }
.feature-item h3 { font-size: 17px; margin-bottom: 6px; }
.feature-item p  { color: var(--text-muted); font-size: 14px; margin: 0; }

/* ===========================
   TESTIMONIAL CARDS
   =========================== */
.testimonial-card { background: var(--white); border-radius: var(--radius-md); padding: 28px 24px; box-shadow: var(--shadow-card); }
.testimonial-card__stars  { color: var(--amber); font-size: 18px; margin-bottom: 12px; }
.testimonial-card__text   { font-size: 15px; color: var(--text-dark); font-style: italic; line-height: 1.7; margin-bottom: 16px; }
.testimonial-card__author { font-weight: 600; font-size: 14px; color: var(--navy); }
.testimonial-card__area   { font-size: 13px; color: var(--text-muted); }

/* ===========================
   ACCORDION (FAQ)
   =========================== */
.accordion { border: 1px solid rgba(10,37,64,0.10); border-radius: var(--radius-md); overflow: hidden; }
.accordion + .accordion { margin-top: 12px; }
.accordion__trigger {
  width: 100%;
  background: var(--white);
  border: none;
  padding: 20px 24px;
  text-align: left;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 48px;
  transition: background var(--transition);
}
.accordion__trigger:hover { background: var(--off-white); }
.accordion__trigger.active { background: var(--off-white); color: var(--teal); }
.accordion__icon { width: 20px; height: 20px; flex-shrink: 0; transition: transform var(--transition); }
.accordion__trigger.active .accordion__icon { transform: rotate(180deg); }
.accordion__body {
  display: none;
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  border-top: 1px solid rgba(10,37,64,0.06);
}
.accordion__body.open { display: block; }

/* ===========================
   CTA BANNER SECTION
   =========================== */
.cta-section { text-align: center; padding: var(--section-pad-mobile) 0; }
@media (min-width: 768px) { .cta-section { padding: var(--section-pad-desktop) 0; } }
.cta-section h2 { color: var(--white); margin-bottom: 12px; }
.cta-section p  { color: rgba(255,255,255,0.8); margin-bottom: 28px; }
.cta-section__buttons { display: flex; flex-direction: column; gap: 12px; justify-content: center; align-items: center; }
@media (min-width: 480px) { .cta-section__buttons { flex-direction: row; } }
.cta-section__phone { font-family: var(--font-head); font-size: 26px; font-weight: 700; color: var(--white); margin-top: 20px; }
/* CTA image: hidden on mobile to avoid half-cut crop, visible on desktop */
.cta-section__img-wrap { display: none; }
@media (min-width: 768px) {
  .cta-section__img-wrap {
    display: block;
    flex: 0 0 auto;
    width: 320px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 48px rgba(0,0,0,0.25);
  }
  .cta-section__img-wrap img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: top center;
    display: block;
  }
  /* Left-align text when image is beside it */
  .cta-section { text-align: left; }
  .cta-section__buttons { justify-content: flex-start; }
}

/* ===========================
   PAGE HERO (inner pages)
   =========================== */
.page-hero { background: var(--navy); color: var(--white); padding: 56px 0 48px; text-align: center; }
@media (min-width: 768px) { .page-hero { padding: 80px 0 64px; } }
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p  { color: rgba(255,255,255,0.75); max-width: 680px; margin: 0 auto; }
.page-hero__img { margin-top: 40px; border-radius: var(--radius-lg); overflow: hidden; max-height: 400px; }
.page-hero__img img { width: 100%; object-fit: cover; height: 100%; }

/* ===========================
/* ===========================
   BREADCRUMB
   =========================== */
.breadcrumb {
  padding: 12px 0;
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  gap: 6px;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
}
.breadcrumb a { color: var(--teal); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb__sep { color: var(--text-muted); }

/* Support for <nav class="breadcrumb"><ol> */
nav.breadcrumb { display: block; background: var(--off-white); }
nav.breadcrumb ol {
  display: flex; gap: 8px; align-items: center; list-style: none; padding: 0; margin: 0;
  font-size: 14px; flex-wrap: wrap;
}
nav.breadcrumb li { display: flex; align-items: center; gap: 8px; color: var(--text-muted); }
nav.breadcrumb li:not(:last-child)::after {
  content: '›';
  color: var(--text-muted);
  font-size: 16px;
}

/* ===========================
/* Area / Service Pills */
.area-pill {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(10, 37, 64, 0.04);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all var(--transition);
  cursor: pointer;
}
.area-pill:hover {
  background: var(--white);
  color: var(--teal);
  box-shadow: 0 8px 16px rgba(10, 37, 64, 0.08);
  transform: translateY(-2px);
}
.bg-navy .area-pill {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.bg-navy .area-pill:hover {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* ===========================
   CHECK / CROSS LISTS
   =========================== */
.check-list { display: flex; flex-direction: column; gap: 16px; list-style: none; padding: 0; }
.check-list li {
  position: relative;
  padding: 16px 20px 16px 56px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--text-dark);
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: 0 4px 12px rgba(10, 37, 64, 0.04);
  border: 1px solid rgba(10, 37, 64, 0.05);
  transition: transform var(--transition), box-shadow var(--transition);
}
.check-list li:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(10, 37, 64, 0.08);
}
.check-list li::before {
  content: '';
  position: absolute;
  left: 16px;
  top: 16px;
  width: 24px;
  height: 24px;
  background: var(--teal-light);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230a2540'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
  background-size: 16px;
  background-repeat: no-repeat;
  background-position: center;
}
.bg-navy .check-list li {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
}
.bg-navy .check-list li::before {
  background: var(--teal);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
}
.cross-list { display: flex; flex-direction: column; gap: 16px; list-style: none; padding: 0; }
.cross-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--text-muted);
}
.cross-list li::before {
  content: '✕';
  width: 20px;
  height: 20px;
  min-width: 20px;
  background: var(--error-bg);
  border-radius: 50%;
  color: var(--error);
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ===========================
   AREA PAGE CHIPS
   =========================== */
.area-services { display: flex; flex-wrap: wrap; gap: 10px; }
.area-services a {
  padding: 8px 16px;
  border: 1px solid rgba(29,158,117,0.3);
  border-radius: 999px;
  font-size: 14px;
  color: var(--teal);
  transition: background var(--transition), color var(--transition);
}
.area-services a:hover { background: var(--teal); color: var(--white); }

.nearby-areas { display: flex; flex-wrap: wrap; gap: 10px; }
.nearby-areas a {
  padding: 8px 16px;
  border: 1px solid rgba(10,37,64,0.15);
  border-radius: 999px;
  font-size: 14px;
  color: var(--navy);
  transition: background var(--transition), color var(--transition);
}
.nearby-areas a:hover { background: var(--navy); color: var(--white); }

/* ===========================
   BLOG
   =========================== */
.blog-header { background: var(--off-white); padding: 48px 0 32px; }
.blog-meta { font-size: 13px; color: var(--text-muted); margin-bottom: 24px; display: flex; gap: 16px; flex-wrap: wrap; }
.blog-content { max-width: 760px; margin: 0 auto; }
.blog-content h2 { margin-top: 40px; margin-bottom: 16px; }
.blog-content h2:first-child { margin-top: 0; }
.blog-content p  { color: var(--text-muted); margin-bottom: 16px; }
.blog-content a  { color: var(--teal); text-decoration: underline; }
.blog-cta { background: var(--off-white); border-radius: var(--radius-md); padding: 28px; text-align: center; margin: 40px 0; }

/* ===========================
   PRICING
   =========================== */
.pricing-card {
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  background: var(--white);
  box-shadow: var(--shadow-card);
  border: 2px solid var(--teal);
  max-width: 480px;
  margin: 0 auto;
}
.pricing-card__label  { font-size: 12px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--text-muted); margin-bottom: 8px; }
.pricing-card h3      { font-size: 28px; color: var(--navy); margin-bottom: 4px; }
.pricing-card__price  { font-family: var(--font-head); font-size: 64px; font-weight: 700; color: var(--teal); margin: 16px 0 4px; line-height: 1; }
.pricing-card__currency { font-size: 28px; vertical-align: top; margin-top: 12px; display: inline-block; }
.pricing-card__note   { font-size: 13px; color: var(--text-muted); margin-bottom: 28px; }
.pay-after-box {
  background: rgba(239,159,39,0.1);
  border: 1px solid rgba(239,159,39,0.4);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin: 20px 0;
  text-align: center;
}
.pay-after-box__title { font-family: var(--font-head); font-weight: 700; font-size: 16px; color: var(--amber); margin-bottom: 4px; }
.pay-after-box p      { font-size: 14px; color: var(--text-dark); margin: 0; }

/* ===========================
   BOOK PAGE
   =========================== */
.book-card { border-radius: var(--radius-lg); padding: 40px 32px; text-align: center; color: var(--white); }
.book-card h2 { color: var(--white); margin-bottom: 12px; }
.book-card p  { color: rgba(255,255,255,0.8); margin-bottom: 28px; }
.book-card__num { font-family: var(--font-head); font-size: 32px; font-weight: 700; color: var(--white); margin-bottom: 8px; }

/* ===========================
   SCROLL ANIMATIONS (base state)
   =========================== */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-in.visible { opacity: 1; transform: none; }

/* ===========================
   SKIP LINK (accessibility)
   =========================== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 8px;
  background: var(--teal);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 0 0 8px 8px;
  z-index: 10000;
  font-weight: 700;
}
.skip-link:focus { top: 0; }

/* ===========================
   PROSE (generic content)
   =========================== */
.prose h2 { margin-bottom: 16px; margin-top: 40px; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-bottom: 12px; margin-top: 28px; }
.prose p  { margin-bottom: 16px; color: var(--text-muted); }
.prose ul { padding-left: 20px; margin-bottom: 16px; }
.prose ul li { color: var(--text-muted); margin-bottom: 6px; list-style: disc; }
.prose a  { color: var(--teal); text-decoration: underline; }

/* ===========================
   FAQ ACCORDION
   =========================== */
.faq-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.faq-item {
  border-radius: 14px;
  border: 1.5px solid rgba(10, 37, 64, 0.08);
  background: var(--white);
  overflow: hidden;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.faq-item:hover {
  border-color: var(--teal);
  box-shadow: 0 4px 20px rgba(29, 158, 117, 0.08);
}
.faq-item.is-open {
  border-color: var(--teal);
  box-shadow: 0 6px 24px rgba(29, 158, 117, 0.10);
}
.faq-item__question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 20px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  line-height: 1.5;
  transition: color var(--transition);
}
.faq-item__question::after {
  content: '';
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--off-white);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%230a2540' stroke-width='2.5' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-size: 16px;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform var(--transition), background-color var(--transition);
}
.faq-item.is-open .faq-item__question {
  color: var(--teal);
}
.faq-item.is-open .faq-item__question::after {
  transform: rotate(180deg);
  background-color: rgba(29, 158, 117, 0.1);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%231D9E75' stroke-width='2.5' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
}
.faq-item__answer {
  display: none;
  padding: 0 20px 20px 20px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.75;
  border-top: 1px solid rgba(10, 37, 64, 0.06);
  margin-top: 4px;
  padding-top: 16px;
}
.faq-item.is-open .faq-item__answer { display: block; }
.faq-item__answer p { margin-bottom: 0; }
.faq-item__answer a { color: var(--teal); text-decoration: underline; }
@media (min-width: 768px) {
  .faq-item__question { font-size: 16px; padding: 20px 24px; }
  .faq-item__answer  { padding: 0 24px 22px 24px; padding-top: 16px; }
}

/* ===========================
   BLOG POST PREMIUM STYLING
   =========================== */
.blog-main {
  background-color: #ffffff;
  padding: 4rem 0 6rem;
}
.blog-main .container--narrow {
  max-width: 760px;
  margin: 0 auto;
}
.blog-meta {
  font-family: var(--font-head);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal);
  font-weight: 700;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.blog-main h1 {
  font-size: clamp(32px, 5vw, 48px);
  color: var(--navy);
  margin-bottom: 32px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.blog-main h2 {
  font-size: 28px;
  color: var(--navy);
  margin-top: 56px;
  margin-bottom: 24px;
  line-height: 1.3;
  position: relative;
  padding-bottom: 12px;
}
.blog-main h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--teal);
  border-radius: 2px;
}
.blog-main p {
  font-size: 18px;
  line-height: 1.8;
  color: #334155; /* deeper charcoal for readability */
  margin-bottom: 24px;
}
.blog-main p strong {
  color: var(--navy);
  font-weight: 600;
}
.blog-main ul {
  font-size: 18px;
  line-height: 1.8;
  color: #334155;
  margin-bottom: 32px;
  padding-left: 0;
  list-style: none;
}
.blog-main ul li {
  margin-bottom: 16px;
  position: relative;
  padding-left: 32px;
}
.blog-main ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--teal);
  font-weight: bold;
  font-size: 18px;
}
.blog-main img {
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(10, 37, 64, 0.08);
  margin: 16px 0 40px;
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}
.blog-cta {
  margin: 56px 0;
  padding: 48px 32px;
  background: linear-gradient(135deg, #f0fdf8 0%, #e6f7f2 100%);
  border-radius: 24px;
  text-align: center;
  border: 1px solid rgba(29, 158, 117, 0.2);
  box-shadow: 0 16px 32px rgba(29, 158, 117, 0.08);
}
.blog-cta p {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 24px;
}
.blog-cta .hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .blog-main { padding: 3rem 0; }
  .blog-main p, .blog-main ul { font-size: 16px; }
  .blog-cta { padding: 32px 20px; margin: 40px 0; }
  .blog-cta p { font-size: 20px; }
}

.footer__legal { margin-top: 8px; font-size: 13px; color: rgba(255,255,255,0.5); }
.footer__legal a { color: rgba(255,255,255,0.7); text-decoration: none; margin: 0 4px; transition: color 0.2s; }
.footer__legal a:hover { color: var(--teal-light); }

/* GURGAONCARE — Animations (Intersection Observer driven) */

@keyframes waPulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.08); }
}

/* Stagger children */
.fade-in:nth-child(2) { transition-delay: 0.1s; }
.fade-in:nth-child(3) { transition-delay: 0.2s; }
.fade-in:nth-child(4) { transition-delay: 0.3s; }
.fade-in:nth-child(5) { transition-delay: 0.4s; }
.fade-in:nth-child(6) { transition-delay: 0.5s; }

.slide-in-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.slide-in-left.visible { opacity: 1; transform: none; }

.slide-in-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.slide-in-right.visible { opacity: 1; transform: none; }

.scale-in {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.scale-in.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .fade-in, .slide-in-left, .slide-in-right, .scale-in {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .wa-float { animation: none; }
}
/* --- Breadcrumb --- */
.breadcrumb { background-color: var(--off-white); padding: 12px 0; border-bottom: 1px solid rgba(10,37,64,0.05); }
.breadcrumb ol { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; list-style: none; margin: 0; padding: 0; font-size: 13px; color: var(--text-muted); }
.breadcrumb li { display: flex; align-items: center; gap: 8px; }
.breadcrumb li:not(:last-child)::after { content: '/'; color: #cbd5e1; }
.breadcrumb a { color: var(--teal); text-decoration: none; transition: color var(--transition); }
.breadcrumb a:hover { color: var(--teal-dark); }
.breadcrumb li[aria-current='page'] { color: var(--text-dark); font-weight: 500; }
