/* ============================================================
   PYROSEAL FIRE PROTECTION SYSTEMS L.L.C — main stylesheet
   Primary color: red  |  Mobile-first, responsive
   ============================================================ */

:root {
  --red: #d62828;
  --red-dark: #a31621;
  --red-darker: #7f1018;
  --dark: #14171c;
  --dark-2: #1e232b;
  --gray: #5c6470;
  --gray-light: #eef0f3;
  --white: #ffffff;
  --whatsapp: #25d366;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(20, 23, 28, 0.12);
  --shadow-lg: 0 18px 50px rgba(20, 23, 28, 0.22);
  --font-latin: "Inter", "Segoe UI", Arial, sans-serif;
  --font-arabic: "Cairo", "Segoe UI", Tahoma, sans-serif;
  --container: 1180px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-latin);
  color: var(--dark);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

html[lang="ar"] body { font-family: var(--font-arabic); }

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

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

ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 20px;
}

section { padding: 72px 0; }

.section-head { text-align: center; max-width: 720px; margin: 0 auto 48px; }

.section-head .kicker {
  display: inline-block;
  color: var(--red);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

html[lang="ar"] .section-head .kicker { letter-spacing: 0; }

.section-head h2 {
  font-size: clamp(1.7rem, 3.6vw, 2.5rem);
  line-height: 1.25;
  font-weight: 800;
}

.section-head p { color: var(--gray); margin-top: 14px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn-red { background: var(--red); color: var(--white); box-shadow: 0 8px 24px rgba(214, 40, 40, 0.35); }
.btn-red:hover { background: var(--red-dark); }

.btn-outline { border-color: var(--white); color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--dark); }

.btn svg { width: 20px; height: 20px; flex: none; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 900;
  background: rgba(20, 23, 28, 0.92);
  backdrop-filter: blur(10px);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled { background: rgba(20, 23, 28, 0.98); box-shadow: 0 6px 24px rgba(0,0,0,0.35); }

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

.logo { display: flex; align-items: center; gap: 10px; color: var(--white); font-weight: 800; }

.logo svg { width: 38px; height: 38px; flex: none; }

.logo .logo-img { width: 38px; height: 38px; object-fit: contain; flex: none; }

/* When the uploaded artwork already contains the company name, let it run wide
   and drop the typed lockup beside it. */
.logo.logo--full .logo-img { width: auto; height: 42px; max-width: 200px; }

.logo .logo-text { display: flex; flex-direction: column; line-height: 1.15; }

.logo .logo-name { font-size: 1.25rem; letter-spacing: 0.02em; }
.logo .logo-name span { color: var(--red); }
.logo .logo-tag { font-size: 0.62rem; font-weight: 600; color: #aeb6c2; letter-spacing: 0.18em; text-transform: uppercase; }
html[lang="ar"] .logo .logo-tag { letter-spacing: 0; font-size: 0.72rem; }

.main-nav { display: flex; align-items: center; gap: 26px; }

.main-nav a { color: #d7dbe1; font-weight: 600; font-size: 0.95rem; position: relative; padding: 6px 0; }

.main-nav a::after {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.25s ease;
}

.main-nav a:hover { color: var(--white); }
.main-nav a:hover::after { width: 100%; }

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid rgba(255,255,255,0.35);
  color: var(--white);
  /* Generous inline padding: the pill radius curves inward at the ends,
     so a smaller value lets the border crowd the text. */
  padding: 8px 26px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  white-space: nowrap;
  transition: background 0.2s ease, border-color 0.2s ease;
}

/* Raised specificity: plain `.lang-switch` loses to `.main-nav a`,
   which would zero out the inline padding and shrink-wrap the border. */
.main-nav a.lang-switch {
  padding: 8px 26px;
  color: var(--white);
  margin-inline-start: 6px;
}

.main-nav a.lang-switch::after { display: none; }

.lang-switch:hover { background: var(--red); border-color: var(--red); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
}

.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: "";
  display: block;
  width: 26px;
  height: 3px;
  border-radius: 3px;
  background: var(--white);
  position: relative;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle span::before { position: absolute; top: -8px; }
.nav-toggle span::after { position: absolute; top: 8px; }

body.nav-open .nav-toggle span { background: transparent; }
body.nav-open .nav-toggle span::before { transform: translateY(8px) rotate(45deg); }
body.nav-open .nav-toggle span::after { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 140px 0 90px;
  color: var(--white);
  background: var(--dark);
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(14,16,20,0.94) 0%, rgba(14,16,20,0.78) 45%, rgba(127,16,24,0.55) 100%);
  z-index: -1;
}

html[dir="rtl"] .hero::after {
  background: linear-gradient(-100deg, rgba(14,16,20,0.94) 0%, rgba(14,16,20,0.78) 45%, rgba(127,16,24,0.55) 100%);
}

.hero-content { max-width: 680px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(214, 40, 40, 0.16);
  border: 1px solid rgba(214, 40, 40, 0.55);
  color: #ffb3b3;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 22px;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.18;
  margin-bottom: 20px;
}

.hero h1 .accent { color: var(--red); }

.hero p.lead { font-size: clamp(1rem, 2vw, 1.2rem); color: #ccd2da; margin-bottom: 34px; max-width: 560px; }

.hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; }

.hero-trust {
  margin-top: 48px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 34px;
  color: #aeb6c2;
  font-size: 0.88rem;
  font-weight: 600;
}

.hero-trust li { display: flex; align-items: center; gap: 8px; }

.hero-trust svg { width: 18px; height: 18px; color: var(--red); flex: none; }

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}

.about-media { position: relative; }

.about-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 460px;
  object-fit: cover;
}

