:root {
  --red: #d00000;
  --red-dark: #a90000;
  --red-soft: #fff0f0;
  --black: #101010;
  --charcoal: #202020;
  --ink: #242424;
  --gray: #6b6b6b;
  --muted: #8b8b8b;
  --soft: #f6f6f6;
  --line: #e7e7e7;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.13);
  --shadow-soft: 0 16px 45px rgba(0, 0, 0, 0.08);
  --radius-lg: 30px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Cairo", "Tajawal", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.8;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font-family: inherit;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  right: 12px;
  transform: translateY(-150%);
  background: var(--black);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 10px;
  z-index: 9999;
  transition: 0.25s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.top-strip {
  background: var(--black);
  color: var(--white);
  font-size: 0.88rem;
}

.strip-inner {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.strip-inner span,
.strip-links,
.strip-links a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.strip-links {
  gap: 18px;
  color: rgba(255, 255, 255, 0.82);
}

.strip-inner i {
  color: var(--red);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.99);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.09);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand-logo {
  width: 185px;
  height: 70px;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.08));
}

.main-nav {
  flex: 1;
}

.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  padding: 10px 13px;
  border-radius: 999px;
  font-weight: 800;
  color: #252525;
  font-size: 0.94rem;
  transition: 0.22s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--red);
  background: rgba(208, 0, 0, 0.08);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 14px;
  background: var(--black);
  color: var(--white);
  font-size: 1.22rem;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 11px 21px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

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

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(208, 0, 0, 0.22);
}

.btn-primary:hover {
  background: var(--red-dark);
}

.btn-outline {
  background: var(--white);
  border-color: rgba(0, 0, 0, 0.14);
  color: var(--black);
}

.btn-outline:hover {
  border-color: var(--black);
  box-shadow: var(--shadow-soft);
}

.btn-white {
  background: var(--white);
  color: var(--red);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.15);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 70px 0 38px;
  min-height: calc(100vh - 128px);
  background:
    radial-gradient(circle at 86% 20%, rgba(208, 0, 0, 0.12), transparent 34%),
    linear-gradient(135deg, #ffffff 0%, #ffffff 46%, #f6f6f6 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset-inline-start: -7vw;
  bottom: -120px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(208, 0, 0, 0.08);
}

.hero-decor {
  position: absolute;
  pointer-events: none;
  border: 1px solid rgba(208, 0, 0, 0.13);
}

.decor-one {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  top: 90px;
  left: 8vw;
}

.decor-two {
  width: 130px;
  height: 130px;
  border-radius: 28px;
  transform: rotate(15deg);
  right: 5vw;
  bottom: 180px;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 48px;
  align-items: center;
}

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

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--red);
  background: var(--red-soft);
  border: 1px solid rgba(208, 0, 0, 0.11);
  padding: 7px 13px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 0.9rem;
  margin-bottom: 18px;
}

.section-kicker.light,
.eyebrow.light {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
}

.hero h1,
.section-header h2,
.section-copy h2,
.solutions-copy h2,
.quote-copy h2,
.contact-info h2 {
  margin: 0;
  font-weight: 900;
  line-height: 1.13;
  letter-spacing: -0.05em;
  color: var(--black);
}

.hero h1 {
  font-size: clamp(2.6rem, 5.4vw, 5.2rem);
  max-width: 720px;
}

.hero p,
.section-header p,
.section-copy p,
.solutions-copy p,
.quote-copy p,
.contact-info p {
  margin: 18px 0 0;
  color: var(--gray);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 34px;
}

.hero-points div {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px;
  min-height: 112px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.04);
}

.hero-points strong {
  display: block;
  color: var(--red);
  font-size: 1.1rem;
  font-weight: 900;
}

.hero-points span {
  display: block;
  color: #343434;
  font-weight: 800;
  line-height: 1.55;
  margin-top: 6px;
  font-size: 0.88rem;
}

