:root {
  --navy: #063775;
  --navy-dark: #052a58;
  --orange: #FF9126;
  --orange-hover: #e8821a;
  --bg: #ffffff;
  --bg-soft: #E6EBF2;
  --text: #272425;
  --muted: #615C5C;
  --border: #d5dbe3;
  --heading: "Montserrat", system-ui, sans-serif;
  --body: "Lato", system-ui, sans-serif;
  --max: 1120px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  padding-bottom: 0;
}
img { max-width: 100%; display: block; }
a { color: var(--navy); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3 {
  font-family: var(--heading);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  margin: 0 0 0.75rem;
}
p { margin: 0 0 1rem; color: var(--muted); }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 1000;
  background: var(--navy); color: #fff; padding: 0.5rem 1rem;
}
.skip-link:focus { left: 0; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.container { width: min(100% - 2.5rem, var(--max)); margin-inline: auto; }
.container.narrow { width: min(100% - 2.5rem, 720px); }
.container.form-container { width: min(100% - 2.5rem, 920px); }

/* Top navy nav */
.top-nav {
  background: var(--navy);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
}
.top-nav-inner {
  width: min(100% - 1.5rem, var(--max));
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 56px;
  position: relative;
}
.brand-logo {
  flex: 0 0 auto;
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  width: 44px; height: 44px;
}
.brand-logo img { width: 44px; height: 44px; object-fit: cover; }
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.15rem 1.15rem;
  margin-left: 0.75rem;
  flex: 1 1 auto;
}
.main-nav a {
  color: #fff;
  font-family: var(--heading);
  font-size: 0.92rem;
  font-weight: 500;
  padding: 0.35rem 0.15rem;
  text-decoration: none;
}
.main-nav a:hover { text-decoration: underline; text-underline-offset: 4px; }
.btn-nav {
  margin-left: auto;
  padding: 0.55rem 1rem !important;
  font-size: 0.85rem !important;
  white-space: nowrap;
}
.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 40px; height: 40px;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: #fff;
  margin: 5px 0;
  border-radius: 1px;
}

/* Brand bar */
.brand-bar {
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.brand-bar-inner {
  width: min(100% - 1.5rem, var(--max));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.05rem 0;
  flex-wrap: wrap;
}
.brand-bar h1 {
  font-size: clamp(1.55rem, 2.4vw, 2rem);
  color: var(--text);
  margin: 0;
}
.brand-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--text);
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
}
.phone-icon {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  font-family: var(--heading);
  font-weight: 600;
  font-size: 0.95rem;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  line-height: 1;
}
.btn-cta {
  background: var(--orange);
  color: #fff !important;
  padding: 0.72rem 1.35rem;
  border-radius: 999px;
  text-decoration: none !important;
}
.btn-cta:hover { background: var(--orange-hover); }
.btn-ghost {
  background: rgba(255,255,255,0.14);
  color: #fff !important;
  border: 1px solid rgba(255,255,255,0.65);
  padding: 0.72rem 1.35rem;
  border-radius: 999px;
  text-decoration: none !important;
  backdrop-filter: blur(4px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.28); }
.btn-outline {
  background: #fff;
  color: var(--navy);
  border: 1px solid var(--navy);
  padding: 0.65rem 1.5rem;
  border-radius: 4px;
  text-decoration: none !important;
}
.btn-outline:hover { background: var(--bg-soft); }
.btn-submit { width: 100%; margin-top: 0.35rem; padding: 0.9rem 1.25rem; }
.btn-submit:disabled { opacity: 0.7; cursor: wait; }

