@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --navy: #0f2742;
  --navy-soft: #18395d;
  --gold: #c8a45d;
  --gold-soft: #f5ead2;
  --bg: #f7f8fb;
  --text: #1d2430;
  --muted: #667085;
  --white: #ffffff;
  --line: #e6e9ef;
  --shadow: 0 18px 45px rgba(15, 39, 66, 0.12);
  --radius: 22px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Inter, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }

.topbar {
  background: var(--navy);
  color: rgba(255,255,255,.86);
  font-size: 14px;
  padding: 10px 6%;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  padding: 18px 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--navy);
}
.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
}
.logo-mark img {
  width: 48px;
  height: 48px;
  display: block;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.brand-name {
  font-weight: 800;
  font-size: 24px;
  letter-spacing: -0.5px;
  color: var(--navy);
}
.brand-subtitle {
  margin-top: 4px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 17px;
  font-weight: 700;
  color: #344054;
}
.nav-links a:hover { color: var(--gold); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 13px 22px;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  transition: .2s ease;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 14px 32px rgba(200,164,93,.28);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(200,164,93,.34);
}
.btn-outline {
  border-color: rgba(255,255,255,.42);
  color: white;
}
.btn-light {
  background: white;
  color: var(--navy);
  border-color: var(--line);
}

.hero {
  position: relative;
  min-height: 760px;
  padding: 90px 6% 70px;
  background:
    linear-gradient(120deg, rgba(15,39,66,.96), rgba(24,57,93,.9)),
    url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?auto=format&fit=crop&w=1800&q=80') center/cover;
  color: white;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  right: -120px;
  top: 120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(200,164,93,.18);
  filter: blur(10px);
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 54px;
  align-items: center;
  max-width: 1240px;
  margin: auto;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.11);
  border: 1px solid rgba(255,255,255,.2);
  padding: 9px 14px;
  border-radius: 999px;
  color: rgba(255,255,255,.9);
  font-size: 14px;
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.02;
  letter-spacing: -2.5px;
  max-width: 780px;
  margin-bottom: 24px;
}
.hero h1 span { color: var(--gold); }
.hero p {
  color: rgba(255,255,255,.82);
  font-size: 19px;
  max-width: 650px;
  margin-bottom: 34px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 42px;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 680px;
}
.stat {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 18px;
  padding: 20px;
}
.stat strong {
  display: block;
  font-size: 26px;
  color: white;
}
.stat span {
  color: rgba(255,255,255,.72);
  font-size: 14px;
}

.appointment-card {
  background: white;
  color: var(--text);
  border-radius: 30px;
  padding: 34px;
  box-shadow: var(--shadow);
}
.appointment-card h3 {
  color: var(--navy);
  font-size: 26px;
  margin-bottom: 8px;
}
.appointment-card p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 22px;
}
.form-grid { display: grid; gap: 14px; }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 15px;
  font: inherit;
  outline: none;
  background: #fbfcff;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(200,164,93,.16);
}

section { padding: 88px 6%; }
.container { max-width: 1240px; margin: auto; }

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 38px;
}
.eyebrow {
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1.2px;
  margin-bottom: 10px;
}
h2 {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
  color: var(--navy);
  letter-spacing: -1px;
}
.section-head p {
  color: var(--muted);
  max-width: 520px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 10px 26px rgba(15,39,66,.05);
  transition: .2s ease;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.icon {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  background: var(--gold-soft);
  color: var(--navy);
  display: grid;
  place-items: center;
  font-size: 24px;
  margin-bottom: 18px;
}
.card h3 {
  color: var(--navy);
  font-size: 21px;
  margin-bottom: 10px;
}
.card p, .card li {
  color: var(--muted);
  font-size: 15px;
}

.split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 36px;
  align-items: start;
}
.info-panel {
  background: var(--navy);
  color: white;
  border-radius: 30px;
  padding: 38px;
  position: sticky;
  top: 110px;
  box-shadow: var(--shadow);
}
.info-panel h3 {
  font-size: 30px;
  margin-bottom: 16px;
}
.info-panel p {
  color: rgba(255,255,255,.76);
  margin-bottom: 24px;
}
.checklist { display: grid; gap: 16px; }
.doc-item {
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
}
.doc-item h4 {
  color: var(--navy);
  font-size: 19px;
  margin-bottom: 10px;
}
.doc-item ul {
  padding-left: 20px;
  color: var(--muted);
}

.pricing { background: white; }
.table-wrap { overflow-x: auto; }
table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 22px;
  box-shadow: 0 10px 28px rgba(15,39,66,.06);
  background: white;
}
th {
  background: var(--navy);
  color: white;
  text-align: left;
  padding: 18px;
  font-weight: 700;
}
td {
  padding: 18px;
  border-bottom: 1px solid var(--line);
  color: #344054;
}
tr:last-child td { border-bottom: none; }
.notice {
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
}

.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 28px;
}
.contact-box {
  background: var(--navy);
  color: white;
  border-radius: 30px;
  padding: 34px;
}
.contact-box h3 {
  font-size: 28px;
  margin-bottom: 20px;
}
.contact-line {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.contact-line span {
  display: block;
  color: var(--gold);
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.map-placeholder {
  min-height: 430px;
  border-radius: 30px;
  background:
    linear-gradient(rgba(15,39,66,.1), rgba(15,39,66,.1)),
    url('https://images.unsplash.com/photo-1577086664693-894d8405334a?auto=format&fit=crop&w=1400&q=80') center/cover;
  border: 1px solid var(--line);
  display: flex;
  align-items: end;
  padding: 26px;
}
.map-card {
  background: white;
  border-radius: 20px;
  padding: 22px;
  max-width: 420px;
  box-shadow: var(--shadow);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
details {
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
}
summary {
  cursor: pointer;
  color: var(--navy);
  font-weight: 800;
}
details p {
  margin-top: 12px;
  color: var(--muted);
}

footer {
  background: #091a2d;
  color: rgba(255,255,255,.72);
  padding: 42px 6%;
}
.footer-grid {
  max-width: 1240px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-grid strong { color: white; }

@media (max-width: 980px) {
  .nav-links { display: none; }
  .hero-grid,
  .split,
  .contact-grid { grid-template-columns: 1fr; }
  .hero-stats,
  .services-grid,
  .faq-grid { grid-template-columns: 1fr; }
  .hero {
    min-height: auto;
    padding-top: 64px;
  }
  .info-panel { position: static; }
}

@media (max-width: 560px) {
  .topbar { font-size: 12px; }
  .navbar { padding: 14px 5%; }
  .brand-name { font-size: 21px; }
  .brand-subtitle { font-size: 10px; }
  .logo-mark,
  .logo-mark img {
    width: 42px;
    height: 42px;
  }
  .hero { padding: 56px 5% 56px; }
  .appointment-card { padding: 24px; border-radius: 24px; }
  section { padding: 64px 5%; }
}
