/* =========================================================
   FAVERICK SERVICES PVT LTD — Fire Safety Website
   Design tokens
   ========================================================= */
:root{
  --red:#D71A21;
  --red-dark:#9E1116;
  --red-glow:#FF4C3B;
  --ink:#15171b;
  --charcoal:#23262c;
  --charcoal-soft:#33373f;
  --paper:#ffffff;
  --fog:#f6f4f1;
  --fog-deep:#efece7;
  --line:#e6e2db;
  --muted:#6b6f76;
  --whatsapp:#25D366;
  --whatsapp-dark:#1ba851;

  --display: "Oswald", "Arial Narrow", sans-serif;
  --body: "Inter", "Segoe UI", sans-serif;

  --radius: 10px;
  --shadow-sm: 0 2px 10px rgba(21,23,27,.06);
  --shadow-md: 0 10px 30px rgba(21,23,27,.12);
  --shadow-red: 0 14px 34px rgba(215,26,33,.28);

  --container: 1220px;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:var(--body);
  color:var(--ink);
  background:var(--paper);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
button{ font-family:inherit; cursor:pointer; }
h1,h2,h3,h4{
  font-family:var(--display);
  text-transform:uppercase;
  letter-spacing:.01em;
  margin:0;
  line-height:1.08;
}
p{ margin:0; }
.container{
  max-width:var(--container);
  margin:0 auto;
  padding:0 24px;
}

@media (prefers-reduced-motion: reduce){
  *{ animation-duration:.001ms !important; animation-iteration-count:1 !important; transition-duration:.001ms !important; scroll-behavior:auto !important; }
}

/* -------- shared bits -------- */
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-family:var(--body);
  font-weight:700;
  font-size:12.5px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--red);
  background:rgba(215,26,33,.08);
  border:1px solid rgba(215,26,33,.22);
  padding:6px 14px 6px 10px;
  border-radius:999px;
}
.eyebrow .dot{
  width:7px;height:7px;border-radius:50%;
  background:var(--red);
  box-shadow:0 0 0 3px rgba(215,26,33,.18);
}
.section-head{
  max-width:640px;
  margin-bottom:44px;
}
.section-head h2{
  font-size:clamp(28px,4vw,42px);
  color:var(--ink);
  margin-top:14px;
}
.section-head p{
  margin-top:14px;
  color:var(--muted);
  font-size:16px;
  line-height:1.65;
}
.center{ text-align:center; margin-left:auto; margin-right:auto; }

.chevron{
  display:inline-flex;
  align-items:center;
  gap:6px;
}
.chevron .bars{
  display:inline-flex; gap:3px;
}
.chevron .bars span{
  width:6px;height:14px;
  background:var(--red);
  transform:skewX(-18deg);
}
.chevron .bars span:nth-child(2){ background:var(--ink); opacity:.85; }
.chevron .bars span:nth-child(3){ background:var(--red); opacity:.6; }

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  font-family:var(--body);
  font-weight:700;
  font-size:14.5px;
  letter-spacing:.03em;
  text-transform:uppercase;
  padding:15px 30px;
  border:none;
  border-radius:6px;
  clip-path:polygon(12px 0,100% 0,calc(100% - 12px) 100%,0 100%);
  transition:transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s ease, background .25s ease;
  white-space:nowrap;
}
.btn-primary{
  background:linear-gradient(100deg,var(--red),var(--red-glow) 130%);
  color:#fff;
  box-shadow:var(--shadow-red);
}
.btn-primary:hover{ transform:translateY(-3px); box-shadow:0 18px 40px rgba(215,26,33,.36); }
.btn-dark{
  background:var(--ink);
  color:#fff;
}
.btn-dark:hover{ transform:translateY(-3px); background:var(--charcoal-soft); }
.btn-outline{
  background:transparent;
  color:var(--ink);
  border:1.5px solid var(--line);
  clip-path:polygon(12px 0,100% 0,calc(100% - 12px) 100%,0 100%);
}
.btn-outline:hover{ border-color:var(--red); color:var(--red); }
.btn-block{ width:100%; }

/* =========================================================
   PRE-LOADER
   ========================================================= */