.hero-visual {
  position: relative;
}

.hero-image-card {
  position: relative;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 540px;
  background: var(--black);
  isolation: isolate;
}

.hero-image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.03), rgba(0, 0, 0, 0.34)),
    linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.16) 100%);
  z-index: 1;
}

.hero-image-card img {
  width: 100%;
  height: 540px;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--black);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.16);
  font-weight: 900;
  backdrop-filter: blur(10px);
}

.hero-badge i {
  color: var(--red);
}

.badge-top {
  top: 22px;
  right: 22px;
}

.badge-bottom {
  bottom: 22px;
  left: 22px;
}

.trust-bar {
  position: relative;
  z-index: 3;
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--black);
  color: var(--white);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.trust-bar div {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px;
  font-weight: 900;
  text-align: center;
  border-inline-start: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-bar div:first-child {
  border-inline-start: 0;
}

.trust-bar i {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: var(--red);
  color: var(--white);
  flex: 0 0 auto;
}

.section {
  padding: 96px 0;
}

.section-header {
  max-width: 780px;
  margin: 0 auto 46px;
  text-align: center;
}

.section-header h2,
.section-copy h2,
.solutions-copy h2,
.quote-copy h2,
.contact-info h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
}

.split-grid {
  display: grid;
  grid-template-columns: 0.96fr 1.04fr;
  gap: 48px;
  align-items: center;
}

.about {
  background: var(--white);
}

.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 520px;
}

.about-image img {
  width: 100%;
  height: 540px;
  object-fit: cover;
}

.image-caption {
  position: absolute;
  right: 24px;
  left: 24px;
  bottom: 24px;
  background: rgba(16, 16, 16, 0.88);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 22px;
  padding: 18px;
  backdrop-filter: blur(10px);
}

.image-caption strong,
.image-caption span {
  display: block;
}

.image-caption strong {
  font-size: 1.3rem;
  font-weight: 900;
}

.image-caption span {
  color: rgba(255, 255, 255, 0.78);
  margin-top: 4px;
}

.feature-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.feature-list div {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 16px;
  font-weight: 800;
}

.feature-list i {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--red);
  flex: 0 0 auto;
}

.services {
  background: var(--soft);
}

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

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 304px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
  transition: 0.25s ease;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.04);
}

.service-card::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0;
  width: 5px;
  height: 100%;
  background: var(--red);
  opacity: 0;
  transition: 0.25s ease;
}

.service-card::after {
  content: "";
  position: absolute;
  left: -70px;
  top: -70px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: rgba(208, 0, 0, 0.06);
}

.service-card:hover,
.product-card:hover,
.project-card:hover,
.process-card:hover,
.sector-card:hover {
  transform: translateY(-7px);
}

.service-card:hover {
  border-color: rgba(208, 0, 0, 0.22);
  box-shadow: var(--shadow-soft);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  position: relative;
  z-index: 1;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(208, 0, 0, 0.08);
  color: var(--red);
  font-size: 1.55rem;
  margin-bottom: 20px;
}

.service-card h3,
.product-card h3,
.project-body h3,
.process-card h3 {
  margin: 0;
  line-height: 1.35;
  color: var(--black);
}

.service-card h3 {
  font-size: 1.25rem;
}

.service-card p {
  color: var(--gray);
  margin: 12px 0 18px;
}

.service-card a,
.project-body a {
  color: var(--red);
  font-weight: 900;
}

.solutions {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}

.solutions::before {
  content: "";
  position: absolute;
  inset-inline-start: -160px;
  top: -180px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(208, 0, 0, 0.18);
}

.solutions-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 34px;
  align-items: center;
  margin-bottom: 34px;
}

.solutions-copy {
  background: var(--red);
  border-radius: var(--radius-lg);
  padding: 38px;
  min-height: 460px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.solutions-copy h2,
.quote-copy h2 {
  color: var(--white);
}

.solutions-copy p,
.quote-copy p {
  color: rgba(255, 255, 255, 0.83);
  margin-bottom: 24px;
}

.solutions-visual {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.26);
  min-height: 460px;
}

