:root {
  --navy: #0f2a43;
  --navy-2: #14344f;
  --gold: #c9a227;
  --gold-2: #a8871d;
  --ink: #263238;
  --muted: #5c6b73;
  --bg: #ffffff;
  --bg-alt: #f4f7f9;
  --line: #e3e9ee;
  --radius: 12px;
  --shadow: 0 12px 30px rgba(15, 42, 67, 0.10);
  --shadow-lg: 0 18px 44px rgba(15, 42, 67, 0.16);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--gold-2); }

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

.container {
  width: min(1120px, 92%);
  margin-inline: auto;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--navy);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.16);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 14px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}

.brand:hover { color: #fff; }

.brand-logo { height: 54px; width: auto; display: block; }

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.5px;
  border-radius: 10px;
  font-size: 14px;
}

.brand-text { display: flex; flex-direction: column; line-height: 1.15; }

.brand-text strong { font-size: 17px; letter-spacing: 0.4px; }
.brand-text small { color: #cfe0ee; font-size: 12px; letter-spacing: 1px; text-transform: uppercase; }

.site-nav { display: flex; align-items: center; gap: 26px; }

.site-nav a {
  color: #e4edf5;
  font-size: 14.5px;
  font-weight: 600;
  transition: color 0.2s;
}

.site-nav a:hover { color: var(--gold); }

.site-nav .nav-cta {
  background: var(--gold);
  color: #fff;
  padding: 9px 18px;
  border-radius: 8px;
  font-weight: 700;
}

.site-nav .nav-cta:hover { background: var(--gold-2); color: #fff; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  width: 24px;
  height: 2.5px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(1000px 500px at 85% -10%, rgba(201, 162, 39, 0.16), transparent 60%),
    linear-gradient(200deg, var(--navy) 0%, var(--navy-2) 55%, #0a1d30 100%);
  color: #fff;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
  padding-block: 78px 84px;
}

.eyebrow {
  display: inline-block;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 13px;
  margin: 0 0 14px;
}

.hero h1 {
  margin: 0 0 18px;
  font-size: clamp(30px, 4.4vw, 46px);
  line-height: 1.16;
  letter-spacing: -0.5px;
}

.hero-sub {
  color: #cddae6;
  font-size: 17px;
  margin: 0 0 28px;
  max-width: 58ch;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }

.hero-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
  color: #e4edf5;
  font-size: 15px;
}

.hero-points li { display: flex; align-items: center; gap: 8px; }
.hero-points li::before {
  content: "\2713";
  color: var(--gold);
  font-weight: 800;
}

.hero-card {
  background: #fff;
  color: var(--ink);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  padding: 6px;
}

.card-inner { padding: 30px 26px 26px; text-align: center; }

.card-inner h2 { margin: 0 0 8px; font-size: 22px; }
.card-inner p { margin: 0 0 20px; color: var(--muted); font-size: 14.5px; }

.card-inner .btn { margin-bottom: 12px; }
.card-inner .card-note { margin: 14px 0 0; font-size: 12.5px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 9px;
  font-weight: 600;
  font-size: 15px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.btn-primary {
  background: var(--gold);
  color: #fff;
}

.btn-primary:hover { background: var(--gold-2); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(201, 162, 39, 0.35); }

.btn-outline {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}

.btn-outline:hover { background: var(--navy); color: #fff; transform: translateY(-2px); }

.btn-block { width: 100%; }

.wa-icon {
  width: 26px;
  height: 26px;
  flex: none;
  fill: currentColor;
}

.btn-whatsapp {
  background: #fff;
  color: #075e54;
  border-color: #25d366;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.btn-whatsapp:hover {
  background: #e6f9ef;
  border-color: #1ebe5d;
  color: #054d45;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp .wa-icon { fill: #25d366; }

/* ---------- Strip ---------- */
.strip {
  background: var(--gold);
  color: #0a1d30;
}

.strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding-block: 22px;
}

.strip-item { text-align: center; }

.strip-item strong {
  display: block;
  font-size: 20px;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.strip-item span { font-size: 13.5px; font-weight: 600; }

/* ---------- Sections ---------- */
.section { padding-block: 72px; }

.section-alt { background: var(--bg-alt); }

.section-title {
  margin: 0 0 12px;
  font-size: clamp(26px, 3.4vw, 34px);
  text-align: center;
  color: var(--navy);
  letter-spacing: -0.4px;
}

.section-lead {
  text-align: center;
  color: var(--muted);
  max-width: 66ch;
  margin: 0 auto 40px;
  font-size: 16.5px;
}

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.about-card {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.about-card h3 { margin: 0 0 8px; color: var(--navy); }
.about-card p { margin: 0; color: var(--muted); }

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 22px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.service-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 10px;
  font-size: 16.5px;
  color: var(--navy);
}

.service-card p { margin: 0; color: var(--muted); font-size: 14.5px; }

.badge {
  display: inline-grid;
  place-items: center;
  min-width: 30px;
  height: 30px;
  padding: 0 4px;
  background: var(--navy);
  color: var(--gold);
  font-weight: 700;
  font-size: 13px;
  border-radius: 8px;
}

.service-card.notice { background: #fff9e8; border-color: #ecd9a0; }

.note {
  text-align: center;
  color: var(--muted);
  font-size: 13.5px;
  margin: 26px 0 0;
}

/* ---------- Sub-Areas ---------- */
.subareas {
  background:
    radial-gradient(900px 420px at 12% 0%, rgba(201, 162, 39, 0.14), transparent 60%),
    linear-gradient(200deg, var(--navy) 0%, var(--navy-2) 60%, #0a1d30 100%);
  color: #fff;
}

.subareas .section-title { color: #fff; }
.subareas .section-lead { color: #cddae6; }

.subareas-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 900px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.subareas-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 4px solid var(--gold);
  border-radius: 12px;
  padding: 18px 20px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  color: #eef4f9;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s, background 0.2s;
}

.subareas-list li::before {
  content: "";
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  margin-top: 2px;
  background: url('data:image/svg+xml,<svg%20xmlns=%22http://www.w3.org/2000/svg%22%20viewBox=%220%200%2024%2024%22><defs><linearGradient%20id=%22g%22%20x1=%220%22%20y1=%220%22%20x2=%221%22%20y2=%221%22><stop%20offset=%220%22%20stop-color=%22%23f6d87a%22/><stop%20offset=%221%22%20stop-color=%22%23a88420%22/></linearGradient></defs><rect%20x=%221.5%22%20y=%221.5%22%20width=%2221%22%20height=%2221%22%20rx=%226.5%22%20fill=%22url(%23g)%22/><path%20d=%22M7.5%2012.5l3%203%206-6%22%20stroke=%22%230a1d30%22%20stroke-width=%222.4%22%20fill=%22none%22%20stroke-linecap=%22round%22%20stroke-linejoin=%22round%22/></svg>')
    center / contain no-repeat;
  filter: drop-shadow(0 3px 6px rgba(201, 162, 39, 0.45));
}

.subareas-list li:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  box-shadow: 0 12px 26px rgba(201, 162, 39, 0.22);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.07));
}

.subareas-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 34px;
}

.btn-light { border-color: rgba(255, 255, 255, 0.55); color: #fff; }
.btn-light:hover { background: #fff; color: var(--navy); border-color: #fff; }

/* ---------- Tags ---------- */
.tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 900px;
  margin-inline: auto;
}

.tags span {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  cursor: default;
  transition: background 0.2s, color 0.2s;
}

.tags span:hover { background: var(--navy); color: #fff; }

/* ---------- Contact ---------- */
.section-contact { background: linear-gradient(180deg, #fff 0%, #f2f6f9 100%); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: start;
}

.contact-info {
  background: var(--navy);
  color: #dce8f1;
  border-radius: var(--radius);
  padding: 32px 30px;
  box-shadow: var(--shadow-lg);
}

.info-item { margin-bottom: 24px; }
.info-item:last-child { margin-bottom: 0; }

.info-label {
  display: block;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.info-item p { margin: 0; line-height: 1.7; }
.info-item a { color: #fff; }
.info-item a:hover { color: var(--gold); }

.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 18px;
}

.field { display: grid; gap: 6px; }

.field label { font-weight: 600; font-size: 14px; color: var(--navy); }

.field input,
.field textarea {
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  border: 1.5px solid var(--line);
  border-radius: 9px;
  padding: 11px 14px;
  background: #fbfdfe;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.18);
}

.form-note { margin: 0; font-size: 14px; font-weight: 600; text-align: center; }
.form-note.success { color: #2e7d32; }
.form-note.error { color: #c62828; }

.map-wrap { grid-column: 1 / -1; }

.map-open {
  display: inline-block;
  margin: 0 0 12px;
  font-weight: 600;
  font-size: 14px;
  color: var(--navy);
}

.map-open:hover { color: var(--gold-2); }

.map-wrap iframe {
  width: 100%;
  height: 360px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: block;
}

/* ---------- Footer ---------- */
.site-footer {
  background: #0a1d30;
  color: #b9c8d4;
  padding-block: 44px 28px;
}

.footer-inner {
  display: grid;
  gap: 18px;
  text-align: center;
  justify-items: center;
}

.footer-brand strong { color: #fff; font-size: 18px; }

.footer-logo { height: 60px; width: auto; margin-bottom: 10px; display: block; margin-inline: auto; }

.footer-brand p { margin: 6px 0 0; font-size: 14px; line-height: 1.6; }

.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px; }
.footer-links a { color: #b9c8d4; font-size: 14px; font-weight: 600; }
.footer-links a:hover { color: var(--gold); }

.footer-copy { margin: 8px 0 0; font-size: 13px; border-top: 1px solid rgba(255, 255, 255, 0.1); padding-top: 18px; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 36px; padding-block: 56px 60px; }
  .hero-card { max-width: 440px; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .subareas-list { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .strip-inner { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .subareas-list { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .site-nav {
    position: fixed;
    inset: 0 0 auto 0;
    flex-direction: column;
    background: var(--navy);
    padding: 84px 24px 28px;
    gap: 18px;
    transform: translateY(-120%);
    transition: transform 0.3s ease;
  }

  .site-nav.open { transform: translateY(0); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4); }

  .nav-toggle { display: flex; }

  body.nav-open { overflow: hidden; }
}

@media (max-width: 520px) {
  .services-grid { grid-template-columns: 1fr; }
  .section { padding-block: 54px; }
}