:root {
  color-scheme: light;
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #222222;
  background: #f4f8fd;
  --primary: #0a2e5c;
  --primary-dark: #082347;
  --secondary: #ffffff;
  --accent: #1f1f1f;
  --surface: #fbfbfb;
  --surface-strong: #f2f2f2;
  --border: #e4e4e4;
  --shadow: 0 20px 60px rgba(51, 51, 51, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: linear-gradient(180deg, #fff 0%, #f4f8fd 100%);
  color: var(--accent);
}

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

button,
a {
  font: inherit;
}

.container {
  width: min(1220px, 100%);
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 4rem 0;
}

section + section {
  border-top: 1px solid rgba(228, 228, 228, 0.55);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  padding: 0.75rem 1rem;
  background: var(--primary);
  color: var(--secondary);
  z-index: 1000;
}

.site-header {
  border-bottom: 1px solid rgba(228, 228, 228, 0.9);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 25;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
}

.header-controls {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  justify-content: center;
  flex: 1;
}

.header-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.header-phone {
  flex-shrink: 0;
}

.brand-label,
.brand-tagline {
  margin: 0;
}

.brand-label {
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: 1.1rem;
}

.brand-tagline {
  color: #666;
  font-size: 0.92rem;
  margin-top: 0.2rem;
}

.header-nav a,
.header-phone {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

.header-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(228, 228, 228, 0.95);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.header-nav a:hover,
.header-nav a:focus-visible {
  background: #f9f7f7;
  transform: translateY(-1px);
}

.header-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.15rem;
  min-height: 44px;
  border-radius: 999px;
  background: linear-gradient(135deg, #0a2e5c, #164a8a);
  color: white;
  border: none;
  box-shadow: 0 12px 30px rgba(10, 46, 92, 0.18);
}

.hero-section {
  background: linear-gradient(180deg, rgba(22, 74, 138, 0.08) 0%, #fff 55%);
  padding: 4rem 0 3rem;
}

.hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
  justify-items: center;
  grid-template-columns: 1.1fr 0.9fr;
  text-align: center;
}

.hero-copy {
  max-width: 700px;
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--primary);
  font-weight: 800;
  letter-spacing: 0.06em;
}

h1 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.hero-text,
.hero-intro {
  margin: 1.2rem 0;
  max-width: 42rem;
}

.hero-text {
  font-size: 1.15rem;
  font-weight: 600;
}

.hero-intro {
  color: #4f4f4f;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.75rem 0 1.25rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.6rem;
  border-radius: 999px;
  text-decoration: none;
  min-width: 170px;
  font-weight: 700;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(22, 74, 138, 0.18);
}

.button-primary {
  background: linear-gradient(135deg, #0a2e5c, #164a8a);
  color: white;
}

.button-secondary {
  background: #fff;
  color: var(--primary);
  border: 1px solid rgba(22, 74, 138, 0.35);
}

.hero-contact-card {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  background: #fff;
  border: 1px solid rgba(22, 74, 138, 0.18);
  border-radius: 1.2rem;
  padding: 1rem 1.5rem;
  margin-top: 1.25rem;
  box-shadow: 0 12px 30px rgba(22, 74, 138, 0.08);
}

.hero-contact-card a {
  color: var(--primary);
  font-weight: 700;
}

.hero-contact-card span {
  font-weight: 600;
  color: #555;
}

.hero-image {
  min-height: 280px;
  max-height: 600px;
  display: grid;
  place-content: center;
  background: #fff;
  color: #505050;
  text-align: center;
  width: 100%;
}

.hero-image-placeholder,
.service-image-placeholder {
  min-height: 280px;
  border: 2px dashed rgba(22, 74, 138, 0.35);
  border-radius: 1.75rem;
  display: grid;
  place-content: center;
  background: #fff;
  color: #505050;
  text-align: center;
  padding: 2rem;
  box-shadow: inset 0 0 0 1px rgba(22, 74, 138, 0.06);
}
.map-placeholder {
  min-height: 280px;
  border: 2px dashed rgba(22, 74, 138, 0.35);
  border-radius: 1.75rem;
  display: grid;
  place-content: center;
  background: #fff;
  color: #505050;
  text-align: center;
  padding: 2rem;
  box-shadow: inset 0 0 0 1px rgba(22, 74, 138, 0.06);
}

.hero-image-placeholder {
  min-height: 360px;
  background: linear-gradient(
    180deg,
    rgba(22, 74, 138, 0.04),
    rgba(255, 255, 255, 0.95)
  );
}

.placeholder-text,
.service-image-placeholder strong,
.map-placeholder strong {
  display: block;
  font-weight: 800;
  margin-bottom: 0.65rem;
}

.placeholder-text span,
.service-image-placeholder span,
.map-placeholder span {
  font-size: 0.97rem;
  color: #7a7a7a;
}

.section-heading {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-heading h2 {
  margin: 0 auto;
  max-width: 38rem;
}

.section-label {
  color: var(--primary);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.65rem;
}

h2 {
  margin: 0;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
}

.services-grid,
.benefits-grid,
.coverage-grid,
.reviews-grid,
.contact-grid {
  display: grid;
  gap: 1.5rem;
}

.services-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  justify-content: center;
  justify-items: center;
}

.service-card {
  padding: 1.75rem;
  border-radius: 1.75rem;
  background: linear-gradient(180deg, #fff 0%, #fcfcfc 100%);
  border: 1px solid rgba(22, 74, 138, 0.12);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
  align-items: center;
  text-align: center;
  max-width: 380px;
}

.service-card:hover,
.service-card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
  margin: 0;
  font-size: 1.2rem;
}

.service-card p {
  margin: 0;
  color: #555;
}

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 1.3rem;
  background: rgba(22, 74, 138, 0.14);
  color: var(--primary);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.4rem;
}

.benefits-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  justify-content: center;
  justify-items: center;
}

.benefit-card {
  padding: 1.5rem;
  border-radius: 1.6rem;
  background: #fff;
  border: 1px solid rgba(228, 228, 228, 0.7);
  display: grid;
  gap: 1rem;
  place-items: center;
  text-align: center;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
  max-width: 320px;
}

.benefit-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.benefit-icon {
  display: inline-flex;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 1rem;
  align-items: center;
  justify-content: center;
  background: rgba(22, 74, 138, 0.12);
  font-size: 1.35rem;
}

.coverage-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  justify-content: center;
  justify-items: center;
}