.solutions-visual img {
  width: 100%;
  height: 460px;
  object-fit: cover;
}

.products-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.product-card {
  background: var(--white);
  color: var(--black);
  border-radius: 22px;
  min-height: 170px;
  padding: 22px;
  transition: 0.25s ease;
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.12);
}

.product-card i {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: var(--red);
  background: rgba(208, 0, 0, 0.08);
  font-size: 1.32rem;
  margin-bottom: 16px;
}

.product-card h3 {
  font-size: 1.03rem;
}

.product-card p {
  margin: 5px 0 0;
  color: var(--gray);
  font-weight: 800;
  direction: ltr;
  text-align: right;
}

.sectors {
  background: var(--soft);
}

.sectors-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.sector-card {
  min-height: 130px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  font-weight: 900;
  text-align: center;
  transition: 0.25s ease;
}

.sector-card i {
  color: var(--red);
  font-size: 1.8rem;
  transition: 0.25s ease;
}

.sector-card:hover {
  background: var(--black);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}

.sector-card:hover i {
  transform: scale(1.08);
}

.process {
  background: var(--white);
}

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

.process-card {
  position: relative;
  min-height: 230px;
  background: linear-gradient(180deg, #ffffff, #fafafa);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
  transition: 0.25s ease;
  overflow: hidden;
}

.process-card::after {
  content: "";
  position: absolute;
  inset-inline-end: -36px;
  bottom: -36px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(208, 0, 0, 0.07);
}

.process-card span {
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 17px;
  background: var(--red);
  color: var(--white);
  font-weight: 900;
  margin-bottom: 18px;
}

.process-card h3 {
  font-size: 1.15rem;
}

.process-card p {
  color: var(--gray);
  margin: 10px 0 0;
}

.projects {
  background: var(--soft);
}

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

.project-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.06);
  transition: 0.25s ease;
}

.project-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.project-body {
  padding: 24px;
}

.project-body span {
  display: inline-flex;
  border-radius: 999px;
  padding: 5px 13px;
  color: var(--red);
  background: var(--red-soft);
  font-weight: 900;
  font-size: 0.82rem;
}

.project-body h3 {
  font-size: 1.22rem;
  margin-top: 14px;
}

.project-body p {
  color: var(--gray);
  margin: 10px 0 16px;
}

.quote-cta {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(208, 0, 0, 0.94), rgba(16, 16, 16, 0.94)),
    url("assets/hero-fire-pump-room.webp") center/cover;
  color: var(--white);
  padding: 96px 0;
}

.quote-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 34px;
  align-items: center;
}

.quote-contact {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.quote-contact a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}

.quote-form {
  background: rgba(255, 255, 255, 0.97);
  color: var(--black);
  padding: 28px;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.form-group {
  margin-bottom: 14px;
}

.form-group label {
  display: block;
  margin-bottom: 7px;
  color: #333;
  font-weight: 900;
  font-size: 0.92rem;
}

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid #dddddd;
  border-radius: 14px;
  background: var(--white);
  padding: 11px 13px;
  font-size: 0.98rem;
  outline: none;
  transition: 0.2s ease;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(208, 0, 0, 0.09);
}

.form-submit {
  width: 100%;
  border: 0;
}

.form-success {
  margin: 12px 0 0;
  text-align: center;
  font-weight: 900;
}

.contact {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
}

.contact-cards {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
}

.contact-card i {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--white);
  background: var(--red);
  flex: 0 0 auto;
}

.contact-card strong,
.contact-card span,
.contact-card a {
  display: block;
}

.contact-card span,
.contact-card a {
  color: var(--gray);
  font-weight: 800;
}

