@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&display=swap");

:root {
  --ink: #101927;
  --muted: #64748b;
  --line: #dde6ef;
  --paper: #f4f7fb;
  --white: #ffffff;
  --navy: #071b31;
  --navy-2: #0d2d4a;
  --brand: #0b6f6a;
  --cyan: #1bb3a9;
  --orange: #f47b20;
  --soft: #eef8f7;
  --shadow: 0 24px 70px rgba(10, 25, 45, 0.15);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-weight: 500;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: var(--white);
  border-bottom: 1px solid rgba(221, 230, 239, 0.9);
  box-shadow: 0 12px 36px rgba(10, 25, 45, 0.08);
}
.topbar {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 600;
}
.topbar-inner {
  display: flex;
  justify-content: flex-end;
  gap: 28px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 9px 24px;
}
.topbar a:hover { color: var(--white); }
.header-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  max-width: 1240px;
  margin: 0 auto;
  min-height: 82px;
  padding: 0 24px;
}
.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}
.logo-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: 178px;
  max-width: 42vw;
  overflow: hidden;
  animation: logoEntrance 700ms ease both;
}
.logo-wrap::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 -70%;
  width: 42%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.72), transparent);
  transform: skewX(-18deg);
  animation: logoShine 4.8s ease-in-out infinite;
}
.logo-wrap img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 14px rgba(10, 25, 45, 0.14));
  transition: transform 220ms ease, filter 220ms ease;
}
.brand:hover .logo-wrap img {
  transform: translateY(-1px) scale(1.025);
  filter: drop-shadow(0 10px 18px rgba(10, 25, 45, 0.2));
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--orange), var(--cyan));
  color: var(--white);
  font-size: 24px;
  font-weight: 900;
}
.brand strong, .brand small { display: block; line-height: 1.05; }
.brand strong { font-size: 20px; font-weight: 900; }
.brand small { color: var(--muted); font-weight: 700; letter-spacing: 0.02em; }
.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
  color: #24344a;
  font-size: 15px;
  font-weight: 700;
}
.main-nav > a { min-height: 46px; display: inline-flex; align-items: center; }
.main-nav a:hover { color: var(--orange); }
.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 46px;
}
.nav-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: -28px;
  right: -28px;
  height: 24px;
}
.nav-dropdown > button {
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}
.nav-dropdown > button::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-3px) rotate(45deg);
}
.mega-menu {
  position: absolute;
  top: calc(100% + 11px);
  left: 50%;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 20px;
  width: min(980px, calc(100vw - 48px));
  overflow: visible;
  padding: 22px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--orange);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transform: translateX(-50%) translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}
.nav-dropdown:hover .mega-menu,
.nav-dropdown:focus-within .mega-menu {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.mega-tabs {
  display: grid;
  gap: 8px;
  align-content: start;
  padding-right: 16px;
  border-right: 1px solid var(--line);
}

.mega-tabs button {
  width: 100%;
  min-height: 42px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 12px;
  background: transparent;
  color: #334155;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.mega-tabs button.is-active,
.mega-tabs button:hover,
.mega-tabs button:focus {
  border-color: rgba(11, 111, 106, 0.2);
  background: var(--soft);
  color: var(--brand);
}

.mega-services section {
  display: none;
  align-content: start;
  gap: 12px;
}

.mega-services section.is-active {
  display: grid;
}

.mega-menu strong { color: var(--brand); font-size: 15px; font-weight: 800; }
.mega-services section > div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}
.mega-menu a {
  padding: 9px 10px;
  border-radius: 8px;
  color: #334155;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.25;
}
.mega-menu a:hover { background: var(--soft); color: var(--brand); }

.header-cta, .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 8px;
  font-weight: 800;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.header-cta, .btn.primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(244, 123, 32, 0.28);
}

.header-cta {
  position: relative;
  overflow: hidden;
  animation: ctaPulse 3.8s ease-in-out infinite;
}

