/* ============================================================
   SURAKSHA v2 — Design Tokens
   Theme: Light, professional. Steel Blue accent + Suraksha Red.
   Display: Barlow Condensed | Body: Inter | Data: Roboto Mono
   ============================================================ */

:root {
  --navy: #16273b;
  --navy-2: #1e3247;
  --steel: #4f7ea8;
  --steel-light: #a9c3d9;
  --red: #cf2430;
  --red-dark: #a81c26;
  --bg: #f6f7f8;
  --panel: #ffffff;
  --line: #e2e6ea;
  --ink: #1a2230;
  --ink-soft: #5b6472;
  --whatsapp: #25d366;
  --whatsapp-dark: #1eb559;

  --font-display: 'Barlow Condensed', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'Roboto Mono', monospace;

  --radius: 12px;
  --shadow-soft: 0 10px 28px rgba(22, 39, 59, 0.08);
  --shadow-lift: 0 18px 40px rgba(22, 39, 59, 0.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  margin: 0;
  letter-spacing: 0.01em;
  color: var(--navy);
}
p { margin: 0; line-height: 1.65; color: var(--ink-soft); }
.section-inner { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel);
  margin: 0 0 10px;
  font-weight: 500;
}
.eyebrow.light { color: var(--steel-light); }
.center { text-align: center; margin-left: auto; margin-right: auto; }
h2.center, p.eyebrow.center { max-width: 640px; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--red); color: #fff; box-shadow: 0 8px 20px rgba(207,36,48,0.28); }
.btn-primary:hover { background: var(--red-dark); }
.btn-whatsapp { background: var(--whatsapp); color: #fff; box-shadow: 0 8px 20px rgba(37,211,102,0.28); }
.btn-whatsapp:hover { background: var(--whatsapp-dark); }
.btn-ghost { background: transparent; color: var(--navy); border: 1.5px solid var(--line); }
.btn-ghost:hover { border-color: var(--steel); }
.btn-steel { background: var(--steel); color: #fff; }
.btn-sm { padding: 9px 16px; font-size: 0.85rem; }
.btn.full { width: 100%; justify-content: center; }

/* ============ HEADER / NAV ============ */
.site-header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  max-width: 1240px; margin: 0 auto; padding: 12px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.brand-logo { height: 34px; width: auto; }
.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav > a, .nav-drop > button {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy);
  padding: 10px 14px;
  border-radius: 8px;
  background: none; border: none; cursor: pointer;
  display: flex; align-items: center; gap: 5px;
}
.main-nav > a:hover, .nav-drop > button:hover, .main-nav > a.active { color: var(--steel); background: #eef3f7; }
.nav-drop { position: relative; }
.nav-drop svg { width: 12px; height: 12px; transition: transform 0.15s ease; }
.nav-drop:hover svg, .nav-drop.open svg { transform: rotate(180deg); }
.nav-drop-menu {
  position: absolute; top: 100%; left: 0;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow-lift);
  padding: 8px;
  min-width: 210px;
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: all 0.15s ease;
  z-index: 50;
}
.nav-drop:hover .nav-drop-menu, .nav-drop.open .nav-drop-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-drop-menu a {
  display: block; padding: 9px 12px; border-radius: 6px;
  font-size: 0.88rem; font-weight: 500; color: var(--ink);
}
.nav-drop-menu a:hover { background: var(--bg); color: var(--steel); }
.nav-drop-menu a.active { color: var(--red); }
.header-call { font-family: var(--font-mono); font-size: 0.85rem; }
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--navy); border-radius: 2px; }

/* ============ PAGE HERO (product pages) ============ */
.page-hero {
  background: linear-gradient(180deg, #fff 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--line);
  padding: 46px 0 40px;
}
.breadcrumb {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  color: var(--ink-soft);
  margin-bottom: 14px;
}
.breadcrumb a { color: var(--steel); }
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.page-hero-sub { max-width: 620px; font-size: 1.02rem; }
.page-hero-badges { display: flex; gap: 10px; margin-top: 18px; flex-wrap: wrap; }
.page-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-mono); font-size: 0.72rem; text-transform: uppercase;
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: 6px 12px; color: var(--ink-soft);
}

