:root {
  --bg: #0c1016;
  --bg-soft: #141a22;
  --surface: #ffffff;
  --surface-muted: #f3f5f7;
  --text: #111722;
  --text-soft: #5f6b7a;
  --text-inverse: #f4f7fb;
  --line: rgba(17, 23, 34, 0.08);
  --accent: #c53e2f;
  --accent-dark: #9a2d22;
  --accent-soft: rgba(197, 62, 47, 0.12);
  --shadow: 0 20px 50px rgba(9, 14, 21, 0.16);
  --shadow-soft: 0 12px 30px rgba(9, 14, 21, 0.1);
  --radius: 24px;
  --container: 1180px;
  --transition: 220ms ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--surface-muted);
  font-family: "Noto Sans", "Noto Sans Devanagari", sans-serif;
  line-height: 1.65;
}

body[data-language="hi"] {
  font-family: "Noto Sans Devanagari", "Noto Sans", sans-serif;
}

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

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

button {
  cursor: pointer;
}

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

main {
  display: block;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin: 0 auto;
}

.site-header,
.site-footer,
main {
  transition: opacity var(--transition), transform var(--transition);
}

body.is-language-switching .site-header,
body.is-language-switching .site-footer,
body.is-language-switching main {
  opacity: 0.92;
  transform: translateY(2px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: linear-gradient(180deg, rgba(12, 16, 22, 0.95), rgba(12, 16, 22, 0.9));
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-header.is-scrolled {
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
}

.header-shell {
  min-height: 86px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.brand-mark {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: linear-gradient(145deg, var(--accent), #86281f);
  color: var(--text-inverse);
  display: grid;
  place-items: center;
  font-family: "Barlow", "Noto Sans Devanagari", sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.brand-copy {
  display: grid;
  gap: 0.1rem;
}

.brand-copy strong,
.brand-copy span {
  color: var(--text-inverse);
}

.brand-copy strong {
  font-family: "Barlow", "Noto Sans Devanagari", sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0.03em;
}

.brand-copy span {
  color: rgba(244, 247, 251, 0.7);
  font-size: 0.83rem;
}

.site-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  flex-wrap: wrap;
}

.nav-link,
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  color: rgba(244, 247, 251, 0.8);
  font-size: 0.95rem;
  transition: color var(--transition), background var(--transition), transform var(--transition);
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.is-active {
  color: var(--text-inverse);
  background: rgba(255, 255, 255, 0.08);
}

.nav-cta {
  margin-left: 0.55rem;
  color: var(--text-inverse);
  background: linear-gradient(145deg, var(--accent), var(--accent-dark));
  box-shadow: 0 10px 24px rgba(197, 62, 47, 0.3);
}

.nav-cta:hover,
.nav-cta:focus-visible {
  transform: translateY(-1px);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 48px;
  padding: 0.55rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-inverse);
}

.header-phone svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
}

.phone-copy {
  display: grid;
  gap: 0.05rem;
}

.phone-copy small {
  color: rgba(244, 247, 251, 0.62);
  font-size: 0.72rem;
}

.phone-copy strong {
  font-size: 0.94rem;
}

.language-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-inverse);
}

.lang-option {
  min-width: 56px;
  padding: 0.45rem 0.85rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(244, 247, 251, 0.74);
  font-weight: 700;
  transition: background var(--transition), color var(--transition);
}

.lang-option.is-active {
  background: rgba(255, 255, 255, 0.12);
  color: var(--text-inverse);
}

.lang-divider {
  color: rgba(244, 247, 251, 0.36);
  font-weight: 700;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-inverse);
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  border-radius: 999px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero,
.page-hero {
  position: relative;
  overflow: clip;
}

.hero {
  color: var(--text-inverse);
  background:
    linear-gradient(180deg, rgba(8, 12, 18, 0.9), rgba(8, 12, 18, 0.94)),
    radial-gradient(circle at top left, rgba(197, 62, 47, 0.18), transparent 32%),
    url("https://images.unsplash.com/photo-1761896057588-49e1a6306d8f?auto=format&fit=crop&fm=jpg&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&ixlib=rb-4.1.0&q=80&w=2000")
      center/cover no-repeat;
}