.about-media .about-card {
  position: absolute;
  bottom: -24px;
  inset-inline-end: -18px;
  background: var(--red);
  color: var(--white);
  padding: 22px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.about-card .num { display: block; font-size: 2rem; font-weight: 800; line-height: 1.1; }
.about-card .label { font-size: 0.82rem; font-weight: 600; opacity: 0.92; }

.about-text .kicker { color: var(--red); font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; font-size: 0.85rem; }
html[lang="ar"] .about-text .kicker { letter-spacing: 0; }

.about-text h2 { font-size: clamp(1.6rem, 3.4vw, 2.3rem); font-weight: 800; margin: 10px 0 18px; line-height: 1.25; }

.about-text p { color: var(--gray); margin-bottom: 16px; }

.about-points { margin: 22px 0 30px; display: grid; gap: 12px; }

.about-points li { display: flex; gap: 12px; align-items: flex-start; font-weight: 600; }

.about-points svg { width: 22px; height: 22px; color: var(--red); flex: none; margin-top: 2px; }

/* ---------- Services ---------- */
.services { background: var(--gray-light); }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.service-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.service-card .thumb { position: relative; height: 210px; overflow: hidden; }

.service-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }

.service-card:hover .thumb img { transform: scale(1.06); }

/* Anchored to the card, not to .thumb: the thumb clips its overflow so the
   image can zoom on hover, which used to cut the badge in half. 180px keeps it
   straddling the 210px thumb edge exactly as before. */
.service-card .icon {
  position: absolute;
  top: 180px;
  inset-inline-start: 24px;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--red);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(214,40,40,0.4);
}

.service-card .icon svg { width: 28px; height: 28px; }

.service-card .body { padding: 42px 24px 28px; flex: 1; display: flex; flex-direction: column; }

.service-card h3 { font-size: 1.18rem; font-weight: 800; margin-bottom: 10px; }

.service-card p { color: var(--gray); font-size: 0.95rem; flex: 1; }

