:root {
  --bg: #f4f7fb;
  --surface: #ffffff;
  --surface-soft: #eef4ff;
  --text: #1f2937;
  --muted: #526072;
  --heading: #0f2a44;
  --line: #d7dfeb;
  --primary: #0f4ab8;
  --primary-dark: #0b3889;
  --accent: #11845b;
  --accent-dark: #0d6747;
  --gold: #d4a72c;
  --shadow: 0 18px 40px rgba(15, 42, 68, 0.08);
  --radius: 18px;
  --content: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.7;
}

body.lang-hi {
  font-family: "Noto Sans Devanagari", Arial, Helvetica, sans-serif;
}

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

a {
  color: var(--primary);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 12px;
  background: var(--heading);
  color: #fff;
  padding: 10px 14px;
  border-radius: 10px;
  z-index: 2000;
}

.skip-link:focus {
  left: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(15, 42, 68, 0.08);
}

.header-inner,
.container {
  width: min(100% - 32px, var(--content));
  margin: 0 auto;
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: inherit;
}

.brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.brand-copy strong {
  display: block;
  color: var(--heading);
  font-size: 1rem;
  line-height: 1.2;
}

.brand-copy span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.site-nav a {
  color: var(--heading);
  text-decoration: none;
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--primary);
}

.hero {
  background:
    linear-gradient(120deg, rgba(15, 42, 68, 0.9), rgba(15, 74, 184, 0.8)),
    url("/images/bg-termite.png") center / cover no-repeat;
  color: #fff;
}

.hero--solid {
  background:
    radial-gradient(circle at top right, rgba(212, 167, 44, 0.2), transparent 35%),
    linear-gradient(135deg, #0f2a44, #0f4ab8 70%);
}

.hero-inner {
  width: min(100% - 32px, var(--content));
  margin: 0 auto;
  padding: 88px 0 80px;
}

.hero h1,
.page-title {
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.12;
}

.hero p {
  max-width: 760px;
  margin: 0;
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.92);
}

.hero .cta-row {
  margin-top: 28px;
}

.section {
  padding: 54px 0;
}

.section-tight {
  padding-top: 36px;
}

.section-title {
  margin: 0 0 16px;
  color: var(--heading);
  font-size: clamp(1.6rem, 2.8vw, 2.35rem);
  line-height: 1.2;
}

.section-intro,
.lead {
  max-width: 760px;
  color: var(--muted);
  margin: 0 0 24px;
}

.answer-box,
.notice-card,
.box,
.card,
.table-card,
.faq-item,
.contact-card,
.map-card,
.video-card {
  background: var(--surface);
  border: 1px solid rgba(15, 42, 68, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.answer-box,
.notice-card,
.box,
.contact-card,
.map-card,
.video-card {
  padding: 28px;
}

.answer-box {
  background:
    linear-gradient(135deg, rgba(17, 132, 91, 0.08), rgba(15, 74, 184, 0.08)),
    var(--surface);
}

.answer-box p:last-child,
.box p:last-child,
.contact-card p:last-child {
  margin-bottom: 0;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--primary);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.grid {
  display: grid;
  gap: 24px;
}

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

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

.card,
.table-card {
  overflow: hidden;
}

.card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.card-body {
  padding: 22px;
}

.card h3,
.box h2,
.box h3,
.contact-card h2,
.contact-card h3,
.faq-item h3,
.map-card h2 {
  margin: 0 0 12px;
  color: var(--heading);
  line-height: 1.25;
}

.card p,
.muted {
  color: var(--muted);
}

.badge-row,
.quick-points,
.inline-list,
.breadcrumbs,
.location-grid,
.faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: #fff;
  border: 1px solid rgba(15, 42, 68, 0.1);
  border-radius: 999px;
  color: var(--heading);
  font-weight: 700;
}

.quick-points {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.quick-points li {
  padding: 12px 14px;
  background: var(--surface);
  border: 1px solid rgba(15, 42, 68, 0.08);
  border-radius: 14px;
  min-width: 220px;
  flex: 1 1 220px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 14px 24px rgba(15, 74, 184, 0.18);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--primary-dark);
}

.button-secondary {
  background: #fff;
  color: var(--heading);
  border: 1px solid rgba(15, 42, 68, 0.14);
}

.button-accent {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 14px 24px rgba(17, 132, 91, 0.18);
}

.button-accent:hover,
.button-accent:focus-visible {
  background: var(--accent-dark);
}

.product-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 32px;
  align-items: center;
}