.page-hero {
  color: var(--text-inverse);
  background:
    linear-gradient(180deg, rgba(9, 13, 19, 0.92), rgba(9, 13, 19, 0.95)),
    radial-gradient(circle at top left, rgba(197, 62, 47, 0.14), transparent 30%),
    url("https://images.unsplash.com/photo-1767726073588-01ba8026bd6e?auto=format&fit=crop&fm=jpg&ixid=M3wxMjA3fDB8MHxzZWFyY2h8OHx8Y29uc3RydWN0aW9uJTIwbWF0ZXJpYWxzJTIwY2VtZW50JTIwc2FuZCUyMGdyYXZlbCUyMHN0ZWVsfGVufDB8fHx8MTc3NTQxODQ5Mnww&ixlib=rb-4.1.0&q=80&w=1800")
      center/cover no-repeat;
}

.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0, transparent calc(100% - 1px), rgba(255, 255, 255, 0.04) calc(100% - 1px)),
    linear-gradient(0deg, transparent 0, transparent calc(100% - 1px), rgba(255, 255, 255, 0.04) calc(100% - 1px));
  background-size: 72px 72px;
  opacity: 0.28;
}

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -120px;
  top: -120px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0.45;
}

.hero-grid,
.page-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 2rem;
  padding: 5.6rem 0 5rem;
}

.hero-copy h1,
.page-hero-copy h1,
.section-heading h2,
.section-copy h2,
.cta-band-shell h2,
.region-shell h2,
.contact-panel h2,
.hero-panel h2,
.page-hero-card h2 {
  margin: 0;
  font-family: "Barlow", "Noto Sans Devanagari", sans-serif;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

html[lang="hi"] .hero-copy h1,
html[lang="hi"] .page-hero-copy h1,
html[lang="hi"] .section-heading h2,
html[lang="hi"] .section-copy h2,
html[lang="hi"] .cta-band-shell h2,
html[lang="hi"] .region-shell h2,
html[lang="hi"] .contact-panel h2,
html[lang="hi"] .hero-panel h2,
html[lang="hi"] .page-hero-card h2 {
  font-family: "Noto Sans Devanagari", "Noto Sans", sans-serif;
  letter-spacing: -0.01em;
}

.hero-copy h1 {
  font-size: clamp(2.7rem, 5vw, 4.8rem);
  max-width: 12ch;
}

.page-hero-copy h1 {
  font-size: clamp(2.3rem, 4vw, 3.9rem);
  max-width: 11ch;
}

.lead,
.page-lead {
  max-width: 62ch;
  color: rgba(244, 247, 251, 0.8);
  font-size: 1.05rem;
  margin: 1.2rem 0 0;
}

.hero-actions,
.section-actions,
.cta-stack,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.hero-actions {
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), background var(--transition), color var(--transition);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(145deg, var(--accent), var(--accent-dark));
  color: var(--text-inverse);
  box-shadow: 0 16px 30px rgba(197, 62, 47, 0.25);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-inverse);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.btn-outline {
  border: 1px solid rgba(17, 23, 34, 0.12);
  background: var(--surface);
  color: var(--text);
  box-shadow: var(--shadow-soft);
}

.btn-dark {
  background: var(--bg);
  color: var(--text-inverse);
}

.section-tag,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0 0 1rem;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-tag::before,
.eyebrow::before {
  content: "";
  width: 46px;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
}

.hero-highlights,
.support-chips,
.reason-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.highlight-chip,
.support-chip,
.reason-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  min-height: 44px;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  font-weight: 700;
}

.hero .highlight-chip,
.page-hero .support-chip {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(244, 247, 251, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.reason-chip {
  background: var(--surface-muted);
  border: 1px solid var(--line);
}

.hero .highlight-chip::before,
.page-hero .support-chip::before,
.reason-chip::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(197, 62, 47, 0.12);
}

.hero-panel,
.page-hero-card,
.map-placeholder,
.contact-panel {
  position: relative;
  overflow: hidden;
  padding: 1.7rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.2);
}

