:root {
  --blue-900: #061225;
  --blue-850: #081b38;
  --blue-800: #082a62;
  --blue-700: #0049a8;
  --blue-600: #0064d8;
  --yellow: #ffcb05;
  --yellow-600: #e8ad00;
  --white: #ffffff;
  --off-white: #f7f9fd;
  --line: rgba(8, 42, 98, 0.12);
  --text: #15233a;
  --muted: #66748a;
  --shadow: 0 24px 70px rgba(6, 18, 37, 0.14);
  --radius: 8px;
  --container: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  z-index: 9999;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  color: var(--blue-900);
  background: var(--yellow);
  border-radius: var(--radius);
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  padding: 14px 0;
  transition: background 220ms ease, box-shadow 220ms ease, padding 220ms ease;
}

.site-header.is-scrolled {
  padding: 8px 0;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 35px rgba(6, 18, 37, 0.12);
  backdrop-filter: blur(14px);
}

.navbar {
  width: var(--container);
  min-height: 76px;
  margin: 0 auto;
  padding: 10px 12px 10px 18px;
  display: flex;
  align-items: center;
  gap: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 50px rgba(6, 18, 37, 0.14);
}

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

.brand img {
  width: 220px;
  height: auto;
}

.nav-panel {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

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

.nav-links a {
  position: relative;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--blue-850);
  white-space: nowrap;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--yellow);
  transition: width 180ms ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  width: 100%;
}

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

.language-switcher {
  display: flex;
  align-items: center;
  gap: 6px;
}

.language-switcher-mobile {
  display: none;
}

.language-switcher button {
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 8px 18px rgba(6, 18, 37, 0.08);
  cursor: pointer;
}

.language-switcher button[hidden] {
  display: none;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 0;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--blue-700);
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 0;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.btn-primary {
  color: var(--blue-900);
  background: var(--yellow);
  box-shadow: 0 16px 28px rgba(255, 203, 5, 0.28);
}

.btn-primary:hover {
  background: #ffd63c;
}

.btn-secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.nav-cta {
  min-height: 42px;
  padding-inline: 16px;
  font-size: 0.88rem;
}

.hero {
  position: relative;
  min-height: 100vh;
  background: var(--blue-900);
}

.hero-slider {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 800ms ease, visibility 800ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.hero-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 4800ms ease;
}

.hero-slide.is-active img {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 18, 37, 0.94) 0%, rgba(6, 18, 37, 0.76) 42%, rgba(6, 18, 37, 0.22) 100%),
    linear-gradient(180deg, rgba(6, 18, 37, 0.28), rgba(6, 18, 37, 0.78));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 40px));
  margin-left: max(20px, calc((100vw - 1180px) / 2));
  padding-top: 92px;
  color: var(--white);
}

.eyebrow,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before,
.section-label::before {
  content: "";
  width: 28px;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
}

.hero h1,
.hero h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.6rem, 6vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero p {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.38rem);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.slider-arrow {
  position: absolute;
  z-index: 5;
  top: 50%;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  color: var(--white);
  background: rgba(6, 18, 37, 0.4);
  backdrop-filter: blur(10px);
  cursor: pointer;
  transform: translateY(-50%);
}

.slider-prev {
  left: 22px;
}

.slider-next {
  right: 22px;
}

.slider-dots {
  position: absolute;
  z-index: 6;
  right: max(22px, calc((100vw - 1180px) / 2));
  bottom: 38px;
  display: flex;
  gap: 10px;
}

.slider-dots button {
  width: 42px;
  height: 4px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  cursor: pointer;
}

.slider-dots button.is-active {
  background: var(--yellow);
}

.section {
  padding: 108px 0;
}

.trust-bar {
  position: relative;
  z-index: 20;
  margin-top: -42px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 104px;
  padding: 24px;
  border-right: 1px solid var(--line);
  font-weight: 800;
  color: var(--blue-850);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item svg {
  flex: 0 0 auto;
  color: var(--blue-700);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.95fr);
  gap: 64px;
  align-items: center;
}

.reverse {
  grid-template-columns: minmax(360px, 0.95fr) minmax(0, 1fr);
}

.section-copy h2,
.section-heading h2,
.cta-box h2 {
  max-width: 780px;
  margin: 0;
  color: var(--blue-900);
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.06;
  letter-spacing: 0;
}

.section-copy p,
.section-heading p,
.cta-box p {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 42px;
}

.mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.mini-stats div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--off-white);
}

.mini-stats strong {
  display: block;
  color: var(--blue-700);
  font-size: 1.8rem;
  line-height: 1;
}

.mini-stats span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.9rem;
}

.image-composition {
  position: relative;
}

.main-image,
.fleet-gallery img,
.blog-card img {
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.main-image {
  aspect-ratio: 4 / 3;
}

.floating-card {
  position: absolute;
  right: -18px;
  bottom: 26px;
  max-width: 280px;
  display: flex;
  gap: 12px;
  padding: 18px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--blue-800);
  box-shadow: 0 20px 46px rgba(6, 18, 37, 0.22);
}

.floating-card svg {
  flex: 0 0 auto;
  color: var(--yellow);
}

.services-section,
.blog-section {
  background: var(--off-white);
}

.cards-grid {
  display: grid;
  gap: 18px;
}

.services-grid {
  grid-template-columns: repeat(5, 1fr);
}

.service-card {
  min-height: 265px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid rgba(8, 42, 98, 0.08);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(6, 18, 37, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 54px rgba(6, 18, 37, 0.12);
}

.service-card svg {
  width: 34px;
  height: 34px;
  color: var(--blue-700);
}

.service-card h3 {
  margin: 20px 0 10px;
  color: var(--blue-900);
  font-size: 1.05rem;
  line-height: 1.2;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.service-card a {
  margin-top: auto;
  padding-top: 18px;
  color: var(--blue-700);
  font-weight: 900;
}

.pests-section,
.fleet-section {
  background: var(--blue-900);
  color: var(--white);
}

.pests-section .section-heading h2,
.fleet-section .section-copy h2,
.pests-section .section-heading p,
.fleet-section .section-copy p {
  color: var(--white);
}

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

.pest-pill {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.06);
  text-align: center;
  font-weight: 800;
}

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

.segment-card {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 88px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(6, 18, 37, 0.07);
  font-weight: 850;
}

.segment-card svg {
  color: var(--blue-700);
}

.fleet-gallery {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 16px;
  align-items: end;
}

.fleet-gallery img {
  aspect-ratio: 4 / 4.2;
}

.fleet-gallery img:nth-child(2) {
  aspect-ratio: 3 / 4;
  margin-bottom: -42px;
}

.process-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 52px 0 0;
  padding: 0;
  list-style: none;
}

.process-line::before {
  content: "";
  position: absolute;
  top: 34px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--line);
}

.process-line li {
  position: relative;
  z-index: 1;
  min-height: 160px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(6, 18, 37, 0.07);
}

.process-line span {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--blue-900);
  background: var(--yellow);
  font-weight: 950;
}

.process-line strong {
  display: block;
  margin-top: 24px;
  color: var(--blue-900);
  font-size: 1.04rem;
  line-height: 1.3;
}

.cta-section {
  padding: 0 0 108px;
  background: linear-gradient(180deg, var(--white) 0 50%, var(--off-white) 50% 100%);
}

.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 46px;
  border-radius: var(--radius);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 203, 5, 0.14), transparent 38%),
    var(--blue-900);
  box-shadow: var(--shadow);
}

.cta-box h2,
.cta-box p {
  color: var(--white);
}

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

.blog-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 40px rgba(6, 18, 37, 0.08);
}

.blog-card img {
  aspect-ratio: 16 / 10;
  border-radius: 0;
  box-shadow: none;
}

.blog-card div {
  padding: 22px;
}