/* ============ HOME HERO ============ */
.home-hero { position: relative; overflow: hidden; background: #eef1f3; }
.home-hero-media {
  position: relative;
  min-height: 520px;
  display: flex; align-items: center;
  background-size: cover; background-position: right center; background-repeat: no-repeat;
}
.home-hero-media::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(246,247,248,0.97) 0%, rgba(246,247,248,0.88) 38%, rgba(246,247,248,0.25) 62%, rgba(246,247,248,0) 78%);
  z-index: 1;
}
.home-hero-overlay { position: relative; z-index: 2; width: 100%; }
.home-hero-inner { max-width: 1240px; margin: 0 auto; padding: 60px 24px; }
.home-hero .eyebrow { color: var(--steel); }
.home-hero h1 {
  font-size: clamp(2.2rem, 4.4vw, 3.5rem);
  line-height: 1.06;
  max-width: 640px;
  text-transform: uppercase;
}
.home-hero h1 span { color: var(--red); }
.home-hero-sub { max-width: 460px; margin-top: 16px; font-size: 1.05rem; }
.home-hero-actions { display: flex; gap: 14px; margin-top: 26px; flex-wrap: wrap; }
.home-hero-chips {
  display: flex; gap: 28px; margin-top: 40px; padding-top: 22px;
  border-top: 1px solid rgba(22,39,59,0.14); flex-wrap: wrap; max-width: 640px;
}
.home-hero-chips .chip strong { font-family: var(--font-display); font-size: 1.35rem; color: var(--red); display:block; }
.home-hero-chips .chip span { font-size: 0.74rem; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.04em; }