.inline-map-link {
  margin-top: 7px;
  color: var(--red) !important;
  font-weight: 900 !important;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.map-card {
  min-height: 500px;
  border-radius: var(--radius-lg);
  background: var(--white);
  color: var(--black);
  display: grid;
  grid-template-rows: 1fr auto;
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid var(--line);
}

.map-frame {
  position: relative;
  min-height: 330px;
  background:
    linear-gradient(135deg, rgba(16, 16, 16, 0.12), rgba(208, 0, 0, 0.1)),
    url("assets/fire-protection-products.webp") center/cover;
}

.map-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.94) contrast(1.02);
}

.map-info {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.97), rgba(248, 248, 248, 0.98));
  border-top: 1px solid var(--line);
}

.map-info img {
  width: 92px;
  height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.12));
}

.map-info h3 {
  margin: 0 0 4px;
  font-size: 1.25rem;
}

.map-info p {
  margin: 0;
  color: var(--gray);
  font-weight: 800;
  line-height: 1.8;
}

.map-btn {
  min-width: 132px;
  justify-content: center;
  padding-inline: 18px;
}

.footer {
  background: #0f0f0f;
  color: var(--white);
  padding-top: 70px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, 1fr);
  gap: 34px;
}

.footer-brand img {
  width: 220px;
  max-height: 150px;
  object-fit: contain;
  filter: drop-shadow(0 10px 24px rgba(255, 255, 255, 0.05));
}

.footer-brand p,
.footer-col a {
  color: rgba(255, 255, 255, 0.72);
}

.footer-brand p {
  margin: 16px 0 20px;
  max-width: 360px;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  transition: 0.22s ease;
}

.social-links a:hover {
  background: var(--red);
  transform: translateY(-2px);
}

.footer-col h3 {
  margin: 0 0 16px;
  font-size: 1.1rem;
}

.footer-col a {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-weight: 700;
  transition: 0.22s ease;
}

.footer-col a:hover {
  color: var(--white);
  transform: translateX(-4px);
}

.footer-bottom {
  margin-top: 54px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.62);
  text-align: center;
}

.footer-bottom p {
  margin: 0;
}