/* Hero */
.hero { position: relative; background: #0a2540; overflow: hidden; }
.hero-media {
  width: 100%;
  min-height: clamp(280px, 42vw, 460px);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, rgba(6,55,117,0.82) 0%, rgba(6,55,117,0.55) 48%, rgba(6,55,117,0.18) 100%);
}
.hero-overlay-inner {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
  max-width: 640px;
  color: #fff;
  padding: 1.5rem 0 3.5rem;
}
.hero-kicker {
  margin: 0 0 0.5rem;
  color: rgba(255,255,255,0.9);
  font-family: var(--heading);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hero-headline {
  color: #fff;
  font-size: clamp(1.55rem, 3.2vw, 2.35rem);
  margin: 0 0 0.75rem;
}
.hero-sub {
  color: rgba(255,255,255,0.92);
  font-size: 1.05rem;
  margin: 0 0 1.25rem;
  max-width: 34rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.hero-rating {
  position: absolute;
  right: 1.25rem;
  bottom: 1rem;
  background: rgba(255,255,255,0.96);
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}
.stars { color: #f4b400; letter-spacing: 1px; font-size: 1rem; line-height: 1; }
.stars.small { font-size: 0.95rem; }
.rating-meta {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 700;
}

/* Sections */
.section { padding: 3rem 0; }
.section-title {
  text-align: center;
  font-size: clamp(1.6rem, 2.4vw, 2rem);
  margin-bottom: 1.75rem;
}
.about { background: #fff; }
.services { background: var(--bg-soft); }
.faq { background: var(--bg-soft); }
.section.message { background: #fff; }

.about-block {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 1.75rem;
  align-items: center;
  margin-bottom: 2.25rem;
}
.about-block:last-child { margin-bottom: 0; }
.about-block--reverse { grid-template-columns: 1.15fr 1fr; }
.about-block--reverse .about-copy { order: 2; }
.about-block--reverse .about-media { order: 1; }
.about-copy h3 {
  color: var(--text);
  font-size: 1.25rem;
  margin-bottom: 0.85rem;
}
.about-copy p { font-size: 0.98rem; line-height: 1.7; }
.about-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.5rem;
  margin-bottom: 0;
}
.about-media {
  min-height: 260px;
  border-radius: 4px;
  background-size: cover;
  background-position: center;
  background-color: var(--bg-soft);
}

/* Services grid */
.service-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.service-grid li {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.35rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  align-items: flex-start;
}
.service-icon { color: var(--navy); }
.service-label {
  font-family: var(--heading);
  font-weight: 700;
  color: var(--text);
  font-size: 1.05rem;
}
.service-desc {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.reviews-summary { text-align: center; margin-bottom: 1.25rem; }
.reviews-note {
  font-weight: 600;
  color: var(--muted);
  margin: 0.35rem 0 0;
  font-size: 0.95rem;
}
.review-card {
  display: flex;
  gap: 1rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.1rem 1.25rem;
  max-width: 420px;
  margin: 0 auto 1rem;
}
.review-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--heading);
  font-weight: 700;
  flex: 0 0 auto;
}
.review-body { min-width: 0; }
.review-name {
  margin: 0 0 0.25rem;
  font-weight: 700;
  color: var(--text);
}
.review-date {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.9rem;
  color: var(--muted);
}
.review-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  font-weight: 600;
  flex-wrap: wrap;
}

/* Areas */
.area-chips {
  list-style: none;
  margin: 0 0 1.35rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
}
.area-chips li {
  background: var(--bg-soft);
  color: var(--navy);
  font-family: var(--heading);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.55rem 1.05rem;
  border-radius: 999px;
  border: 1px solid var(--border);
}
.map-wrap {
  position: relative;
  border: 1px solid var(--border);
  background: var(--bg-soft);
  border-radius: 8px;
  overflow: hidden;
}
.map-wrap iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}
.map-compact iframe { height: 260px; }
.map-attr {
  position: absolute;
  right: 0.5rem;
  bottom: 0.35rem;
  margin: 0;
  font-size: 0.7rem;
  color: #666;
  background: rgba(255,255,255,0.85);
  padding: 0.15rem 0.4rem;
}

/* FAQ */
.faq-list { display: grid; gap: 0.65rem; }
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.85rem 1.1rem;
}
.faq-item summary {
  font-family: var(--heading);
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--orange);
  font-weight: 700;
}
.faq-item[open] summary::after { content: "–"; }
.faq-item p {
  margin: 0.75rem 0 0.15rem;
  font-size: 0.95rem;
}

