/* BKRC Packers & Movers — production stylesheet */
:root {
  --navy-950: #041225;
  --navy-900: #071a33;
  --navy-800: #0c2850;
  --blue-700: #1459d9;
  --blue-600: #1a6ff2;
  --cyan-500: #31c9f4;
  --cyan-300: #8ee8ff;
  --ink: #0b1424;
  --muted: #5d6b7f;
  --surface: #ffffff;
  --surface-soft: #f2f6fb;
  --surface-alt: #eaf2fb;
  --line: rgba(13, 35, 66, .12);
  --success: #12a66a;
  --shadow-sm: 0 10px 30px rgba(5, 26, 55, .08);
  --shadow-md: 0 22px 60px rgba(5, 26, 55, .14);
  --shadow-lg: 0 34px 90px rgba(2, 14, 34, .22);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --container: 1220px;
  --header-h: 82px;
  color-scheme: light;
}

html[data-theme="dark"] {
  --ink: #ecf5ff;
  --muted: #a9bad0;
  --surface: #09182b;
  --surface-soft: #061327;
  --surface-alt: #10223a;
  --line: rgba(185, 216, 248, .14);
  --shadow-sm: 0 10px 30px rgba(0, 0, 0, .2);
  --shadow-md: 0 22px 60px rgba(0, 0, 0, .28);
  --shadow-lg: 0 34px 90px rgba(0, 0, 0, .38);
  color-scheme: dark;
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 18px);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

button,
input,
select,
textarea { font: inherit; }

button,
a { -webkit-tap-highlight-color: transparent; }

button { color: inherit; }

h1, h2, h3, p { margin-top: 0; }

h1, h2, h3 {
  font-family: "Manrope", "Inter", sans-serif;
  line-height: 1.12;
  letter-spacing: -.035em;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 4.2vw, 4.4rem);
}

h3 { font-size: clamp(1.2rem, 2vw, 1.55rem); }

p { color: var(--muted); }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section { padding: clamp(78px, 9vw, 132px) 0; }

.section--muted { background: var(--surface-soft); }

.hidden-field {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100000;
  padding: 12px 16px;
  border-radius: 10px;
  color: #fff;
  background: var(--blue-700);
  transform: translateY(-150%);
}

.skip-link:focus { transform: translateY(0); }

.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 99999;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan-500), var(--blue-600));
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: grid;
  place-items: center;
  color: #fff;
  background:
    radial-gradient(circle at 30% 20%, rgba(49, 201, 244, .22), transparent 28%),
    radial-gradient(circle at 70% 80%, rgba(26, 111, 242, .25), transparent 32%),
    var(--navy-950);
  transition: opacity .55s ease, visibility .55s ease;
}

.loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.loader__inner {
  width: min(300px, 76vw);
  text-align: center;
}

.loader__logo-wrap {
  width: 116px;
  height: 116px;
  margin: 0 auto 24px;
  overflow: hidden;
  border: 6px solid rgba(255,255,255,.12);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 12px rgba(49,201,244,.06), 0 24px 60px rgba(0,0,0,.35);
  animation: loaderFloat 1.8s ease-in-out infinite;
}

.loader__logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.loader__inner p {
  margin-bottom: 18px;
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  letter-spacing: .03em;
}

.loader__bar {
  height: 6px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
}

.loader__bar span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--cyan-500), #fff);
  animation: loaderBar 1.1s ease forwards;
}

@keyframes loaderFloat {
  50% { transform: translateY(-9px); }
}

@keyframes loaderBar {
  to { width: 100%; }
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--header-h);
  color: #fff;
  background: linear-gradient(to bottom, rgba(4,18,37,.68), rgba(4,18,37,0));
  transition: height .3s ease, background .3s ease, box-shadow .3s ease, color .3s ease;
}

.site-header.is-scrolled {
  height: 72px;
  color: var(--ink);
  background: color-mix(in srgb, var(--surface) 86%, transparent);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  backdrop-filter: blur(18px) saturate(150%);
}

.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.brand-logo {
  width: 54px;
  height: 54px;
  overflow: hidden;
  border: 3px solid rgba(255,255,255,.72);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 8px 25px rgba(0,0,0,.16);
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-text {
  display: grid;
  line-height: 1.02;
}

.brand-text strong {
  font-family: "Manrope", sans-serif;
  font-size: 1.25rem;
  letter-spacing: .08em;
}

.brand-text small {
  margin-top: 5px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: .76;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 1.7vw, 28px);
}

.main-nav a {
  position: relative;
  padding: 8px 0;
  font-size: .89rem;
  font-weight: 700;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  border-radius: 99px;
  background: var(--cyan-500);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-button,
.menu-toggle {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50%;
  color: inherit;
  background: rgba(255,255,255,.10);
  cursor: pointer;
  transition: transform .25s ease, background .25s ease;
}

.site-header.is-scrolled .icon-button,
.site-header.is-scrolled .menu-toggle {
  border-color: var(--line);
  background: var(--surface-alt);
}

.icon-button:hover,
.menu-toggle:hover { transform: translateY(-2px); }

.header-quote {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 0 20px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue-600), var(--cyan-500));
  box-shadow: 0 12px 25px rgba(26,111,242,.28);
  font-size: .88rem;
  font-weight: 800;
}