.service-card .card-link {
  margin-top: 18px;
  color: var(--red);
  font-weight: 700;
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ---------- Why us ---------- */
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.feature {
  background: var(--white);
  border: 1px solid #e3e6eb;
  border-radius: var(--radius);
  padding: 30px 24px;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(214,40,40,0.35); }

.feature .f-icon {
  width: 62px;
  height: 62px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: rgba(214,40,40,0.1);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature .f-icon svg { width: 30px; height: 30px; }

.feature h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: 8px; }

.feature p { color: var(--gray); font-size: 0.9rem; }

/* ---------- Stats ---------- */
.stats {
  background: linear-gradient(115deg, var(--red-darker), var(--red));
  color: var(--white);
  padding: 56px 0;
}

.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }

.stat .num { font-size: clamp(2rem, 4vw, 2.9rem); font-weight: 800; line-height: 1.1; }
.stat .num span { font-size: 0.6em; }
.stat .label { font-weight: 600; opacity: 0.92; margin-top: 6px; font-size: 0.95rem; }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }

.gallery-grid a {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  height: 240px;
}

.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }

.gallery-grid a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,23,28,0.55), transparent 55%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-grid a:hover img { transform: scale(1.07); }
.gallery-grid a:hover::after { opacity: 1; }

/* ---------- Process ---------- */
.process { background: var(--dark); color: var(--white); }

.process .section-head h2 { color: var(--white); }
.process .section-head p { color: #aeb6c2; }

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

/* Connector line running behind the cards, visible in the gaps. */
.process-grid::before {
  content: "";
  position: absolute;
  top: 80px;
  inset-inline: 12%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(214,40,40,0.5) 10%, rgba(214,40,40,0.5) 90%, transparent);
}

.step {
  position: relative;
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 34px 22px 30px;
  text-align: center;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.step:hover { transform: translateY(-6px); border-color: rgba(214,40,40,0.5); }

.step-badge {
  position: relative;
  width: 92px;
  height: 92px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: rgba(214,40,40,0.12);
  border: 1.5px solid rgba(214,40,40,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
}

.step-badge svg { width: 36px; height: 36px; }

.step-num {
  position: absolute;
  top: -4px;
  inset-inline-end: -4px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(214,40,40,0.45);
}

.step h3 { font-size: 1.08rem; font-weight: 800; margin-bottom: 10px; }
.step p { color: #aeb6c2; font-size: 0.92rem; }

/* ---------- Quote form ---------- */
.quote { background: var(--gray-light); }

.quote-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 48px; align-items: start; }

.quote-info h2 { font-size: clamp(1.6rem, 3.4vw, 2.3rem); font-weight: 800; line-height: 1.25; margin: 10px 0 16px; }

.quote-info .kicker { color: var(--red); font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; font-size: 0.85rem; }
html[lang="ar"] .quote-info .kicker { letter-spacing: 0; }

.quote-info p { color: var(--gray); margin-bottom: 24px; }

.quote-contacts { display: grid; gap: 16px; }

.qc-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow);
  font-weight: 600;
}

.qc-item .qc-icon {
  width: 48px;
  height: 48px;
  flex: none;
  border-radius: 12px;
  background: rgba(214,40,40,0.1);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
}

.qc-item .qc-icon svg { width: 24px; height: 24px; }

.qc-item small { display: block; color: var(--gray); font-weight: 600; font-size: 0.78rem; }

.qc-item a { color: var(--dark); word-break: break-word; }
.qc-item a:hover { color: var(--red); }

.quote-form {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 36px 32px;
}

.quote-form h3 { font-size: 1.3rem; font-weight: 800; margin-bottom: 20px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.field { margin-bottom: 16px; }

.field label { display: block; font-weight: 700; font-size: 0.85rem; margin-bottom: 6px; }

.field input, .field select, .field textarea {
  width: 100%;
  border: 1.5px solid #dcdfe5;
  border-radius: 10px;
  padding: 13px 14px;
  font: inherit;
  color: var(--dark);
  background: #fafbfc;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(214,40,40,0.15);
  background: var(--white);
}

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

.quote-form .btn { width: 100%; }

.form-note { font-size: 0.8rem; color: var(--gray); margin-top: 12px; text-align: center; }

/* ---------- Contact / map ---------- */
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 420px;
}

