/* ============================================================
   GIZER RESTAURANT TRAP CLEANING — styles
   Brand: navy #011422 · orange #f36a08 · white · WhatsApp green
   Designed for readability first: big type, high contrast,
   large buttons, minimal decoration.
   ============================================================ */

:root {
  --navy: #011422;
  --navy-soft: #0b2536;
  --orange: #f36a08;
  --orange-dark: #b34c00;
  --green: #25d366;
  --green-dark: #128c46;
  --paper: #ffffff;
  --paper-alt: #f4f7f9;
  --line: #d8e0e6;
  --text: #011422;
  --text-soft: #33475a;
  --radius: 12px;
  --shadow: 0 2px 10px rgba(1, 20, 34, 0.10);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--orange-dark); }

/* Accessibility */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--navy);
  color: #fff;
  padding: 12px 20px;
  z-index: 200;
}
.skip-link:focus { left: 0; }

a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
}

.container {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 60px;
  padding: 14px 30px;
  border-radius: var(--radius);
  border: 0;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  text-align: center;
  line-height: 1.25;
}
.btn svg { flex: 0 0 auto; }

.btn-wa {
  background: var(--green);
  color: var(--navy);
  box-shadow: var(--shadow);
}
.btn-wa:hover { background: #1fc25b; }

.btn-call {
  background: var(--navy);
  color: #fff;
}
.btn-call:hover { background: var(--navy-soft); }

/* Secondary call button on the dark hero: white outline so it stays visible */
.hero .btn-call {
  background: transparent;
  color: #fff;
  border: 3px solid rgba(255, 255, 255, 0.85);
}
.hero .btn-call:hover { background: rgba(255, 255, 255, 0.12); }

.btn-call-light {
  background: #fff;
  color: var(--navy);
  border: 3px solid var(--navy);
}
.btn-call-light:hover { background: var(--paper-alt); }

.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  background: var(--navy);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 4px solid var(--orange);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #fff;
  flex-shrink: 0;
}
.brand img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #000;
}
.brand-name {
  font-weight: 800;
  font-size: 21px;
  letter-spacing: 0.5px;
  line-height: 1.1;
}
.brand-name small {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  color: #f9b26b;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.main-nav {
  display: flex;
  gap: 26px;
  margin-left: auto;
}
.main-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  padding: 8px 2px;
  white-space: nowrap;
}
.main-nav a:hover { color: #f9b26b; }

.header-cta {
  margin-left: auto;
  min-height: 48px;
  padding: 8px 18px;
  font-size: 17px;
}
.main-nav + .header-cta { margin-left: 0; }

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  white-space: nowrap;
}
.lang-switch a {
  color: #fff;
  text-decoration: none;
  padding: 8px 6px;
  border-radius: 8px;
}
.lang-switch a:hover { color: #f9b26b; }
.lang-switch .active {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(160deg, var(--navy) 0%, #06283e 70%, #0a3550 100%);
  color: #fff;
  padding: 56px 0 64px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 40px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.12;
  font-weight: 800;
  margin-bottom: 18px;
}
.hero h1 .accent { color: var(--orange); }
.hero-sub {
  font-size: clamp(19px, 2.2vw, 23px);
  color: #d9e4ec;
  margin-bottom: 30px;
  max-width: 34em;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 22px;
}
.hero-trust {
  font-size: 17px;
  font-weight: 600;
  color: #b8cbd8;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-trust::before {
  content: "";
  width: 26px;
  height: 4px;
  background: var(--orange);
  border-radius: 2px;
}
.hero-logo {
  width: min(300px, 60vw);
  margin: 0 auto;
  border-radius: 50%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.45);
}

/* ---------- Sections ---------- */
.section { padding: 64px 0; }
.section-alt { background: var(--paper-alt); }
.section-navy { background: var(--navy); color: #fff; }

.section h2 {
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.15;
  font-weight: 800;
  margin-bottom: 14px;
}
.section-lead {
  font-size: 20px;
  color: var(--text-soft);
  max-width: 38em;
  margin-bottom: 36px;
}
.section-navy .section-lead { color: #c8d7e1; }
.center { text-align: center; }
.center .section-lead { margin-left: auto; margin-right: auto; }

.section-cta { margin-top: 38px; }

/* ---------- Cards ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
}
.card .icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: rgba(243, 106, 8, 0.12);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
}
.card h3 {
  font-size: 23px;
  font-weight: 700;
  margin-bottom: 8px;
}
.card p { color: var(--text-soft); font-size: 18px; }

/* ---------- Job photos (service cards + work gallery) ---------- */
.card-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 18px;
}
.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.work-item {
  margin: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.work-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.work-item figcaption {
  font-size: 18px;
  font-weight: 600;
  padding: 14px 16px;
}

/* ---------- How it works ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
  counter-reset: step;
}
.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
  position: relative;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 16px;
}
.step h3 { font-size: 22px; margin-bottom: 6px; }
.step p { color: var(--text-soft); }

/* ---------- Why Gizer checklist ---------- */
.check-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px 30px;
  max-width: 760px;
  margin: 0 auto;
}
.check-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 21px;
  font-weight: 600;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 20px;
}
.check-item .tick {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--green);
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
}