/* ============ PRODUCT GRID (home) ============ */
.product-grid-section { padding: 84px 0; background: var(--panel); }
.product-grid-section h2 { font-size: clamp(1.8rem, 3vw, 2.3rem); margin-bottom: 10px; text-transform: uppercase; }
.product-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px;
}
.product-tile {
  position: relative; border-radius: 14px; overflow: hidden;
  aspect-ratio: 1/1; box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.product-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.product-tile img { width: 100%; height: 100%; object-fit: cover; }
.product-tile-label {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: linear-gradient(0deg, rgba(22,39,59,0.88) 0%, rgba(22,39,59,0) 100%);
  padding: 40px 20px 16px;
  color: #fff;
}
.product-tile-label h3 { color: #fff; font-size: 1.25rem; text-transform: capitalize; }
.product-tile-label span { font-family: var(--font-mono); font-size: 0.72rem; color: var(--steel-light); }

/* ============ ABOUT / INTRO STRIP (home) ============ */
.intro-strip { padding: 70px 0; background: var(--bg); }
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.intro-copy h2 { font-size: clamp(1.6rem, 2.6vw, 2.1rem); text-transform: uppercase; margin-bottom: 14px; }
.intro-copy p { margin-bottom: 16px; }
.intro-badges { display: flex; gap: 16px; margin-top: 20px; flex-wrap: wrap; align-items: center; }
.intro-badges img { height: 56px; width: auto; }
.intro-media img { border-radius: var(--radius); box-shadow: var(--shadow-soft); }

/* ============ WHY US ============ */
.why { background: var(--navy); padding: 84px 0; color: #fff; }
.why h2 { font-size: clamp(1.8rem, 3vw, 2.3rem); margin-bottom: 44px; text-transform: uppercase; color: #fff; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.why-card { background: var(--navy-2); border-radius: 12px; padding: 26px; border: 1px solid rgba(255,255,255,0.06); }
.why-icon {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 0.76rem; font-weight: 500;
  color: var(--steel-light); border: 1px solid var(--steel);
  border-radius: 6px; min-width: 38px; height: 30px; padding: 0 8px; margin-bottom: 14px;
}
.why-card h3 { color: #fff; font-size: 1.1rem; margin-bottom: 8px; text-transform: none; font-family: var(--font-body); font-weight: 700; }
.why-card p { color: #9fa9b8; font-size: 0.88rem; }

/* ============ PRODUCT DETAIL LAYOUT ============ */
.detail-section { padding: 70px 0; }
.detail-section.alt { background: var(--panel); }
.model-block { padding: 50px 0; border-bottom: 1px solid var(--line); }
.model-block:last-child { border-bottom: none; }
.product-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; }

/* ---- Gallery with arrows + swipe + counter ---- */
.gallery { position: relative; }
.gallery-main {
  background: var(--panel); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-soft); aspect-ratio: 4/5; position: relative;
  touch-action: pan-y; cursor: zoom-in;
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; user-select: none; -webkit-user-drag: none; }
.gallery-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.92); border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; box-shadow: var(--shadow-soft); z-index: 5;
  transition: background 0.15s ease;
}
.gallery-arrow:hover { background: #fff; }
.gallery-arrow.prev { left: 12px; }
.gallery-arrow.next { right: 12px; }
.gallery-counter {
  position: absolute; bottom: 12px; right: 12px;
  background: rgba(22,39,59,0.78); color: #fff;
  font-family: var(--font-mono); font-size: 0.72rem;
  padding: 4px 10px; border-radius: 999px; z-index: 5;
}
.gallery-thumbs { display: flex; gap: 8px; margin-top: 12px; flex-wrap: wrap; }
.gallery-thumbs img {
  width: 56px; height: 56px; object-fit: cover; border-radius: 6px;
  cursor: pointer; border: 2px solid transparent; opacity: 0.65; transition: all 0.15s ease;
}
.gallery-thumbs img:hover { opacity: 1; }
.gallery-thumbs img.active { border-color: var(--steel); opacity: 1; }

/* ---- Rating plate ---- */
.plate {
  background: var(--panel); border-radius: 14px; padding: 32px;
  box-shadow: var(--shadow-soft); position: relative; border: 1px solid var(--line);
}
.plate::before, .plate::after {
  content: ""; position: absolute; top: 14px; width: 8px; height: 8px;
  border-radius: 50%; background: var(--line); box-shadow: inset 0 1px 2px rgba(0,0,0,0.15);
}
.plate::before { left: 14px; } .plate::after { right: 14px; }
.plate-eyebrow { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--steel); }
.plate-head h3 { font-size: 1.9rem; text-transform: uppercase; margin: 4px 0 8px; }
.plate-tag { color: var(--ink-soft); margin-bottom: 20px; font-size: 0.95rem; }
.plate-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; padding-top: 20px; border-top: 1px dashed var(--line); }
.plate-cols.single { grid-template-columns: 1fr; }
.plate-cols h4 { font-family: var(--font-mono); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--navy); margin-bottom: 12px; }
.plate-cols li { font-size: 0.88rem; color: var(--ink-soft); padding-left: 16px; position: relative; margin-bottom: 9px; line-height: 1.4; }
.plate-cols li::before { content: ""; position: absolute; left: 0; top: 6px; width: 6px; height: 6px; background: var(--steel); border-radius: 1px; }

/* ---- Price box ---- */
.price-box { display: none; align-items: baseline; gap: 10px; margin-top: 20px; padding-top: 20px; border-top: 1px dashed var(--line); flex-wrap: wrap; }
.price-box.show { display: flex; }
.price-mrp { font-family: var(--font-mono); font-size: 1.25rem; color: var(--ink-soft); text-decoration: line-through; }
.price-discount { font-family: var(--font-display); font-size: 1.9rem; color: var(--red); font-weight: 700; }
.price-save { font-family: var(--font-mono); font-size: 0.72rem; background: #e9f7ee; color: #1e8a4c; padding: 4px 10px; border-radius: 999px; }

.plate-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 24px; padding-top: 20px; border-top: 1px dashed var(--line); flex-wrap: wrap; gap: 14px; }
.plate-foot span { font-family: var(--font-mono); font-size: 0.78rem; background: var(--bg); padding: 6px 14px; border-radius: 999px; color: var(--navy); }