.header-cta::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 -60%;
  width: 48%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  transform: skewX(-18deg);
  animation: ctaShine 3.8s ease-in-out infinite;
}
.btn.light {
  background: var(--white);
  color: var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.45);
}
.btn.dark {
  background: var(--navy);
  color: var(--white);
}
.btn:hover, .header-cta:hover { transform: translateY(-3px); }
.btn:focus-visible, .header-cta:focus-visible, .main-nav a:focus-visible, .menu-toggle:focus-visible, input:focus-visible, select:focus-visible {
  outline: 3px solid rgba(244, 123, 32, 0.5);
  outline-offset: 3px;
}
.menu-toggle { display: none; }

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 730px;
  background: var(--navy);
  color: var(--white);
}
.hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0 auto;
  width: 48%;
  height: 38%;
  background: linear-gradient(135deg, rgba(244, 123, 32, 0.92), rgba(27, 179, 169, 0.72));
  clip-path: polygon(36% 0, 100% 0, 100% 100%, 0 100%);
  z-index: -1;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(90deg, rgba(7, 27, 49, 0.95), rgba(7, 27, 49, 0.78) 48%, rgba(7, 27, 49, 0.25));
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -3;
  background: url("https://images.unsplash.com/photo-1551836022-d5d88e9218df?auto=format&fit=crop&w=2200&q=84") center / cover;
  transform: scale(1.04);
  animation: heroDrift 18s ease-in-out infinite alternate;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: end;
  gap: 42px;
  max-width: 1240px;
  margin: 0 auto;
  min-height: 730px;
  padding: 118px 24px 96px;
}
.hero-content { max-width: 780px; animation: fadeUp 760ms ease both; }
.eyebrow {
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 22px;
  font-size: clamp(40px, 5.4vw, 68px);
  line-height: 1.05;
  letter-spacing: 0;
}
h2 {
  margin-bottom: 16px;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.06;
  letter-spacing: 0;
}
h3 { margin-bottom: 8px; font-size: 22px; line-height: 1.22; font-weight: 800; }
.hero-content p { max-width: 660px; color: rgba(255, 255, 255, 0.82); font-size: 19px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero-contact {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  animation: fadeUp 760ms ease 140ms both, floatCard 4.8s ease-in-out 1s infinite;
}
.hero-contact span { color: var(--orange); font-size: 12px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }
.hero-contact strong { display: block; margin: 10px 0 18px; font-size: 25px; line-height: 1.15; }
.hero-contact a { color: var(--white); font-weight: 800; text-decoration: underline; text-underline-offset: 6px; }

.marquee-band {
  overflow: hidden;
  background: var(--orange);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 34px;
  padding: 15px 0;
  animation: marqueeMove 34s linear infinite;
}

.marquee-track span {
  position: relative;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.marquee-track span::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-left: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.75);
  vertical-align: 1px;
}

.marquee-band:hover .marquee-track {
  animation-play-state: paused;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1240px;
  margin: -58px auto 0;
  padding: 0 24px;
  position: relative;
  z-index: 4;
}
.feature-strip article {
  min-height: 210px;
  padding: 28px;
  background: var(--white);
  border-right: 1px solid var(--line);
  box-shadow: var(--shadow);
  animation: fadeUp 700ms ease both, softPulse 6s ease-in-out infinite;
}
.feature-strip article:first-child { border-radius: 8px 0 0 8px; }
.feature-strip article:last-child { border-right: 0; border-radius: 0 8px 8px 0; }
.feature-strip article:nth-child(2) { animation-delay: 80ms; }
.feature-strip article:nth-child(3) { animation-delay: 160ms; }
.feature-icon { color: var(--orange); font-weight: 800; }
.feature-strip p { color: var(--muted); margin-bottom: 0; }

