/* ===== S3 ISS , Fire Safety · v2 (story-led, video-first) ===== */

:root {
  --navy: #13294B;
  --navy-deep: #0F1F3D;
  --red: #E63946;
  --red-deep: #C8102E;
  --red-soft: #FFE5E8;
  --blue: #1F8FD9;
  --green: #3DB54A;
  --amber: #FFB800;
  --bg: #FFFFFF;
  --bg-soft: #F7F8FA;
  --bg-tint: #FAFBFD;
  --border: #E6EAF2;
  --text: #1A1F2E;
  --text-muted: #5A6478;
  --text-soft: #8993A6;
  --shadow-sm: 0 1px 2px rgba(15, 31, 61, 0.04), 0 4px 12px rgba(15, 31, 61, 0.04);
  --shadow-md: 0 8px 24px rgba(15, 31, 61, 0.08);
  --shadow-lg: 0 16px 40px rgba(15, 31, 61, 0.1);
  --shadow-red: 0 8px 24px rgba(230, 57, 70, 0.25);
  --radius: 14px;
  --radius-lg: 22px;
  --container: 1200px;
  --gutter: 24px;
  --font-display: 'Manrope', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-hindi: 'Mukta', system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; transition: color 0.2s ease; }
img, svg, video { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; font-size: inherit; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  border: 1.5px solid transparent;
}
.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: var(--shadow-red);
}
.btn-primary:hover {
  background: var(--red-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(230, 57, 70, 0.35);
}
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--border);
}
.btn-ghost:hover { background: var(--bg-soft); border-color: var(--navy); }
.btn-ghost-light {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border-color: rgba(255,255,255,0.3);
  backdrop-filter: blur(10px);
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.2); border-color: #fff; }
.btn-lg { padding: 16px 26px; font-size: 15px; }
.btn-sm { padding: 8px 14px; font-size: 12px; }
.btn-block { width: 100%; }


/* ===== Header ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: all 0.3s;
}
.header.scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.logo-mark {
  width: 40px; height: 40px;
  filter: drop-shadow(0 2px 4px rgba(15, 31, 61, 0.08));
}
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14.5px;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.logo-tagline {
  font-size: 10px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.12em;
  margin-top: 1px;
  text-transform: uppercase;
}
.nav { display: flex; align-items: center; gap: 28px; }
.nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
}
.nav a:hover { color: var(--navy); }
.nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform 0.25s ease;
  transform-origin: left;
}
.nav a:hover::after { transform: scaleX(1); }
.header-cta { display: flex; align-items: center; gap: 12px; }
.lang-toggle {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 10px;
  border-radius: 6px;
  background: var(--bg-soft);
  transition: all 0.2s;
}
.lang-toggle:hover { background: var(--border); }
.lang-toggle .active { color: var(--red); font-weight: 700; }
.lang-hi { font-family: var(--font-hindi); }

/* Hamburger toggle (visible on mobile only) */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--bg-soft);
  cursor: pointer;
  transition: background 0.2s;
}
.nav-toggle:hover { background: var(--border); }
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav drawer + scrim */
.nav-scrim {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 31, 61, 0.55);
  backdrop-filter: blur(4px);
  z-index: 98;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.nav-scrim.open { display: block; opacity: 1; }
body.nav-open { overflow: hidden; }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55) saturate(0.95);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(15, 31, 61, 0.85) 0%, rgba(19, 41, 75, 0.6) 50%, rgba(15, 31, 61, 0.85) 100%),
    radial-gradient(ellipse at 70% 30%, rgba(230, 57, 70, 0.25), transparent 60%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding: 100px 0 80px;
  max-width: 880px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: rgba(230, 57, 70, 0.15);
  color: #FFCED2;
  border: 1px solid rgba(230, 57, 70, 0.3);
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 28px;
  animation: fadeInUp 0.6s ease;
  backdrop-filter: blur(10px);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(44px, 8vw, 88px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
  color: #fff;
  animation: fadeInUp 0.8s ease 0.1s backwards;
}
.hero-accent {
  background: linear-gradient(135deg, #FF6B7A 0%, var(--red) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  font-size: 19px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 660px;
  line-height: 1.55;
  margin-bottom: 38px;
  animation: fadeInUp 0.8s ease 0.2s backwards;
}
.hero-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.3s backwards;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== Reveal ===== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== Section primitives ===== */
section { padding: 100px 0; }
.section-eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 18px;
  position: relative;
  padding-left: 26px;
}
.section-eyebrow::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 18px;
  height: 2px;
  background: var(--red);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--navy);
  margin-bottom: 20px;
}
.section-title .accent { color: var(--red); }
.section-head { text-align: center; max-width: 760px; margin: 0 auto 60px; }
.lead { font-size: 17.5px; color: var(--text-muted); line-height: 1.7; }