.menu-toggle {
  display: none;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 2px auto;
  border-radius: 999px;
  background: currentColor;
  transition: transform .25s ease, opacity .25s ease;
}

.menu-toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: var(--navy-950);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 55%;
  animation: heroZoom 20s ease-in-out infinite alternate;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(4,18,37,.94) 0%, rgba(4,18,37,.77) 47%, rgba(4,18,37,.34) 100%),
    linear-gradient(0deg, rgba(4,18,37,.6), transparent 45%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .35;
}

.hero-orb--one {
  top: 14%;
  right: 9%;
  width: 320px;
  height: 320px;
  background: var(--cyan-500);
}

.hero-orb--two {
  bottom: -90px;
  left: 28%;
  width: 330px;
  height: 330px;
  background: var(--blue-600);
}

@keyframes heroZoom {
  to { transform: scale(1.08); }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: calc(var(--header-h) + 74px);
  padding-bottom: 130px;
}

.eyebrow,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--blue-600);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.eyebrow {
  padding: 10px 16px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  color: var(--cyan-300);
  background: rgba(255,255,255,.08);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.hero h1 {
  max-width: 990px;
  margin-bottom: 28px;
  font-size: clamp(3rem, 7vw, 7.5rem);
  letter-spacing: -.065em;
}

.hero h1 span {
  display: block;
  color: var(--cyan-300);
}

.hero-copy {
  max-width: 720px;
  margin-bottom: 36px;
  color: rgba(255,255,255,.76);
  font-size: clamp(1rem, 1.7vw, 1.27rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 58px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 25px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.button:hover { transform: translateY(-3px); }

.button--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue-600), var(--cyan-500));
  box-shadow: 0 15px 35px rgba(26,111,242,.28);
}

.button--primary:hover { box-shadow: 0 20px 42px rgba(26,111,242,.38); }

.button--glass {
  border: 1px solid rgba(255,255,255,.24);
  color: #fff;
  background: rgba(255,255,255,.08);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.button--full { width: 100%; }

.hero-trust {
  display: grid;
  max-width: 880px;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.14);
  box-shadow: var(--shadow-lg);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.hero-trust div {
  display: grid;
  gap: 6px;
  padding: 24px;
  background: rgba(4,18,37,.58);
}

.hero-trust strong {
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.8rem);
}

.hero-trust span {
  color: rgba(255,255,255,.66);
  font-size: .82rem;
}

.hero-scroll {
  position: absolute;
  z-index: 3;
  right: 5%;
  bottom: 34px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.7);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.hero-scroll i { animation: bounce 1.6s ease-in-out infinite; }

@keyframes bounce { 50% { transform: translateY(7px); } }

.trust-strip {
  position: relative;
  z-index: 5;
  color: #fff;
  background: var(--navy-900);
}

.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-strip__grid div {
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px;
  border-right: 1px solid rgba(255,255,255,.1);
  text-align: center;
  font-size: .88rem;
  font-weight: 700;
}

.trust-strip__grid div:last-child { border-right: 0; }
.trust-strip__grid i { color: var(--cyan-500); font-size: 1.25rem; }

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(0, .97fr);
  gap: clamp(45px, 7vw, 95px);
  align-items: center;
}

.split-layout--reverse {
  grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr);
}

.media-card {
  position: relative;
  min-height: 580px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.media-card > img {
  width: 100%;
  height: 100%;
  min-height: 580px;
  object-fit: cover;
}

.media-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(4,18,37,.78), transparent 42%);
  content: "";
}

.media-card__badge {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 28px;
  left: 28px;
  display: grid;
  gap: 5px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-sm);
  color: #fff;
  background: rgba(4,18,37,.42);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.media-card__badge strong { font-family: "Manrope", sans-serif; }
.media-card__badge span { color: rgba(255,255,255,.68); font-size: .86rem; }

.section-copy p {
  max-width: 680px;
  font-size: 1.02rem;
}

.feature-list {
  display: grid;
  gap: 14px;
  margin: 30px 0;
}

.feature-list div {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface-soft);
}

.feature-list i {
  width: 38px;
  height: 38px;
  display: grid;
  flex: 0 0 38px;
  place-items: center;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue-600), var(--cyan-500));
}

.feature-list span { color: var(--muted); font-size: .92rem; }
.feature-list strong { color: var(--ink); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue-600);
  font-weight: 800;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat-card {
  position: relative;
  overflow: hidden;
  min-height: 210px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.stat-card::before {
  position: absolute;
  top: -60px;
  right: -55px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(49,201,244,.24), rgba(26,111,242,.08));
  content: "";
}

.stat-card strong,
.stat-card b {
  position: relative;
  color: var(--blue-600);
  font-family: "Manrope", sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.6rem);
  line-height: 1;
}