.section { max-width: 1240px; margin: 0 auto; padding: 104px 24px; }
.about-section {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 72px;
  align-items: center;
}
.about-media { position: relative; }
.about-media img {
  width: 100%;
  aspect-ratio: 0.92;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.experience-card {
  position: absolute;
  right: -28px;
  bottom: 34px;
  width: 210px;
  padding: 22px;
  border-radius: 8px;
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 18px 44px rgba(244, 123, 32, 0.28);
}
.experience-card strong { display: block; font-size: 42px; line-height: 1; }
.experience-card span { font-weight: 800; }
.about-copy p { color: var(--muted); font-size: 18px; }
.check-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 26px 0 30px;
}
.check-list span {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  font-weight: 700;
}

.partners-section {
  padding-top: 28px;
}

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

.partner-grid span {
  display: grid;
  place-items: center;
  min-height: 96px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--navy);
  font-weight: 800;
  text-align: center;
  box-shadow: 0 14px 38px rgba(10, 25, 45, 0.07);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 36px;
}
.section-head h2 { max-width: 760px; margin-bottom: 0; }
.section-head.centered {
  display: block;
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}
.text-link {
  min-width: max-content;
  color: var(--orange);
  font-weight: 800;
}

.services-preview {
  background: #eaf1f7;
  border-block: 1px solid var(--line);
}
.services-inner { padding-block: 96px; }
.service-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.service-card {
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 16px 42px rgba(10, 25, 45, 0.09);
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.service-card:hover { transform: translateY(-8px); box-shadow: 0 28px 68px rgba(10, 25, 45, 0.16); }
.service-card img {
  width: 100%;
  aspect-ratio: 1.22;
  object-fit: cover;
  transition: transform 420ms ease;
}
.service-card:hover img { transform: scale(1.06); }
.service-card div { padding: 22px; }
.service-card span { color: var(--orange); font-weight: 800; }
.service-card p { color: var(--muted); margin-bottom: 0; }

.offer-band {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}
.offer-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&w=1800&q=82") center / cover;
}
.offer-band::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(7, 27, 49, 0.96), rgba(7, 27, 49, 0.82));
}
.offer-content {
  max-width: 1240px;
  margin: 0 auto;
  padding: 96px 24px;
}
.offer-content h2 { max-width: 760px; }
.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 34px;
}
.offer-grid article {
  min-height: 210px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  transition: transform 190ms ease, background 190ms ease;
}
.offer-grid article:hover { transform: translateY(-6px); background: rgba(255, 255, 255, 0.13); }
.offer-grid p { color: rgba(255, 255, 255, 0.72); margin-bottom: 0; }

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.process-grid article {
  position: relative;
  min-height: 245px;
  padding: 26px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 14px 38px rgba(10, 25, 45, 0.08);
  transition: transform 190ms ease, box-shadow 190ms ease, background 190ms ease;
}
.process-grid article:hover { transform: translateY(-7px); box-shadow: 0 24px 58px rgba(10, 25, 45, 0.14); }
.process-grid span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 38px;
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
  font-weight: 800;
}
.process-grid p { color: var(--muted); margin-bottom: 0; }

.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--orange);
  color: var(--white);
}
.stats-band article {
  min-height: 190px;
  display: grid;
  place-items: center;
  align-content: center;
  padding: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.28);
  text-align: center;
  animation: fadeUp 680ms ease both;
}
.stats-band article:nth-child(2) { animation-delay: 80ms; }
.stats-band article:nth-child(3) { animation-delay: 160ms; }
.stats-band article:nth-child(4) { animation-delay: 240ms; }
.stats-band article:last-child { border-right: 0; }
.stats-band strong { display: block; font-size: clamp(38px, 5vw, 62px); line-height: 1; }
.stats-band span { margin-top: 8px; font-weight: 800; }

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

.testimonial-grid article {
  min-height: 230px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 38px rgba(10, 25, 45, 0.08);
}

.testimonial-grid p {
  color: var(--muted);
  font-size: 16px;
}

.testimonial-grid strong {
  color: var(--brand);
  font-size: 14px;
}