/* ---------- Service area ---------- */
.boroughs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 26px 0 34px;
  padding: 0;
  list-style: none;
}
.boroughs li {
  background: #fff;
  color: var(--navy);
  border: 2px solid var(--orange);
  border-radius: 999px;
  padding: 12px 24px;
  font-size: 20px;
  font-weight: 700;
}
.zip-check {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 560px;
  margin: 0 auto;
}
.zip-check input {
  flex: 1 1 200px;
  min-height: 60px;
  font-size: 20px;
  padding: 10px 18px;
  border: 2px solid var(--navy);
  border-radius: var(--radius);
}

/* ---------- Quote form ---------- */
.quote-box {
  max-width: 620px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 34px 28px;
}
.field { margin-bottom: 22px; }
.field label {
  display: block;
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 8px;
}
.field input, .field select {
  width: 100%;
  min-height: 60px;
  font-size: 19px;
  padding: 10px 16px;
  border: 2px solid var(--navy);
  border-radius: var(--radius);
  background: #fff;
  color: var(--text);
}
.field .hint {
  font-size: 16px;
  color: var(--text-soft);
  margin-top: 6px;
}
.quote-note {
  text-align: center;
  font-size: 17px;
  color: var(--text-soft);
  margin-top: 16px;
}

/* ---------- FAQ ---------- */
.faq { max-width: 760px; margin: 0 auto; }
.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 14px;
  box-shadow: var(--shadow);
}
.faq summary {
  cursor: pointer;
  font-size: 21px;
  font-weight: 700;
  padding: 20px 24px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 30px;
  font-weight: 700;
  color: var(--orange);
  flex: 0 0 auto;
}
.faq details[open] summary::after { content: "–"; }
.faq .answer {
  padding: 0 24px 22px;
  font-size: 19px;
  color: var(--text-soft);
}

/* ---------- Final CTA ---------- */
.final-cta { text-align: center; }
.final-cta .hero-ctas { justify-content: center; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy);
  color: #c8d7e1;
  padding: 46px 0 120px; /* bottom padding clears the sticky mobile bar */
  font-size: 17px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}
.site-footer h3 {
  color: #fff;
  font-size: 19px;
  margin-bottom: 12px;
}
.site-footer a { color: #f9b26b; text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 20px;
  margin-bottom: 10px;
}
.footer-brand img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #000;
}
.footer-links { list-style: none; }
.footer-links li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-links li > svg { flex: 0 0 auto; color: #f9b26b; }
.footer-bottom {
  border-top: 1px solid #123246;
  padding-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 26px;
  justify-content: space-between;
  font-size: 16px;
}

/* ---------- Sticky mobile CTA bar ---------- */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 110;
  display: none;
  gap: 10px;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(1, 20, 34, 0.97);
  border-top: 3px solid var(--orange);
}
.sticky-cta .btn {
  min-height: 56px;
  font-size: 19px;
  padding: 10px 12px;
  border-radius: 10px;
}
.sticky-cta .btn-wa { flex: 1.4; }
.sticky-cta .btn-call { flex: 1; background: #fff; color: var(--navy); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .main-nav { display: none; }
  .hero-grid { grid-template-columns: 1fr; gap: 24px; }
  .hero-logo { order: -1; width: min(150px, 38vw); }
  .hero { padding: 34px 0 48px; text-align: center; }
  .hero-ctas { justify-content: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-trust { justify-content: center; }
}

@media (max-width: 768px) {
  .sticky-cta { display: flex; }
  body { padding-bottom: 84px; }
  .section { padding: 48px 0; }
}

@media (max-width: 620px) {
  .header-inner { gap: 10px; }
  .brand-name small { display: none; }
  .lang-switch { font-size: 14px; }
  .header-cta { padding: 8px 12px; font-size: 15px; min-height: 44px; }
}

@media (max-width: 480px) {
  body { font-size: 17px; }
  .brand img { width: 46px; height: 46px; }
  /* The logo mark already carries the GIZER wordmark — drop the text to fit */
  .brand-name { display: none; }
  .lang-switch { font-size: 14px; margin-left: auto; }
  .lang-switch a { padding: 8px 2px; }
  /* Icon-only WhatsApp button in the tight header; full CTAs live in hero + sticky bar */
  .header-cta .cta-label { display: none; }
  .header-cta { padding: 10px 12px; }
  .hero h1 { font-size: 36px; }
  .btn { width: 100%; }
  .zip-check .btn, .sticky-cta .btn { width: auto; }
  .quote-box { padding: 26px 18px; }
}

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