:root {
  --blue: #2f6df6;
  --blue-soft: #dfe9ff;
  --text: #1f2a37;
  --muted: #6b7a88;
  --bg: #f5f8ff;
  --card: #ffffff;
  --line: #d7e2ff;
  --shadow: 0 24px 50px rgba(47, 109, 246, 0.18);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

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

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

.site-header {
  background: #fff;
  border-bottom: 1px solid #eef2f8;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.logo {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--blue);
  display: flex;
  flex-direction: column;
}

.site-logo-img {
  height: 42px;
  width: auto;
  display: block;
}

.site-nav {
  display: flex;
  gap: 20px;
  font-weight: 500;
  color: #4b5f73;
}

.hero {
  position: relative;
  padding: 60px 0 80px;
}

.hero::before {
  content: "";
  position: absolute;
  left: -20vw;
  top: 80px;
  width: 70vw;
  height: 420px;
  background: #edf3ff;
  border-radius: 0 120px 120px 0;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  right: 5vw;
  bottom: -120px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle at center, rgba(207, 222, 255, 0.55), rgba(207, 222, 255, 0));
  border-radius: 50%;
  z-index: 0;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
  z-index: 1;
}

.hero-logo {
  width: min(360px, 90%);
  height: auto;
  display: block;
  margin-bottom: 20px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.65rem;
  font-weight: 700;
  color: #6b7a88;
}

.lead {
  color: var(--muted);
  max-width: 420px;
  margin: 12px 0 24px;
}

.phone-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  background: var(--blue);
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: var(--shadow);
}

.hero-form {
  background: var(--card);
  padding: 28px;
  border-radius: 28px;
  border: 1px solid #eef2f8;
  box-shadow: 0 18px 40px rgba(36, 76, 140, 0.08);
}

.hero-form h2 {
  text-align: center;
  font-size: 1.4rem;
  color: var(--blue);
  margin-bottom: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.8rem;
  color: #7b8a98;
}

input,
textarea {
  border: 1px solid #dbe3f4;
  border-radius: 10px;
  padding: 12px 14px;
  font: inherit;
  color: var(--text);
  background: #fff;
}

.hero-form button {
  display: block;
  margin: 18px auto 0;
  border: 2px solid var(--blue);
  background: transparent;
  color: var(--blue);
  font-weight: 600;
  padding: 10px 28px;
  border-radius: 999px;
  cursor: pointer;
}

.about {
  padding: 40px 0 20px;
  position: relative;
  overflow: hidden;
}

.about::after {
  content: "";
  position: absolute;
  right: -120px;
  top: 10px;
  width: 520px;
  height: 360px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='520' height='360' viewBox='0 0 520 360'%3E%3Cpath d='M420 0v120c0 44-36 80-80 80H220c-44 0-80 36-80 80v80' fill='none' stroke='%23dfe9ff' stroke-width='48' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.6;
  pointer-events: none;
}
}

.about h2 {
  margin: 10px 0 16px;
}

.about-text {
  max-width: 620px;
  color: var(--muted);
}

.services-detail {
  padding: 30px 0 70px;
  background: #ffffff;
}

.services-head {
  max-width: 720px;
  margin-bottom: 24px;
}

.services-head h2 {
  margin: 8px 0 10px;
}

.services-head p {
  color: var(--muted);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.services-grid article {
  background: #fff;
  padding: 18px;
  border-radius: 16px;
  border: 1px solid #eef2f8;
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--blue-soft);
  display: grid;
  place-items: center;
  margin-bottom: 12px;
}

.service-icon svg {
  width: 30px;
  height: 30px;
  stroke: var(--blue);
  stroke-width: 2.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.activity {
  padding: 40px 0 90px;
  background: #f1f6ff;
}

.zones {
  padding: 40px 0 90px;
  background: #ffffff;
}

.zones-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: center;
}

.zones-header h2 {
  margin: 8px 0 10px;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.zones-inner p {
  color: var(--muted);
  max-width: 520px;
}

.zones-card {
  background: #f2f6ff;
  border: 1px solid #dfe8ff;
  border-radius: 20px;
  padding: 22px;
  display: grid;
  gap: 14px;
}

.zones-card h3 {
  margin-bottom: 12px;
  font-size: 1rem;
  color: var(--blue);
}

.zones-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.zones-list span {
  background: #ffffff;
  color: #2a3a50;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
  border: 1px solid #dfe8ff;
}

.zones-note {
  color: #6c7a8b;
  font-size: 0.85rem;
}

.zones-map {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #e6eefc;
  padding: 20px;
  display: grid;
  grid-template-columns: minmax(220px, 1.2fr) 1fr;
  gap: 20px;
  align-items: center;
  box-shadow: 0 18px 30px rgba(36, 76, 140, 0.08);
}

.zones-map iframe {
  width: 100%;
  height: 240px;
  border: 0;
  border-radius: 16px;
}

.map-caption h3 {
  margin-bottom: 8px;
}

.map-caption p {
  color: var(--muted);
}

.activity-wrap {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: start;
}

.activity-intro {
  background: transparent;
}

.activity-intro h2 {
  margin: 8px 0 14px;
}

.activity-intro p {
  color: var(--muted);
  max-width: 560px;
}

.activity-intro ul {
  margin-top: 16px;
  padding-left: 0;
  color: var(--text);
  display: grid;
  gap: 8px;
  list-style: none;
}

.activity-intro li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.activity-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: #e4ecff;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.activity-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--blue);
  stroke-width: 2.4;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.activity-card {
  background: #fff;
  padding: 22px;
  border-radius: 18px;
  border: 1px solid #eef2f8;
  box-shadow: 0 16px 30px rgba(36, 76, 140, 0.08);
}

.activity-highlight {
  background: var(--blue-soft);
  border-color: #cfe0ff;
  box-shadow: 0 20px 36px rgba(47, 109, 246, 0.18);
}

.activity-highlight h3 {
  color: var(--blue);
}

.activity-note {
  margin-top: 14px;
  font-size: 0.85rem;
  color: #8a97a5;
}

.site-footer {
  background: #0f1b2d;
  color: #ffffff;
  padding: 50px 0 30px;
}

.mobile-cta {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  background: var(--blue);
  color: #fff;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 18px 30px rgba(47, 109, 246, 0.3);
  display: none;
  z-index: 20;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 30px;
  align-items: start;
}

.footer-brand p {
  color: #c7d2e0;
  margin-top: 12px;
  max-width: 360px;
}

.footer-logo {
  width: 160px;
  height: auto;
  display: block;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.footer-links h4 {
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.footer-links p {
  color: #c7d2e0;
  font-size: 0.9rem;
  margin-bottom: 6px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 28px;
  padding-top: 16px;
  font-size: 0.85rem;
  color: #9fb1c7;
}

.contact-bar {
  background: #fff;
  border-radius: 18px;
  border: 1px solid #eef2f8;
  padding: 22px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.contact-bar h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero::before {
    width: 90vw;
    height: 320px;
    border-radius: 0 80px 80px 0;
  }

  .activity-wrap {
    grid-template-columns: 1fr;
  }

  .zones-inner {
    grid-template-columns: 1fr;
  }

  .zones-map {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 680px) {
  .site-nav {
    display: none;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .mobile-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: calc(100% - 32px);
    text-align: center;
  }
}