.faq-section {
  background: #eaf1f7;
  border-block: 1px solid var(--line);
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(10, 25, 45, 0.06);
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 800;
}

.faq-list p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.quote-section {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 46px;
  align-items: center;
  padding: 96px max(24px, calc((100vw - 1240px) / 2 + 24px));
  background: var(--navy);
  color: var(--white);
}
.quote-copy p { color: rgba(255, 255, 255, 0.74); font-size: 18px; }
.quote-contact {
  display: inline-grid;
  margin-top: 18px;
  padding: 18px 22px;
  border-left: 4px solid var(--orange);
  background: rgba(255, 255, 255, 0.08);
}
.quote-contact span { color: rgba(255, 255, 255, 0.68); font-weight: 800; }
.quote-contact strong { font-size: 24px; }
.quote-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  padding: 28px;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
}
.quote-form label { display: grid; gap: 7px; font-size: 13px; font-weight: 700; }
.quote-form input, .quote-form select {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 14px;
  font: inherit;
  color: var(--ink);
}
.quote-form button { grid-column: span 2; justify-self: start; }
.dynamic-fields {
  grid-column: span 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.consent-check {
  grid-column: span 2;
  display: flex !important;
  align-items: flex-start;
  gap: 10px !important;
  color: var(--muted);
  font-size: 12px !important;
  line-height: 1.5;
}

.consent-check input {
  width: auto;
  min-height: auto;
  margin-top: 3px;
}
button:disabled { opacity: 0.74; cursor: not-allowed; transform: none; }

.map-section {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 28px;
  align-items: stretch;
  padding: 76px max(24px, calc((100vw - var(--container)) / 2 + 24px));
  background: var(--paper);
}

.site-footer .map-section {
  background: #0d2034;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.map-copy {
  display: grid;
  align-content: center;
  padding: 32px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 38px rgba(10, 25, 45, 0.08);
}

.site-footer .map-copy {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.map-copy h2 {
  font-size: clamp(26px, 2.8vw, 38px);
}

.map-copy p:not(.eyebrow) {
  color: var(--muted);
}

.site-footer .map-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.map-frame {
  min-height: 380px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
}

.site-footer {
  background: #081725;
  color: var(--white);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 42px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 62px 24px;
}
.footer-grid p, .footer-grid a, .footer-grid span { color: rgba(255, 255, 255, 0.7); }
.footer-grid a, .footer-grid span { display: block; margin-bottom: 8px; }
.footer-grid h3 { color: var(--orange); margin: 0 0 14px; }
.footer-brand .brand small { color: rgba(255, 255, 255, 0.7); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 20px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
}

.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  display: grid;
  gap: 8px;
}

.floating-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 86px;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 14px 34px rgba(10, 25, 45, 0.22);
}

.floating-actions .floating-whatsapp {
  background: #1fae5b;
}

.policy-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 84px 24px;
}

.policy-page article {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 38px rgba(10, 25, 45, 0.08);
}

.policy-page p,
.policy-page li {
  color: var(--muted);
}

.service-hero {
  padding: 96px max(24px, calc((100vw - 1240px) / 2 + 24px)) 58px;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: var(--white);
}
.service-hero a { color: rgba(255, 255, 255, 0.72); font-weight: 800; }
.service-hero h1 { max-width: 890px; margin-top: 18px; font-size: clamp(39px, 6vw, 70px); }
.service-hero p:not(.eyebrow) { max-width: 760px; color: rgba(255, 255, 255, 0.74); font-size: 18px; }
.service-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 32px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 60px 24px 96px;
}
.service-content, .service-sidebar {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 38px rgba(10, 25, 45, 0.08);
}
.service-content { padding: 36px; }
.service-content p { color: var(--muted); font-size: 18px; }
.content-intro {
  padding-bottom: 26px;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--line);
}
.content-intro h2 {
  margin-bottom: 12px;
  font-size: clamp(30px, 4vw, 48px);
}
.detail-block {
  margin-top: 34px;
}
.detail-block h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 25px;
}
.detail-block h3::before {
  content: "";
  width: 34px;
  height: 4px;
  border-radius: 8px;
  background: var(--orange);
}