.hero-photo {
  position: relative;
  margin-bottom: 1.35rem;
  border-radius: 20px;
  overflow: hidden;
  min-height: 220px;
  background: rgba(255, 255, 255, 0.06);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92);
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 13, 19, 0.12), rgba(9, 13, 19, 0.72));
  pointer-events: none;
}

.hero-photo-copy {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1;
  color: var(--text-inverse);
  font-weight: 700;
}

.hero-panel::after,
.page-hero-card::after,
.contact-panel::after {
  content: "";
  position: absolute;
  inset: auto -30px -35px auto;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(197, 62, 47, 0.18), transparent 70%);
}

.hero-panel h2,
.page-hero-card h2,
.contact-panel h2 {
  font-size: 1.6rem;
  color: var(--text-inverse);
}

.hero-panel p,
.page-hero-card p,
.contact-panel p {
  color: rgba(244, 247, 251, 0.78);
}

.check-list,
.contact-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.35rem;
}

.check-item,
.contact-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: start;
}

.check-icon,
.process-step {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.check-icon {
  background: rgba(197, 62, 47, 0.18);
}

.check-icon::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1.6rem;
}

.mini-stat {
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.mini-stat strong {
  display: block;
  color: var(--text-inverse);
  font-size: 1rem;
}

.mini-stat span {
  color: rgba(244, 247, 251, 0.68);
  font-size: 0.88rem;
}

.section {
  padding: 5.5rem 0;
}

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

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

.section-dark {
  color: var(--text-inverse);
  background: linear-gradient(180deg, #10151c, #0d1118);
}

.section-dark .section-heading p,
.section-dark .section-copy p,
.section-dark .card-copy p,
.section-dark .reason-card p,
.section-dark .focus-panel p,
.section-dark .region-shell p {
  color: rgba(244, 247, 251, 0.74);
}

.section-heading,
.section-copy {
  max-width: 68ch;
}

.section-heading h2,
.section-copy h2,
.cta-band-shell h2,
.region-shell h2 {
  font-size: clamp(2rem, 3.4vw, 3.1rem);
}

.section-heading p,
.section-copy p,
.focus-panel p,
.reason-card p,
.card-copy p,
.contact-card p,
.cta-band-shell p,
.region-shell p,
.map-placeholder p,
.contact-note p {
  margin: 1rem 0 0;
  color: var(--text-soft);
}

.split-grid,
.contact-grid,
.map-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.align-center {
  align-items: center;
}

.info-stack,
.focus-board {
  display: grid;
  gap: 1rem;
}

.info-card,
.product-card,
.service-card,
.reason-card,
.focus-panel,
.contact-card,
.support-card,
.process-card {
  position: relative;
  padding: 1.6rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.section-dark .info-card,
.section-dark .product-card,
.section-dark .service-card,
.section-dark .reason-card,
.section-dark .focus-panel,
.section-dark .support-card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.info-card,
.contact-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
}

.icon-wrap,
.card-icon,
.contact-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: var(--accent-soft);
  color: var(--accent);
  flex-shrink: 0;
}

.section-dark .icon-wrap,
.section-dark .card-icon {
  background: rgba(197, 62, 47, 0.18);
}

.icon-wrap svg,
.card-icon svg,
.contact-icon svg {
  width: 24px;
  height: 24px;
}

.card-copy h3,
.product-card h3,
.service-card h3,
.reason-card h3,
.focus-panel h3,
.contact-card h3,
.support-card h3,
.process-card h3,
.map-placeholder h3 {
  margin: 0;
  font-family: "Barlow", "Noto Sans Devanagari", sans-serif;
  font-size: 1.3rem;
  line-height: 1.2;
}

html[lang="hi"] .card-copy h3,
html[lang="hi"] .product-card h3,
html[lang="hi"] .service-card h3,
html[lang="hi"] .reason-card h3,
html[lang="hi"] .focus-panel h3,
html[lang="hi"] .contact-card h3,
html[lang="hi"] .support-card h3,
html[lang="hi"] .process-card h3,
html[lang="hi"] .map-placeholder h3 {
  font-family: "Noto Sans Devanagari", "Noto Sans", sans-serif;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 2.3rem;
}

.three-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-card,
.service-card,
.reason-card,
.support-card {
  height: 100%;
}

.product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
}

