:root {
  --blue-900: #082f63;
  --blue-800: #0b3f83;
  --blue-700: #1156a8;
  --blue-600: #1769d3;
  --cyan: #16d9ff;
  --blue-100: #eaf3ff;
  --ink: #102033;
  --muted: #5d6b7b;
  --line: #dce7f4;
  --surface: #ffffff;
  --soft: #f5f9fe;
  --shadow: 0 24px 60px rgba(8, 47, 99, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.55;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  color: white;
  background: var(--blue-800);
  border-radius: var(--radius);
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  max-width: 380px;
  overflow: hidden;
  font-size: 0.95rem;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #26384d;
  font-size: 0.94rem;
  font-weight: 600;
}

.main-nav a {
  padding: 8px 0;
}

.main-nav a:hover {
  color: var(--blue-700);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: var(--blue-100);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--blue-800);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: center;
  padding: clamp(76px, 10vw, 120px) clamp(18px, 5vw, 72px);
  overflow: hidden;
}

.hero-media,
.hero-media img,
.hero-media video,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -3;
}

.hero-media img,
.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.88) 44%, rgba(255, 255, 255, 0.18) 76%),
    linear-gradient(180deg, rgba(8, 47, 99, 0.18), rgba(8, 47, 99, 0.05));
}

.hero-content {
  width: min(680px, 100%);
}

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

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

h1 {
  margin-bottom: 20px;
  color: var(--blue-900);
  font-size: clamp(2.4rem, 7vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  color: var(--blue-900);
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  color: var(--blue-900);
  font-size: 1.04rem;
  line-height: 1.25;
}

.hero-subtitle,
.section-heading p,
.section-copy p,
.parts p,
.contact p {
  color: var(--muted);
  font-size: 1.06rem;
}

.hero-subtitle {
  max-width: 580px;
  margin-bottom: 30px;
  color: #32465c;
  font-size: clamp(1.05rem, 2vw, 1.24rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 20px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  overflow: hidden;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  box-shadow: 0 16px 34px rgba(8, 47, 99, 0.16);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0));
}

.btn::after {
  content: "";
  position: absolute;
  top: -80%;
  left: -35%;
  width: 34px;
  height: 260%;
  z-index: -1;
  background: rgba(255, 255, 255, 0.45);
  transform: rotate(24deg);
  transition: left 260ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(8, 47, 99, 0.22);
}

.btn:hover::after {
  left: 118%;
}

.btn-primary {
  color: white;
  background: linear-gradient(135deg, #0a3b86, #126fe6 58%, #16d9ff);
  box-shadow: 0 16px 34px rgba(17, 86, 168, 0.32), 0 0 0 1px rgba(22, 217, 255, 0.24) inset;
}

.btn-primary:hover {
  border-color: rgba(22, 217, 255, 0.62);
}

.btn-secondary {
  color: white;
  background: linear-gradient(135deg, #053d46, #0f8f98 62%, #26f2c2);
  box-shadow: 0 16px 34px rgba(15, 118, 110, 0.25), 0 0 0 1px rgba(38, 242, 194, 0.2) inset;
}

.btn-light,
.btn-outline {
  color: var(--blue-800);
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(17, 86, 168, 0.18);
  backdrop-filter: blur(12px);
}

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

.trust-strip div {
  padding: 22px;
  background: white;
}

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

.trust-strip strong {
  color: var(--blue-900);
}

.trust-strip span {
  color: var(--muted);
  font-size: 0.95rem;
}

.section {
  padding: clamp(72px, 9vw, 110px) clamp(18px, 5vw, 72px);
}

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

.specialty,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.specialty-panel {
  display: grid;
  gap: 14px;
}

.metric {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.metric span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: white;
  background: var(--blue-800);
  border-radius: var(--radius);
  font-weight: 800;
}

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

.service-card {
  min-height: 310px;
  padding: 0 0 22px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 38px rgba(8, 47, 99, 0.08);
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(22, 217, 255, 0.45);
  box-shadow: 0 26px 58px rgba(8, 47, 99, 0.16);
}

.service-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}

.service-card h3,
.service-card p {
  padding-right: 20px;
  padding-left: 20px;
}

.service-card h3 {
  margin-top: 18px;
}

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

.parts {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 320px) auto;
  align-items: center;
  gap: 24px;
  background:
    radial-gradient(circle at 72% 32%, rgba(22, 217, 255, 0.24), transparent 32%),
    linear-gradient(135deg, #061b3b, var(--blue-700));
  color: white;
}

.parts h2,
.parts .eyebrow,
.parts p {
  color: white;
}

.parts div {
  max-width: 760px;
}

.parts-visual {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.contact-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

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

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

.why-grid div {
  padding: 20px;
  color: var(--blue-900);
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 800;
}

.contact-card {
  padding: 24px;
}

.map-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 4vw, 34px);
  padding: clamp(58px, 7vw, 86px) clamp(18px, 5vw, 72px);
  background:
    radial-gradient(circle at 18% 24%, rgba(22, 217, 255, 0.15), transparent 28%),
    linear-gradient(135deg, #f8fbff, #edf6ff);
  border-top: 1px solid var(--line);
}

.map-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 760px;
}

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

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

