:root {
  --ink: #102126;
  --muted: #607076;
  --paper: #f7f8f6;
  --white: #ffffff;
  --line: #d9e0dc;
  --green: #d01800;
  --green-dark: #9f1305;
  --lime: #2f80e7;
  --teal: #123f49;
  --sky: #2f80e7;
  --orange: #d01800;
  --shadow: 0 24px 70px rgba(16, 33, 38, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--white);
  box-shadow: 0 10px 26px rgba(16, 33, 38, 0.08);
}

.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px clamp(18px, 5vw, 72px);
  background: var(--green);
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 800;
}

.top-details,
.social-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 34px);
  flex-wrap: wrap;
}

.mini-icon {
  display: inline-flex;
  margin-right: 8px;
  color: var(--white);
  font-size: 0.82rem;
}

.social-links a {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  color: var(--white);
  font-weight: 900;
}

.social-links .whatsapp-link {
  display: inline-flex;
  width: auto;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 999px;
  background: #20c760;
  color: var(--white);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(24px, 5vw, 64px);
  min-height: 82px;
  padding: 12px clamp(18px, 5vw, 72px);
  background: rgba(247, 248, 246, 0.98);
}

.brand {
  display: flex;
  align-items: center;
  min-width: 210px;
}

.brand-logo {
  display: block;
  width: clamp(190px, 19vw, 260px);
  height: auto;
  max-height: 62px;
  object-fit: contain;
  object-position: left center;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 4vw, 46px);
  margin-left: auto;
  padding: 0;
  background: transparent;
}

.main-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 54px;
  padding: 0 0 12px;
  color: #343f45;
  font-weight: 800;
  font-size: 0.96rem;
}

.main-nav a.active,
.main-nav a:hover {
  color: var(--sky);
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  border-radius: 999px;
  background: var(--sky);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.main-nav a.active::after,
.main-nav a:hover::after {
  transform: scaleX(1);
}

.nav-icon {
  color: var(--sky);
  font-size: 1rem;
  line-height: 1;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 0;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
}

.header-cta,
.button.primary {
  background: var(--orange);
  color: var(--white);
}

.button.secondary {
  background: var(--white);
  color: var(--ink);
}

.button.whatsapp {
  background: #20c760;
  color: var(--white);
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: grid;
  min-width: 190px;
  padding: 13px 18px;
  border-radius: 999px;
  background: #20c760;
  color: var(--white);
  box-shadow: 0 18px 34px rgba(16, 33, 38, 0.28);
  text-align: center;
  line-height: 1.15;
}

.floating-whatsapp span,
.floating-whatsapp strong {
  display: block;
}

.floating-whatsapp span {
  font-size: 0.78rem;
  font-weight: 800;
}

.floating-whatsapp strong {
  font-size: 1rem;
}

.button.light {
  background: var(--white);
  color: var(--green-dark);
}

.hero {
  min-height: calc(100vh - 86px);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.42fr);
  align-items: end;
  gap: 28px;
  padding: clamp(64px, 11vw, 132px) clamp(18px, 5vw, 72px) 36px;
  background:
    linear-gradient(90deg, rgba(7, 29, 35, 0.88), rgba(7, 29, 35, 0.56), rgba(7, 29, 35, 0.18)),
    url("https://images.unsplash.com/photo-1581092160607-ee22621dd758?auto=format&fit=crop&w=1800&q=80") center / cover;
  color: var(--white);
}

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

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 20px;
  font-size: clamp(2.55rem, 7vw, 6.4rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
  line-height: 1.15;
}