/* ===== Story ===== */
.story { background: var(--bg-soft); }
.story-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.story-eyebrow {
  font-family: var(--font-display);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
}
.story-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--navy);
  margin-bottom: 28px;
}
.story-title .accent { color: var(--red); }
.story-text {
  font-size: 19px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 56px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.story-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.story-stat {
  flex: 1;
  min-width: 180px;
  padding: 12px 32px;
}
.story-num {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
}
.story-num span {
  color: var(--red);
  font-weight: 600;
}
.story-lbl {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}
.story-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
}

/* ===== Services with VIDEO ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--red);
}
.service-card:hover .service-video video { transform: scale(1.05); }

.service-video {
  position: relative;
  width: 100%;
  height: 220px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  overflow: hidden;
}
.service-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  position: relative;
  z-index: 1;
}
.service-video::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(15, 31, 61, 0.4) 100%);
  z-index: 2;
  pointer-events: none;
}
.service-video-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1F3A66, #13294B);
  z-index: 0;
}
.service-video-fallback svg {
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
  opacity: 0.7;
}

/* ===== YouTube iframe sprinkler card ===== */
.service-video-yt {
  position: relative;
  background: #000;
}
.service-video-yt iframe {
  position: absolute;
  /* Scale up + center to crop YouTube's letterbox bars and any branding */
  top: 50%;
  left: 50%;
  width: 180%;
  height: 180%;
  transform: translate(-50%, -50%);
  border: 0;
  pointer-events: none; /* prevent click-through to YT, keeps card hover behaviour */
}
.service-video-yt::after {
  /* Subtle dark gradient overlay matching other cards */
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(15, 31, 61, 0.4) 100%);
  pointer-events: none;
  z-index: 2;
}

/* ===== Sprinkler inline SVG animation ===== */
.service-sprinkler-anim { background: #0F1F3D; }
.sprinkler-scene { width: 100%; height: 100%; display: block; }

.sprinkler-scene .drop {
  animation: sprayDrop 1.6s cubic-bezier(0.25, 0.5, 0.5, 1) infinite;
}
/* Cone of trajectories , 16 droplets spraying outward and down */
.sprinkler-scene .drop-1  { --tx: -90px;  --ty: 130px; animation-delay: 0s;     }
.sprinkler-scene .drop-2  { --tx: -75px;  --ty: 138px; animation-delay: 0.10s;  }
.sprinkler-scene .drop-3  { --tx: -55px;  --ty: 140px; animation-delay: 0.20s;  }
.sprinkler-scene .drop-4  { --tx: -35px;  --ty: 138px; animation-delay: 0.30s;  }
.sprinkler-scene .drop-5  { --tx: -15px;  --ty: 138px; animation-delay: 0.40s;  }
.sprinkler-scene .drop-6  { --tx: 0;      --ty: 138px; animation-delay: 0.50s;  }
.sprinkler-scene .drop-7  { --tx: 15px;   --ty: 138px; animation-delay: 0.60s;  }
.sprinkler-scene .drop-8  { --tx: 35px;   --ty: 138px; animation-delay: 0.70s;  }
.sprinkler-scene .drop-9  { --tx: 55px;   --ty: 140px; animation-delay: 0.80s;  }
.sprinkler-scene .drop-10 { --tx: 75px;   --ty: 138px; animation-delay: 0.90s;  }
.sprinkler-scene .drop-11 { --tx: 90px;   --ty: 130px; animation-delay: 0.05s;  }
.sprinkler-scene .drop-12 { --tx: -65px;  --ty: 120px; animation-delay: 0.15s;  }
.sprinkler-scene .drop-13 { --tx: -25px;  --ty: 120px; animation-delay: 0.35s;  }
.sprinkler-scene .drop-14 { --tx: 25px;   --ty: 120px; animation-delay: 0.55s;  }
.sprinkler-scene .drop-15 { --tx: 65px;   --ty: 120px; animation-delay: 0.75s;  }
.sprinkler-scene .drop-16 { --tx: 45px;   --ty: 130px; animation-delay: 0.95s;  }

@keyframes sprayDrop {
  0%   { opacity: 0; transform: translate(0, 0); }
  12%  { opacity: 1; }
  85%  { opacity: 0.8; }
  100% { opacity: 0; transform: translate(var(--tx), var(--ty)); }
}

/* Soft pulsing mist cone behind droplets */
.sprinkler-scene .mist-cone {
  animation: mistPulse 1.6s ease-in-out infinite;
  transform-origin: 160px 82px;
  transform-box: fill-box;
}
@keyframes mistPulse {
  0%, 100% { opacity: 0.05; transform: scale(0.95); }
  50%      { opacity: 0.14; transform: scale(1.03); }
}

/* Activated indicator dot blink */
.sprinkler-scene .status-dot {
  animation: statusBlink 1.2s ease-in-out infinite;
}
@keyframes statusBlink {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.4; }
}