.location-gallery figure {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(17, 86, 168, 0.16);
  border-radius: var(--radius);
  box-shadow: 0 16px 34px rgba(8, 47, 99, 0.12);
  background: white;
}

.location-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.location-gallery figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 7px 11px;
  color: white;
  background: rgba(8, 47, 99, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.map-frame {
  position: relative;
  display: block;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(17, 86, 168, 0.16);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

.streetview-preview img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.streetview-preview span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 10px 14px;
  color: white;
  background: rgba(8, 47, 99, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

dl {
  display: grid;
  gap: 18px;
  margin: 0 0 24px;
}

dt {
  color: var(--blue-800);
  font-weight: 800;
}

dd {
  margin: 4px 0 0;
  color: var(--muted);
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  min-height: 48px;
  padding: 10px 16px 10px 10px;
  color: white;
  background: linear-gradient(135deg, #075e54, #128c7e 58%, #25d366);
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 18px 38px rgba(18, 140, 126, 0.34), 0 0 0 6px rgba(37, 211, 102, 0.08);
  font-weight: 800;
}

.wa-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #075e54;
  background: white;
  border-radius: 50%;
  font-size: 0.75rem;
  letter-spacing: 0;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr auto;
  gap: 28px;
  padding: 34px clamp(18px, 5vw, 72px);
  color: #dcecff;
  background: #071d3d;
}

.site-footer strong {
  color: white;
}

.site-footer p,
.site-footer span,
.site-footer a {
  color: #c7d8eb;
}

.site-footer span,
.site-footer a {
  display: block;
  margin-bottom: 8px;
}

@media (max-width: 1050px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 820px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: white;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 13px 12px;
  }

  .hero {
    min-height: auto;
    padding-top: 86px;
    padding-bottom: 96px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.88) 58%, rgba(255, 255, 255, 0.72)),
      rgba(8, 47, 99, 0.1);
  }

  .hero-media img,
  .hero-media video {
    object-position: 62% center;
  }

  .trust-strip,
  .specialty,
  .contact,
  .map-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .map-frame,
  .map-frame iframe,
  .streetview-preview img {
    min-height: 320px;
  }

  .location-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .location-gallery img {
    aspect-ratio: 4 / 5;
  }

  .trust-strip {
    margin-top: -28px;
  }

  .parts {
    align-items: flex-start;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 68px;
    padding: 12px 16px;
  }

  .brand strong {
    max-width: 210px;
  }

  .hero {
    min-height: calc(100vh - 68px);
    align-items: flex-start;
  }

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

  .services-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    padding-right: 12px;
  }

  .location-gallery {
    grid-template-columns: 1fr;
  }

  .location-gallery img {
    aspect-ratio: 16 / 11;
  }
}