/* ---- Tech strip ---- */
.tech-strip { margin-top: 20px; background: var(--navy); border-radius: 14px; padding: 32px; color: #fff; }
.tech-strip h4 { font-family: var(--font-mono); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--steel-light); margin-bottom: 20px; }
.tech-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.tech-grid div { display: flex; flex-direction: column; gap: 4px; }
.tech-grid span { font-size: 0.75rem; color: #9fa9b8; text-transform: uppercase; letter-spacing: 0.04em; }
.tech-grid strong { font-family: var(--font-display); font-size: 1.15rem; color: #fff; }
.tech-note { margin-top: 20px; font-size: 0.85rem; color: #9fa9b8; }

/* ---- Comparison / infographic banner (uncropped, constrained) ---- */
.infobanner { margin: 40px 0; border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-soft); border: 1px solid var(--line); background: var(--panel); text-align: center; }
.infobanner img { max-width: 100%; max-height: 480px; width: auto; height: auto; display: inline-block; margin: 0 auto; cursor: zoom-in; }
.infobanner-caption { padding: 14px 20px; background: var(--panel); font-size: 0.85rem; color: var(--ink-soft); text-align: center; }

/* ---- Small photo strip (extra lifestyle/catalog photos, normal size) ---- */
.photo-strip { display: flex; gap: 14px; flex-wrap: wrap; margin: 24px 0; justify-content: center; }
.photo-strip img { width: 160px; height: 160px; object-fit: cover; border-radius: 10px; box-shadow: var(--shadow-soft); border: 1px solid var(--line); cursor: zoom-in; transition: transform 0.15s ease; }
.photo-strip img:hover { transform: translateY(-3px); }

/* ---- Clickable model images (chimney grid, etc) ---- */
.clickable-img { cursor: zoom-in; }

/* ---- Lightbox ---- */
.lightbox-overlay {
  position: fixed; inset: 0; background: rgba(16,22,30,0.92); z-index: 1000;
  display: none; align-items: center; justify-content: center; padding: 30px;
}
.lightbox-overlay.open { display: flex; }
.lightbox-overlay img { max-width: 92vw; max-height: 88vh; border-radius: 8px; box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.lightbox-close {
  position: absolute; top: 20px; right: 24px; width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.12); color: #fff; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center; font-size: 1.4rem;
}
.lightbox-close:hover { background: rgba(255,255,255,0.22); }

/* ---- Simple grids (purifier, chimney) ---- */
.simple-grid { display: grid; gap: 24px; }
.simple-grid.two { grid-template-columns: 1fr 1fr; }
.simple-grid.three { grid-template-columns: repeat(3, 1fr); }
.simple-grid.four { grid-template-columns: repeat(4, 1fr); }
.simple-card { background: var(--panel); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow-soft); border: 1px solid var(--line); display: flex; flex-direction: column; }
.simple-card img { width: 100%; aspect-ratio: 4/5; object-fit: cover; background: var(--bg); border-radius: 8px; margin-bottom: 16px; }
.simple-card .gallery-main img { width: 100%; height: 100%; aspect-ratio: unset; object-fit: cover; margin-bottom: 0; border-radius: 0; }
.simple-card .gallery-thumbs img { width: 56px; height: 56px; aspect-ratio: unset; object-fit: cover; margin-bottom: 0; border-radius: 6px; }
.simple-card .gallery { margin-bottom: 16px; }
.simple-card.contain img { object-fit: contain; padding: 10px; aspect-ratio: 1/1; }
.simple-card.contain .gallery-main img { object-fit: contain; padding: 10px; aspect-ratio: unset; }
.simple-card.contain .gallery-thumbs img { object-fit: contain; padding: 4px; aspect-ratio: unset; }
.simple-card h3 { font-size: 1.25rem; text-transform: uppercase; margin-bottom: 4px; }
.simple-card h3 span { display: block; font-size: 0.92rem; color: var(--steel); text-transform: none; font-family: var(--font-body); font-weight: 600; }
.simple-card p { font-size: 0.88rem; margin-bottom: 14px; }
.mini-list { margin-bottom: 14px; flex-grow: 1; }
.mini-list li { font-size: 0.82rem; color: var(--ink-soft); padding-left: 14px; position: relative; margin-bottom: 6px; }
.mini-list li::before { content: ""; position: absolute; left: 0; top: 6px; width: 5px; height: 5px; background: var(--steel); border-radius: 1px; }
.mini-thumbs { display: flex; gap: 6px; margin: -8px 0 14px; }
.mini-thumbs img { width: 42px; height: 42px; object-fit: cover; border-radius: 6px; cursor: zoom-in; opacity: 0.75; border: 1px solid var(--line); }
.mini-thumbs img:hover { opacity: 1; }
.card-price { display: none; align-items: baseline; gap: 8px; margin-bottom: 14px; flex-wrap: wrap; }
.card-price.show { display: flex; }
.card-price .price-mrp { font-size: 1.02rem; }
.card-price .price-discount { font-size: 1.3rem; }
.panel-note { margin-top: 24px; font-size: 0.85rem; color: var(--ink-soft); text-align: center; font-style: italic; }

.service-card { display: grid; grid-template-columns: 0.9fr 1.1fr; background: var(--panel); border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-soft); border: 1px solid var(--line); }
.service-card img { width: 100%; height: 100%; object-fit: cover; }
.service-copy { padding: 40px; display: flex; flex-direction: column; justify-content: center; gap: 16px; }
.service-copy h2 { font-size: 1.8rem; text-transform: uppercase; }
.service-copy .btn { align-self: flex-start; margin-top: 6px; }