.stat-card b {
  font-size: 2rem;
  vertical-align: top;
}

.stat-card span {
  position: absolute;
  right: 32px;
  bottom: 30px;
  left: 32px;
  color: var(--muted);
  font-weight: 700;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 48px;
}

.section-heading h2 {
  max-width: 820px;
  margin-bottom: 0;
}

.section-heading > p {
  max-width: 390px;
  margin-bottom: 8px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  position: relative;
  display: flex;
  min-height: 330px;
  flex-direction: column;
  padding: 32px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(49,201,244,.42);
  box-shadow: var(--shadow-md);
}

.service-card::after {
  position: absolute;
  right: -35px;
  bottom: -55px;
  width: 145px;
  height: 145px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(49,201,244,.16), rgba(26,111,242,.03));
  content: "";
}

.service-icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 40px;
  place-items: center;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue-600), var(--cyan-500));
  box-shadow: 0 14px 28px rgba(26,111,242,.22);
  font-size: 1.32rem;
}

.service-card h3 { margin-bottom: 13px; }
.service-card p { margin-bottom: 28px; font-size: .92rem; }
.service-card a {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: auto;
  color: var(--blue-600);
  font-size: .88rem;
  font-weight: 800;
}

.process { background: var(--navy-950); color: #fff; }
.process .section-label { color: var(--cyan-500); }
.process .section-heading p { color: rgba(255,255,255,.62); }

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  padding: 0;
  list-style: none;
}

.process-card {
  position: relative;
  min-height: 290px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.05);
}

.process-card > span {
  position: absolute;
  top: 8px;
  right: 18px;
  color: rgba(255,255,255,.07);
  font-family: "Manrope", sans-serif;
  font-size: 4rem;
  font-weight: 800;
}

.process-card i {
  display: grid;
  width: 50px;
  height: 50px;
  margin-bottom: 70px;
  place-items: center;
  border-radius: 16px;
  color: var(--cyan-500);
  background: rgba(49,201,244,.1);
}

.process-card p {
  margin-bottom: 0;
  color: rgba(255,255,255,.58);
  font-size: .88rem;
}

.check-list {
  display: grid;
  gap: 13px;
  padding: 0;
  margin: 28px 0 34px;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
}

.check-list i {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--success);
  font-size: .7rem;
}

.fleet-collage {
  position: relative;
  min-height: 590px;
}

.fleet-collage__main {
  width: 88%;
  height: 540px;
  margin-left: auto;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.fleet-collage__small {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 34%;
  min-width: 180px;
  height: 310px;
  object-fit: cover;
  border: 9px solid var(--surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.gallery-grid {
  display: grid;
  grid-auto-rows: 290px;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: var(--radius-md);
  color: #fff;
  background: var(--navy-900);
  cursor: zoom-in;
  box-shadow: var(--shadow-sm);
}

.gallery-item--wide { grid-column: span 2; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease, filter .55s ease;
}

.gallery-item::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(4,18,37,.76), transparent 55%);
  content: "";
}

.gallery-item span {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 20px;
  left: 22px;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  text-align: left;
}

.gallery-item:hover img {
  transform: scale(1.055);
  filter: saturate(1.08);
}

.coverage-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
  gap: 32px;
  align-items: stretch;
}

.india-map-card {
  position: relative;
  display: grid;
  min-height: 620px;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 25% 20%, rgba(49,201,244,.22), transparent 31%),
    linear-gradient(145deg, var(--surface-alt), var(--surface));
  box-shadow: var(--shadow-md);
}

.india-map {
  width: min(88%, 520px);
  height: auto;
  overflow: visible;
}

.india-shape {
  stroke: color-mix(in srgb, var(--surface) 64%, transparent);
  stroke-width: 6;
}

.map-marker {
  fill: #fff;
  stroke: var(--navy-900);
  stroke-width: 4;
  cursor: pointer;
  transition: r .22s ease, fill .22s ease, filter .22s ease;
  transform-box: fill-box;
  transform-origin: center;
}

.map-marker:hover,
.map-marker:focus,
.map-marker.is-active {
  r: 12;
  fill: var(--cyan-300);
  filter: drop-shadow(0 5px 8px rgba(4,18,37,.3));
  outline: none;
}

.map-note {
  position: absolute;
  bottom: 18px;
  margin: 0;
  font-size: .72rem;
}

.coverage-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px, 5vw, 58px);
  border-radius: var(--radius-lg);
  color: #fff;
  background:
    radial-gradient(circle at 90% 10%, rgba(49,201,244,.24), transparent 25%),
    var(--navy-900);
  box-shadow: var(--shadow-lg);
}

.coverage-panel__tag {
  align-self: flex-start;
  margin-bottom: 22px;
  padding: 9px 14px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  color: var(--cyan-300);
  background: rgba(255,255,255,.07);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.coverage-panel h3 {
  margin-bottom: 18px;
  font-size: clamp(2.25rem, 5vw, 4.6rem);
}

.coverage-panel > p { color: rgba(255,255,255,.64); }

.coverage-services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 26px 0 36px;
}