.service-body { padding: 26px 26px 28px; flex: 1; }
.service-body h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.015em;
  margin-bottom: 8px;
}
.service-body p {
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.6;
}

/* ===== Where (India map) ===== */
.where-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.where-cities {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 36px;
}
.where-city {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.25s;
}
.where-city:hover {
  background: #fff;
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}
.where-city-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(255,255,255,0.6), 0 0 0 5px var(--border);
}
.where-city-name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 8px;
}
.hq-tag {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
  background: var(--red);
  color: #fff;
  padding: 3px 7px;
  border-radius: 4px;
}
.where-city-state { font-size: 13px; color: var(--text-muted); }
.where-city-growing { background: linear-gradient(135deg, #FFF6DC 0%, #FFFAE9 100%); border-color: #FFE5A5; border-style: dashed; }
.growing-dot {
  background: var(--amber) !important;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  box-shadow: 0 0 0 4px rgba(255,255,255,0.8), 0 0 0 5px #FFE5A5 !important;
  animation: growPulse 2.4s ease-in-out infinite;
}
@keyframes growPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}
.where-city-growing .where-city-name { color: #B88600; }

.where-map {
  display: flex;
  align-items: center;
  justify-content: center;
}
.india-svg { width: 100%; max-width: 480px; height: auto; }
.map-pin .pulse-1 { animation: pinPulse 2.4s ease-out infinite; transform-origin: center; transform-box: fill-box; }
.map-pin .pulse-2 { animation: pinPulse 2.4s ease-out 1.2s infinite; transform-origin: center; transform-box: fill-box; }
@keyframes pinPulse {
  0% { transform: scale(0.3); opacity: 0.7; }
  100% { transform: scale(1.8); opacity: 0; }
}
.growing-badge { animation: growBadge 3s ease-in-out infinite; transform-origin: 390px 320px; transform-box: fill-box; }
@keyframes growBadge {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.08) rotate(3deg); }
}

/* ===== Why Us ===== */
.why { background: var(--bg-soft); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}
.why-card {
  padding: 36px 32px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
  position: relative;
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--red);
}
.why-card-featured {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: #fff;
  border-color: var(--navy);
  transform: translateY(-12px);
  box-shadow: var(--shadow-lg);
}
.why-card-featured:hover { transform: translateY(-18px); }
.why-num {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  color: var(--red);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.why-card-featured .why-num { color: var(--amber); }
.why-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  letter-spacing: -0.015em;
}
.why-card-featured h3 { color: #fff; }
.why-card p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.65;
}
.why-card-featured p { color: rgba(255,255,255,0.8); }

.trust-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.trust-chip {
  padding: 10px 18px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  transition: all 0.2s;
}
.trust-chip:hover {
  background: var(--navy);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* ===== Contact ===== */
.contact { background: linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%); }
.contact-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.contact-card::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(230,57,70,0.08), transparent 70%);
  border-radius: 50%;
}
.contact-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.8vw, 42px);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 18px;
  position: relative;
}
.contact-title .accent { color: var(--red); }
.contact-copy p {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.65;
  position: relative;
}
.contact-channels { display: flex; flex-direction: column; gap: 10px; position: relative; }
.cc-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-display);
  color: var(--navy);
  transition: all 0.2s;
}
.cc-link:hover {
  background: #fff;
  border-color: var(--red);
  transform: translateX(4px);
}
.cc-link svg { color: var(--red); flex-shrink: 0; }
.cc-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 3px;
}
.cc-value {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
}
.cc-link:hover .cc-value { color: var(--red); }
.cc-note {
  padding: 14px 18px;
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.55;
  border-left: 3px solid var(--amber);
  background: var(--bg-tint);
  border-radius: 0 8px 8px 0;
  margin-top: 6px;
}