.floating-whatsapp {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 999;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25d366;
  color: var(--white);
  font-size: 1.75rem;
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.34);
  transition: 0.22s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-4px) scale(1.03);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .brand-logo {
    width: 155px;
  }

  .nav-links a {
    padding-inline: 10px;
    font-size: 0.88rem;
  }

  .hero-grid,
  .split-grid,
  .solutions-grid,
  .quote-grid,
  .contact-grid {
    gap: 28px;
  }

  .products-grid,
  .sectors-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 980px) {
  .top-strip {
    display: none;
  }

  .header-inner {
    min-height: 78px;
  }

  .brand-logo {
    width: 150px;
    height: 62px;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .header-quote {
    display: none;
  }

  .nav-links {
    position: fixed;
    top: 78px;
    right: 16px;
    left: 16px;
    display: grid;
    gap: 6px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: 0.22s ease;
  }

  .nav-links.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-links a {
    justify-content: center;
    padding: 13px;
    border-radius: 14px;
  }

  .hero {
    padding-top: 46px;
  }

  .hero-grid,
  .split-grid,
  .solutions-grid,
  .quote-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    max-width: 100%;
    text-align: center;
  }

  .eyebrow,
  .section-kicker {
    margin-inline: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-points,
  .trust-bar,
  .services-grid,
  .project-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-image-card,
  .hero-image-card img,
  .about-image,
  .about-image img,
  .solutions-visual,
  .solutions-visual img,
  .map-card {
    min-height: auto;
    height: auto;
  }

  .hero-image-card img,
  .about-image img,
  .solutions-visual img {
    height: 430px;
  }

  .section-copy,
  .solutions-copy,
  .quote-copy,
  .contact-info {
    text-align: center;
  }

  .feature-list div,
  .contact-card {
    text-align: right;
  }

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

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

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .brand-logo {
    width: 132px;
    height: 56px;
  }

  .hero {
    padding: 34px 0 26px;
  }

  .hero h1 {
    font-size: clamp(2.15rem, 12vw, 3.2rem);
  }

  .hero p,
  .section-header p,
  .section-copy p,
  .solutions-copy p,
  .quote-copy p,
  .contact-info p {
    font-size: 0.98rem;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-points,
  .trust-bar,
  .services-grid,
  .products-grid,
  .sectors-grid,
  .process-grid,
  .project-grid,
  .form-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-bar div {
    justify-content: flex-start;
    border-inline-start: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .trust-bar div:first-child {
    border-top: 0;
  }

  .hero-image-card img,
  .about-image img,
  .solutions-visual img,
  .project-card img {
    height: 300px;
  }

  .badge-top,
  .badge-bottom {
    right: 14px;
    left: 14px;
    justify-content: center;
  }

  .section {
    padding: 68px 0;
  }

  .solutions-copy,
  .quote-form {
    padding: 22px;
  }

  .floating-whatsapp {
    left: 16px;
    bottom: 16px;
    width: 54px;
    height: 54px;
  }
}

@media (max-width: 760px) {
  .map-info {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .map-info img {
    margin: 0 auto;
  }

  .map-btn {
    width: 100%;
  }
}


/* SEO Content & FAQ Sections */
.seo-local {
  background:
    radial-gradient(circle at 18% 20%, rgba(208, 0, 0, 0.08), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
}

.seo-local-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: stretch;
}

.seo-local-copy,
.seo-keyword-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow-soft);
}

.seo-local-copy h2 {
  margin: 12px 0 18px;
  color: var(--black);
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  line-height: 1.35;
}

.seo-local-copy p {
  color: var(--gray);
  margin: 0 0 14px;
}

.seo-keyword-card {
  background: var(--black);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.seo-keyword-card::before {
  content: "";
  position: absolute;
  inset-inline-end: -80px;
  top: -80px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(208, 0, 0, 0.28);
}

.seo-keyword-card h3 {
  margin: 0 0 18px;
  font-size: 1.35rem;
  position: relative;
}

.seo-keyword-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 11px;
  position: relative;
}

.seo-keyword-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.86);
}

.seo-keyword-card li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--red);
  color: var(--white);
  font-size: 0.75rem;
  flex: 0 0 auto;
}

.faq {
  background: var(--white);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  padding: 22px 24px;
  font-weight: 900;
  color: var(--black);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--red-soft);
  color: var(--red);
  font-size: 1.2rem;
  flex: 0 0 auto;
}

.faq-item[open] summary::after {
  content: "−";
  background: var(--red);
  color: var(--white);
}

.faq-item p {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--gray);
}

@media (max-width: 900px) {
  .seo-local-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .seo-local-copy,
  .seo-keyword-card {
    padding: 24px;
  }

  .faq-item summary {
    padding: 18px;
  }

  .faq-item p {
    padding: 0 18px 18px;
  }
}


/* === Fire Control v2.2.0: professional mobile and visual refinement === */
.site-header {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.045);
}

.header-inner {
  min-height: 82px;
}

.brand-logo {
  width: 172px;
  height: 66px;
}

