:root {
  --navy-950: #0b1f38;
  --navy-900: #112b4d;
  --navy-800: #1d4573;
  --blue-500: #1695f3;
  --blue-400: #42b7ff;
  --red-500: #dd2b2b;
  --white: #ffffff;
  --grey-50: #f5f7fb;
  --grey-100: #e8edf4;
  --grey-300: #c5d1df;
  --ink-800: #203246;
  --ink-700: #415366;
  --shadow-soft: 0 20px 55px rgba(8, 28, 51, 0.12);
  --shadow-card: 0 18px 40px rgba(16, 42, 73, 0.12);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Trebuchet MS", sans-serif;
  color: var(--ink-800);
  background:
    radial-gradient(circle at top left, rgba(22, 149, 243, 0.15), transparent 24%),
    linear-gradient(180deg, #f7fbff 0%, #f2f5fa 46%, #eef2f7 100%);
}

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

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

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

.site-shell {
  min-height: 100vh;
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(17, 43, 77, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 90px;
}

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

.brand img {
  width: clamp(180px, 24vw, 280px);
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.site-nav a {
  padding: 0.85rem 1.1rem;
  border-radius: 999px;
  font-weight: 700;
  color: var(--navy-900);
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.active {
  background: rgba(22, 149, 243, 0.1);
  color: var(--blue-500);
}

.site-nav .nav-cta {
  background: linear-gradient(135deg, var(--red-500), #f15454);
  color: var(--white);
  box-shadow: 0 10px 25px rgba(221, 43, 43, 0.22);
}

.site-nav .nav-call {
  background: linear-gradient(135deg, var(--blue-500), var(--navy-800));
  color: var(--white);
  box-shadow: 0 10px 25px rgba(22, 149, 243, 0.22);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible,
.site-nav .nav-cta.active {
  color: var(--white);
  background: linear-gradient(135deg, #c32020, #ef4d4d);
}

.site-nav .nav-call:hover,
.site-nav .nav-call:focus-visible {
  color: var(--white);
  background: linear-gradient(135deg, #0f86dd, #163a62);
}

.nav-toggle {
  display: none;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 0;
  border-radius: 16px;
  background: var(--navy-950);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
  border-radius: 999px;
}

.hero-section,
.page-hero,
.services-preview,
.service-list-section,
.emergency-section,
.reviews-section,
.map-section,
.assurance-section,
.cta-band,
.trust-strip {
  padding: clamp(4rem, 7vw, 6.5rem) 0;
}

.hero-grid,
.page-hero-grid,
.quote-layout,
.section-grid,
.assurance-grid,
.trust-grid {
  display: grid;
  gap: 2rem;
}

.hero-grid {
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
}

.eyebrow,
.mini-label {
  margin: 0 0 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-500);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Sora", "Trebuchet MS", sans-serif;
  line-height: 1.05;
  color: var(--navy-950);
}

h1 {
  font-size: clamp(2.6rem, 5vw, 4.8rem);
}

h2 {
  font-size: clamp(2rem, 3.5vw, 3.1rem);
}

h3 {
  font-size: 1.35rem;
}

p {
  margin: 0;
  line-height: 1.7;
  color: var(--ink-700);
}

.hero-text,
.page-hero-copy p,
.section-copy p {
  font-size: 1.08rem;
  max-width: 62ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0.95rem 1.5rem;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--blue-500), var(--navy-800));
  color: var(--white);
  box-shadow: 0 14px 28px rgba(22, 149, 243, 0.25);
}

.button-call {
  background: linear-gradient(135deg, var(--red-500), #f15454);
  color: var(--white);
  box-shadow: 0 14px 28px rgba(221, 43, 43, 0.24);
}

.button-secondary {
  background: rgba(17, 43, 77, 0.08);
  color: var(--navy-900);
}

.hero-points,
.trust-items,
.assurance-list {
  display: grid;
  gap: 1rem;
}

.hero-points {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 2rem;
}

.point-card,
.trust-item,
.assurance-item {
  padding: 1.2rem 1.25rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(17, 43, 77, 0.08);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.point-card strong,
.trust-item strong,
.assurance-item strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--navy-900);
}

.hero-visual {
  min-height: 100%;
}

.hero-image-card,
.section-image,
.page-hero-image,
.form-shell,
.assurance-card,
.cta-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.hero-image-card {
  min-height: 540px;
}

.hero-image-card img,
.section-image img,
.page-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.trust-strip {
  padding-top: 0;
}

.trust-grid,
.assurance-grid {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
}

.trust-items,
.assurance-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.section-copy,
.page-hero-copy,
.hero-copy {
  display: grid;
  gap: 1rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 800;
  color: var(--navy-900);
}

.text-link::after {
  content: "->";
  color: var(--red-500);
}

.card-grid,
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
}

.service-card {
  padding: 1.5rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(239, 245, 251, 0.94));
  border: 1px solid rgba(17, 43, 77, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.services-section-copy,
.reviews-copy,
.map-copy {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}

.home-services {
  padding-top: 0;
}

.service-icon-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-icon-card {
  display: grid;
  gap: 1rem;
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: rgba(22, 149, 243, 0.1);
  color: var(--navy-800);
}

.service-icon svg {
  width: 30px;
  height: 30px;
}

.service-card h3,
.detail-card h2 {
  margin-bottom: 0.7rem;
}

.detail-card {
  min-height: 100%;
}

.page-hero {
  padding-top: clamp(3.4rem, 6vw, 5.5rem);
}

.page-hero-grid {
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
}

.quote-layout {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
}

.quote-side-card {
  display: grid;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(17, 43, 77, 0.08);
  border-radius: var(--radius-md);
}

.quote-side-card strong {
  color: var(--navy-900);
}

.quote-side-card a {
  font-weight: 700;
  color: var(--blue-500);
}

.form-shell {
  padding: clamp(1.4rem, 3vw, 2rem);
}

.quote-form {
  display: grid;
  gap: 1rem;
}

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

.quote-form label {
  display: grid;
  gap: 0.45rem;
  color: var(--navy-900);
  font-weight: 700;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid var(--grey-300);
  border-radius: var(--radius-sm);
  background: #fbfdff;
  color: var(--ink-800);
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: 2px solid rgba(22, 149, 243, 0.2);
  border-color: var(--blue-500);
}

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

.form-button {
  justify-self: start;
}

.form-note,
.form-status {
  font-size: 0.95rem;
}

.form-status {
  min-height: 1.5rem;
  font-weight: 700;
  color: var(--blue-500);
}

.assurance-card,
.cta-card {
  padding: clamp(1.6rem, 4vw, 2.4rem);
}

.emergency-section,
.reviews-section,
.map-section,
.cta-band {
  padding-top: 1rem;
}

.emergency-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: clamp(1.8rem, 4vw, 2.8rem);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #b51f24, #122b4d 78%);
  box-shadow: var(--shadow-soft);
}

.emergency-card .eyebrow,
.emergency-card h2,
.emergency-card p {
  color: var(--white);
}

.emergency-card .eyebrow {
  margin-bottom: 0.65rem;
}

.button-emergency {
  min-width: 170px;
  background: var(--white);
  color: var(--red-500);
  box-shadow: 0 12px 28px rgba(5, 18, 35, 0.24);
}

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

.review-card {
  display: grid;
  gap: 0.9rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(17, 43, 77, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.review-stars {
  font-size: 1.05rem;
  letter-spacing: 0.12em;
  color: #f4a524;
}

.review-card strong {
  color: var(--navy-900);
}

.map-frame {
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(17, 43, 77, 0.08);
}

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

.cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background:
    radial-gradient(circle at top right, rgba(66, 183, 255, 0.18), transparent 30%),
    linear-gradient(135deg, #ffffff, #eef6ff);
}

.site-footer {
  padding: 2rem 0 2.5rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 2rem;
  padding: 1.6rem 1.8rem;
  border-radius: 28px;
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.82);
}

.footer-inner strong,
.footer-contact a {
  color: var(--white);
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.whatsapp-float {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 1100;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.whatsapp-tooltip {
  padding: 0.6rem 0.85rem;
  border-radius: 999px;
  background: rgba(11, 31, 56, 0.92);
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 700;
  box-shadow: var(--shadow-card);
}

.whatsapp-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #0ca54d);
  color: var(--white);
  box-shadow: 0 16px 35px rgba(12, 165, 77, 0.34);
}

.whatsapp-icon svg {
  width: 30px;
  height: 30px;
}

@media (max-width: 960px) {
  .hero-grid,
  .page-hero-grid,
  .quote-layout,
  .trust-grid,
  .assurance-grid,
  .trust-items,
  .assurance-list,
  .card-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .hero-points,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero-image-card {
    min-height: 360px;
  }

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

  .emergency-card,
  .cta-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.75rem);
    right: 1rem;
    left: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(17, 43, 77, 0.08);
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
  }

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

  .site-nav a {
    text-align: center;
  }

  .whatsapp-tooltip {
    display: none;
  }

  .nav-toggle {
    display: inline-block;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(var(--container), calc(100% - 1.2rem));
  }

  .header-inner {
    min-height: 82px;
  }

  .brand img {
    width: 180px;
  }

  .hero-section,
  .page-hero,
  .services-preview,
  .service-list-section,
  .emergency-section,
  .reviews-section,
  .map-section,
  .assurance-section,
  .cta-band,
  .trust-strip {
    padding: 3.2rem 0;
  }

  .hero-image-card,
  .section-image,
  .page-hero-image,
  .form-shell,
  .assurance-card,
  .cta-card,
  .footer-inner {
    border-radius: 24px;
  }

  .footer-inner {
    padding: 1.4rem;
  }

  .hero-actions .button,
  .emergency-card .button,
  .site-nav a {
    width: 100%;
  }

  .hero-image-card {
    min-height: 300px;
  }

  .service-icon-grid {
    grid-template-columns: 1fr;
  }

  .map-frame iframe {
    min-height: 320px;
  }

  .whatsapp-icon {
    width: 58px;
    height: 58px;
  }
}