#preloader{
  position:fixed; inset:0; z-index:9999;
  background:var(--ink);
  display:flex; align-items:center; justify-content:center;
  transition:opacity .6s ease, visibility .6s ease;
}
#preloader.hide{ opacity:0; visibility:hidden; }
.loader-flame{
  width:56px; height:56px;
  position:relative;
}
.loader-flame svg{ width:100%; height:100%; animation:flick 1.1s ease-in-out infinite; transform-origin:50% 90%; }
@keyframes flick{
  0%,100%{ transform:scale(1) rotate(-2deg); }
  50%{ transform:scale(1.12) rotate(2deg); }
}

/* =========================================================
   TOP BAR + HEADER
   ========================================================= */
.topbar{
  background:var(--ink);
  color:#cfd1d6;
  font-size:13px;
}
.topbar .container{
  display:flex; align-items:center; justify-content:space-between;
  padding-top:8px; padding-bottom:8px;
  gap:16px;
}
.topbar-left{ display:flex; gap:22px; flex-wrap:wrap; }
.topbar-left span{ display:inline-flex; align-items:center; gap:7px; }
.topbar-left svg{ width:14px; height:14px; color:var(--red); flex:none; }
.topbar-right{ display:flex; gap:14px; }
.topbar-right a{ opacity:.8; transition:opacity .2s; }
.topbar-right a:hover{ opacity:1; color:var(--red); }

header.site-header{
  position:sticky; top:0; z-index:500;
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
  transition:box-shadow .3s ease;
}
header.site-header.scrolled{ box-shadow:0 6px 24px rgba(20,20,20,.08); }
.nav-wrap{
  display:flex; align-items:center; justify-content:space-between;
  padding:12px 0;
  gap:18px;
  flex-wrap:nowrap;
}
.brand{ display:flex; align-items:center; gap:12px; flex:none; min-width:0; }
.brand img{ height:52px; width:auto; flex:none; }
.brand-text{ line-height:1.15; white-space:nowrap; }
.brand-text b{
  display:block; font-family:var(--display); font-size:19px; letter-spacing:.02em;
}
.brand-text b span{ color:var(--red); }
.brand-text small{
  display:block; font-size:11px; letter-spacing:.09em; color:var(--muted); text-transform:uppercase;
}
nav.main-nav{ flex:1 1 auto; min-width:0; }
nav.main-nav ul{ display:flex; gap:22px; justify-content:center; flex-wrap:nowrap; }
nav.main-nav a{
  font-weight:600; font-size:14px; color:var(--ink);
  position:relative; padding:6px 0; white-space:nowrap;
}
nav.main-nav a::after{
  content:""; position:absolute; left:0; right:100%; bottom:0; height:2px; background:var(--red);
  transition:right .25s ease;
}
nav.main-nav a:hover::after{ right:0; }
.header-cta{ display:flex; align-items:center; gap:14px; flex:none; }
.header-cta .btn .short{ display:none; }
.header-call{
  display:flex; align-items:center; gap:10px;
  font-family:var(--display); font-size:16px; letter-spacing:.02em;
  white-space:nowrap; flex:none;
}
.header-call .icon-badge{
  width:38px;height:38px;border-radius:50%;
  background:var(--red); color:#fff;
  display:flex; align-items:center; justify-content:center;
  animation:pulseRing 2.2s ease-in-out infinite;
  flex:none;
}
.header-call .icon-badge svg{ width:17px; height:17px; }
.header-call small{ display:block; font-size:10.5px; color:var(--muted); font-family:var(--body); text-transform:uppercase; letter-spacing:.08em; }
@keyframes pulseRing{
  0%{ box-shadow:0 0 0 0 rgba(215,26,33,.45); }
  70%{ box-shadow:0 0 0 10px rgba(215,26,33,0); }
  100%{ box-shadow:0 0 0 0 rgba(215,26,33,0); }
}
.burger{ display:none; width:26px; height:20px; position:relative; z-index:950; background:none; border:none; }
.burger span{
  position:absolute; left:0; right:0; height:2.4px; background:var(--ink); border-radius:2px;
  transition:all .3s ease;
}
.burger span:nth-child(1){ top:0; }
.burger span:nth-child(2){ top:9px; }
.burger span:nth-child(3){ top:18px; }
.burger.open span:nth-child(1){ transform:translateY(9px) rotate(45deg); }
.burger.open span:nth-child(2){ opacity:0; }
.burger.open span:nth-child(3){ transform:translateY(-9px) rotate(-45deg); }

/* =========================================================
   HERO
   ========================================================= */