.coverage-card,
.review-card,
.contact-card {
  padding: 1.5rem;
  border-radius: 1.5rem;
  background: #fff;
  border: 1px solid rgba(228, 228, 228, 0.7);
  text-align: center;

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

.coverage-card {
  font-weight: 700;
  color: var(--accent);
  text-align: center;
}

.coverage-card:hover {
  background: #f4f8fd;
}

.map-section {
  margin-top: 2rem;
}

.map-placeholder {
  min-height: 340px;
  background: linear-gradient(180deg, rgba(22, 74, 138, 0.04), #fff 100%);
}

.reviews-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.review-card {
  display: grid;
  gap: 1rem;
  text-align: center;
}

.review-stars {
  color: #f4b400;
  margin: 0;
  font-size: 1rem;
}

.review-card h3 {
  margin: 0;
}

.review-card p {
  margin: 0;
  color: #555;
}

.emergency-cta {
  margin: 3.25rem 0;
}

.emergency-card {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 2rem;

  background: linear-gradient(135deg, #0a2e5c, #164a8a);

  color: white;

  border-radius: 2rem;
  padding: 2.5rem;

  box-shadow: 0 24px 60px rgba(10, 46, 92, 0.25);

  align-items: center;
  text-align: center;
}

.emergency-card h2,
.emergency-card p,
.emergency-card .eyebrow {
  color: #fff;
}

.emergency-actions {
  align-items: center;
}

.emergency-card p {
  max-width: 34rem;
}

.emergency-actions {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

.contact-section {
  margin-bottom: 3rem;
}

.contact-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.contact-card h3 {
  margin: 0 0 0.75rem;
}

.contact-card {
  text-align: center;
}

.contact-card a {
  color: var(--primary);
  text-decoration: none;
  word-break: break-word;
}

.contact-card p {
  margin: 0;
  color: #555;
}

.site-footer {
  background: #081c3d;
  color: white;
  padding: 2.5rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 2rem;
  align-items: start;
}

.footer-brand {
  font-weight: 800;
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.footer-links {
  display: grid;
  gap: 0.75rem;
}

.footer-links h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
}

.footer-copy {
  margin: 1.75rem 0 0;
  text-align: center;
  color: #aaa;
}

.floating-whatsapp,
.sticky-call {
  position: fixed;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  padding: 1rem 1.1rem;
  font-weight: 700;
  z-index: 50;
}

.floating-whatsapp {
  right: 1.25rem;
  bottom: 5.8rem;
  background: #25d366;
  box-shadow: 0 20px 44px rgba(37, 211, 102, 0.22);
  animation: float 3.2s ease-in-out infinite;
}

.sticky-call {
  right: 1.25rem;
  bottom: 1.25rem;

  background: linear-gradient(135deg, #0a2e5c, #164a8a);
}
.floating-whatsapp:hover,
.sticky-call:hover,
.floating-whatsapp:focus-visible,
.sticky-call:focus-visible {
  transform: translateY(-2px);
}

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

@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 100%;
  }
}

@media (max-width: 860px) {
  .header-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .header-nav {
    justify-content: center;
  }

  .hero-image-placeholder {
    min-height: 240px;
  }
}

@media (max-width: 760px) {
  section {
    padding: 3rem 0;
  }

  .hero-section {
    padding-top: 0px;
  }

  .hero-grid,
  .emergency-card,
  .header-inner {
    gap: 1rem;
  }

  .header-nav {
    display: none;
  }

  .header-inner {
    justify-content: space-between;
    padding-bottom: 0.5rem;
  }

  .hero-actions,
  .emergency-actions {
    flex-direction: column;
  }

  .header-phone {
    width: 100%;
    text-align: center;
  }

  .emergency-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .emergency-card p {
    max-width: 100%;
  }

  .hero-contact-card {
    justify-content: center;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .container {
    width: calc(100% - 1.5rem);
  }

  .hero-text,
  .hero-intro {
    margin: 1rem 0;
  }

  .button {
    width: 100%;
    min-width: 0;
  }

  .hero-actions {
    gap: 0.85rem;
  }

  .floating-whatsapp {
    right: 0.75rem;
    bottom: 5rem;
  }

  .sticky-call {
    left: 0.75rem;
    bottom: 0.75rem;
  }
}
