:root {
  --navy: #123a63;
  --red: #c7352d;
  --dark: #1f2933;
  --light: #f7f9fb;
  --white: #ffffff;
  --gray: #6b7280;
  --border: #e5e7eb;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
}
a { color: var(--navy); text-decoration: none; }
a:hover { text-decoration: underline; }
.topbar {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 10px 16px;
  font-weight: 700;
}
header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 10;
}
.nav-wrap {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  gap: 16px;
}
.logo {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy);
}
nav ul {
  display: flex;
  list-style: none;
  gap: 18px;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}
nav a { font-weight: 700; }
.hero {
  background: linear-gradient(rgba(18,58,99,.82), rgba(18,58,99,.82)), url('https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?auto=format&fit=crop&w=1400&q=80') center/cover;
  color: var(--white);
  padding: 90px 16px;
}
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 16px;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.7rem);
  line-height: 1.1;
  margin: 0 0 16px;
}
.hero p {
  max-width: 720px;
  font-size: 1.1rem;
  margin-bottom: 24px;
}
.btn-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn {
  display: inline-block;
  padding: 14px 22px;
  border-radius: 8px;
  font-weight: 700;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
}
.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.section { padding: 72px 0; }
.section.alt { background: var(--light); }
.section h2 {
  font-size: 2rem;
  margin-top: 0;
  color: var(--navy);
}
.grid {
  display: grid;
  gap: 22px;
}
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 6px 18px rgba(0,0,0,.05);
}
.card h3 { margin-top: 0; color: var(--navy); }
.checklist {
  padding-left: 18px;
}
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.photo-placeholder {
  background: linear-gradient(135deg, #dbe7f3, #f8fafc);
  border: 2px dashed #9db3ca;
  border-radius: 12px;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 18px;
  color: var(--navy);
  font-weight: 700;
}
.quote {
  font-style: italic;
  color: var(--dark);
}
.cta-band {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 54px 16px;
}
.cta-band h2 { color: var(--white); margin-top: 0; }
footer {
  background: #0f1720;
  color: #d1d5db;
  padding: 28px 16px;
}
footer .container {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.page-hero {
  background: var(--light);
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
}
.page-hero h1 { margin: 0 0 10px; color: var(--navy); font-size: 2.5rem; }
.badge {
  display: inline-block;
  background: #eef4fb;
  color: var(--navy);
  border: 1px solid #cbd8e6;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.steps {
  counter-reset: steps;
  list-style: none;
  padding: 0;
}
.steps li {
  position: relative;
  padding-left: 58px;
  margin-bottom: 24px;
}
.steps li::before {
  counter-increment: steps;
  content: counter(steps);
  position: absolute;
  left: 0;
  top: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.contact-box {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
}
form {
  display: grid;
  gap: 14px;
}
input, textarea, select {
  width: 100%;
  padding: 14px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font: inherit;
}
textarea { min-height: 140px; resize: vertical; }
.small-note {
  color: var(--gray);
  font-size: .95rem;
}
@media (max-width: 700px) {
  .nav-wrap { flex-direction: column; align-items: flex-start; }
}