.hero{
  position:relative;
  background:
    radial-gradient(1200px 600px at 85% -10%, rgba(215,26,33,.10), transparent 60%),
    linear-gradient(180deg,var(--fog) 0%, #ffffff 70%);
  overflow:hidden;
  padding:64px 0 84px;
}
.hero::before{
  content:"";
  position:absolute; inset:0;
  background-image:
    repeating-linear-gradient(135deg, rgba(21,23,27,.035) 0 2px, transparent 2px 26px);
  pointer-events:none;
}
.embers{ position:absolute; inset:0; pointer-events:none; overflow:hidden; }
.embers span{
  position:absolute; bottom:-10%;
  width:6px; height:6px; border-radius:50%;
  background:radial-gradient(circle,#ffb37a, var(--red) 70%);
  opacity:.55;
  animation:rise linear infinite;
}
@keyframes rise{
  0%{ transform:translateY(0) translateX(0); opacity:0; }
  10%{ opacity:.6; }
  100%{ transform:translateY(-620px) translateX(30px); opacity:0; }
}

.hero .container{
  position:relative; z-index:2;
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:52px;
  align-items:start;
}
.hero-left{ padding-top:18px; }
.hero-badges{ display:flex; gap:10px; flex-wrap:wrap; margin-top:22px; }
.hero-badges li{
  display:flex; align-items:center; gap:8px;
  font-size:13px; font-weight:600;
  background:#fff; border:1px solid var(--line);
  padding:8px 13px; border-radius:999px;
  box-shadow:var(--shadow-sm);
}
.hero-badges li svg{ width:15px; height:15px; color:var(--red); }

.hero h1{
  font-size:clamp(34px,4.6vw,58px);
  margin-top:16px;
  color:var(--ink);
}
.hero h1 .stroke{
  -webkit-text-stroke:1.5px var(--ink);
  color:transparent;
}
.hero h1 .accent{
  color:var(--red);
  position:relative;
  display:inline-block;
}
.hero-lead{
  margin-top:20px;
  font-size:17px; line-height:1.7;
  color:var(--muted);
  max-width:520px;
}
.hero-ctas{ display:flex; gap:14px; margin-top:32px; flex-wrap:wrap; }
.trust-row{
  display:flex; align-items:center; gap:20px;
  margin-top:44px; padding-top:28px;
  border-top:1px solid var(--line);
  flex-wrap:wrap;
}
.trust-stat{ }
.trust-stat b{ font-family:var(--display); font-size:30px; color:var(--ink); display:block; }
.trust-stat span{ font-size:12.5px; color:var(--muted); text-transform:uppercase; letter-spacing:.06em; }
.trust-sep{ width:1px; height:38px; background:var(--line); }

/* ---- FORM CARD ---- */
.quote-card{
  background:#fff;
  border-radius:16px;
  box-shadow:var(--shadow-md);
  border:1px solid var(--line);
  padding:28px 26px 26px;
  position:relative;
  animation:floatCard 6s ease-in-out infinite;
}
@keyframes floatCard{
  0%,100%{ transform:translateY(0); }
  50%{ transform:translateY(-8px); }
}
.quote-card::before{
  content:"";
  position:absolute; top:-10px; right:26px;
  width:74px; height:20px;
  background:var(--red);
  clip-path:polygon(0 0,100% 0,88% 100%,12% 100%);
}
.quote-card-head{ margin-bottom:18px; }
.quote-card-head .eyebrow{ margin-bottom:10px; }
.quote-card-head h3{ font-size:22px; color:var(--ink); }
.quote-card-head p{ font-size:13.5px; color:var(--muted); margin-top:6px; }

.field{ margin-bottom:14px; }
.field label{
  display:block; font-size:12px; font-weight:700; letter-spacing:.04em;
  text-transform:uppercase; color:var(--charcoal-soft); margin-bottom:6px;
}
.field input,
.field select{
  width:100%;
  padding:12px 13px;
  border:1.5px solid var(--line);
  border-radius:7px;
  background:var(--fog);
  font-family:var(--body);
  font-size:14.5px;
  color:var(--ink);
  transition:border-color .2s ease, background .2s ease, box-shadow .2s ease;
  appearance:none;
}
.field select{
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%236b6f76' stroke-width='2.4'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat:no-repeat;
  background-position:right 13px center;
  padding-right:34px;
}
.field input:focus,
.field select:focus{
  outline:none; border-color:var(--red); background:#fff;
  box-shadow:0 0 0 4px rgba(215,26,33,.10);
}
.field-row{ display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.field-other{
  max-height:0; opacity:0; overflow:hidden;
  margin-bottom:0; margin-top:-4px;
  transition:max-height .35s cubic-bezier(.2,.8,.2,1), opacity .3s ease, margin .3s ease;
}
.field-other.show{ max-height:110px; opacity:1; margin-bottom:14px; margin-top:0; }
.quote-note{
  display:flex; align-items:center; gap:8px;
  font-size:12px; color:var(--muted); margin-top:14px;
}
.quote-note svg{ width:14px; height:14px; color:var(--whatsapp); flex:none; }

/* =========================================================
   MARQUEE STRIP
   ========================================================= */
.marquee-strip{
  background:var(--ink);
  overflow:hidden;
  padding:13px 0;
  border-top:3px solid var(--red);
  border-bottom:3px solid var(--red);
}
.marquee-track{
  display:flex; width:max-content;
  animation:scrollX 28s linear infinite;
}
.marquee-track span{
  color:#fff; font-family:var(--display); letter-spacing:.05em;
  font-size:14px; text-transform:uppercase;
  padding:0 26px; white-space:nowrap;
  display:flex; align-items:center; gap:10px;
}
.marquee-track span::before{ content:"■"; color:var(--red); font-size:8px; }
@keyframes scrollX{
  from{ transform:translateX(0); }
  to{ transform:translateX(-50%); }
}

/* =========================================================
   GENERIC SECTION SPACING
   ========================================================= */
.section{ padding:88px 0; }
.section.fog{ background:var(--fog); }
.section-top-row{
  display:flex; justify-content:space-between; align-items:flex-end; gap:20px; flex-wrap:wrap;
  margin-bottom:44px;
}

/* =========================================================
   SERVICES
   ========================================================= */
.services-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
}
.service-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:14px;
  padding:30px 24px;
  position:relative;
  overflow:hidden;
  transition:transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s ease, border-color .3s ease;
}
.service-card:hover{
  transform:translateY(-7px);
  box-shadow:var(--shadow-md);
  border-color:transparent;
}
.service-card .num{
  position:absolute; top:14px; right:18px;
  font-family:var(--display); font-size:34px; color:var(--fog-deep);
  transition:color .3s ease;
}
.service-card:hover .num{ color:rgba(215,26,33,.14); }
.service-icon{
  width:56px; height:56px; border-radius:12px;
  background:linear-gradient(135deg,var(--red),var(--red-glow));
  display:flex; align-items:center; justify-content:center;
  margin-bottom:18px;
  box-shadow:0 8px 18px rgba(215,26,33,.28);
}
.service-icon svg{ width:27px; height:27px; color:#fff; }
.service-card h4{ font-size:17px; color:var(--ink); text-transform:none; letter-spacing:0; margin-bottom:8px; }
.service-card p{ font-size:13.8px; color:var(--muted); line-height:1.6; }
.service-card.tag-new{ border-color:rgba(215,26,33,.35); }
.tag-pill{
  position:absolute; top:14px; left:14px;
  background:var(--ink); color:#fff; font-size:10px; font-weight:700;
  padding:4px 9px; border-radius:999px; letter-spacing:.06em; text-transform:uppercase;
}

/* =========================================================
   PRODUCT SLIDER
   ========================================================= */
.slider-wrap{ position:relative; }
.slider-track{
  display:flex; gap:22px;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  padding-bottom:14px;
  scrollbar-width:none;
}
.slider-track::-webkit-scrollbar{ display:none; }
.product-card{
  flex:0 0 270px;
  scroll-snap-align:start;
  background:#fff;
  border:1px solid var(--line);
  border-radius:14px;
  overflow:hidden;
  transition:box-shadow .3s ease, transform .3s ease;
}
.product-card:hover{ box-shadow:var(--shadow-md); transform:translateY(-5px); }
.product-media{
  height:190px;
  background:linear-gradient(160deg,var(--fog),#fff);
  display:flex; align-items:center; justify-content:center;
  position:relative;
  border-bottom:1px solid var(--line);
}
.product-media svg{ width:88px; height:88px; }
.product-media .tag{
  position:absolute; top:12px; left:12px;
  background:var(--red); color:#fff; font-size:10.5px; font-weight:700;
  padding:4px 10px; border-radius:5px; text-transform:uppercase; letter-spacing:.04em;
}
.product-body{ padding:18px 18px 20px; }
.product-body h4{ font-size:15.5px; color:var(--ink); text-transform:none; letter-spacing:0; }
.product-body p{ font-size:13px; color:var(--muted); margin-top:6px; line-height:1.55; }
.product-body a{
  display:inline-flex; align-items:center; gap:6px; margin-top:12px;
  font-size:12.5px; font-weight:700; color:var(--red); text-transform:uppercase; letter-spacing:.04em;
}
.slider-controls{ display:flex; gap:10px; justify-content:flex-end; margin-bottom:22px; }
.slider-btn{
  width:42px; height:42px; border-radius:50%;
  background:#fff; border:1.5px solid var(--line);
  display:flex; align-items:center; justify-content:center;
  transition:all .2s ease;
}
.slider-btn:hover{ background:var(--ink); border-color:var(--ink); }
.slider-btn:hover svg{ stroke:#fff; }
.slider-btn svg{ width:18px; height:18px; stroke:var(--ink); transition:stroke .2s ease; }

/* =========================================================
   WHY / FACILITIES
   ========================================================= */
.why-wrap{
  display:grid; grid-template-columns:.9fr 1.1fr; gap:60px; align-items:center;
}
.why-visual{
  position:relative;
  border-radius:18px;
  background:linear-gradient(150deg,var(--ink),var(--charcoal));
  padding:36px;
  overflow:hidden;
  min-height:420px;
  display:flex; align-items:center; justify-content:center;
}
.why-visual::after{
  content:"";
  position:absolute; inset:0;
  background:
    repeating-linear-gradient(45deg, rgba(215,26,33,.10) 0 10px, transparent 10px 20px);
  opacity:.5;
}
.why-visual svg{ position:relative; z-index:1; width:78%; }
.why-badge{
  position:absolute; z-index:2; bottom:28px; left:28px;
  background:#fff; border-radius:12px; padding:16px 18px;
  box-shadow:var(--shadow-md);
  display:flex; align-items:center; gap:12px;
}
.why-badge .n{ font-family:var(--display); font-size:26px; color:var(--red); }
.why-badge span{ font-size:12px; color:var(--muted); display:block; line-height:1.3; }

.facility-list{ display:grid; grid-template-columns:1fr 1fr; gap:20px; }
.facility-item{ display:flex; gap:16px; }
.facility-item .fi-icon{
  width:46px; height:46px; border-radius:10px; flex:none;
  background:rgba(215,26,33,.08); border:1px solid rgba(215,26,33,.2);
  display:flex; align-items:center; justify-content:center;
}
.facility-item .fi-icon svg{ width:22px; height:22px; color:var(--red); }
.facility-item h4{ font-size:15.5px; color:var(--ink); text-transform:none; letter-spacing:0; margin-bottom:4px; }
.facility-item p{ font-size:13.3px; color:var(--muted); line-height:1.55; }

/* =========================================================
   PROCESS
   ========================================================= */
.process-strip{
  display:grid; grid-template-columns:repeat(4,1fr); gap:0;
  border:1px solid var(--line); border-radius:16px; overflow:hidden; background:#fff;
}
.process-step{
  padding:32px 26px; position:relative;
  border-right:1px solid var(--line);
}
.process-step:last-child{ border-right:none; }
.process-step .pn{
  font-family:var(--display); font-size:44px; color:var(--fog-deep); line-height:1;
}
.process-step h4{ font-size:15.5px; margin-top:12px; text-transform:none; letter-spacing:0; color:var(--ink); }
.process-step p{ font-size:13px; color:var(--muted); margin-top:8px; line-height:1.55; }
.process-step::after{
  content:""; position:absolute; right:-11px; top:50%; transform:translateY(-50%);
  width:22px; height:22px; background:#fff; border:1px solid var(--line); border-radius:50%;
  display:none;
}

/* =========================================================
   VALUES / TRUST BAND
   ========================================================= */
.values-band{
  background:linear-gradient(120deg,var(--ink),var(--charcoal));
  color:#fff; position:relative; overflow:hidden;
}
.values-band::before{
  content:""; position:absolute; inset:0;
  background-image:repeating-linear-gradient(135deg, rgba(215,26,33,.10) 0 2px, transparent 2px 30px);
}
.values-grid{
  position:relative; z-index:1;
  display:grid; grid-template-columns:repeat(4,1fr); gap:26px;
}
.value-card{
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.12);
  border-radius:14px; padding:26px 22px;
  backdrop-filter:blur(4px);
}
.value-card svg{ width:26px; height:26px; color:var(--red); margin-bottom:14px; }
.value-card h4{ font-size:15px; text-transform:none; letter-spacing:0; margin-bottom:6px; }
.value-card p{ font-size:12.8px; color:#c7c9cf; line-height:1.55; }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testi-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.testi-card{
  background:#fff; border:1px solid var(--line); border-radius:14px; padding:26px;
}
.testi-stars{ display:flex; gap:3px; margin-bottom:14px; }
.testi-stars svg{ width:16px; height:16px; color:#f5b400; }
.testi-card p{ font-size:14px; color:var(--charcoal-soft); line-height:1.7; }
.testi-who{ display:flex; align-items:center; gap:12px; margin-top:18px; }
.testi-avatar{
  width:42px; height:42px; border-radius:50%;
  background:linear-gradient(135deg,var(--red),var(--red-dark));
  display:flex; align-items:center; justify-content:center;
  color:#fff; font-family:var(--display); font-size:16px;
}
.testi-who b{ display:block; font-size:13.5px; }
.testi-who span{ font-size:12px; color:var(--muted); }

/* =========================================================
   CONTACT / CTA
   ========================================================= */
.contact-wrap{
  display:grid; grid-template-columns:1fr 1fr; gap:0;
  border-radius:18px; overflow:hidden; box-shadow:var(--shadow-md);
}
.contact-info{
  background:linear-gradient(150deg,var(--ink),var(--charcoal));
  color:#fff; padding:52px 44px; position:relative; overflow:hidden;
}
.contact-info::before{
  content:""; position:absolute; inset:0;
  background:repeating-linear-gradient(135deg, rgba(215,26,33,.10) 0 2px, transparent 2px 30px);
}
.contact-info > *{ position:relative; z-index:1; }
.contact-info h3{ font-size:26px; margin-bottom:14px; }
.contact-info p{ color:#c7c9cf; font-size:14.5px; line-height:1.7; max-width:400px; }
.contact-list{ margin-top:30px; display:flex; flex-direction:column; gap:20px; }
.contact-list li{ display:flex; gap:14px; align-items:flex-start; }
.contact-list .ci-icon{
  width:42px; height:42px; border-radius:10px; flex:none;
  background:rgba(215,26,33,.18); border:1px solid rgba(215,26,33,.35);
  display:flex; align-items:center; justify-content:center;
}
.contact-list .ci-icon svg{ width:19px; height:19px; color:#ff7264; }
.contact-list b{ display:block; font-size:14px; }
.contact-list span, .contact-list a{ font-size:13.3px; color:#c7c9cf; }
.contact-map{
  background:var(--fog); min-height:100%;
  display:flex; align-items:center; justify-content:center;
  padding:0;
}
.contact-map iframe{ width:100%; height:100%; min-height:420px; border:0; filter:grayscale(.15); }

/* =========================================================
   FOOTER
   ========================================================= */
footer.site-footer{
  background:var(--ink); color:#c7c9cf;
  padding-top:70px;
  position:relative;
}
.hazard-rule{
  height:8px;
  background:repeating-linear-gradient(-45deg,var(--red) 0 14px, var(--ink) 14px 28px);
}
.footer-grid{
  display:grid; grid-template-columns:1.3fr 1fr 1fr 1.1fr; gap:40px;
  padding-bottom:46px; border-bottom:1px solid rgba(255,255,255,.1);
}
.footer-brand{ display:flex; gap:12px; align-items:center; margin-bottom:16px; }
.footer-brand img{ height:44px; }
.footer-brand b{ font-family:var(--display); color:#fff; font-size:17px; display:block; }
.footer-brand small{ color:var(--muted); font-size:11px; letter-spacing:.06em; text-transform:uppercase; }
.footer-col p{ font-size:13.3px; line-height:1.7; color:#a7a9b0; }
.footer-social{ display:flex; gap:10px; margin-top:18px; }
.footer-social a{
  width:36px; height:36px; border-radius:50%;
  background:rgba(255,255,255,.08); display:flex; align-items:center; justify-content:center;
  transition:background .2s ease, transform .2s ease;
}
.footer-social a:hover{ background:var(--red); transform:translateY(-3px); }
.footer-social svg{ width:16px; height:16px; color:#fff; }
.footer-col h5{
  color:#fff; font-family:var(--display); font-size:14.5px; letter-spacing:.04em; margin-bottom:18px;
}
.footer-col ul li{ margin-bottom:11px; }
.footer-col a{ font-size:13.5px; color:#a7a9b0; transition:color .2s ease, padding-left .2s ease; }
.footer-col a:hover{ color:#fff; padding-left:4px; }
.footer-bottom{
  display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:10px;
  padding:22px 0; font-size:12.5px; color:#8b8d94;
}
.footer-bottom a{ color:#8b8d94; }
.footer-bottom a:hover{ color:#fff; }

/* =========================================================
   FLOATING ACTION BUTTONS
   ========================================================= */
.fab-stack{
  position:fixed; right:22px; bottom:100px; z-index:600;
  display:flex; flex-direction:column; gap:14px; align-items:flex-end;
}
.fab{
  width:58px; height:58px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 10px 26px rgba(0,0,0,.25);
  position:relative;
  transition:transform .25s cubic-bezier(.2,.8,.2,1);
}
.fab:hover{ transform:scale(1.08); }
.fab svg{ width:26px; height:26px; color:#fff; }
.fab-call{ background:linear-gradient(135deg,var(--red),var(--red-dark)); }
.fab-whatsapp{ background:linear-gradient(135deg,var(--whatsapp),var(--whatsapp-dark)); }
.fab-ring{
  position:absolute; inset:-6px; border-radius:50%;
  border:2px solid currentColor;
  animation:ringPulse 2s ease-out infinite;
  opacity:0;
}
.fab-call .fab-ring{ color:var(--red); }
.fab-whatsapp .fab-ring{ color:var(--whatsapp); animation-delay:.4s; }
@keyframes ringPulse{
  0%{ transform:scale(.85); opacity:.55; }
  100%{ transform:scale(1.45); opacity:0; }
}
.fab-tip{
  position:absolute; right:70px; top:50%; transform:translateY(-50%);
  background:var(--ink); color:#fff; font-size:12.5px; font-weight:600;
  padding:7px 12px; border-radius:6px; white-space:nowrap;
  opacity:0; pointer-events:none; transition:opacity .2s ease, right .2s ease;
}
.fab:hover .fab-tip{ opacity:1; right:76px; }

/* scroll-to-top */
.to-top{
  position:fixed; right:22px; bottom:24px; z-index:600;
  width:42px; height:42px; border-radius:50%;
  background:#fff; border:1.5px solid var(--line);
  display:flex; align-items:center; justify-content:center;
  box-shadow:var(--shadow-sm);
  opacity:0; visibility:hidden; transform:translateY(10px);
  transition:all .3s ease;
}
.to-top.show{ opacity:1; visibility:visible; transform:translateY(0); }
.to-top svg{ width:18px; height:18px; color:var(--ink); }

/* =========================================================
   REVEAL ON SCROLL
   ========================================================= */
.reveal{ opacity:0; transform:translateY(28px); transition:opacity .7s ease, transform .7s ease; }
.reveal.in{ opacity:1; transform:translateY(0); }
.reveal-stagger.in > *{ }

/* =========================================================
   SUCCESS MODAL
   ========================================================= */
.modal-overlay{
  position:fixed; inset:0; z-index:2000;
  background:rgba(21,23,27,.55);
  backdrop-filter:blur(4px);
  display:flex; align-items:center; justify-content:center;
  padding:20px;
  opacity:0; visibility:hidden;
  transition:opacity .3s ease, visibility .3s ease;
}
.modal-overlay.show{ opacity:1; visibility:visible; }
.modal-box{
  background:#fff; border-radius:18px;
  padding:40px 36px 34px;
  max-width:400px; width:100%;
  text-align:center;
  position:relative;
  box-shadow:0 30px 70px rgba(0,0,0,.3);
  transform:scale(.85) translateY(20px);
  opacity:0;
  transition:transform .35s cubic-bezier(.2,.9,.25,1.3), opacity .3s ease;
}
.modal-overlay.show .modal-box{ transform:scale(1) translateY(0); opacity:1; }
.modal-close{
  position:absolute; top:16px; right:16px;
  width:32px; height:32px; border-radius:50%;
  background:var(--fog); border:1px solid var(--line);
  display:flex; align-items:center; justify-content:center;
  transition:background .2s ease;
}
.modal-close:hover{ background:var(--line); }
.modal-close svg{ width:15px; height:15px; color:var(--ink); }
.modal-check{ width:76px; height:76px; margin:0 auto 20px; }
.modal-check svg{ width:100%; height:100%; }
.modal-check-circle{
  stroke-dasharray:151; stroke-dashoffset:151;
  animation:drawCircle .6s ease forwards;
}
.modal-check-tick{
  stroke-dasharray:36; stroke-dashoffset:36;
  animation:drawTick .4s .5s ease forwards;
}
@keyframes drawCircle{ to{ stroke-dashoffset:0; } }
@keyframes drawTick{ to{ stroke-dashoffset:0; } }
.modal-box h3{
  font-size:24px; color:var(--ink); text-transform:none; letter-spacing:0;
  margin-bottom:10px;
}
.modal-box p{
  font-size:14.5px; color:var(--muted); line-height:1.65; margin-bottom:26px;
}
.field-error{ border-color:var(--red) !important; background:#fff5f4 !important; }
.btn[disabled]{ opacity:.65; pointer-events:none; }
.btn-spinner{
  width:16px; height:16px; border-radius:50%;
  border:2.5px solid rgba(255,255,255,.4); border-top-color:#fff;
  animation:spin .7s linear infinite;
  display:inline-block;
}
@keyframes spin{ to{ transform:rotate(360deg); } }

/* =========================================================
   ADMIN — LEADS TABLE
   ========================================================= */
.leads-table{ width:100%; border-collapse:collapse; font-size:13.5px; background:#fff; }
.leads-table th{
  background:var(--ink); color:#fff; text-align:left;
  padding:13px 16px; font-family:var(--display); font-weight:500;
  letter-spacing:.03em; text-transform:uppercase; font-size:12px;
  white-space:nowrap;
}
.leads-table td{
  padding:12px 16px; border-bottom:1px solid var(--line); color:var(--charcoal-soft);
  white-space:nowrap;
}
.leads-table tr:last-child td{ border-bottom:none; }
.leads-table tr:hover td{ background:var(--fog); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width:1240px){
  nav.main-nav{
    position:fixed; top:0; right:0; height:100vh; width:min(320px,80vw);
    background:#fff; z-index:900;
    box-shadow:-10px 0 30px rgba(0,0,0,.15);
    transform:translateX(100%); transition:transform .35s ease;
    padding:100px 30px 30px;
    overflow-y:auto;
  }
  nav.main-nav.open{ transform:translateX(0); }
  nav.main-nav ul{ flex-direction:column; gap:22px; }
  .burger{ display:block; }
  .header-call small{ display:none; }

  .nav-backdrop{
    display:block; position:fixed; inset:0; z-index:850;
    background:rgba(15,15,15,.5);
    opacity:0; visibility:hidden;
    transition:opacity .3s ease, visibility .3s ease;
  }
  .nav-backdrop.show{ opacity:1; visibility:visible; }
}

.nav-backdrop{ display:none; }
body.nav-locked{ overflow:hidden; }

@media (max-width:1080px){
  .hero .container{ grid-template-columns:1fr; }
  .services-grid{ grid-template-columns:repeat(2,1fr); }
  .why-wrap{ grid-template-columns:1fr; }
  .why-visual{ min-height:300px; }
  .facility-list{ grid-template-columns:1fr; }
  .process-strip{ grid-template-columns:repeat(2,1fr); }
  .process-step{ border-bottom:1px solid var(--line); }
  .values-grid{ grid-template-columns:repeat(2,1fr); }
  .testi-grid{ grid-template-columns:1fr 1fr; }
  .footer-grid{ grid-template-columns:1fr 1fr; }
  .contact-wrap{ grid-template-columns:1fr; }
  .contact-map iframe{ min-height:320px; }
}

@media (max-width:860px){
  .topbar-left span:nth-child(3){ display:none; }
  .brand-text small{ display:none; }
  .testi-grid{ grid-template-columns:1fr; }
}

@media (max-width:640px){
  .section{ padding:64px 0; }
  .services-grid{ grid-template-columns:1fr; }
  .field-row{ grid-template-columns:1fr; }
  .values-grid{ grid-template-columns:1fr; }
  .footer-grid{ grid-template-columns:1fr; gap:34px; }
  .process-strip{ grid-template-columns:1fr; }
  .trust-row{ gap:14px; }
  .trust-sep{ display:none; }
  .fab-stack{ right:14px; bottom:88px; }
  .fab{ width:52px; height:52px; }
  .to-top{ right:14px; }
  .quote-card{ padding:22px 18px 20px; }
  .header-cta .btn .long{ display:none; }
  .header-cta .btn .short{ display:inline-flex; }
}
