:root {
  --navy: #0b1f3a;
  --navy-2: #12345f;
  --gold: #c9a24d;
  --gold-2: #e5c76b;
  --ink: #1f2933;
  --muted: #64748b;
  --line: #d9e2ec;
  --soft: #f6f8fb;
  --white: #ffffff;
  --danger: #b42318;
  --success: #067647;
  --shadow: 0 16px 45px rgba(11, 31, 58, 0.14);
  --radius: 8px;
  --header-h: 74px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
}

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

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

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

button {
  cursor: pointer;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--white);
  background: var(--navy);
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 16px;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(217, 226, 236, 0.9);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  font-weight: 800;
  letter-spacing: 0;
  color: var(--navy);
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--navy);
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  border-radius: 8px;
  font-weight: 900;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.94rem;
  color: #334155;
}

.desktop-nav a {
  padding: 8px 0;
}

.desktop-nav a:hover,
.desktop-nav a[aria-current="page"] {
  color: var(--navy);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-menu-button {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: var(--header-h) 0 auto 0;
  z-index: 95;
  padding: 14px 16px 18px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.mobile-nav.is-open {
  display: grid;
  gap: 10px;
}

.mobile-nav a {
  padding: 12px;
  color: var(--navy);
  background: var(--soft);
  border-radius: var(--radius);
}

.btn {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 16px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 750;
  line-height: 1.15;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: var(--navy);
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  box-shadow: 0 10px 24px rgba(201, 162, 77, 0.28);
}

.btn-secondary {
  color: var(--white);
  background: var(--navy);
}

.btn-outline {
  color: var(--navy);
  background: var(--white);
  border-color: rgba(11, 31, 58, 0.2);
}

.btn-whatsapp {
  color: var(--white);
  background: #128c7e;
}

.btn-small {
  min-height: 40px;
  padding: 9px 13px;
  font-size: 0.91rem;
}

.icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(86vh - var(--header-h));
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 24, 45, 0.92), rgba(8, 24, 45, 0.72) 48%, rgba(8, 24, 45, 0.36)),
    var(--hero-image, url("https://images.unsplash.com/photo-1600607687920-4e2a09cf159d?auto=format&fit=crop&w=1800&q=78")) center / cover;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  padding: 68px 0 86px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--gold-2);
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: currentColor;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(2.35rem, 6vw, 4.85rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  color: var(--navy);
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 1.08rem;
  line-height: 1.25;
}

.hero p {
  max-width: 690px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.02rem, 2vw, 1.24rem);
}

.hero-actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-strip {
  position: relative;
  z-index: 2;
  margin-top: -46px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(217, 226, 236, 0.9);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.trust-item {
  padding: 22px;
  border-right: 1px solid var(--line);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item strong {
  display: block;
  color: var(--navy);
  font-size: 1.04rem;
}

.trust-item span {
  color: var(--muted);
  font-size: 0.94rem;
}

.section {
  padding: 76px 0;
}

.section-soft {
  background: var(--soft);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(260px, 0.5fr);
  gap: 30px;
  align-items: end;
  margin-bottom: 34px;
}

.section-heading p {
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

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

.feature {
  min-height: 100%;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.feature-icon {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  place-items: center;
  color: var(--navy);
  background: rgba(201, 162, 77, 0.18);
  border-radius: var(--radius);
}

.feature p,
.listing-card p,
.process-step p,
.contact-card p,
.about-text p {
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.62fr);
  gap: 38px;
  align-items: center;
}

.media-panel {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.media-panel img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.lead {
  color: var(--muted);
  font-size: 1.08rem;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 22px 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #334155;
}

.check-list li::before {
  content: "";
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 3px;
  background: var(--gold);
  clip-path: polygon(14% 54%, 28% 40%, 43% 55%, 76% 20%, 90% 34%, 43% 82%);
}

.cta-band {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(11, 31, 58, 0.96), rgba(18, 52, 95, 0.9)),
    url("https://images.unsplash.com/photo-1560518883-ce09059eeffa?auto=format&fit=crop&w=1600&q=76") center / cover;
}

.cta-band h2 {
  color: var(--white);
}

.cta-band p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
}

.page-hero {
  position: relative;
  min-height: 430px;
  display: grid;
  align-items: center;
  color: var(--white);
  background: var(--navy);
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 24, 45, 0.92), rgba(8, 24, 45, 0.6)),
    var(--page-image, url("https://images.unsplash.com/photo-1560520653-9e0e4c89eb11?auto=format&fit=crop&w=1700&q=76")) center / cover;
}

.page-hero .container {
  position: relative;
  z-index: 1;
  padding: 54px 0;
}