.hero-copy {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

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

.hero-panel {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
}

.hero-panel div {
  padding: 18px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
}

.hero-panel span {
  display: block;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-panel strong {
  display: block;
  font-size: 1.05rem;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: -1px clamp(18px, 5vw, 72px) 0;
  overflow: hidden;
  border-radius: 0 0 8px 8px;
  background: var(--line);
  box-shadow: var(--shadow);
}

.trust-strip div {
  padding: 24px;
  background: var(--white);
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip span {
  color: var(--muted);
}

.section,
.split-section,
.contact-layout {
  padding: clamp(64px, 9vw, 112px) clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

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

.service-card,
.service-list article,
.contact-card,
.quote-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.service-card {
  min-height: 260px;
  padding: 24px;
}

.icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 46px;
  border-radius: 8px;
  background: #eaf4ed;
  color: var(--green);
  font-weight: 900;
}

.service-card p,
.service-list p,
.split-section p,
.contact-card span {
  color: var(--muted);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.58fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
}

.split-section > div:first-child {
  max-width: 760px;
}

.steps,
.values-list {
  display: grid;
  gap: 14px;
}

.steps div,
.values-list div {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
  padding: 22px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--line);
}

.steps span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 8px;
  background: var(--green);
  color: var(--white);
  font-weight: 900;
}

.steps p {
  margin-bottom: 0;
}

.text-link {
  display: inline-flex;
  margin-top: 10px;
  color: var(--green);
  font-weight: 900;
}

.why-choose {
  display: grid;
  grid-template-columns: minmax(280px, 0.38fr) minmax(0, 0.62fr);
  gap: 18px;
  padding: clamp(64px, 9vw, 112px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(90deg, rgba(16, 33, 38, 0.9), rgba(16, 33, 38, 0.72)),
    url("https://images.unsplash.com/photo-1621905251189-08b45d6a269e?auto=format&fit=crop&w=1800&q=80") center / cover;
}

.why-card {
  padding: clamp(28px, 5vw, 44px);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.why-card h2 {
  font-size: clamp(2rem, 3.4vw, 3.45rem);
}

.why-card p:not(.eyebrow) {
  color: var(--muted);
}

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

.why-grid article {
  min-height: 210px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
}

.why-grid span {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--green);
  font-weight: 900;
}

.why-grid p {
  color: var(--muted);
}

.cta-band {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin: 0 clamp(18px, 5vw, 72px) clamp(64px, 8vw, 96px);
  padding: clamp(28px, 5vw, 52px);
  border-radius: 8px;
  background: var(--green-dark);
  color: var(--white);
}

.cta-band h2 {
  margin-bottom: 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 32px clamp(18px, 5vw, 72px);
  background: var(--ink);
  color: var(--white);
}

.site-footer span,
.site-footer a {
  display: block;
  color: rgba(255, 255, 255, 0.74);
}

.footer-logo {
  display: block;
  width: min(260px, 72vw);
  height: auto;
  margin-bottom: 12px;
  border-radius: 8px;
  background: var(--white);
  padding: 8px 10px;
}

.page-hero {
  min-height: 58vh;
  display: flex;
  align-items: end;
  padding: clamp(72px, 12vw, 136px) clamp(18px, 5vw, 72px) 46px;
  background:
    linear-gradient(90deg, rgba(7, 29, 35, 0.88), rgba(7, 29, 35, 0.42)),
    url("https://images.unsplash.com/photo-1558618666-fcd25c85cd64?auto=format&fit=crop&w=1800&q=80") center / cover;
  color: var(--white);
}

.about-hero {
  background:
    linear-gradient(90deg, rgba(7, 29, 35, 0.88), rgba(7, 29, 35, 0.42)),
    url("https://images.unsplash.com/photo-1600585154526-990dced4db0d?auto=format&fit=crop&w=1800&q=80") center / cover;
}

.services-hero {
  background:
    linear-gradient(90deg, rgba(7, 29, 35, 0.9), rgba(7, 29, 35, 0.36)),
    url("https://images.unsplash.com/photo-1621905252507-b35492cc74b4?auto=format&fit=crop&w=1800&q=80") center / cover;
}

.contact-hero {
  background:
    linear-gradient(90deg, rgba(7, 29, 35, 0.88), rgba(7, 29, 35, 0.4)),
    url("https://images.unsplash.com/photo-1554224155-6726b3ff858f?auto=format&fit=crop&w=1800&q=80") center / cover;
}

.page-hero div {
  max-width: 820px;
}

.page-hero .eyebrow {
  color: var(--orange);
}

.page-hero p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.12rem;
}

.muted {
  background: #eef2ef;
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

.area-grid span {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  text-align: center;
  font-weight: 800;
}

.values-list div {
  display: block;
}

.values-list strong,
.values-list span {
  display: block;
}

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

.service-list article {
  padding: 28px;
}

.service-list span {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 10px;
  border-radius: 6px;
  background: #eaf4ed;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.service-list h2 {
  font-size: clamp(1.5rem, 2.4vw, 2.3rem);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 0.58fr);
  gap: 22px;
  align-items: start;
}

.contact-card,
.quote-form {
  padding: clamp(24px, 4vw, 40px);
}

.contact-link {
  display: block;
  margin-bottom: 12px;
  color: var(--green);
  font-size: 1.25rem;
  font-weight: 900;
}

.contact-note {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

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

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

.quote-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 800;
}

.quote-form .full {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 15px;
  background: #fbfcfb;
  color: var(--ink);
  font: inherit;
}

textarea {
  resize: vertical;
}

@media (max-width: 980px) {
  .top-bar,
  .nav-bar {
    align-items: flex-start;
    flex-direction: column;
  }

  .main-nav {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
  }

  .hero,
  .split-section,
  .contact-layout,
  .why-choose {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-panel {
    max-width: 520px;
  }

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

@media (max-width: 640px) {
  .top-bar,
  .nav-bar {
    padding-right: 14px;
    padding-left: 14px;
  }

  .top-details {
    gap: 8px;
  }

  .top-details span,
  .top-details a {
    width: 100%;
  }

  .social-links .whatsapp-link {
    min-height: 38px;
    padding: 0 14px;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    min-width: 164px;
    padding: 11px 14px;
  }

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

  .main-nav {
    gap: 22px;
  }

  .main-nav a {
    white-space: nowrap;
  }

  h1 {
    font-size: 2.75rem;
  }

  h2 {
    font-size: 2.05rem;
  }

  .hero {
    padding-top: 70px;
  }

  .trust-strip,
  .service-grid,
  .service-list,
  .area-grid,
  .quote-form,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    margin-right: 14px;
    margin-left: 14px;
  }

  .steps div {
    grid-template-columns: 1fr;
  }

  .cta-band,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