/* Form fields with error states */
.field { margin-bottom: 14px; }
.field input,
.field select { margin-bottom: 0 !important; }
.field-error {
  display: none;
  font-size: 12px;
  color: var(--red);
  margin-top: 4px;
  padding-left: 4px;
  font-weight: 500;
}
.field.invalid input,
.field.invalid select { border-color: var(--red) !important; background: #FFF5F6 !important; }
.field.invalid .field-error { display: block; }
.field.valid input,
.field.valid select { border-color: var(--green); }
.field.valid input + .field-error,
.field.valid select + .field-error { display: none; }

.form-success {
  margin: 16px 0 0;
  padding: 14px 18px;
  background: #E8F7EA;
  border: 1px solid var(--green);
  color: #1E8A3C;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
}

.contact-form {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
}
.contact-form h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
}
.contact-form input,
.contact-form select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 14.5px;
  color: var(--text);
  background: #fff;
  margin-bottom: 12px;
  transition: all 0.2s;
  font-family: var(--font-body);
}
.contact-form input:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(230,57,70,0.1);
}
.form-note {
  font-size: 12px;
  color: var(--text-soft);
  text-align: center;
  margin-top: 12px;
}

/* ===== Footer ===== */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 36px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  color: #fff;
  letter-spacing: -0.02em;
}
.footer-tag {
  font-size: 11px;
  font-weight: 600;
  color: var(--red);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 2px;
}
.footer-meta {
  text-align: right;
  font-size: 13px;
  line-height: 1.7;
}
.footer-fine { color: rgba(255,255,255,0.45); font-size: 11.5px; margin-top: 4px; }

/* ===== Audit FAB (replaces WhatsApp; no phone number exposed) ===== */
.audit-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: var(--red);
  color: #fff;
  border-radius: 100px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.01em;
  box-shadow: 0 8px 24px rgba(230, 57, 70, 0.4);
  z-index: 90;
  transition: all 0.25s ease;
}
.audit-fab:hover {
  background: var(--red-deep);
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(230, 57, 70, 0.5);
}
.audit-fab::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 100px;
  background: var(--red);
  z-index: -1;
  animation: auditPulse 2.5s ease-out infinite;
}
@keyframes auditPulse {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.15); opacity: 0; }
}
@media (max-width: 600px) {
  .audit-fab-label { display: none; }
  .audit-fab { padding: 14px; }
}

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .nav-toggle { display: flex; }
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(78vw, 320px);
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 80px 24px 24px;
    gap: 4px;
    z-index: 99;
    box-shadow: -10px 0 40px rgba(15, 31, 61, 0.12);
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .nav.open { transform: translateX(0); }
  .nav a {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--navy);
    padding: 14px 12px;
    border-bottom: 1px solid var(--border-soft, #EFF2F7);
  }
  .nav a::after { display: none; }
  .nav a:hover { color: var(--red); background: var(--bg-soft); border-radius: 8px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .where-grid { grid-template-columns: 1fr; gap: 48px; }
  .why-grid { grid-template-columns: 1fr; gap: 16px; }
  .why-card-featured { transform: none; }
  .why-card-featured:hover { transform: translateY(-6px); }
  .contact-card { grid-template-columns: 1fr; gap: 40px; padding: 40px 28px; }
  section { padding: 70px 0; }
  .hero { min-height: 80vh; }
  .story-stats { gap: 12px; }
  .story-divider { display: none; }
  .story-stat { padding: 8px 16px; min-width: 130px; }
  .story-num { font-size: 48px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-meta { text-align: center; }
}
@media (max-width: 720px) {
  .container { padding: 0 18px; }
  .header-inner { height: 60px; gap: 8px; }
  .logo-mark { width: 34px; height: 34px; }
  .logo-name { font-size: 12.5px; max-width: 150px; line-height: 1.15; }
  .logo-tagline { display: none; }
  /* Hide Free Audit button in header on phones — accessible via hamburger and floating FAB */
  .header-cta .btn-primary { display: none; }
  .lang-toggle { padding: 5px 8px; font-size: 11.5px; }
  .nav-toggle { width: 38px; height: 38px; }
  .services-grid { grid-template-columns: 1fr; }
  .hero { min-height: 70vh; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
  .hero-trustbar { gap: 16px; font-size: 12px; }
  .story-num { font-size: 44px; }
  .where-grid, .contact-card { gap: 32px; padding: 32px 20px; }
  .contact-card { padding: 32px 20px; }
  .contact-form { padding: 22px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-meta { text-align: center; }
}
@media (max-width: 380px) {
  .logo-name { font-size: 11.5px; max-width: 130px; }
  .lang-toggle { padding: 4px 6px; }
  .header-inner { gap: 6px; }
  .container { padding: 0 14px; }
  .hero-title { font-size: clamp(36px, 11vw, 60px); }
  .hero-sub { font-size: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .hero-video { display: none; }
}

/* Hindi mode font swap */
body.hi,
body.hi .hero-title,
body.hi .section-title,
body.hi .story-title,
body.hi .contact-title,
body.hi .logo-name,
body.hi .why-card h3,
body.hi .service-body h3 { font-family: var(--font-hindi); letter-spacing: -0.01em; }