/* ============ SAFETY LIST ============ */
.safety-grid { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 50px; }
.safety-list li { padding: 14px 0 14px 28px; border-bottom: 1px solid var(--line); position: relative; font-size: 0.95rem; color: var(--ink-soft); }
.safety-list li strong { color: var(--navy); }
.safety-list li::before {
  content: "!"; position: absolute; left: 0; top: 12px; width: 18px; height: 18px;
  background: var(--red); color: #fff; font-family: var(--font-mono); font-size: 0.7rem; font-weight: 700;
  border-radius: 4px; display: flex; align-items: center; justify-content: center;
}
.safety-panel { background: var(--bg); border-radius: 14px; padding: 32px; height: fit-content; border: 1px solid var(--line); }
.safety-panel h4 { font-family: var(--font-mono); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--steel); margin-top: 18px; }
.safety-panel h4:first-child { margin-top: 0; }
.safety-time { font-family: var(--font-display); font-size: 1.4rem; margin: 6px 0 0; }
.safety-phone { font-family: var(--font-display); font-size: 1.8rem; color: var(--red); display: block; margin: 6px 0 4px; }
.safety-small { font-size: 0.82rem; }

/* ============ ABOUT PAGE ============ */
.founder-card { display: grid; grid-template-columns: 200px 1fr; gap: 40px; align-items: center; background: var(--panel); border-radius: 16px; padding: 36px; box-shadow: var(--shadow-soft); border: 1px solid var(--line); margin: 50px 0; }
.founder-card img { border-radius: 12px; box-shadow: var(--shadow-soft); width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.founder-name { font-size: 1.5rem; text-transform: uppercase; margin-bottom: 4px; }
.founder-title { font-family: var(--font-mono); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--steel); margin-bottom: 16px; display: block; }
.about-copy blockquote {
  margin: 24px 0; padding: 16px 22px; border-left: 3px solid var(--steel);
  background: var(--bg); border-radius: 0 8px 8px 0; font-style: italic; color: var(--navy); font-size: 1.02rem;
}
.about-stats { display: flex; gap: 36px; margin-top: 24px; flex-wrap: wrap; }
.about-stats strong { display: block; font-family: var(--font-display); font-size: 1.5rem; color: var(--red); }
.about-stats span { font-size: 0.78rem; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.04em; }
.badge-row { display: flex; gap: 20px; align-items: center; margin-top: 26px; flex-wrap: wrap; }
.badge-row img { height: 64px; width: auto; }

