:root {
  --blue: #0b3c5d;
  --blue-strong: #082b43;
  --gold: #d4af37;
  --green: #2f9d68;
  --ink: #172033;
  --muted: #5e6b7e;
  --line: #dbe5ef;
  --paper: #ffffff;
  --soft: #f5f8fb;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: linear-gradient(180deg, #f4f8fb 0%, #ffffff 38%, #f5f8fb 100%);
  color: var(--ink);
  font-family: "Poppins", Arial, sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

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

header {
  align-items: center;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(8, 43, 67, 0.08);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  padding: 14px 40px;
  position: sticky;
  top: 0;
  z-index: 999;
}

.brand {
  align-items: center;
  display: flex;
  gap: 12px;
  text-decoration: none;
}

.brand img {
  height: 56px;
  object-fit: contain;
  width: 56px;
}

.brand strong {
  color: var(--blue);
  display: block;
  font-size: 1.05rem;
}

.brand span span {
  color: var(--muted);
  display: block;
  font-size: 0.86rem;
}

nav ul {
  align-items: center;
  display: flex;
  gap: 18px;
  list-style: none;
}

nav a {
  border-radius: 6px;
  color: var(--blue);
  font-weight: 600;
  padding: 8px 4px;
  text-decoration: none;
}

.nav-call {
  background: var(--blue);
  border-radius: 6px;
  color: #fff;
  padding: 10px 14px;
}

.menu {
  background: var(--blue);
  border: 0;
  border-radius: 6px;
  color: #fff;
  cursor: pointer;
  display: none;
  font-size: 1.45rem;
  height: 44px;
  width: 44px;
}

.hero {
  background:
    radial-gradient(circle at 88% 12%, rgba(212, 175, 55, 0.28), transparent 28%),
    linear-gradient(115deg, rgba(8, 43, 67, 0.98), rgba(11, 60, 93, 0.84)),
    url("logo.png") center right 8% / 290px no-repeat;
  color: #fff;
  padding: 66px 24px 68px;
}

.hero-inner,
.section-inner {
  margin: 0 auto;
  max-width: 1180px;
}

.eyebrow {
  color: #ffe7a3;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(2rem, 3.8vw, 3.8rem);
  line-height: 1.1;
  margin: 14px 0 18px;
  max-width: 900px;
}

.hero p {
  font-size: 1.12rem;
  max-width: 760px;
}

.hero-points,
.areas,
.check-list {
  list-style: none;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-points li,
.areas li {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  font-weight: 700;
  padding: 8px 12px;
}

.cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  align-items: center;
  border-radius: 6px;
  display: inline-flex;
  font-weight: 700;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  text-decoration: none;
}

.btn-primary {
  background: var(--gold);
  box-shadow: 0 14px 28px rgba(212, 175, 55, 0.28);
  color: #111;
}

.btn-secondary {
  border: 2px solid rgba(255, 255, 255, 0.82);
  color: #fff;
}

section {
  padding: 76px 24px;
}

h2 {
  color: var(--blue);
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.15;
  margin-bottom: 14px;
}

h3 {
  color: var(--blue-strong);
  margin-bottom: 8px;
}

.section-lead {
  color: var(--muted);
  margin-bottom: 34px;
  max-width: 780px;
}

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

.two-col {
  align-items: start;
  display: grid;
  gap: 28px;
  grid-template-columns: 1.05fr 0.95fr;
}

.card,
.contact-panel,
.faq details {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(8, 43, 67, 0.07);
  padding: 24px;
}

.card p,
.card li,
.faq p,
.contact-panel li {
  color: var(--muted);
}

.card ul {
  margin-left: 18px;
  margin-top: 10px;
}

.band {
  background: #fff;
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
}

.check-list {
  display: grid;
  gap: 12px;
}

.check-list li {
  background: var(--soft);
  border-left: 4px solid var(--gold);
  border-radius: 6px;
  color: var(--blue-strong);
  font-weight: 700;
  padding: 12px 14px;
}

.location-band {
  background: linear-gradient(135deg, rgba(8, 43, 67, 0.98), rgba(11, 60, 93, 0.92));
  color: #fff;
}

.location-band h2,
.location-band .section-lead {
  color: #fff;
}

.areas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.faq {
  display: grid;
  gap: 12px;
}

.faq summary {
  color: var(--blue-strong);
  cursor: pointer;
  font-weight: 700;
}

.faq p {
  margin-top: 10px;
}

.contact-section {
  background: linear-gradient(180deg, #f7fafc, #ffffff);
}

.contact-list {
  display: grid;
  gap: 14px;
  list-style: none;
}

.contact-list a {
  color: var(--blue);
  font-weight: 700;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.contact-actions .btn-secondary {
  border-color: var(--blue);
  color: var(--blue);
}

footer {
  background: var(--blue-strong);
  color: #fff;
  padding: 28px 24px;
  text-align: center;
}

.whatsapp {
  align-items: center;
  background: #25d366;
  border-radius: 50%;
  bottom: 22px;
  box-shadow: 0 12px 30px rgba(8, 43, 67, 0.28);
  display: flex;
  height: 60px;
  justify-content: center;
  position: fixed;
  right: 22px;
  width: 60px;
  z-index: 1000;
}

.whatsapp img {
  height: 34px;
  width: 34px;
}

@media (max-width: 900px) {
  header {
    padding: 12px 18px;
  }

  .menu {
    align-items: center;
    display: inline-flex;
    justify-content: center;
  }

  nav ul {
    align-items: flex-start;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 18px 36px rgba(8, 43, 67, 0.16);
    display: none;
    flex-direction: column;
    min-width: 220px;
    padding: 18px;
    position: absolute;
    right: 18px;
    top: 78px;
  }

  nav ul.active {
    display: flex;
  }

  .nav-call {
    text-align: center;
    width: 100%;
  }

  .hero {
    background: linear-gradient(115deg, rgba(8, 43, 67, 0.96), rgba(11, 60, 93, 0.86));
    padding-top: 82px;
  }

  .grid,
  .two-col {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .brand span span {
    display: none;
  }

  section {
    padding: 58px 18px;
  }

  .cta,
  .hero-points {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}