.product-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #0b1016;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms ease, filter 320ms ease;
  filter: saturate(0.94);
  cursor: zoom-in;
}

.product-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 13, 19, 0.08), rgba(9, 13, 19, 0.46));
  pointer-events: none;
}

.product-card:hover .product-media img,
.product-card:focus-within .product-media img {
  transform: scale(1.06);
  filter: saturate(1);
}

.product-price {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(9, 13, 19, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-inverse);
  font-size: 0.85rem;
  font-weight: 800;
}

.product-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.9rem;
  padding: 1.45rem 1.5rem 1.5rem;
}

.product-card .card-icon {
  margin-bottom: 0;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: auto;
}

.product-card p,
.service-card p,
.reason-card p,
.focus-panel p,
.support-card p,
.contact-card p,
.process-card p {
  margin-bottom: 0;
}

.product-card .card-icon,
.service-card .card-icon,
.reason-card .card-icon,
.support-card .card-icon {
  margin-bottom: 1.25rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 1.35rem;
  color: var(--accent);
  font-weight: 700;
}

.text-link::after {
  content: "";
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.government-panel {
  padding: 1.8rem;
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.government-list {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.4rem;
}

.government-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
}

.government-item strong {
  color: var(--text-inverse);
  font-size: 1.1rem;
}

.government-item p {
  margin: 0.35rem 0 0;
}

.government-marker {
  width: 14px;
  height: 14px;
  margin-top: 0.4rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 7px rgba(197, 62, 47, 0.14);
}

.region-band {
  position: relative;
  color: var(--text-inverse);
  background:
    linear-gradient(180deg, rgba(9, 13, 19, 0.9), rgba(9, 13, 19, 0.94)),
    linear-gradient(135deg, rgba(197, 62, 47, 0.12), transparent 48%),
    url("https://images.unsplash.com/photo-1763771420551-18bc44399f0c?auto=format&fit=crop&fm=jpg&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MTd8fHJlYmFyJTIwY29uc3RydWN0aW9ufGVufDB8fHx8MTc3NTQxODcwOXww&ixlib=rb-4.1.0&q=80&w=1800")
      center/cover no-repeat;
}

.region-band .region-shell p,
.region-band .section-tag {
  color: rgba(244, 247, 251, 0.74);
}

.region-shell {
  padding: 4.4rem 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: center;
}

.region-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  min-width: min(100%, 420px);
}

.region-metric {
  padding: 1.1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.region-metric strong {
  display: block;
  color: var(--text-inverse);
  font-size: 1.1rem;
}

.region-metric span {
  color: rgba(244, 247, 251, 0.7);
  font-size: 0.9rem;
}

.process-layout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 2.3rem;
}

.process-step {
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 800;
}

.process-card h3 {
  margin: 1rem 0 0;
}

.process-card p {
  margin-top: 0.8rem;
  color: var(--text-soft);
}

.cta-band {
  color: var(--text-inverse);
  background:
    linear-gradient(180deg, rgba(9, 13, 19, 0.9), rgba(9, 13, 19, 0.94)),
    linear-gradient(135deg, rgba(197, 62, 47, 0.14), rgba(197, 62, 47, 0.03) 34%, transparent 60%),
    url("https://images.unsplash.com/photo-1763544722448-b79925f97e84?auto=format&fit=crop&fm=jpg&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MTR8fGJ1aWxkaW5nJTIwbWF0ZXJpYWxzJTIwY29uc3RydWN0aW9uJTIwc2l0ZSUyMGdyYXZlbCUyMHN0ZWVsfGVufDB8fHx8MTc3NTQxODYzMHww&ixlib=rb-4.1.0&q=80&w=1800")
      center/cover no-repeat;
}