/* Form */
.form-subtitle {
  text-align: center;
  margin: -0.75rem 0 1.5rem;
  color: var(--muted);
}
.contact-form { margin-top: 0.5rem; }
.form-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 1.5rem;
}
.form-col label {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  margin: 0.85rem 0 0.35rem;
}
.form-col label:first-child { margin-top: 0; }
.form-col input,
.form-col textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--border);
  padding: 0.55rem 0.15rem;
  font: inherit;
  color: var(--text);
  background: transparent;
  resize: vertical;
}
.form-col input:focus,
.form-col textarea:focus {
  outline: none;
  border-bottom-color: var(--navy);
}
.checkbox {
  display: flex !important;
  gap: 0.65rem;
  align-items: flex-start;
  font-weight: 400 !important;
  font-size: 0.82rem !important;
  color: var(--muted) !important;
  margin-top: 1.1rem !important;
}
.checkbox input {
  width: auto;
  margin-top: 0.2rem;
  accent-color: var(--navy);
}
.form-status {
  min-height: 1.25rem;
  font-size: 0.9rem;
  color: var(--navy);
  margin-top: 0.75rem;
}
.form-status.is-success { color: #1b6e3a; font-weight: 700; }
.form-status.is-error { color: #a33; }

.contact {
  background: var(--navy);
  color: #fff;
  padding: 2.75rem 0;
}
.contact-title {
  text-align: center;
  color: #fff;
  font-size: 1.75rem;
  margin-bottom: 1.75rem;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem 2rem;
  max-width: 900px;
  margin-inline: auto;
}
.contact-col { display: grid; gap: 1rem; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
}
.contact-item:hover { text-decoration: underline; color: #fff; }
.ci { flex: 0 0 auto; margin-top: 0.1rem; }
.phone-icon svg, .ci svg { display: block; }

.site-footer {
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 1.25rem 0;
}
.footer-inner {
  width: min(100% - 1.5rem, var(--max));
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-copy,
.footer-privacy {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}
.footer-copy a { color: var(--muted); font-weight: 600; }

/* Call FAB styles (shown via .fab-stack on mobile) */
.fab-cta {
  display: none;
  background: var(--orange);
  color: #fff !important;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  font-family: var(--heading);
  font-weight: 700;
  text-decoration: none !important;
  box-shadow: 0 6px 18px rgba(0,0,0,0.18);
  align-items: center;
  gap: 0.45rem;
}
.fab-cta:hover { background: var(--orange-hover); }

@media (max-width: 960px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .about-block,
  .about-block--reverse { grid-template-columns: 1fr; }
  .about-block--reverse .about-copy,
  .about-block--reverse .about-media { order: initial; }
  .form-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  body { padding-bottom: 4.5rem; }
  .nav-toggle { display: block; margin-left: auto; }
  .btn-nav { display: none; }
  .main-nav {
    display: none;
    position: absolute;
    left: 0; right: 0; top: 56px;
    background: var(--navy-dark);
    flex-direction: column;
    padding: 0.75rem 1rem 1rem;
    margin: 0;
  }
  .main-nav.is-open { display: flex; }
  .brand-bar-inner { flex-direction: column; align-items: flex-start; }
  .brand-msg { display: none; }
  .hero-overlay {
    background: linear-gradient(180deg, rgba(6,55,117,0.72) 0%, rgba(6,55,117,0.78) 100%);
  }
  .hero-overlay-inner { padding: 1.25rem 0 4.5rem; }
  .hero-rating { right: 0.75rem; bottom: 0.75rem; }
  .service-grid { grid-template-columns: 1fr; }
  .map-compact iframe { height: 220px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

/* Hero WhatsApp outline on dark overlay */
.btn-whatsapp {
  background: transparent;
  color: #fff !important;
  border: 2px solid #25D366;
  padding: 0.68rem 1.25rem;
  border-radius: 999px;
  text-decoration: none !important;
}
.btn-whatsapp:hover {
  background: rgba(37, 211, 102, 0.22);
  text-decoration: none !important;
}

/* How it works */
.how-it-works { background: #fff; }
.steps-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  counter-reset: none;
}
.step-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.5rem 1.25rem 1.35rem;
  text-align: center;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-family: var(--heading);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0.85rem;
}
.step-card h3 {
  color: var(--text);
  font-size: 1.1rem;
  margin: 0 0 0.55rem;
}
.step-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
}

.review-rating-only {
  margin: 0.35rem 0 0;
  font-size: 0.88rem;
  color: var(--muted);
}

.contact-note {
  text-align: center;
  color: rgba(255, 255, 255, 0.85);
  margin: -0.75rem auto 1.5rem;
  max-width: 36rem;
  font-size: 0.95rem;
}

.footer-left { display: grid; gap: 0.35rem; }
.footer-privacy a { color: var(--navy); font-weight: 600; }
.footer-social {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-soft);
  color: var(--navy);
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}
.footer-social a:hover {
  background: var(--navy);
  color: #fff;
  text-decoration: none;
}

/* FAB stack: WhatsApp icon above Call on mobile */
.fab-stack {
  display: none;
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 90;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.65rem;
}
.fab-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #25D366;
  color: #fff !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
  text-decoration: none !important;
}
.fab-wa:hover { background: #1ebe57; }
.fab-stack .fab-cta {
  position: static;
  display: inline-flex;
  left: auto;
  right: auto;
}

/* Privacy page */
.page-privacy .page-hero {
  background: var(--navy);
  color: #fff;
  padding: 2rem 0 1.75rem;
}
.page-privacy .page-hero h1 {
  color: #fff;
  margin: 0 0 0.35rem;
  font-size: clamp(1.5rem, 2.4vw, 1.9rem);
}
.page-privacy .page-hero p {
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  font-size: 0.95rem;
}
.privacy-content {
  padding: 2.5rem 0 3rem;
}
.privacy-content h2 {
  font-size: 1.15rem;
  margin-top: 1.75rem;
  margin-bottom: 0.55rem;
}
.privacy-content h2:first-child { margin-top: 0; }
.privacy-content ul {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
  color: var(--muted);
}
.privacy-content li { margin-bottom: 0.35rem; }
.privacy-content a { font-weight: 600; }

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

@media (max-width: 760px) {
  body { padding-bottom: 6.5rem; }
  .fab-stack {
    display: flex;
    left: 1rem;
    right: 1rem;
    align-items: stretch;
  }
  .fab-wa {
    align-self: flex-end;
    margin-right: 0.15rem;
  }
  .fab-stack .fab-cta {
    width: 100%;
    justify-content: center;
  }
}