.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
}
.feature-list li {
  padding: 14px 16px;
  border-radius: 8px;
  background: var(--soft);
  font-weight: 700;
}
.service-sidebar { align-self: start; padding: 24px; }
.service-sidebar .btn { width: 100%; margin-top: 12px; }
.phone-note {
  display: grid;
  gap: 2px;
  margin: 18px 0 6px;
  padding: 16px;
  border-left: 4px solid var(--orange);
  border-radius: 8px;
  background: var(--soft);
}
.phone-note span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}
.phone-note strong {
  color: var(--ink);
  font-size: 20px;
  line-height: 1.2;
}
.service-sidebar .btn.light {
  border-color: var(--line);
  background: var(--paper);
  color: var(--ink);
  box-shadow: none;
}
.related-list { display: grid; gap: 8px; margin-top: 18px; }
.related-list a {
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
}
.related-list a:hover { color: var(--brand); border-color: rgba(11, 111, 106, 0.4); }

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 680ms ease, transform 680ms ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes heroDrift {
  from { transform: scale(1.04) translateX(0); }
  to { transform: scale(1.1) translateX(-22px); }
}

@keyframes marqueeMove {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes softPulse {
  0%, 100% { box-shadow: var(--shadow); }
  50% { box-shadow: 0 28px 76px rgba(10, 25, 45, 0.2); }
}

@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 16px 34px rgba(244, 123, 32, 0.28); }
  50% { box-shadow: 0 18px 46px rgba(244, 123, 32, 0.48); }
}

@keyframes ctaShine {
  0%, 45% { left: -60%; }
  70%, 100% { left: 125%; }
}