.cta-band-shell {
  padding: 4.3rem 0;
  display: grid;
  grid-template-columns: 1.2fr auto;
  gap: 1.5rem;
  align-items: center;
}

.cta-band-shell p {
  color: rgba(244, 247, 251, 0.74);
}

.contact-grid,
.map-grid {
  margin-top: 2.3rem;
}

.contact-card a {
  color: var(--accent);
  font-weight: 700;
}

.map-placeholder {
  min-height: 100%;
  color: var(--text-inverse);
  background: radial-gradient(circle at top right, rgba(197, 62, 47, 0.2), transparent 36%), linear-gradient(180deg, #10161e, #0c1118);
}

.map-placeholder p,
.map-placeholder .eyebrow {
  color: rgba(244, 247, 251, 0.74);
}

.map-placeholder h3 {
  margin-top: 1rem;
  font-size: 1.8rem;
}

.map-embed {
  margin-top: 1.3rem;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #090d13;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.map-embed iframe {
  width: 100%;
  height: 260px;
  border: 0;
  display: block;
}

.contact-panel .contact-actions {
  margin-top: 1.7rem;
}

.quote-card {
  min-height: 100%;
  background:
    linear-gradient(180deg, rgba(14, 20, 28, 0.96), rgba(11, 15, 21, 0.98)),
    radial-gradient(circle at top right, rgba(197, 62, 47, 0.16), transparent 36%);
  border-color: rgba(255, 255, 255, 0.08);
}

.quote-form {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.form-field {
  display: grid;
  gap: 0.45rem;
}

.form-field label {
  font-weight: 700;
  color: var(--text-inverse);
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-inverse);
  outline: none;
  transition: border-color var(--transition), background var(--transition);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(244, 247, 251, 0.5);
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: rgba(197, 62, 47, 0.8);
  background: rgba(255, 255, 255, 0.08);
}

.form-field textarea {
  min-height: 140px;
  resize: vertical;
}

.form-note {
  font-size: 0.92rem;
  color: rgba(244, 247, 251, 0.66);
}

.quote-form .btn {
  width: fit-content;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1400;
  display: grid;
  place-items: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--transition), visibility var(--transition);
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(5, 8, 12, 0.82);
}

.lightbox-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 1080px);
  display: grid;
  gap: 0.8rem;
}

.lightbox-close {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(12, 16, 22, 0.88);
  color: var(--text-inverse);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.lightbox-close span[aria-hidden="true"] {
  font-size: 1.4rem;
  line-height: 1;
}

.lightbox-figure {
  margin: 0;
  overflow: hidden;
  border-radius: 26px;
  background: #070b10;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 36px 80px rgba(0, 0, 0, 0.35);
}

.lightbox-figure img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  background: #05080c;
}

.lightbox-figure figcaption {
  padding: 0.95rem 1rem 1.05rem;
  color: rgba(244, 247, 251, 0.74);
  font-size: 0.94rem;
}

body.has-lightbox-open {
  overflow: hidden;
}