.blog-card span {
  color: var(--blue-700);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.blog-card h3 {
  margin: 10px 0;
  color: var(--blue-900);
  line-height: 1.2;
}

.blog-card p {
  margin: 0;
  color: var(--muted);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 54px;
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-list a,
.contact-list > span {
  min-width: 0;
  display: flex;
  gap: 12px;
  align-items: center;
  color: var(--blue-850);
  font-weight: 780;
}

.contact-list a span,
.contact-list > span span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.contact-list svg {
  flex: 0 0 auto;
  color: var(--blue-700);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form span {
  color: var(--blue-850);
  font-size: 0.9rem;
  font-weight: 850;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  background: var(--off-white);
  outline: none;
  transition: border 160ms ease, box-shadow 160ms ease;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(0, 100, 216, 0.55);
  box-shadow: 0 0 0 4px rgba(0, 100, 216, 0.12);
}

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

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
}

.site-footer {
  color: rgba(255, 255, 255, 0.82);
  background: var(--blue-900);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 34px;
  padding: 64px 0 44px;
}

.footer-brand img {
  width: 250px;
  height: auto;
  margin-bottom: 18px;
  padding: 10px;
  border-radius: var(--radius);
  background: var(--white);
}

.site-footer h3 {
  margin: 0 0 16px;
  color: var(--white);
  font-size: 1rem;
}

.site-footer a {
  display: block;
  margin: 9px 0;
  color: rgba(255, 255, 255, 0.76);
}

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

.social-links a {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  border-radius: 50%;
  color: var(--blue-900);
  background: var(--yellow);
}

.social-links svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-links a[aria-label="Facebook"] svg {
  fill: currentColor;
  stroke: none;
}

.footer-bottom {
  padding: 18px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.9rem;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 900;
  width: 62px;
  height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--white);
  background: #25d366;
  box-shadow: 0 18px 36px rgba(18, 140, 80, 0.34);
}

.whatsapp-float::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: inherit;
  background: rgba(37, 211, 102, 0.18);
}

.whatsapp-float svg {
  position: relative;
  z-index: 1;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 620ms ease, transform 620ms ease;
}

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

@media (max-width: 1180px) {
  .navbar {
    min-height: 68px;
  }

  .brand img {
    width: 190px;
  }

  .nav-links {
    gap: 10px;
  }

  .nav-links a,
  .nav-cta {
    font-size: 0.82rem;
  }

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

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

@media (max-width: 920px) {
  .site-header {
    padding: 10px 0;
  }

  .navbar {
    width: calc(100% - 24px);
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .language-switcher-mobile {
    display: flex;
    margin-left: auto;
  }

  .language-switcher-desktop {
    display: none;
  }

  .nav-panel {
    position: fixed;
    top: 96px;
    left: 12px;
    right: 12px;
    max-height: calc(100vh - 118px);
    overflow: auto;
    display: none;
    padding: 24px;
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .nav-panel.is-open {
    display: block;
  }

  .nav-links {
    display: grid;
    gap: 0;
  }

  .nav-links a {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }

  .nav-actions {
    align-items: stretch;
    justify-content: flex-end;
    margin-top: 18px;
  }

  .nav-cta {
    flex: 1;
  }

  .hero-content {
    padding-top: 130px;
  }

  .slider-arrow {
    display: none;
  }

  .trust-grid,
  .split,
  .reverse,
  .contact-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .trust-item {
    border-bottom: 1px solid var(--line);
  }

  .trust-item:nth-child(2n) {
    border-right: 0;
  }

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

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

  .process-line::before {
    display: none;
  }

  .cta-box {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  :root {
    --container: calc(100% - 28px);
  }

  .container,
  .hero-content {
    width: calc(100% - 28px);
    max-width: 1180px;
  }

  .brand img {
    width: 158px;
  }

  .language-switcher button {
    width: 32px;
    height: 32px;
  }

  .hero {
    min-height: 760px;
  }

  .hero-slider {
    min-height: 760px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(6, 18, 37, 0.78) 0%, rgba(6, 18, 37, 0.86) 58%, rgba(6, 18, 37, 0.95) 100%),
      rgba(6, 18, 37, 0.42);
  }

  .hero-content {
    width: var(--container);
    margin: 0 auto;
    padding-top: 112px;
  }

  .hero h1,
  .hero h2 {
    font-size: clamp(2.2rem, 14vw, 3.7rem);
  }

  .hero-buttons {
    align-items: stretch;
    flex-direction: column;
  }

  .slider-dots {
    left: 14px;
    right: 14px;
    bottom: 22px;
    justify-content: center;
  }

  .section {
    padding: 76px 0;
  }

  .trust-bar {
    margin-top: 0;
  }

  .trust-grid,
  .services-grid,
  .pest-grid,
  .segment-grid,
  .blog-grid,
  .process-line,
  .mini-stats,
  .contact-form,
  .fleet-gallery {
    grid-template-columns: 1fr;
  }

  .trust-item {
    min-height: 82px;
    border-right: 0;
  }

  .floating-card {
    position: static;
    margin-top: -18px;
    margin-inline: 14px;
  }

  .fleet-gallery img:nth-child(2) {
    margin-bottom: 0;
  }

  .contact-form {
    padding: 20px;
  }

  .cta-section {
    padding-bottom: 76px;
  }

  .cta-box {
    padding: 30px;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