@keyframes logoEntrance {
  from { opacity: 0; transform: translateY(-8px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes logoShine {
  0%, 52% { left: -70%; }
  72%, 100% { left: 130%; }
}

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

@media (max-width: 1040px) {
  .topbar { display: none; }
  .header-inner { min-height: 74px; padding: 0 20px; }
  .menu-toggle {
    display: inline-grid;
    place-content: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    margin-left: auto;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
  }
  .menu-toggle span { width: 22px; height: 2px; background: currentColor; }
  .main-nav {
    position: absolute;
    top: 74px;
    right: 20px;
    left: 20px;
    display: none;
    margin: 0;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }
  .main-nav.is-open { display: grid; }
  .main-nav.is-open .nav-dropdown { display: grid; gap: 10px; }
  .main-nav.is-open .mega-menu {
    position: static;
    display: grid;
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    grid-template-columns: 1fr;
    width: auto;
    max-height: 60vh;
    overflow: auto;
    padding: 14px;
    transform: none;
    box-shadow: none;
  }
  .main-nav.is-open .mega-tabs {
    grid-template-columns: 1fr 1fr;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding-right: 0;
    padding-bottom: 12px;
  }
  .main-nav.is-open .mega-services section > div {
    grid-template-columns: 1fr 1fr;
  }
  .header-cta { display: none; }
  .hero-grid, .about-section, .quote-section, .service-layout { grid-template-columns: 1fr; }
  .map-section { grid-template-columns: 1fr; }
  .hero-grid { align-items: center; min-height: 680px; }
  .hero-contact { max-width: 460px; }
  .feature-strip, .service-card-grid, .process-grid, .stats-band, .offer-grid, .partner-grid, .testimonial-grid { grid-template-columns: 1fr 1fr; }
  .experience-card { right: 24px; }
}

@media (max-width: 680px) {
  h1 { font-size: 38px; }
  .hero, .hero-grid { min-height: auto; }
  .hero-grid { padding-top: 76px; padding-bottom: 70px; }
  .hero::after { background: linear-gradient(180deg, rgba(7, 27, 49, 0.94), rgba(7, 27, 49, 0.72)); }
  .feature-strip, .service-card-grid, .process-grid, .stats-band, .offer-grid, .quote-form, .footer-grid, .feature-list, .check-list, .partner-grid, .testimonial-grid, .dynamic-fields { grid-template-columns: 1fr; }
  .feature-strip { margin-top: 0; padding-top: 18px; gap: 12px; }
  .feature-strip article, .feature-strip article:first-child, .feature-strip article:last-child {
    border-radius: 8px;
    border: 1px solid var(--line);
  }
  .section { padding: 72px 20px; }
  .section-head { display: block; }
  .text-link { display: inline-flex; margin-top: 12px; }
  .about-media img { aspect-ratio: 1.05; }
  .experience-card { position: static; width: auto; margin-top: 12px; }
  .mega-menu, .main-nav.is-open .mega-menu { grid-template-columns: 1fr; }
  .main-nav.is-open .mega-tabs,
  .main-nav.is-open .mega-services section > div { grid-template-columns: 1fr; }
  .quote-section { padding: 68px 20px; }
  .map-section { padding: 58px 20px; }
  .quote-form button { grid-column: auto; justify-self: stretch; }
  .dynamic-fields,
  .consent-check {
    grid-column: auto;
  }
  .floating-actions {
    right: 12px;
    bottom: 12px;
    grid-auto-flow: column;
    left: 12px;
    grid-template-columns: repeat(3, 1fr);
  }
  .floating-actions a {
    min-width: 0;
    min-height: 40px;
    padding: 0 8px;
    font-size: 12px;
  }
  .service-content { padding: 24px; }
  .footer-bottom { display: grid; }
}

/* Balanced typography and spacing system */
:root {
  --container: 1180px;
  --section-y: 88px;
}

.topbar-inner,
.header-inner,
.hero-grid,
.feature-strip,
.section,
.offer-content,
.footer-grid,
.footer-bottom,
.service-layout {
  max-width: var(--container);
}

h1 {
  font-size: clamp(40px, 5.4vw, 68px);
  line-height: 1.05;
  margin-bottom: 22px;
}

h2 {
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.14;
}

h3 {
  font-size: 20px;
  line-height: 1.25;
}

p {
  max-width: 68ch;
}

.hero {
  min-height: 680px;
}

.hero-grid {
  min-height: 680px;
  padding-top: 104px;
  padding-bottom: 82px;
}

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

.hero-content p {
  max-width: 650px;
  font-size: 18px;
}

.section,
.services-inner,
.offer-content {
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
}

.feature-strip article {
  min-height: 188px;
  padding: 24px;
}

.about-section {
  gap: 56px;
}

.about-copy p,
.quote-copy p,
.service-content p,
.service-hero p:not(.eyebrow) {
  font-size: 17px;
}

.service-card-grid {
  gap: 16px;
}

.service-card div {
  padding: 20px;
}

.service-card p {
  font-size: 15px;
}

.offer-grid article {
  min-height: 190px;
  padding: 24px;
}

.process-grid article {
  min-height: 220px;
  padding: 24px;
}

.stats-band article {
  min-height: 170px;
}

.quote-section {
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
}

.service-hero {
  padding-top: 84px;
  padding-bottom: 54px;
}

.service-hero h1 {
  max-width: 840px;
  font-size: clamp(36px, 4.8vw, 60px);
}

.content-intro h2 {
  font-size: clamp(28px, 3.2vw, 42px);
}

.detail-block h3 {
  font-size: 22px;
}

@media (max-width: 1040px) {
  .hero-grid {
    min-height: 640px;
  }
}

@media (max-width: 680px) {
  :root {
    --section-y: 66px;
  }

  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 30px;
  }

  h3 {
    font-size: 19px;
  }

  .logo-wrap {
    width: 142px;
  }

  .hero,
  .hero-grid {
    min-height: auto;
  }
}