/* ============ CONTACT ============ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; padding-bottom: 50px; }
.contact-block { margin-bottom: 20px; }
.contact-label { font-family: var(--font-mono); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--steel); display: block; margin-bottom: 6px; }
.contact-block a { color: var(--red); font-weight: 600; }
.contact-cta { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }
.contact-form-wrap { background: var(--panel); border-radius: 14px; padding: 32px; height: fit-content; box-shadow: var(--shadow-soft); border: 1px solid var(--line); }
.enquiry-form { display: flex; flex-direction: column; gap: 14px; margin-top: 16px; }
.enquiry-form input, .enquiry-form select, .enquiry-form textarea {
  font-family: var(--font-body); font-size: 0.95rem; padding: 12px 14px; border-radius: 8px;
  border: 1.5px solid var(--line); background: var(--bg); color: var(--ink); resize: vertical;
}
.enquiry-form input:focus, .enquiry-form select:focus, .enquiry-form textarea:focus {
  outline: 2px solid var(--steel); outline-offset: 1px; background: #fff;
}
.map-wrap { line-height: 0; }

/* ============ FOOTER ============ */
.site-footer { background: var(--navy); color: #b8c0cc; padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-logo { height: 30px; margin-bottom: 14px; }
.footer-grid p { color: #8894a3; font-size: 0.88rem; }
.footer-grid h5 { font-family: var(--font-mono); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--steel-light); margin-bottom: 16px; }
.footer-grid > div { display: flex; flex-direction: column; gap: 10px; }
.footer-grid a { font-size: 0.88rem; color: #b8c0cc; }
.footer-grid a:hover { color: var(--steel-light); }
.footer-social { display: flex; gap: 10px; margin-top: 6px; }
.footer-social a {
  width: 34px; height: 34px; border-radius: 50%; background: var(--navy-2);
  display: flex; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,0.1);
}
.footer-social a:hover { background: var(--steel); }
.footer-bottom { text-align: center; padding: 22px 0; font-size: 0.8rem; color: #6b7684; }
.footer-bottom a { color: #8894a3; }

/* ============ FLOATING BUTTONS ============ */
.float-actions { position: fixed; bottom: 24px; right: 24px; display: flex; flex-direction: column; gap: 12px; z-index: 300; }
.float-btn {
  width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: #fff; box-shadow: var(--shadow-lift); transition: transform 0.15s ease; position: relative;
}
.float-btn:hover { transform: scale(1.08); }
.float-whatsapp { background: var(--whatsapp); }
.float-call { background: var(--red); }
.float-whatsapp::after {
  content: ""; position: absolute; width: 56px; height: 56px; border-radius: 50%;
  border: 2px solid var(--whatsapp); animation: pulse 2.2s infinite;
}
@keyframes pulse { 0% { transform: scale(1); opacity: 0.6; } 100% { transform: scale(1.6); opacity: 0; } }

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
  .intro-grid, .safety-grid, .contact-grid, .founder-card { grid-template-columns: 1fr; }
  .founder-card img { max-width: 220px; margin: 0 auto; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .simple-grid.four, .simple-grid.three { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .product-layout { grid-template-columns: 1fr; }
  .service-card { grid-template-columns: 1fr; }
  .service-card img { aspect-ratio: 16/9; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  .main-nav { display: none; }
  .header-call span { display: none; }
  .nav-toggle { display: flex; }
  .main-nav.open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; padding: 10px 24px 20px; gap: 2px;
    border-bottom: 1px solid var(--line); max-height: 80vh; overflow-y: auto;
  }
  .main-nav.open > a, .main-nav.open .nav-drop > button { width: 100%; justify-content: space-between; padding: 12px 8px; border-bottom: 1px solid var(--line); border-radius: 0; }
  .main-nav.open .nav-drop-menu {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: none; padding-left: 14px; display: none;
  }
  .main-nav.open .nav-drop.open .nav-drop-menu { display: block; }
  .home-hero-chips { gap: 18px; }
  .home-hero-media::before {
    background: linear-gradient(180deg, rgba(246,247,248,0.92) 0%, rgba(246,247,248,0.92) 55%, rgba(246,247,248,0.55) 100%);
  }
  .tech-grid { grid-template-columns: repeat(2, 1fr); }
  .simple-grid.two, .simple-grid.four, .simple-grid.three { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .gallery-arrow { width: 34px; height: 34px; }
}
