:root {
  --bg: #f7fbff;
  --text: #11223a;
  --muted: #4a5e78;
  --brand-blue: #0e83ff;
  --brand-teal: #0eb6b0;
  --brand-orange: #ff9f1c;
  --brand-green: #2bb673;
  --brand-navy: #0a2b4f;
  --surface: #ffffff;
  --surface-alt: #eaf5ff;
  --border: #d7e6f5;
  --shadow: 0 12px 30px rgba(17, 34, 58, 0.12);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Trebuchet MS", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top right, #d7ffe6 0%, #f7fbff 45%),
    linear-gradient(120deg, #f7fbff 0%, #f0f8ff 100%);
  line-height: 1.65;
}

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

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

header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 43, 79, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.topbar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 8px 0;
  color: #d9ebff;
  font-size: 0.92rem;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 14px;
  gap: 16px;
}

.logo-wrap {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: white;
  font-weight: 700;
}

.logo-wrap img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  background: white;
  border-radius: 14px;
  padding: 6px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.nav-links a {
  color: white;
  font-weight: 600;
  padding: 8px 10px;
  border-radius: 8px;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.14);
}

.nav-links .nav-quote {
  background: linear-gradient(135deg, var(--brand-orange), #ff5f2e);
  color: white;
  border-radius: 999px;
  padding: 9px 16px;
  font-weight: 700;
}

.nav-links .nav-quote:hover {
  background: linear-gradient(135deg, #ffb347, #ff6a3d);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  border-radius: 999px;
  padding: 12px 20px;
  transition: transform 0.2s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-teal));
  color: white;
}

.btn-outline {
  border: 2px solid var(--brand-blue);
  color: var(--brand-blue);
  background: white;
}

.hero {
  position: relative;
  overflow: hidden;
  color: white;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(10, 43, 79, 0.84), rgba(14, 131, 255, 0.78));
  z-index: 1;
}

.hero img {
  width: 100%;
  min-height: 580px;
  object-fit: cover;
  display: block;
}

.hero video {
  width: 100%;
  min-height: 580px;
  object-fit: cover;
  display: block;
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  align-content: center;
  padding: 52px 0;
}

.badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin: 14px 0;
  line-height: 1.18;
}

h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  color: var(--brand-navy);
}

h3 {
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  color: #0c456f;
}

.hero p {
  max-width: 780px;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
  max-width: 820px;
}

.fact {
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 12px;
  border-radius: 14px;
  text-align: center;
}

.fact strong {
  display: block;
  font-size: 1.2rem;
}

main section {
  padding: 68px 0;
}

.strip {
  background: linear-gradient(90deg, #0e83ff 0%, #0eb6b0 100%);
  color: white;
}

.strip .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

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

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}

.card h4 {
  margin: 6px 0 8px;
  color: #0b3a61;
}

.section-title {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--brand-blue);
  margin-bottom: 8px;
}

.image-block img {
  width: 100%;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.gallery-grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: white;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 16 / 10;
  transition: transform 0.25s ease;
}

.gallery-grid img:hover {
  transform: scale(1.03);
}

.list {
  margin: 0;
  padding-left: 18px;
}

.list li {
  margin: 8px 0;
}

.steps {
  counter-reset: steps;
  list-style: none;
  padding: 0;
  margin: 0;
}

.steps li {
  counter-increment: steps;
  margin-bottom: 14px;
  padding: 14px;
  border-radius: 14px;
  background: #f3f9ff;
  border: 1px solid #d8e8f8;
}

.steps li::before {
  content: counter(steps);
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  background: var(--brand-green);
  color: white;
  font-weight: 700;
}

.faq details {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: white;
  padding: 12px 14px;
  margin-bottom: 10px;
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
  color: #0d3f68;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.testimonial-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.testimonial-card p {
  margin: 0 0 12px;
}

.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testimonial-avatar {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid #d4e7fb;
}

.testimonial-card strong {
  display: block;
  color: #0d3f68;
  line-height: 1.2;
}

.testimonial-card span {
  font-size: 0.9rem;
  color: var(--muted);
}

.contact-box {
  background: linear-gradient(130deg, #0a2b4f 0%, #0e83ff 58%, #0eb6b0 100%);
  color: white;
  border-radius: 20px;
  padding: 24px;
}

.map-wrap iframe,
.form-wrap iframe {
  width: 100%;
  border: none;
  border-radius: 14px;
}

.map-wrap iframe {
  min-height: 390px;
}

.form-wrap {
  min-height: 700px;
}

.site-footer {
  background: linear-gradient(145deg, #061d36 0%, #0a2b4f 60%, #0f4f87 100%);
  color: #d8eaff;
  padding: 42px 0 20px;
  margin-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.site-footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: 24px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 10px;
}

.footer-logo img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 12px;
  background: white;
  padding: 4px;
}

.site-footer h4 {
  margin: 0 0 10px;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #9fd6ff;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer li {
  margin: 7px 0;
}

.site-footer a {
  color: #e5f4ff;
}

.site-footer a:hover {
  color: #69d5ff;
}

.footer-note {
  margin-top: 24px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: #b7d7f5;
  font-size: 0.92rem;
}

@media (max-width: 980px) {
  .topbar {
    display: none;
  }

  .navbar {
    flex-direction: column;
    align-items: stretch;
    padding: 10px 0 12px;
  }

  .logo-wrap {
    justify-content: center;
  }

  .nav-links {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .nav-links a {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
  }

  .nav-links .nav-quote {
    grid-column: 1 / -1;
  }

  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .site-footer-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .testimonial-grid {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 640px) {
  .hero img {
    min-height: 640px;
  }

  .hero video {
    min-height: 640px;
  }

  .quick-facts {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .nav-links {
    grid-template-columns: 1fr;
  }

  .site-footer-grid {
    grid-template-columns: 1fr;
  }
}