.site-footer {
  color: var(--text-inverse);
  background: linear-gradient(180deg, #0d1118, #090d13);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-shell {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.9fr;
  gap: 2rem;
  padding: 4.2rem 0 2rem;
}

.footer-intro {
  max-width: 48ch;
}

.footer-intro p,
.footer-column p,
.footer-column a {
  color: rgba(244, 247, 251, 0.72);
}

.footer-column h3 {
  margin: 0 0 1rem;
  font-family: "Barlow", "Noto Sans Devanagari", sans-serif;
  font-size: 1.1rem;
}

.footer-links {
  display: grid;
  gap: 0.7rem;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--text-inverse);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0 1.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom p {
  margin: 0;
  color: rgba(244, 247, 251, 0.64);
}

.whatsapp-float {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 32;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 58px;
  padding: 0.9rem 1.1rem;
  border-radius: 999px;
  background: #1f9d5f;
  color: #ffffff;
  box-shadow: 0 18px 36px rgba(31, 157, 95, 0.28);
  font-weight: 800;
}

.whatsapp-float svg {
  width: 22px;
  height: 22px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 620ms ease, transform 620ms ease;
}

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

.delay-1 {
  transition-delay: 80ms;
}

.delay-2 {
  transition-delay: 160ms;
}

@media (max-width: 1120px) {
  .header-phone {
    display: none;
  }

  .cards-grid,
  .process-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-grid,
  .page-hero-grid,
  .cta-band-shell,
  .footer-shell,
  .region-shell {
    grid-template-columns: 1fr;
  }

  .region-metrics {
    min-width: 0;
  }
}

@media (max-width: 920px) {
  .header-shell {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 1rem;
    right: 1rem;
    display: grid;
    gap: 0.35rem;
    padding: 1rem;
    border-radius: 24px;
    background: rgba(12, 16, 22, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.24);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity var(--transition), transform var(--transition);
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-link,
  .nav-cta {
    justify-content: flex-start;
    width: 100%;
    margin-left: 0;
  }

  .nav-toggle {
    display: inline-block;
  }

  .hero-grid,
  .page-hero-grid {
    padding: 4.5rem 0 4rem;
  }

  .split-grid,
  .contact-grid,
  .map-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 1.2rem, var(--container));
  }

  .header-shell {
    min-height: 80px;
  }

  .brand-copy span {
    display: none;
  }

  .language-toggle {
    gap: 0.3rem;
    padding: 0.35rem;
  }

  .lang-option {
    min-width: 48px;
    padding-inline: 0.7rem;
  }

  .hero-copy h1,
  .page-hero-copy h1 {
    max-width: none;
  }

  .cards-grid,
  .process-layout,
  .mini-grid,
  .region-metrics {
    grid-template-columns: 1fr;
  }

  .section,
  .hero-grid,
  .page-hero-grid,
  .cta-band-shell,
  .region-shell,
  .footer-shell {
    padding-top: 4.2rem;
    padding-bottom: 4.2rem;
  }

  .hero-actions,
  .section-actions,
  .cta-stack,
  .contact-actions,
  .product-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn,
  .section-actions .btn,
  .cta-stack .btn,
  .contact-actions .btn,
  .product-actions .btn,
  .quote-form .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-panel,
  .page-hero-card,
  .map-placeholder,
  .contact-panel,
  .info-card,
  .product-content,
  .service-card,
  .reason-card,
  .contact-card,
  .support-card,
  .focus-panel,
  .process-card {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }

  .product-content {
    padding-top: 1.2rem;
    padding-bottom: 1.25rem;
  }

  .map-embed iframe {
    height: 220px;
  }

  .quote-form {
    gap: 0.9rem;
  }

  .form-field input,
  .form-field textarea {
    font-size: 1rem;
  }

  .footer-shell {
    gap: 1.4rem;
  }

  .footer-bottom {
    padding-top: 1.4rem;
  }

  .whatsapp-float {
    right: 0.8rem;
    bottom: 0.8rem;
    padding: 0.85rem 0.95rem;
  }

  .whatsapp-float span {
    display: none;
  }
}

@media (max-width: 560px) {
  .header-shell {
    min-height: 74px;
    gap: 0.7rem;
  }

  .header-actions {
    gap: 0.5rem;
  }

  .site-nav {
    left: 0.7rem;
    right: 0.7rem;
    max-height: calc(100vh - 96px);
    overflow-y: auto;
  }

  .hero-grid,
  .page-hero-grid {
    padding: 3.85rem 0 3.1rem;
    gap: 1.3rem;
  }

  .hero-copy h1,
  .page-hero-copy h1 {
    font-size: clamp(2.1rem, 11vw, 2.8rem);
  }

  .hero-panel,
  .page-hero-card,
  .map-placeholder,
  .contact-panel {
    padding: 1.1rem;
  }

  .product-price {
    top: 0.8rem;
    left: 0.8rem;
  }

  .lightbox {
    padding: 0.7rem;
  }

  .lightbox-close {
    padding: 0.7rem 0.9rem;
  }

  .lightbox-figure {
    border-radius: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