.hero {
  min-height: auto;
  padding: 64px 0 36px;
  background:
    radial-gradient(circle at 86% 18%, rgba(208, 0, 0, 0.12), transparent 30%),
    radial-gradient(circle at 16% 78%, rgba(208, 0, 0, 0.07), transparent 32%),
    linear-gradient(135deg, #ffffff 0%, #fff7f7 52%, #f5f5f5 100%);
}

.hero h1 {
  letter-spacing: -0.035em;
  max-width: 640px;
}

.hero p {
  max-width: 640px;
}

.hero-image-card {
  border: 1px solid rgba(255, 255, 255, 0.65);
}

.hero-image-card img {
  transform: scale(1.01);
}

.btn-primary {
  background: linear-gradient(135deg, #e00000, #b90000);
}

.btn-outline {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
}

.section-header h2,
.section-copy h2,
.solutions-copy h2,
.quote-copy h2,
.contact-info h2,
.seo-local-copy h2 {
  letter-spacing: -0.028em;
}

.service-card,
.product-card,
.sector-card,
.project-card,
.process-card,
.faq-item,
.contact-card {
  backface-visibility: hidden;
}

@media (max-width: 980px) {
  .header-inner {
    min-height: 72px;
  }

  .brand-logo {
    width: 132px;
    height: 54px;
  }

  .menu-toggle {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    font-size: 1.12rem;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.16);
  }

  .nav-links {
    top: 76px;
    max-height: calc(100vh - 92px);
    overflow-y: auto;
  }

  .hero {
    padding: 24px 0 26px;
  }

  .hero-grid {
    gap: 22px;
  }

  .hero-visual {
    order: -1;
  }

  .hero-image-card {
    border-radius: 24px;
    min-height: 245px;
  }

  .hero-image-card img {
    height: 245px;
  }

  .hero-badge {
    padding: 8px 12px;
    font-size: 0.78rem;
  }

  .badge-top {
    top: 12px;
    right: 12px;
  }

  .badge-bottom {
    bottom: 12px;
    left: 12px;
  }

  .hero-content {
    text-align: center;
  }

  .hero h1 {
    font-size: clamp(2.05rem, 8.4vw, 3.05rem);
    line-height: 1.22;
    letter-spacing: -0.025em;
    margin-inline: auto;
  }

  .hero p {
    margin-inline: auto;
    max-width: 620px;
    line-height: 2;
  }

  .hero-actions {
    max-width: 520px;
    margin-inline: auto;
  }
}

@media (max-width: 640px) {
  html {
    scroll-padding-top: 76px;
  }

  .container {
    width: min(100% - 28px, var(--container));
  }

  .header-inner {
    min-height: 66px;
  }

  .brand-logo {
    width: 112px;
    height: 48px;
    object-fit: contain;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
    border-radius: 13px;
    font-size: 1.05rem;
  }

  .nav-links {
    top: 70px;
    right: 14px;
    left: 14px;
    border-radius: 20px;
    padding: 14px;
  }

  .hero {
    padding: 18px 0 24px;
    background:
      radial-gradient(circle at 50% 0%, rgba(208, 0, 0, 0.09), transparent 38%),
      linear-gradient(180deg, #ffffff 0%, #fff6f6 54%, #ffffff 100%);
  }

  .decor-one,
  .decor-two {
    display: none;
  }

  .hero-image-card {
    border-radius: 22px;
    min-height: 218px;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.14);
  }

  .hero-image-card img {
    height: 218px;
  }

  .hero-badge {
    gap: 7px;
    padding: 7px 10px;
    font-size: 0.72rem;
    border-radius: 999px;
  }

  .badge-top {
    top: 10px;
    right: 10px;
    left: auto;
  }

  .badge-bottom {
    bottom: 10px;
    left: 10px;
    right: auto;
  }

  .eyebrow,
  .section-kicker {
    font-size: 0.78rem;
    padding: 6px 11px;
    margin-bottom: 12px;
  }

  .hero h1 {
    font-size: clamp(2rem, 8.6vw, 2.65rem);
    line-height: 1.25;
    max-width: 340px;
  }

  .hero p {
    font-size: 0.95rem;
    line-height: 1.95;
    margin-top: 14px;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 22px;
  }

  .btn {
    min-height: 52px;
    border-radius: 16px;
    font-size: 0.98rem;
  }

  .hero-points {
    margin-top: 18px;
    gap: 8px;
  }

  .hero-points div {
    min-height: auto;
    padding: 12px;
    border-radius: 16px;
  }

  .hero-points strong {
    font-size: 0.95rem;
  }

  .hero-points span {
    font-size: 0.83rem;
  }

  .trust-bar {
    margin-top: 22px;
    border-radius: 22px;
  }

  .trust-bar div {
    min-height: 66px;
    padding: 13px 16px;
    font-size: 0.9rem;
  }

  .trust-bar i {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .section {
    padding: 58px 0;
  }

  .section-header {
    margin-bottom: 28px;
  }

  .section-header h2,
  .section-copy h2,
  .solutions-copy h2,
  .quote-copy h2,
  .contact-info h2,
  .seo-local-copy h2 {
    font-size: clamp(1.65rem, 7vw, 2.25rem);
    line-height: 1.35;
  }

  .service-card,
  .product-card,
  .process-card,
  .project-body,
  .contact-card,
  .seo-local-copy,
  .seo-keyword-card,
  .quote-form {
    border-radius: 20px;
  }

  .solutions-copy {
    min-height: auto;
    border-radius: 22px;
  }

  .solutions-visual {
    border-radius: 22px;
  }

  .floating-whatsapp {
    left: 14px;
    bottom: 14px;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
}

@media (max-width: 420px) {
  .hero h1 {
    max-width: 320px;
    font-size: clamp(1.85rem, 8.2vw, 2.35rem);
  }

  .hero-image-card img {
    height: 198px;
  }

  .hero-image-card {
    min-height: 198px;
  }

  .badge-bottom {
    display: none;
  }
}


/* === Fire Control v2.7.0: Articles hub and editorial pages === */
.blog-preview { background: #fff; }
.blog-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.blog-card { background:#fff; border:1px solid var(--line); border-radius:24px; overflow:hidden; box-shadow:0 14px 42px rgba(0,0,0,.06); transition:.25s ease; }
.blog-card:hover { transform:translateY(-7px); box-shadow:var(--shadow-soft); }
.blog-card-image { display:block; overflow:hidden; }
.blog-card-image img { width:100%; height:230px; object-fit:cover; transition:transform .4s ease; }
.blog-card:hover .blog-card-image img { transform:scale(1.035); }
.blog-card-body { padding:24px; }
.blog-card-body > span, .article-category { display:inline-flex; border-radius:999px; padding:5px 13px; color:var(--red); background:var(--red-soft); font-weight:900; font-size:.82rem; }
.blog-card h3 { margin:14px 0 10px; font-size:1.22rem; line-height:1.55; color:var(--black); }
.blog-card p { margin:0 0 16px; color:var(--gray); }
.read-more { color:var(--red); font-weight:900; }
.blog-all { display:flex; justify-content:center; margin-top:34px; }

.article-page { background:#fff; }
.article-hero { padding:54px 0 42px; background:radial-gradient(circle at 85% 20%,rgba(208,0,0,.11),transparent 31%),linear-gradient(135deg,#fff 0%,#fff6f6 55%,#f4f4f4 100%); }
.breadcrumbs { display:flex; flex-wrap:wrap; align-items:center; gap:8px; color:var(--gray); font-weight:700; font-size:.9rem; margin-bottom:22px; }
.breadcrumbs a { color:var(--red); }
.article-hero-grid { display:grid; grid-template-columns:.9fr 1.1fr; gap:38px; align-items:center; }
.article-hero h1 { margin:14px 0 18px; color:var(--black); font-size:clamp(2.15rem,4.4vw,4.2rem); line-height:1.2; letter-spacing:-.035em; }
.article-deck { color:var(--gray); font-size:1.08rem; margin:0; }
.article-meta { display:flex; flex-wrap:wrap; gap:12px 20px; margin-top:22px; color:#555; font-weight:800; font-size:.9rem; }
.article-meta span { display:inline-flex; align-items:center; gap:7px; }
.article-meta i { color:var(--red); }
.article-hero-image { border-radius:30px; overflow:hidden; box-shadow:var(--shadow); }
.article-hero-image img { width:100%; height:410px; object-fit:cover; }
.article-layout { display:grid; grid-template-columns:minmax(0,1fr) 310px; gap:42px; align-items:start; padding:72px 0 90px; }
.article-content { max-width:820px; }
.article-content .lead { font-size:1.16rem; color:#3f3f3f; border-right:4px solid var(--red); padding:8px 18px 8px 0; margin-top:0; }
.article-content h2 { margin:44px 0 14px; color:var(--black); font-size:clamp(1.55rem,3vw,2.25rem); line-height:1.4; }
.article-content h3 { margin:30px 0 10px; color:var(--black); font-size:1.28rem; }
.article-content p { color:#4f4f4f; margin:0 0 18px; }
.article-content ul, .article-content ol { margin:0 0 22px; padding-right:22px; color:#444; }
.article-content li { margin-bottom:9px; }
.article-content strong { color:#222; }
.article-note { background:var(--red-soft); border:1px solid rgba(208,0,0,.16); border-radius:18px; padding:20px; margin:28px 0; }
.article-note strong { display:block; color:var(--red); margin-bottom:5px; }
.article-table-wrap { overflow-x:auto; margin:24px 0 30px; border:1px solid var(--line); border-radius:18px; }
.article-table { width:100%; border-collapse:collapse; min-width:620px; }
.article-table th, .article-table td { padding:15px; text-align:right; border-bottom:1px solid var(--line); vertical-align:top; }
.article-table th { background:#171717; color:#fff; }
.article-table tr:last-child td { border-bottom:0; }
.article-toc, .article-cta { position:sticky; top:110px; background:#fafafa; border:1px solid var(--line); border-radius:22px; padding:22px; box-shadow:var(--shadow-soft); }
.article-toc h2 { margin:0 0 14px; font-size:1.12rem; }
.article-toc ol { margin:0; padding-right:20px; }
.article-toc li { margin-bottom:9px; color:#555; }
.article-toc a:hover { color:var(--red); }
.article-cta { position:static; margin-top:18px; background:var(--black); color:#fff; }
.article-cta h3 { margin:0 0 8px; }
.article-cta p { color:rgba(255,255,255,.76); margin:0 0 16px; }
.article-cta .btn { width:100%; }
.related-articles { background:var(--soft); padding:76px 0; }
.related-articles .section-header { margin-bottom:32px; }
.articles-hub-hero { padding:62px 0 48px; text-align:center; background:radial-gradient(circle at 50% 0%,rgba(208,0,0,.11),transparent 35%),linear-gradient(180deg,#fff,#fff7f7); }
.articles-hub-hero h1 { margin:8px auto 14px; max-width:850px; font-size:clamp(2.3rem,5vw,4.6rem); line-height:1.22; letter-spacing:-.04em; }
.articles-hub-hero p { max-width:760px; margin:0 auto; color:var(--gray); font-size:1.08rem; }
.articles-listing { padding:72px 0 92px; background:var(--soft); }
.article-disclaimer { margin-top:36px; padding:17px 20px; border-radius:16px; background:#f7f7f7; color:#666; font-size:.88rem; border:1px solid var(--line); }

@media (max-width:980px) {
  .blog-grid { grid-template-columns:repeat(2,1fr); }
  .article-hero-grid, .article-layout { grid-template-columns:1fr; }
  .article-sidebar { order:-1; }
  .article-toc { position:static; }
  .article-hero-image img { height:360px; }
}
@media (max-width:640px) {
  .blog-grid { grid-template-columns:1fr; }
  .blog-card-image img { height:220px; }
  .article-hero { padding:30px 0 28px; }
  .article-hero h1 { font-size:clamp(2rem,9vw,2.75rem); }
  .article-hero-image img { height:250px; }
  .article-layout { padding:48px 0 64px; gap:28px; }
  .article-content h2 { margin-top:34px; }
  .articles-listing { padding:48px 0 64px; }
}