.map-wrap iframe { width: 100%; height: 100%; border: 0; }

.contact-note { text-align: center; color: var(--gray); margin-top: 18px; font-weight: 600; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(115deg, var(--red-darker), var(--red));
  color: var(--white);
  text-align: center;
  padding: 64px 0;
}

.cta-band h2 { font-size: clamp(1.6rem, 3.4vw, 2.4rem); font-weight: 800; margin-bottom: 14px; }
.cta-band p { opacity: 0.92; max-width: 620px; margin: 0 auto 28px; }

.cta-band .btn { background: var(--white); color: var(--red-dark); }
.cta-band .btn:hover { background: var(--dark); color: var(--white); }

/* ---------- Footer ---------- */
.site-footer { background: var(--dark); color: #aeb6c2; padding: 64px 0 0; font-size: 0.93rem; }

.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 44px; }

.site-footer h4 { color: var(--white); font-size: 1rem; font-weight: 800; margin-bottom: 18px; }

.site-footer .logo { margin-bottom: 16px; }

.footer-links li { margin-bottom: 10px; }
.footer-links a:hover { color: var(--red); }

.footer-contact li { display: flex; gap: 10px; margin-bottom: 12px; align-items: flex-start; }
.footer-contact svg { width: 18px; height: 18px; color: var(--red); flex: none; margin-top: 4px; }
.footer-contact a:hover { color: var(--red); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
}

.footer-bottom a:hover { color: var(--red); }

/* ---------- Floating buttons ---------- */
.float-btns {
  position: fixed;
  bottom: 22px;
  inset-inline-end: 22px;
  z-index: 950;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.float-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 10px 26px rgba(0,0,0,0.3);
  transition: transform 0.2s ease;
  position: relative;
}

.float-btn:hover { transform: scale(1.1); }

.float-btn svg { width: 28px; height: 28px; }

.float-btn.wa { background: var(--whatsapp); }
.float-btn.call { background: var(--red); }

.float-btn.wa::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--whatsapp);
  opacity: 0.5;
  z-index: -1;
  animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.5; }
  80%, 100% { transform: scale(1.55); opacity: 0; }
}

/* ---------- Legal pages ---------- */
.legal-hero {
  background: var(--dark);
  color: var(--white);
  padding: 150px 0 60px;
  text-align: center;
}

.legal-hero h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; }

.legal-body { max-width: 820px; margin-inline: auto; }

.legal-body h2 { font-size: 1.3rem; font-weight: 800; margin: 34px 0 12px; }
.legal-body p, .legal-body li { color: var(--gray); margin-bottom: 12px; }
.legal-body ul { list-style: disc; padding-inline-start: 24px; }
.legal-body .updated { font-size: 0.85rem; color: var(--gray); font-style: italic; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-media .about-card { inset-inline-end: 12px; }
  .quote-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  section { padding: 56px 0; }

  .main-nav {
    position: fixed;
    top: 72px;
    inset-inline: 0;
    background: var(--dark);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 10px 24px 24px;
    transform: translateY(-130%);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  }

  body.nav-open .main-nav { transform: translateY(0); }

  .main-nav a { display: block; width: 100%; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }

  /* Keep the language switch a pill in the drawer instead of a full-width row. */
  .main-nav a.lang-switch {
    display: inline-flex;
    width: auto;
    padding: 10px 28px;
    margin: 16px 0 0;
    border: 1.5px solid rgba(255,255,255,0.35);
  }

  .nav-toggle { display: flex; }

  .hero { min-height: 640px; padding-top: 120px; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid a { height: 180px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .about-media img { height: 340px; }
}

@media (max-width: 520px) {
  .services-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid a { height: 210px; }
  .hero-ctas .btn { width: 100%; }
  .float-btns { bottom: 16px; inset-inline-end: 16px; }
  .float-btn { width: 52px; height: 52px; }
  .quote-form { padding: 28px 20px; }
}