.product-media,
.showroom-photo {
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(15, 42, 68, 0.08);
  box-shadow: var(--shadow);
}

.product-media img,
.showroom-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.product-copy h1,
.product-copy h2 {
  margin: 0 0 14px;
  color: var(--heading);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.16;
}

.tagline {
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 1.08rem;
  font-weight: 800;
}

.feature-list {
  margin: 20px 0 0;
  padding-left: 18px;
}

.feature-list li {
  margin-bottom: 8px;
}

.table-card {
  padding: 8px 24px;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
}

.spec-table th,
.spec-table td {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.spec-table th {
  width: 30%;
  color: var(--heading);
}

.spec-table tr:last-child th,
.spec-table tr:last-child td {
  border-bottom: 0;
}

.video-frame,
.map-frame {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.video-frame iframe,
.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.breadcrumbs {
  padding: 18px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.breadcrumbs a {
  color: var(--primary);
  text-decoration: none;
}

.language-switch {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 8px 12px;
  background: var(--surface-soft);
  border-radius: 999px;
  color: var(--heading);
  font-size: 0.95rem;
  font-weight: 700;
}

.faq-list {
  flex-direction: column;
}

.faq-item {
  padding: 24px;
}

.faq-item p:last-child {
  margin-bottom: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.contact-list {
  margin: 0;
  padding-left: 18px;
}

.contact-list li {
  margin-bottom: 10px;
}

.membership-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.membership-row .card {
  padding: 18px;
}

.membership-row img {
  width: 100%;
  max-height: 90px;
  object-fit: contain;
  aspect-ratio: 16 / 9;
}

.location-grid {
  align-items: stretch;
}

.location-grid a,
.location-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 12px 16px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(15, 42, 68, 0.08);
  text-decoration: none;
  color: var(--heading);
  font-weight: 700;
  box-shadow: var(--shadow);
}

.location-grid span {
  color: var(--muted);
}

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

.service-summary .box {
  padding: 24px;
}

.site-footer {
  background:
    radial-gradient(circle at top right, rgba(212, 167, 44, 0.16), transparent 26%),
    linear-gradient(135deg, #091b2d, #0f2a44);
  color: rgba(255, 255, 255, 0.88);
  margin-top: 54px;
}

.footer-inner {
  width: min(100% - 32px, var(--content));
  margin: 0 auto;
  padding: 34px 0;
}

.footer-inner p {
  margin: 10px 0;
}

.footer-note {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.95rem;
}

.floating-actions {
  position: fixed;
  right: 16px;
  bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1200;
}

.floating-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 148px;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 14px 24px rgba(15, 42, 68, 0.18);
}

.floating-actions .whatsapp {
  background: #25d366;
  color: #fff;
}

.floating-actions .call {
  background: var(--primary);
  color: #fff;
}

.delivery-box input {
  width: 100%;
  padding: 14px 16px;
  margin: 0 0 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  font: inherit;
}

.delivery-box button {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.spinner {
  width: 26px;
  height: 26px;
  border: 4px solid #dfe6f3;
  border-top-color: var(--primary);
  border-radius: 50%;
  margin: 14px auto 0;
  animation: spin 1s linear infinite;
  display: none;
}

#deliveryResult {
  min-height: 28px;
  margin-top: 16px;
  font-weight: 700;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 980px) {
  .product-hero,
  .grid-3,
  .membership-row,
  .service-summary {
    grid-template-columns: 1fr;
  }

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

  .site-header {
    position: static;
  }
}

@media (max-width: 760px) {
  .header-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 0;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .hero-inner {
    padding: 72px 0 64px;
  }

  .hero h1,
  .page-title,
  .product-copy h1,
  .product-copy h2 {
    font-size: clamp(1.8rem, 8vw, 2.6rem);
  }

  .answer-box,
  .notice-card,
  .box,
  .contact-card,
  .map-card,
  .video-card,
  .faq-item {
    padding: 22px;
  }

  .table-card {
    padding: 8px 18px;
  }

  .spec-table th,
  .spec-table td {
    display: block;
    width: 100%;
    padding: 10px 0;
  }

  .spec-table th {
    border-bottom: 0;
    padding-bottom: 0;
  }

  .floating-actions {
    left: 16px;
    right: 16px;
  }

  .floating-actions a {
    width: 100%;
  }
}