.coverage-services span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.72);
  font-size: .86rem;
}

.coverage-services i { color: var(--cyan-500); }

.client-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.client-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.client-card i {
  margin-bottom: 35px;
  color: var(--blue-600);
  font-size: 2rem;
}

.client-card h3 { margin-bottom: 10px; }
.client-card p { margin-bottom: 0; font-size: .9rem; }

.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, .68fr) minmax(0, 1.32fr);
  gap: clamp(45px, 7vw, 95px);
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 110px;
}

.faq-intro > p { max-width: 450px; }

.faq-contact {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.faq-contact a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
}

.faq-contact i {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  place-items: center;
  border-radius: 12px;
  color: #fff;
  background: var(--blue-600);
}

.faq-contact span {
  display: grid;
  min-width: 0;
  color: var(--ink);
  font-size: .84rem;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.faq-contact small {
  color: var(--muted);
  font-size: .69rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.accordion { display: grid; gap: 12px; }

.faq-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  display: flex;
  width: 100%;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 18px 22px;
  border: 0;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-weight: 800;
}

.faq-question i {
  color: var(--blue-600);
  transition: transform .3s ease;
}

.faq-question[aria-expanded="true"] i { transform: rotate(45deg); }

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .34s ease;
}

.faq-answer > p {
  min-height: 0;
  margin: 0;
  overflow: hidden;
  padding: 0 22px;
  font-size: .92rem;
}

.faq-question[aria-expanded="true"] + .faq-answer {
  grid-template-rows: 1fr;
}

.faq-question[aria-expanded="true"] + .faq-answer > p {
  padding-bottom: 22px;
}

.contact {
  background:
    radial-gradient(circle at 10% 20%, rgba(49,201,244,.13), transparent 28%),
    var(--surface);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, .84fr) minmax(0, 1.16fr);
  gap: clamp(40px, 7vw, 90px);
  align-items: center;
}

.contact-copy > p { max-width: 590px; }

.contact-list {
  display: grid;
  gap: 12px;
  margin: 34px 0;
}

.contact-list a,
.contact-list > div {
  display: flex;
  align-items: center;
  gap: 15px;
  min-width: 0;
}

.contact-list i {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  place-items: center;
  border-radius: 15px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue-600), var(--cyan-500));
  box-shadow: 0 12px 25px rgba(26,111,242,.18);
}

.contact-list span {
  display: grid;
  min-width: 0;
  color: var(--ink);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.contact-list small {
  color: var(--muted);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.contact-hours {
  display: inline-grid;
  gap: 3px;
  padding: 18px 20px;
  border-left: 4px solid var(--cyan-500);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: var(--surface-soft);
}

.contact-hours span { color: var(--muted); font-size: .86rem; }

.quote-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-lg);
}

.quote-card__head {
  padding: 32px clamp(24px, 5vw, 48px);
  color: #fff;
  background:
    radial-gradient(circle at 90% 10%, rgba(49,201,244,.32), transparent 26%),
    var(--navy-900);
}

.quote-card__head span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--cyan-300);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.quote-card__head h3 {
  max-width: 520px;
  margin-bottom: 0;
  font-size: clamp(1.7rem, 3vw, 2.65rem);
}

.quote-form { padding: clamp(24px, 5vw, 48px); }

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-grid label,
.consent-check { display: grid; gap: 8px; }

.form-grid label > span {
  color: var(--ink);
  font-size: .78rem;
  font-weight: 800;
}

.form-grid__full { grid-column: 1 / -1; }

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 13px;
  outline: none;
  color: var(--ink);
  background: var(--surface-soft);
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.quote-form input,
.quote-form select { padding: 0 15px; }

.quote-form textarea {
  min-height: 125px;
  padding: 14px 15px;
  resize: vertical;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--cyan-500);
  background: var(--surface);
  box-shadow: 0 0 0 4px rgba(49,201,244,.12);
}

.consent-check {
  grid-template-columns: auto 1fr;
  align-items: start;
  margin: 18px 0;
  color: var(--muted);
  font-size: .8rem;
}

.consent-check input {
  width: 17px;
  height: 17px;
  margin-top: 2px;
  accent-color: var(--blue-600);
}

.form-note {
  margin: 12px 0 0;
  text-align: center;
  font-size: .75rem;
}

.map-section {
  height: clamp(360px, 45vw, 580px);
  overflow: hidden;
  background: var(--surface-soft);
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(.72) contrast(1.04);
}

html[data-theme="dark"] .map-section iframe {
  filter: invert(.88) hue-rotate(180deg) saturate(.65) contrast(.9);
}

.site-footer {
  padding: 80px 0 28px;
  color: #fff;
  background: var(--navy-950);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.65fr 1fr 1fr 1.25fr;
  gap: 45px;
}

.footer-brand p {
  max-width: 410px;
  margin-top: 22px;
  color: rgba(255,255,255,.58);
}