.page-hero h1 {
  max-width: 780px;
}

.page-hero p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.12rem;
}

.form-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 0.48fr);
  gap: 28px;
  align-items: start;
}

.form-card,
.side-card,
.filter-panel,
.contact-card {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(11, 31, 58, 0.06);
}

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

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

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

label {
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 750;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #cbd5e1;
  border-radius: var(--radius);
  outline: none;
}

textarea {
  min-height: 126px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 77, 0.18);
}

.checkbox {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #334155;
}

.checkbox input {
  width: 18px;
  min-height: 18px;
  margin-top: 3px;
  accent-color: var(--navy);
}

.form-note,
.form-error,
.form-success {
  display: none;
  grid-column: 1 / -1;
  padding: 12px 14px;
  border-radius: var(--radius);
  font-weight: 650;
}

.form-success.is-visible {
  display: block;
  color: var(--success);
  background: #ecfdf3;
  border: 1px solid #abefc6;
}

.form-error.is-visible {
  display: block;
  color: var(--danger);
  background: #fef3f2;
  border: 1px solid #fecdca;
}

.side-card {
  position: sticky;
  top: calc(var(--header-h) + 18px);
}

.stat-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.stat-list li {
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.stat-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.stat-list strong {
  display: block;
  color: var(--navy);
}

.listing-layout {
  display: grid;
  grid-template-columns: 292px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.filter-panel {
  position: sticky;
  top: calc(var(--header-h) + 18px);
}

.filters {
  display: grid;
  gap: 14px;
}

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

.listing-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 36px rgba(11, 31, 58, 0.08);
}

.listing-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.listing-body {
  padding: 18px;
}

.listing-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 12px 0;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 9px;
  color: var(--navy);
  background: #eef2f7;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
}

.price {
  display: block;
  margin: 10px 0 8px;
  color: var(--navy);
  font-size: 1.2rem;
  font-weight: 850;
}

.no-results {
  display: none;
  padding: 22px;
  color: var(--muted);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.no-results.is-visible {
  display: block;
}

.process {
  counter-reset: process;
}

.process-step {
  position: relative;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.process-step::before {
  counter-increment: process;
  content: counter(process);
  display: grid;
  width: 36px;
  height: 36px;
  margin-bottom: 16px;
  place-items: center;
  color: var(--navy);
  background: var(--gold);
  border-radius: 50%;
  font-weight: 850;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 28px;
}

.map-frame {
  overflow: hidden;
  min-height: 370px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

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

.about-text {
  max-width: 820px;
}

.footer {
  color: rgba(255, 255, 255, 0.8);
  background: #08182d;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) repeat(3, minmax(180px, 0.5fr));
  gap: 28px;
  padding: 52px 0;
}

.footer h2,
.footer h3 {
  color: var(--white);
}

.footer a {
  display: inline-flex;
  margin: 5px 0;
}

.footer-bottom {
  padding: 18px 0;
  color: rgba(255, 255, 255, 0.62);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 110;
  display: none;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: #128c7e;
  border-radius: 50%;
  box-shadow: 0 14px 32px rgba(18, 140, 126, 0.35);
}

.floating-whatsapp svg {
  width: 28px;
  height: 28px;
}

@media (max-width: 1020px) {
  .desktop-nav,
  .header-actions {
    display: none;
  }

  .mobile-menu-button {
    display: inline-flex;
  }

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

  .section-heading,
  .split,
  .form-wrap,
  .listing-layout,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .side-card,
  .filter-panel {
    position: static;
  }
}

@media (max-width: 720px) {
  :root {
    --header-h: 66px;
  }

  .container {
    width: min(100% - 28px, 1120px);
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .hero {
    min-height: calc(78vh - var(--header-h));
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(8, 24, 45, 0.88), rgba(8, 24, 45, 0.7)),
      var(--hero-image, url("https://images.unsplash.com/photo-1600607687920-4e2a09cf159d?auto=format&fit=crop&w=1000&q=72")) center / cover;
  }

  .hero-content {
    padding: 48px 0 78px;
  }

  .hero-actions .btn,
  .cta-row .btn,
  .form-grid .btn {
    width: 100%;
  }

  .trust-strip {
    margin-top: -28px;
  }

  .trust-grid,
  .grid-2,
  .grid-3,
  .grid-4,
  .form-grid,
  .listing-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .trust-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 56px 0;
  }

  .page-hero {
    min-height: 360px;
  }

  .form-card,
  .side-card,
  .filter-panel,
  .contact-card,
  .feature,
  .process-step {
    padding: 20px;
  }

  .floating-whatsapp {
    display: inline-flex;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
