
:root {
  --navy: #143761;
  --blue: #55aef1;
  --sky: #e9f6ff;
  --soft: #f7fbff;
  --teal: #2db2c6;
  --orange: #f68b1f;
  --ink: #1f3550;
  --muted: #5f7085;
  --border: #d7e6f2;
  --shadow: 0 16px 35px rgba(19, 55, 97, 0.12);
  --radius: 20px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.65;
}
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }
.shell { width: min(1180px, calc(100% - 2rem)); margin: 0 auto; }
.narrow-shell { width: min(780px, calc(100% - 2rem)); }
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.98);
  box-shadow: 0 8px 24px rgba(20, 55, 97, 0.08);
}
.header-shell { padding: 0.75rem 0 0; }
.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-bottom: 0.9rem;
}
.brand-logo img {
  width: min(250px, 42vw);
  height: auto;
}
.header-tools {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.social-links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.social-circle {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 1.3rem;
  box-shadow: var(--shadow);
}
.social-circle:hover { text-decoration: none; }
.social-circle.facebook { background: #4593e2; }
.social-circle.instagram { background: #ea2c59; }
.header-cta, .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border-radius: 999px;
  padding: 0.9rem 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.84rem;
  text-decoration: none;
}
.header-cta, .btn-secondary {
  background: #1d5fa8;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.75);
  box-shadow: var(--shadow);
}
.btn-primary {
  background: linear-gradient(180deg, #ffd66b, #f2c14f);
  color: #17324b;
  border: 0;
  box-shadow: var(--shadow);
}
.nav-strip { background: var(--blue); }
.mini-nav { display: none; }
.main-nav {
  display: flex;
  gap: 1.15rem;
  align-items: center;
  flex-wrap: wrap;
  padding: 0.9rem 0;
}
.main-nav a {
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.98rem;
  letter-spacing: 0.03em;
}
.hero {
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  color: #fff;
  isolation: isolate;
}
.hero-media,
.hero-media::after {
  position: absolute;
  inset: 0;
}
.hero-media {
  z-index: 0;
}
.hero-media::after {
  content: '';
  background: linear-gradient(120deg, rgba(5, 56, 120, 0.80), rgba(34, 150, 209, 0.58));
}
.hero-video,
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.03) 38%, rgba(0,0,0,0.02) 100%);
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  left: -3%;
  right: -3%;
  bottom: -58px;
  height: 120px;
  background: #fff;
  border-radius: 50% 50% 0 0;
}
.hero-inner {
  position: relative;
  z-index: 1;
  padding: 4rem 0 11.5rem;
}
.section-after-overlap {
  padding-top: 2rem;
}
.hero-overlap-section {
  position: relative;
  z-index: 3;
  margin-top: -8.5rem;
  padding: 0 0 1.5rem;
}
.hero-overlap-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.35rem;
  align-items: start;
}
.overlap-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(19, 55, 97, 0.18);
  overflow: visible;
}
.overlap-card img {
  width: calc(100% - 1.3rem);
  margin: 0.7rem auto 0;
  height: 190px;
  object-fit: cover;
  border-radius: 16px;
}
.overlap-card-body {
  padding: 1rem 1.15rem 1.15rem;
}
.overlap-card-body h3 {
  margin: 0.2rem 0 0.55rem;
  color: var(--navy);
  font-size: 1.45rem;
  line-height: 1.05;
}
.overlap-card-body p {
  margin: 0 0 0.85rem;
  color: var(--muted);
}
.overlap-icon {
  position: absolute;
  top: -1.3rem;
  left: 50%;
  transform: translateX(-50%);
  min-width: 84px;
  height: 84px;
  padding: 0 1rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #8bd48f, #58a965);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.72rem;
  border: 6px solid #fff;
  box-shadow: 0 10px 24px rgba(40, 104, 52, 0.24);
}
.hero-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: center;
  min-height: 460px;
}
.hero-logo-panel {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-logo {
  width: min(100%, 470px);
  filter: drop-shadow(0 8px 18px rgba(0,0,0,0.22));
}
.hero-copy {
  text-align: center;
  padding: 1.4rem 1rem;
  max-width: 760px;
  margin-inline: auto;
}
.hero-copy-panel {
  background: rgba(10, 33, 67, 0.40);
  border: 1px solid rgba(255,255,255,0.20);
  backdrop-filter: blur(6px);
  border-radius: 28px;
  box-shadow: 0 18px 40px rgba(8, 32, 64, 0.25);
}
.eyebrow {
  margin: 0 0 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 800;
  color: #7fdcff;
}
.intro-copy .eyebrow, .section-heading .eyebrow, .split-copy .eyebrow, .contact-panel .eyebrow, .legal-copy .eyebrow, .cta-inner .eyebrow { color: var(--teal); }
.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.5rem, 4.9vw, 4.6rem);
  line-height: 1.04;
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 700;
}
.hero p:last-of-type {
  width: min(720px, 100%);
  margin: 0 auto;
  font-size: 1.06rem;
}
.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}
.section { padding: 4.5rem 0; }
.section-white { background: #fff; }
.section-soft { background: linear-gradient(180deg, #f8fcff, #edf7ff); }
.section-heading { margin-bottom: 1.7rem; }
.section-heading.center { text-align: center; }
.section h2, .intro-copy h2, .split-copy h2, .contact-panel h2, .cta-inner h2, .legal-copy h2 {
  margin: 0 0 1rem;
  color: var(--navy);
  font-size: clamp(1.9rem, 3.2vw, 3rem);
  line-height: 1.14;
}
.intro-copy p, .section-heading p, .split-copy p, .legal-copy p { color: var(--muted); }
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.35rem;
}
.card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.card img { width: 100%; height: 220px; object-fit: cover; }
.media-card img, .media-card video { width: 100%; height: 240px; object-fit: cover; }
.card-body { padding: 1.15rem; }
.card-body h3 { margin: 0 0 0.55rem; color: var(--navy); }
.card-body p { margin: 0 0 0.85rem; color: var(--muted); }
.text-link { font-weight: 800; text-transform: uppercase; font-size: 0.8rem; letter-spacing: 0.05em; }
.split-band {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 1.5rem;
  background: #dff2ff;
  border-radius: 26px;
  padding: 1.4rem;
  box-shadow: var(--shadow);
}
.split-image img, .split-image video { width: 100%; min-height: 320px; height: 100%; object-fit: cover; border-radius: 18px; }
.feature-list { margin: 1rem 0 0; padding-left: 1.2rem; }
.feature-list li { margin-bottom: 0.42rem; }
.testimonial-slider {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
}
.testimonial-viewport { overflow: hidden; }
.testimonial-track { position: relative; min-height: 280px; }
.testimonial-slide {
  display: none;
  background: #fff;
  border-radius: 24px;
  padding: 1.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  text-align: center;
}
.testimonial-slide.is-active { display: block; }
.testimonial-stars { color: #f2c14f; font-size: 1.2rem; letter-spacing: 0.2em; margin-bottom: 0.75rem; }
.testimonial-slide p { color: var(--muted); font-size: 1.02rem; }
.testimonial-slide h3 { margin: 1rem 0 0.35rem; color: var(--navy); }
.testimonial-source { color: var(--teal); font-size: 0.84rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; }
.testimonial-arrow {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: var(--navy);
  font-size: 1.7rem;
  box-shadow: var(--shadow);
  cursor: pointer;
}
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}
.testimonial-dot {
  width: 11px;
  height: 11px;
  border: 0;
  border-radius: 999px;
  background: #c4d6e6;
  cursor: pointer;
}
.testimonial-dot.is-active { background: var(--blue); }
.link-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.85rem; }
.link-list li { background: #fff; border-radius: 18px; padding: 1rem 1.1rem; box-shadow: var(--shadow); }
.link-list span { display: block; color: var(--muted); font-size: 0.95rem; margin-top: 0.2rem; }
.placeholder-box {
  min-height: 420px;
  display: grid;
  place-items: center;
  border: 3px dashed rgba(45, 178, 198, 0.35);
  border-radius: 24px;
  background: linear-gradient(180deg, #f8fdff, #edf8ff);
  color: var(--navy);
  font-size: 1.05rem;
  font-weight: 700;
  text-align: center;
  padding: 2rem;
}
.contact-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.25rem;
  align-items: start;
}
.contact-card {
  background: #fff;
  border-radius: 20px;
  padding: 1.2rem;
  box-shadow: var(--shadow);
}
.contact-card p { margin: 0 0 0.85rem; }
.contact-card p:last-child { margin-bottom: 0; }
.cta-wave {
  position: relative;
  overflow: hidden;
  padding: 5.8rem 0 4.8rem;
  background: linear-gradient(180deg, #67bcf7 0%, #dcefff 75%, #ffffff 100%);
}
.cta-wave::before, .cta-wave::after {
  content: '';
  position: absolute;
  left: -10%;
  right: -10%;
  height: 120px;
  border-radius: 50%;
}
.cta-wave::before { top: -72px; background: rgba(255,255,255,0.78); }
.cta-wave::after { bottom: -86px; background: #1f4b82; }
.cta-inner { position: relative; z-index: 1; text-align: center; color: #fff; }
.cta-inner p:not(.eyebrow) { width: min(680px, 100%); margin: 0 auto; color: rgba(255,255,255,0.94); }
.site-footer { background: linear-gradient(180deg, #1e4c83 0%, #235994 100%); color: #fff; padding: 4rem 0 2rem; }
.footer-shell { position: relative; overflow: hidden; }
.footer-watermark {
  position: absolute;
  left: 0;
  bottom: 0.5rem;
  width: min(340px, 42vw);
  opacity: 0.12;
  pointer-events: none;
}
.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 1.5rem;
}
.site-footer h3 { margin-top: 0; }
.site-footer p, .site-footer li, .site-footer a { color: rgba(255,255,255,0.92); }
.site-footer ul { margin: 0; padding-left: 1.1rem; }
.footer-socials { margin-top: 1rem; }
.footer-legal-note {
  margin-top: 1.4rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.18);
  font-size: 0.88rem;
}

@media (max-width: 900px) {
  .hero-grid,
  .split-band,
  .contact-panel,
  .footer-grid,
  .hero-overlap-grid {
    grid-template-columns: 1fr;
  }
  .hero-inner {
    padding-bottom: 8rem;
  }
  .hero-overlap-section {
    margin-top: -5rem;
  }
  .hero-copy {
    text-align: center;
  }
  .hero-copy-panel {
    padding: 1.1rem;
  }
  .hero-logo {
    width: min(100%, 330px);
  }
}

@media (max-width: 640px) {
  .hero {
    overflow: visible;
  }
  .hero-inner {
    padding: 3.2rem 0 4rem;
  }
  .hero-overlap-section {
    margin-top: -1.5rem;
  }
  .overlap-card img {
    height: 200px;
  }
  .header-top {
    flex-direction: column;
    align-items: flex-start;
  }
  .header-tools {
    width: 100%;
    justify-content: space-between;
  }
  .main-nav {
    gap: 0.8rem 1rem;
  }
  .main-nav a {
    font-size: 0.88rem;
  }
  .hero h1 {
    font-size: clamp(2.15rem, 10vw, 3.1rem);
  }
  .section {
    padding: 3.7rem 0;
  }
  .testimonial-slider {
    grid-template-columns: 1fr;
  }
  .testimonial-arrow {
    display: none;
  }
  .brand-logo img {
    width: min(220px, 58vw);
  }
  .social-circle {
    width: 44px;
    height: 44px;
  }
}

/* Quote request form */
.form-alert {
  margin-bottom: 1.5rem;
  padding: 1rem 1.2rem;
  border-radius: 18px;
  border: 1px solid rgba(10, 83, 140, 0.14);
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(15, 48, 87, 0.08);
}

.form-alert p {
  margin: 0;
}

.form-alert-success {
  border-color: rgba(55, 146, 74, 0.2);
  background: #eefaf0;
  color: #175728;
}

.form-alert-warning {
  border-color: rgba(184, 129, 9, 0.2);
  background: #fff7e8;
  color: #7b5605;
}

.form-alert-error {
  border-color: rgba(176, 49, 49, 0.18);
  background: #fff1f1;
  color: #8b1f1f;
}

.quote-request-form {
  display: grid;
  gap: 1.5rem;
}

.quote-section-card {
  padding: 1.75rem;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid rgba(11, 72, 127, 0.08);
  box-shadow: 0 24px 60px rgba(15, 48, 87, 0.08);
}

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

.quote-form-grid-full {
  grid-column: 1 / -1;
}

.quote-request-form label,
.quote-group-label {
  display: block;
  margin-bottom: 0.55rem;
  font-weight: 700;
  color: #0e355b;
}

.quote-request-form input[type="text"],
.quote-request-form input[type="email"],
.quote-request-form textarea {
  width: 100%;
  border: 1px solid rgba(11, 72, 127, 0.14);
  border-radius: 16px;
  padding: 0.95rem 1rem;
  font: inherit;
  color: #143a61;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.quote-request-form input[type="text"]:focus,
.quote-request-form input[type="email"]:focus,
.quote-request-form textarea:focus {
  outline: none;
  border-color: #1d87cc;
  box-shadow: 0 0 0 4px rgba(29, 135, 204, 0.12);
}

.choice-list,
.choice-grid {
  display: grid;
  gap: 0.75rem;
}

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

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

.choice-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.85rem 1rem;
  border-radius: 18px;
  background: #f6fbff;
  border: 1px solid rgba(11, 72, 127, 0.08);
  min-height: 100%;
}

.choice-item input {
  margin-top: 0.2rem;
}

.field-error {
  display: inline-block;
  margin-top: 0.4rem;
  color: #a12525;
  font-size: 0.92rem;
}

.quote-submit-wrap {
  display: flex;
  justify-content: center;
}

.quote-submit-button {
  min-width: 240px;
}

@media (max-width: 860px) {
  .quote-form-grid,
  .choice-grid,
  .choice-grid-compact {
    grid-template-columns: 1fr;
  }

  .quote-section-card {
    padding: 1.25rem;
  }
}