.site-footer h3 {
  margin-bottom: 18px;
  color: var(--cyan-300);
  font-size: .88rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.site-footer .footer-grid > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.site-footer a,
.site-footer span {
  color: rgba(255,255,255,.64);
  font-size: .87rem;
}

.site-footer a:hover { color: #fff; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 60px;
  padding-top: 25px;
  border-top: 1px solid rgba(255,255,255,.1);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255,255,255,.46);
  font-size: .76rem;
}

.sticky-quote {
  position: fixed;
  z-index: 900;
  top: 46%;
  left: 0;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 15px 12px;
  border-radius: 0 14px 14px 0;
  color: #fff;
  background: linear-gradient(180deg, var(--blue-600), var(--cyan-500));
  box-shadow: 0 14px 34px rgba(26,111,242,.28);
  writing-mode: vertical-rl;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.floating-actions {
  position: fixed;
  z-index: 900;
  right: 20px;
  bottom: 24px;
  display: grid;
  gap: 10px;
}

.floating-action {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  box-shadow: 0 14px 34px rgba(4,18,37,.25);
  font-size: 1.25rem;
  transition: transform .2s ease;
}

.floating-action:hover { transform: translateY(-4px); }
.floating-action--whatsapp { background: #20b95c; }
.floating-action--call { background: var(--blue-600); }

.back-to-top {
  position: fixed;
  z-index: 890;
  right: 24px;
  bottom: 152px;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  opacity: 0;
  color: var(--ink);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity .25s ease, transform .25s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-action-bar { display: none; }

.lightbox {
  width: min(1100px, 94vw);
  max-width: none;
  padding: 0;
  overflow: visible;
  border: 0;
  background: transparent;
}

.lightbox::backdrop {
  background: rgba(1,7,16,.92);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.lightbox img {
  width: 100%;
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.lightbox__close {
  position: absolute;
  top: -18px;
  right: -8px;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: var(--blue-600);
  cursor: pointer;
}

.toast {
  position: fixed;
  z-index: 100000;
  top: 94px;
  right: 20px;
  max-width: min(390px, calc(100vw - 40px));
  padding: 15px 18px;
  border-radius: 14px;
  opacity: 0;
  color: #fff;
  background: var(--navy-900);
  box-shadow: var(--shadow-lg);
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity .25s ease, transform .25s ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .72s cubic-bezier(.2,.75,.25,1), transform .72s cubic-bezier(.2,.75,.25,1);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1120px) {
  .main-nav { gap: 14px; }
  .main-nav a { font-size: .8rem; }
  .header-quote { display: none; }
  .process-grid { grid-template-columns: repeat(3, 1fr); }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .client-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1080px) {
  :root { --header-h: 72px; }

  .main-nav {
    position: fixed;
    inset: var(--header-h) 0 auto;
    display: grid;
    max-height: 0;
    justify-content: stretch;
    gap: 0;
    overflow: hidden;
    color: var(--ink);
    background: color-mix(in srgb, var(--surface) 96%, transparent);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    transition: max-height .35s ease;
  }

  .main-nav.is-open {
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
  }

  .main-nav a {
    padding: 16px 24px;
    border-bottom: 1px solid var(--line);
  }

  .main-nav a::after { display: none; }
  .menu-toggle { display: block; }

  .split-layout,
  .split-layout--reverse,
  .contact-layout,
  .faq-layout,
  .coverage-layout {
    grid-template-columns: 1fr;
  }

  .faq-intro { position: static; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 1 / -1; }
  .india-map-card { min-height: 540px; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 76px 0; }

  .brand-text { display: none; }
  .brand-logo { width: 48px; height: 48px; }

  .hero-content {
    padding-top: 130px;
    padding-bottom: 110px;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(4,18,37,.95) 0%, rgba(4,18,37,.70) 65%, rgba(4,18,37,.46) 100%);
  }

  .hero h1 { font-size: clamp(2.75rem, 13vw, 4.6rem); }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .hero-trust { grid-template-columns: 1fr; }
  .hero-trust div { padding: 18px 20px; }
  .hero-scroll { display: none; }

  .trust-strip__grid { grid-template-columns: 1fr 1fr; }
  .trust-strip__grid div {
    min-height: 74px;
    border-right: 1px solid rgba(255,255,255,.1);
    border-bottom: 1px solid rgba(255,255,255,.1);
    font-size: .75rem;
  }

  .split-layout { gap: 38px; }
  .media-card,
  .media-card > img { min-height: 440px; }

  .section-heading {
    display: block;
    margin-bottom: 34px;
  }

  .section-heading > p { margin-top: 18px; }

  .stats-grid,
  .service-grid,
  .process-grid,
  .client-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .stat-card { min-height: 180px; }
  .service-card { min-height: 290px; }
  .process-card { min-height: 245px; }
  .process-card i { margin-bottom: 48px; }

  .fleet-collage { min-height: 480px; }
  .fleet-collage__main {
    width: 100%;
    height: 430px;
  }
  .fleet-collage__small {
    width: 38%;
    height: 230px;
    border-width: 6px;
  }

  .gallery-grid {
    grid-auto-rows: 240px;
    grid-template-columns: 1fr;
  }
  .gallery-item--wide { grid-column: auto; }

  .india-map-card { min-height: 480px; }
  .coverage-services { grid-template-columns: 1fr; }
  .form-grid__full { grid-column: auto; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-grid > div:last-child { grid-column: 1 / -1; }
  .footer-bottom { display: block; }
  .footer-bottom p + p { margin-top: 8px; }

  .sticky-quote,
  .floating-actions { display: none; }

  .mobile-action-bar {
    position: fixed;
    z-index: 1000;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding-bottom: env(safe-area-inset-bottom);
    color: #fff;
    background: var(--navy-950);
    box-shadow: 0 -12px 34px rgba(0,0,0,.18);
  }

  .mobile-action-bar a {
    display: grid;
    min-height: 64px;
    place-items: center;
    align-content: center;
    gap: 4px;
    border-right: 1px solid rgba(255,255,255,.08);
    font-size: .68rem;
    font-weight: 700;
  }

  .mobile-action-bar i { font-size: 1.1rem; }
  .back-to-top { right: 14px; bottom: 80px; }
  body { padding-bottom: calc(64px + env(safe-area-inset-bottom)); }
}

@media (max-width: 420px) {
  .icon-button { width: 40px; height: 40px; }
  .menu-toggle { width: 40px; height: 40px; }
  .trust-strip__grid { grid-template-columns: 1fr; }
  .trust-strip__grid div { border-right: 0; }
  .stats-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand,
  .footer-grid > div:last-child { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* Our Clients — logo grid */
.clients-section {
  position: relative;
  overflow: hidden;
  background: var(--surface-soft);
}

.clients-section::before {
  position: absolute;
  top: -170px;
  right: -170px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(49, 201, 244, .17), transparent 68%);
  content: "";
  pointer-events: none;
}

.client-logo-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.client-logo-card {
  display: grid;
  min-height: 190px;
  place-items: center;
  align-content: center;
  gap: 18px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.client-logo-card:hover {
  transform: translateY(-7px);
  border-color: rgba(49, 201, 244, .48);
  box-shadow: var(--shadow-md);
}

.client-logo-card img {
  width: min(230px, 90%);
  height: 78px;
  object-fit: contain;
  filter: saturate(.92);
  transition: transform .28s ease, filter .28s ease;
}

.client-logo-card:hover img {
  transform: scale(1.035);
  filter: saturate(1.08);
}

.client-logo-card span {
  color: var(--muted);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .035em;
}

.client-disclaimer {
  max-width: 880px;
  margin: 26px auto 0;
  text-align: center;
  font-size: .75rem;
}

@media (max-width: 900px) {
  .client-logo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 540px) {
  .client-logo-grid { grid-template-columns: 1fr; }
  .client-logo-card { min-height: 165px; }
}


/* FINAL ACCURATE INDIA MAP + ALL STATE CAPITALS */
.coverage-layout--accurate {
  grid-template-columns: minmax(0, 1.45fr) minmax(330px, .55fr);
}

.india-map-card--leaflet {
  position: relative;
  display: block;
  min-height: 650px;
  padding: 0;
  overflow: hidden;
  background: var(--surface-alt);
}

.india-service-map {
  width: 100%;
  height: 650px;
  z-index: 1;
  background: #eaf2fb;
}

.map-loading {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 25px;
  color: var(--ink);
  background: var(--surface-alt);
  font-weight: 800;
  text-align: center;
  transition: opacity .35s ease, visibility .35s ease;
}

.map-loading.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.map-legend {
  position: absolute;
  z-index: 550;
  top: 14px;
  right: 14px;
  display: grid;
  gap: 7px;
  max-width: 220px;
  padding: 11px 13px;
  border: 1px solid rgba(7,26,51,.12);
  border-radius: 13px;
  color: #071a33;
  background: rgba(255,255,255,.92);
  box-shadow: 0 10px 30px rgba(7,26,51,.12);
  font-size: .7rem;
  font-weight: 750;
  backdrop-filter: blur(10px);
}

.map-legend span { display: flex; align-items: center; gap: 8px; }
.legend-dot { width: 11px; height: 11px; border: 2px solid #071a33; border-radius: 50%; }
.legend-dot--capital { background: #31c9f4; }
.legend-dot--hq { background: #ffbd2e; }

.map-credit {
  position: absolute;
  z-index: 550;
  right: 10px;
  bottom: 8px;
  left: 10px;
  margin: 0;
  padding: 6px 9px;
  border-radius: 8px;
  color: #31415a;
  background: rgba(255,255,255,.88);
  font-size: .62rem;
  line-height: 1.3;
  text-align: center;
  pointer-events: none;
}

.coverage-panel__state {
  margin: -8px 0 18px;
  color: var(--cyan-300) !important;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.capital-directory {
  margin-top: 34px;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface-soft);
  box-shadow: var(--shadow-sm);
}

.capital-directory__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 25px;
}

.capital-directory__head h3 { margin-bottom: 7px; }
.capital-directory__head p { margin: 0; font-size: .85rem; }

.capital-search {
  display: flex;
  min-width: min(330px, 100%);
  min-height: 50px;
  align-items: center;
  gap: 10px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
}

.capital-search i { color: var(--blue-600); }
.capital-search input {
  width: 100%;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
}

.capital-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 11px;
}

.capital-card {
  display: grid;
  gap: 3px;
  min-height: 108px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 15px;
  color: var(--ink);
  background: var(--surface);
  box-shadow: 0 6px 18px rgba(7,26,51,.05);
  cursor: pointer;
  text-align: left;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.capital-card:hover,
.capital-card.is-active {
  transform: translateY(-3px);
  border-color: var(--cyan-500);
  box-shadow: 0 12px 25px rgba(26,111,242,.12);
}

.capital-card strong { font-family: "Manrope", sans-serif; font-size: .94rem; }
.capital-card span { color: var(--muted); font-size: .76rem; }
.capital-card small { margin-top: auto; color: var(--blue-600); font-size: .64rem; font-weight: 800; text-transform: uppercase; }
.capital-empty { margin: 20px 0 0; text-align: center; }

.capital-popup { display: grid; gap: 3px; min-width: 170px; }
.capital-popup strong { color: #071a33; font-family: "Manrope", sans-serif; font-size: 1rem; }
.capital-popup span { color: #52637a; font-size: .78rem; }
.capital-popup b { margin-top: 4px; color: #1767e8; font-size: .67rem; text-transform: uppercase; }

.capital-tooltip,
.state-tooltip {
  border: 0 !important;
  border-radius: 9px !important;
  color: #fff !important;
  background: #071a33 !important;
  box-shadow: 0 8px 22px rgba(0,0,0,.2) !important;
  font-size: .72rem !important;
  font-weight: 800 !important;
}

.hq-map-icon span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 3px solid #071a33;
  border-radius: 50%;
  color: #071a33;
  background: #ffbd2e;
  box-shadow: 0 0 0 8px rgba(255,189,46,.23), 0 10px 25px rgba(7,26,51,.28);
  animation: hqPulse 1.8s ease-in-out infinite;
}

@keyframes hqPulse { 50% { box-shadow: 0 0 0 14px rgba(255,189,46,.08), 0 10px 25px rgba(7,26,51,.28); } }

.leaflet-container { font-family: "Inter", sans-serif; }
.leaflet-control-zoom a { color: #071a33 !important; }

@media (max-width: 1080px) {
  .coverage-layout--accurate { grid-template-columns: 1fr; }
  .capital-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 720px) {
  .india-map-card--leaflet,
  .india-service-map { min-height: 590px; height: 590px; }
  .map-legend { top: 10px; right: 10px; max-width: 185px; font-size: .62rem; }
  .capital-directory__head { display: grid; }
  .capital-search { min-width: 0; width: 100%; }
  .capital-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 430px) {
  .india-map-card--leaflet,
  .india-service-map { min-height: 540px; height: 540px; }
  .capital-grid { grid-template-columns: 1fr; }
  .capital-card { min-height: 92px; }
}


/* =========================================
   SOCIAL MEDIA + CMS-MANAGED WORK GALLERY
   ========================================= */

.contact-social {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.contact-social > span {
  color: var(--muted);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.social-links a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 10px;
  padding: 0 17px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  font-size: .85rem;
  font-weight: 800;
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}

.social-links a:hover {
  transform: translateY(-3px);
  border-color: rgba(49, 201, 244, .48);
  box-shadow: var(--shadow-md);
}

.social-links a:first-child i {
  color: #d62976;
}

.social-links a:last-child i {
  color: #1877f2;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}

.footer-social a {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 50%;
  color: #fff;
  background: rgba(255,255,255,.06);
  font-size: 1.05rem;
  transition: transform .23s ease, background .23s ease, border-color .23s ease;
}

.footer-social a:hover {
  transform: translateY(-3px);
  border-color: rgba(49,201,244,.55);
  background: rgba(49,201,244,.15);
}

.site-footer .admin-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 7px;
  color: rgba(255,255,255,.42);
  font-size: .76rem;
}

.latest-work {
  background:
    radial-gradient(circle at 90% 10%, rgba(49,201,244,.12), transparent 28%),
    var(--surface);
}

.cms-gallery-grid {
  display: grid;
  grid-auto-rows: 300px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.cms-gallery-empty {
  grid-column: 1 / -1;
  display: grid;
  min-height: 270px;
  place-items: center;
  align-content: center;
  gap: 8px;
  padding: 30px;
  border: 1px dashed color-mix(in srgb, var(--blue-600) 35%, var(--line));
  border-radius: var(--radius-md);
  color: var(--muted);
  background: var(--surface-soft);
  text-align: center;
}

.cms-gallery-empty i {
  margin-bottom: 8px;
  color: var(--blue-600);
  font-size: 2rem;
}

.cms-gallery-empty strong {
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  font-size: 1.05rem;
}

.cms-gallery-item {
  position: relative;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: var(--radius-md);
  color: #fff;
  background: var(--navy-900);
  box-shadow: var(--shadow-sm);
  cursor: zoom-in;
}

.cms-gallery-item:nth-child(5n + 1),
.cms-gallery-item:nth-child(5n + 4) {
  grid-column: span 2;
}

.cms-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease, filter .5s ease;
}

.cms-gallery-item::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(4,18,37,.90), rgba(4,18,37,.02) 70%);
}

.cms-gallery-item:hover img {
  transform: scale(1.055);
  filter: saturate(1.08);
}

.cms-gallery-caption {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 20px;
  left: 22px;
  display: grid;
  gap: 5px;
  text-align: left;
}

.cms-gallery-caption strong {
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
}

.cms-gallery-caption small {
  color: rgba(255,255,255,.68);
  font-size: .74rem;
}

@media (max-width: 900px) {
  .cms-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .cms-gallery-item:nth-child(5n + 1),
  .cms-gallery-item:nth-child(5n + 4) {
    grid-column: auto;
  }
}

@media (max-width: 600px) {
  .social-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .social-links a {
    justify-content: center;
    padding-inline: 12px;
  }
  .cms-gallery-grid {
    grid-auto-rows: 250px;
    grid-template-columns: 1fr;
  }
}


/* ==========================================================
   STATIC INDIA CAPITAL MAP
   ========================================================== */

.india-map-card--static {
  min-height: auto;
  padding: clamp(18px, 2vw, 24px);
  overflow: hidden;
}

.india-static-map {
  display: grid;
  gap: 14px;
}

.map-figure {
  position: relative;
  margin: 0;
  border-radius: 32px;
  overflow: hidden;
  background: linear-gradient(180deg, #f7fbff 0%, #eef6ff 100%);
  box-shadow: var(--shadow-sm);
}

.india-static-map__image {
  display: block;
  width: 100%;
  height: auto;
}

.map-pin-layer {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.map-pin {
  position: absolute;
  z-index: 3;
  padding: 0;
  border: 0;
  background: transparent;
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.map-pin__dot {
  display: block;
  width: 16px;
  height: 16px;
  border: 3px solid #071a33;
  border-radius: 999px;
  background: #31c9f4;
  box-shadow: 0 6px 16px rgba(7, 26, 51, 0.18);
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}

.map-pin__label {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 10px);
  min-width: max-content;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(7, 26, 51, 0.93);
  color: #fff;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .01em;
  white-space: nowrap;
  transform: translateX(-50%) translateY(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease;
}

.map-pin:hover .map-pin__dot,
.map-pin.is-active .map-pin__dot {
  transform: scale(1.14);
  box-shadow: 0 10px 22px rgba(7, 26, 51, 0.22);
  background: #ffbd2e;
}

.map-pin:hover .map-pin__label,
.map-pin.is-active .map-pin__label {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.map-credit {
  margin: 0;
}

@media (max-width: 900px) {
  .map-pin__dot {
    width: 14px;
    height: 14px;
    border-width: 2.5px;
  }
  .map-pin__label {
    font-size: .68rem;
    padding: 6px 9px;
  }
}

@media (max-width: 640px) {
  .india-map-card--static {
    padding: 14px;
    border-radius: 24px;
  }
  .map-figure {
    border-radius: 24px;
  }
  .map-pin__dot {
    width: 13px;
    height: 13px;
    border-width: 2.3px;
  }
  .map-pin__label {
    font-size: .64rem;
    padding: 5px 8px;
  }
}


/* =========================================
   NETLIFY FORM SUCCESS STATE
   ========================================= */

.form-success {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin: 24px clamp(24px, 5vw, 48px) 0;
  padding: 18px 20px;
  border: 1px solid rgba(18, 166, 106, .28);
  border-radius: 16px;
  color: var(--ink);
  background: rgba(18, 166, 106, .09);
}

.form-success[hidden] {
  display: none;
}

.form-success i {
  margin-top: 2px;
  color: var(--success);
  font-size: 1.4rem;
}

.form-success div {
  display: grid;
  gap: 3px;
}

.form-success strong {
  color: var(--ink);
  font-family: "Manrope", sans-serif;
}

.form-success span {
  color: var(--muted);
  font-size: .88rem;
}


.form-error {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin: 14px clamp(24px, 5vw, 48px) 0;
  padding: 18px 20px;
  border: 1px solid rgba(225, 67, 67, .28);
  border-radius: 16px;
  color: var(--ink);
  background: rgba(225, 67, 67, .08);
}

.form-error[hidden] {
  display: none;
}

.form-error i {
  margin-top: 2px;
  color: #d94646;
  font-size: 1.4rem;
}

.form-error div {
  display: grid;
  gap: 3px;
}

.form-error strong {
  color: var(--ink);
  font-family: "Manrope", sans-serif;
}

.form-error span {
  color: var(--muted);
  font-size: .88rem;
}
