:root {
  --primary: #0b6f91;
  --primary-dark: #064c67;
  --navy: #071525;
  --navy-light: #10253c;
  --silver: #737980;
  --text: #172033;
  --muted: #697386;
  --bg: #f5f8fb;
  --white: #ffffff;
  --border: #e4ebf2;
  --shadow: 0 20px 50px rgba(7, 21, 37, 0.12);
  --radius: 24px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", Arial, sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  width: 100%;
  display: block;
}

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

button,
input,
select,
textarea {
  font-family: inherit;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.section-padding {
  padding: 95px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(228, 235, 242, 0.85);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 14px;
}

.brand-text {
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.main-nav a {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  transition: color 0.25s ease;
}

.main-nav a:hover {
  color: var(--primary);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.header-cta {
  background: var(--navy);
  color: var(--white);
  padding: 15px 22px;
  box-shadow: 0 12px 24px rgba(7, 21, 37, 0.18);
}

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

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: var(--navy);
  border-radius: 12px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--white);
  border-radius: 10px;
  transition: all 0.25s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  background:
    radial-gradient(circle at top left, rgba(11, 111, 145, 0.13), transparent 32%),
    linear-gradient(135deg, #f9fbfd 0%, #eef6f9 45%, #ffffff 100%);
  overflow: hidden;
}

.hero-bg-shape {
  position: absolute;
  border-radius: 999px;
  filter: blur(4px);
  opacity: 0.72;
}

.hero-shape-one {
  width: 240px;
  height: 240px;
  background: rgba(11, 111, 145, 0.1);
  top: 120px;
  right: -90px;
}

.hero-shape-two {
  width: 160px;
  height: 160px;
  background: rgba(7, 21, 37, 0.07);
  bottom: 80px;
  left: -50px;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--primary);
  border-radius: 10px;
}

.hero h1,
.section-content h2,
.section-heading h2,
.quote-content h2,
.cta-box h2 {
  color: var(--navy);
  letter-spacing: -0.055em;
  line-height: 1.05;
}

.hero h1 {
  font-size: clamp(42px, 5.7vw, 72px);
  margin-bottom: 24px;
}

.hero p {
  font-size: 18px;
  color: var(--muted);
  max-width: 590px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}

.btn {
  min-height: 52px;
  padding: 0 26px;
  border: 0;
  cursor: pointer;
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  box-shadow: 0 16px 32px rgba(11, 111, 145, 0.28);
}

.btn-secondary {
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 14px 30px rgba(7, 21, 37, 0.08);
}

.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 600px;
}

.hero-trust div {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(228, 235, 242, 0.88);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 12px 26px rgba(7, 21, 37, 0.06);
}

.hero-trust strong {
  display: block;
  color: var(--navy);
  font-size: 18px;
  margin-bottom: 2px;
}

.hero-trust span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.image-card {
  position: relative;
  border-radius: 34px;
  overflow: hidden;
  min-height: 590px;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.image-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 21, 37, 0) 20%, rgba(7, 21, 37, 0.5) 100%);
  z-index: 1;
}

.image-card img {
  height: 590px;
  object-fit: cover;
}

.floating-card {
  position: absolute;
  z-index: 2;
  background: rgba(255, 255, 255, 0.93);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 20px;
  box-shadow: 0 20px 45px rgba(7, 21, 37, 0.2);
}

.floating-card-one {
  left: 22px;
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
}

.floating-card-two {
  top: 24px;
  right: 24px;
  padding: 16px 18px;
  max-width: 160px;
}

.icon-dot {
  width: 42px;
  height: 42px;
  background: var(--primary);
  border-radius: 14px;
  display: block;
  position: relative;
}

.icon-dot::after {
  content: "";
  width: 14px;
  height: 14px;
  background: var(--white);
  position: absolute;
  border-radius: 50%;
  top: 14px;
  left: 14px;
}

.floating-card strong {
  display: block;
  color: var(--navy);
  font-size: 16px;
}

.floating-card p {
  color: var(--muted);
  font-size: 13px;
  margin: 2px 0 0;
}

.two-column,
.quote-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.section-image img {
  height: 520px;
  object-fit: cover;
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.section-content h2,
.section-heading h2,
.quote-content h2,
.cta-box h2 {
  font-size: clamp(34px, 4vw, 50px);
  margin-bottom: 18px;
}

.section-content p,
.section-heading p,
.quote-content p,
.cta-box p {
  color: var(--muted);
  font-size: 17px;
  max-width: 690px;
}

.section-content p + p {
  margin-top: 16px;
}

.trust-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 30px;
}

.mini-card,
.service-card,
.why-card,
.process-card,
.quote-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 16px 40px rgba(7, 21, 37, 0.06);
}

.mini-card {
  padding: 24px;
}

.mini-card span,
.why-card span {
  color: var(--primary);
  font-weight: 900;
}

.mini-card h3,
.service-card h3,
.why-card h3,
.process-card h3 {
  color: var(--navy);
  line-height: 1.2;
}

.mini-card h3 {
  font-size: 18px;
  margin: 8px 0 8px;
}

.mini-card p {
  font-size: 14px;
}

.services,
.process {
  background: var(--bg);
}

.section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 48px;
}

.section-heading .eyebrow {
  justify-content: center;
}

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

.service-card {
  padding: 30px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:hover,
.why-card:hover,
.process-card:hover {
  transform: translateY(-6px);
  border-color: rgba(11, 111, 145, 0.25);
  box-shadow: 0 20px 50px rgba(7, 21, 37, 0.11);
}

.service-icon {
  width: 58px;
  height: 58px;
  background: rgba(11, 111, 145, 0.1);
  border: 1px solid rgba(11, 111, 145, 0.13);
  display: grid;
  place-items: center;
  border-radius: 18px;
  font-size: 25px;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 21px;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 22px;
}

.service-card a {
  color: var(--primary);
  font-weight: 900;
  font-size: 14px;
}

.truck-section {
  background: var(--white);
}

.truck-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 38px;
  padding: 70px;
  background:
    linear-gradient(135deg, rgba(7, 21, 37, 0.94), rgba(9, 47, 70, 0.92)),
    url("https://images.unsplash.com/photo-1601584115197-04ecc0da31d7?auto=format&fit=crop&w=1400&q=80") center/cover;
  box-shadow: var(--shadow);
}

.light h2,
.light p {
  color: var(--white);
}

.light p {
  opacity: 0.78;
}

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 38px;
}

.coverage-grid span {
  color: var(--white);
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.13);
  padding: 14px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  text-align: center;
  backdrop-filter: blur(8px);
}

.why-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.why-card,
.process-card {
  padding: 28px;
}

.why-card h3,
.process-card h3 {
  font-size: 20px;
  margin: 12px 0 10px;
}

.why-card p,
.process-card p {
  color: var(--muted);
  font-size: 15px;
}

.process-grid {
  grid-template-columns: repeat(3, 1fr);
}

.process-card {
  text-align: center;
}

.step-number {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  background: var(--navy);
  color: var(--white);
  font-weight: 900;
  font-size: 22px;
}

.cta-section {
  padding: 28px 0;
  background: var(--white);
}

.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background:
    radial-gradient(circle at 92% 10%, rgba(11, 111, 145, 0.22), transparent 34%),
    linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 34px;
  padding: 52px;
  position: relative;
  overflow: hidden;
}

.cta-box::after {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  border: 38px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  right: -90px;
  bottom: -130px;
}

.cta-box h2,
.cta-box p {
  color: var(--white);
}

.cta-box p {
  opacity: 0.8;
}

.cta-box .btn {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.quote {
  background: var(--bg);
}

.quote-grid {
  grid-template-columns: 0.9fr 1.1fr;
}

.quote-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.quote-list div {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
}

.quote-list strong {
  display: block;
  color: var(--navy);
  margin-bottom: 4px;
}

.quote-list span {
  color: var(--muted);
  font-size: 14px;
}

.quote-form {
  padding: 34px;
}

.form-row {
  margin-bottom: 18px;
}

.form-row label {
  display: block;
  font-size: 13px;
  color: var(--navy);
  font-weight: 900;
  margin-bottom: 8px;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border: 1px solid var(--border);
  background: #fbfdff;
  color: var(--text);
  border-radius: 14px;
  padding: 15px 16px;
  outline: none;
  font-size: 15px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.form-row textarea {
  min-height: 120px;
  resize: vertical;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: rgba(11, 111, 145, 0.5);
  box-shadow: 0 0 0 4px rgba(11, 111, 145, 0.1);
}

.two-fields {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.form-btn {
  width: 100%;
  margin-top: 4px;
}

.form-note {
  color: var(--muted);
  font-size: 12px;
  text-align: center;
  margin-top: 14px;
}

.site-footer {
  background: var(--navy);
  color: var(--white);
  padding-top: 70px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 0.9fr 1fr;
  gap: 36px;
  padding-bottom: 54px;
}

.footer-logo .brand-text {
  color: var(--white);
}

.footer-brand p,
.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.footer-brand p {
  margin-top: 18px;
  max-width: 310px;
}

.site-footer h3 {
  font-size: 16px;
  margin-bottom: 18px;
}

.site-footer a {
  display: block;
  margin-bottom: 10px;
  transition: color 0.25s ease;
}

.site-footer a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 20px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .main-nav {
    gap: 16px;
  }

  .header-cta {
    display: none;
  }

  .hero-grid,
  .two-column,
  .quote-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    text-align: center;
  }

  .hero-content p,
  .hero-trust {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .section-image {
    order: 2;
  }

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

@media (max-width: 860px) {
  .section-padding {
    padding: 72px 0;
  }

  .header-inner {
    min-height: 76px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: absolute;
    top: 76px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 22px;
    box-shadow: var(--shadow);
    padding: 12px;
  }

  .main-nav.active {
    display: flex;
  }

  .main-nav a {
    padding: 14px 16px;
    border-radius: 14px;
  }

  .main-nav a:hover {
    background: var(--bg);
  }

  .hero {
    padding-top: 28px;
  }

  .image-card,
  .image-card img {
    min-height: unset;
    height: 420px;
  }

  .hero-trust {
    grid-template-columns: 1fr;
  }

  .truck-wrapper,
  .cta-box {
    padding: 38px 24px;
    border-radius: 28px;
  }

  .cta-box {
    flex-direction: column;
    align-items: flex-start;
  }

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

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

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .brand-logo {
    width: 44px;
    height: 44px;
  }

  .brand-text {
    font-size: 16px;
  }

  .hero h1 {
    font-size: 39px;
  }

  .hero p,
  .section-content p,
  .section-heading p,
  .quote-content p,
  .cta-box p {
    font-size: 15.5px;
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .btn {
    min-height: 50px;
  }

  .image-card,
  .image-card img {
    height: 350px;
    border-radius: 24px;
  }

  .floating-card-two {
    display: none;
  }

  .floating-card-one {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .trust-cards,
  .service-grid,
  .coverage-grid,
  .why-grid,
  .two-fields,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section-image img {
    height: 360px;
    border-radius: 24px;
  }

  .quote-form {
    padding: 24px;
  }

  .section-heading {
    margin-bottom: 34px;
  }
}


/* ===============================
   ABOUT PAGE DESIGN
================================ */

.active-link {
  color: var(--primary) !important;
}

.about-page-hero {
  position: relative;
  padding: 120px 0 105px;
  background:
    linear-gradient(135deg, rgba(7, 21, 37, 0.88), rgba(6, 76, 103, 0.82)),
    url("https://images.unsplash.com/photo-1450101499163-c8848c66ca85?auto=format&fit=crop&w=1600&q=80") center/cover;
  overflow: hidden;
}

.about-page-hero::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border: 55px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  right: -120px;
  bottom: -160px;
}

.about-page-hero-content {
  max-width: 850px;
  position: relative;
  z-index: 1;
}

.about-page-hero .eyebrow,
.about-page-hero h1,
.about-page-hero p {
  color: var(--white);
}

.about-page-hero .eyebrow::before {
  background: var(--white);
}

.about-page-hero h1 {
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.055em;
  margin-bottom: 22px;
}

.about-page-hero p {
  max-width: 720px;
  font-size: 18px;
  opacity: 0.86;
}

.about-two-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-text-block h2 {
  color: var(--navy);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.06;
  letter-spacing: -0.055em;
  margin-bottom: 18px;
}

.about-text-block p {
  color: var(--muted);
  font-size: 17px;
  margin-bottom: 18px;
}

.about-text-block .btn {
  margin-top: 12px;
}

.about-image-box {
  position: relative;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 520px;
}

.about-image-box img {
  height: 520px;
  object-fit: cover;
}

.about-image-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 21, 37, 0) 25%, rgba(7, 21, 37, 0.55) 100%);
  z-index: 1;
}

.about-floating-card {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 22px;
  padding: 20px;
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 40px rgba(7, 21, 37, 0.2);
}

.about-floating-card.dark {
  background: rgba(7, 21, 37, 0.9);
}

.about-floating-card strong,
.about-floating-card span {
  display: block;
}

.about-floating-card strong {
  color: var(--navy);
  font-size: 18px;
  margin-bottom: 4px;
}

.about-floating-card span {
  color: var(--muted);
  font-size: 14px;
}

.about-floating-card.dark strong {
  color: var(--white);
}

.about-floating-card.dark span {
  color: rgba(255, 255, 255, 0.76);
}

.about-mission-section,
.testimonials-section {
  background: var(--bg);
}

.reverse-grid {
  grid-template-columns: 0.95fr 1.05fr;
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 28px 0 10px;
}

.mission-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 14px 34px rgba(7, 21, 37, 0.06);
}

.mission-card h3 {
  color: var(--navy);
  font-size: 20px;
  margin-bottom: 8px;
}

.mission-card p {
  font-size: 15px;
  margin-bottom: 0;
}

.about-stats-section {
  padding: 30px 0;
  background: var(--white);
}

.stats-gradient-box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: 20px;
  padding: 42px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 8% 10%, rgba(255, 255, 255, 0.18), transparent 28%),
    linear-gradient(135deg, var(--navy), var(--primary-dark), var(--primary));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.stat-item,
.stat-quote-box {
  position: relative;
  z-index: 1;
  color: var(--white);
}

.stat-item {
  text-align: center;
  padding: 24px 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.stat-item strong {
  display: block;
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-item span {
  font-size: 14px;
  font-weight: 800;
  opacity: 0.86;
}

.stat-quote-box {
  padding: 26px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.stat-quote-box h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

.stat-quote-box p {
  font-size: 14px;
  opacity: 0.84;
  margin-bottom: 16px;
}

.stat-quote-box a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--white);
  color: var(--navy);
  font-size: 14px;
  font-weight: 900;
  transition: transform 0.25s ease;
}

.stat-quote-box a:hover {
  transform: translateY(-2px);
}

.offer-section {
  background: var(--white);
}

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

.offer-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: 0 16px 40px rgba(7, 21, 37, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.offer-card:hover {
  transform: translateY(-6px);
  border-color: rgba(11, 111, 145, 0.25);
  box-shadow: 0 20px 50px rgba(7, 21, 37, 0.11);
}

.offer-icon {
  width: 58px;
  height: 58px;
  background: rgba(11, 111, 145, 0.1);
  border: 1px solid rgba(11, 111, 145, 0.13);
  display: grid;
  place-items: center;
  border-radius: 18px;
  font-size: 25px;
  margin-bottom: 20px;
}

.offer-card h3 {
  color: var(--navy);
  font-size: 21px;
  line-height: 1.2;
  margin-bottom: 12px;
}

.offer-card p {
  color: var(--muted);
  font-size: 15px;
}

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

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 16px 40px rgba(7, 21, 37, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(7, 21, 37, 0.11);
}

.stars {
  color: var(--primary);
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.testimonial-card p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 22px;
}

.client-info {
  border-top: 1px solid var(--border);
  padding-top: 18px;
}

.client-info strong,
.client-info span {
  display: block;
}

.client-info strong {
  color: var(--navy);
  font-size: 16px;
}

.client-info span {
  color: var(--muted);
  font-size: 13px;
  margin-top: 2px;
}

@media (max-width: 1100px) {
  .about-two-grid,
  .reverse-grid {
    grid-template-columns: 1fr;
  }

  .reverse-grid .about-image-box {
    order: 2;
  }

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

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

@media (max-width: 860px) {
  .about-page-hero {
    padding: 90px 0 80px;
  }

  .about-page-hero-content {
    text-align: center;
  }

  .about-page-hero .eyebrow {
    justify-content: center;
  }

  .about-image-box,
  .about-image-box img {
    min-height: unset;
    height: 420px;
  }

  .stats-gradient-box {
    padding: 28px;
    border-radius: 28px;
  }
}

@media (max-width: 620px) {
  .about-page-hero h1 {
    font-size: 38px;
  }

  .about-page-hero p,
  .about-text-block p {
    font-size: 15.5px;
  }

  .about-image-box,
  .about-image-box img {
    height: 350px;
    border-radius: 24px;
  }

  .about-floating-card {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .stats-gradient-box,
  .offer-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .stat-quote-box {
    text-align: center;
  }

  .offer-card,
  .testimonial-card {
    padding: 24px;
  }
}

/* ===============================
   AUTO INSURANCE PAGE
================================ */

.insurance-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 12%, rgba(11, 111, 145, 0.12), transparent 30%),
    linear-gradient(135deg, #f8fbff 0%, #eef7fb 48%, #ffffff 100%);
}

.insurance-hero::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -180px;
  top: -120px;
  border-radius: 50%;
  background: rgba(11, 111, 145, 0.08);
}

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

.insurance-hero-content h1 {
  color: var(--navy);
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.055em;
  margin-bottom: 22px;
}

.insurance-hero-content p {
  color: var(--muted);
  font-size: 17px;
  max-width: 660px;
  margin-bottom: 28px;
}

.insurance-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 32px;
}

.insurance-trust-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  max-width: 560px;
}

.insurance-trust-row div {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 14px 34px rgba(7, 21, 37, 0.06);
}

.insurance-trust-row strong,
.insurance-trust-row span {
  display: block;
}

.insurance-trust-row strong {
  color: var(--navy);
  font-size: 16px;
  margin-bottom: 4px;
}

.insurance-trust-row span {
  color: var(--muted);
  font-size: 13px;
}

.insurance-hero-image {
  position: relative;
  border-radius: 36px;
  overflow: hidden;
  min-height: 560px;
  box-shadow: var(--shadow);
}

.insurance-hero-image img {
  height: 560px;
  object-fit: cover;
}

.insurance-hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 21, 37, 0.05) 35%, rgba(7, 21, 37, 0.72) 100%);
}

.insurance-image-card {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 40px rgba(7, 21, 37, 0.2);
}

.insurance-image-card strong,
.insurance-image-card span {
  display: block;
}

.insurance-image-card strong {
  color: var(--navy);
  font-size: 19px;
  margin-bottom: 6px;
}

.insurance-image-card span {
  color: var(--muted);
  font-size: 14px;
}

.coverage-section {
  background: var(--white);
}

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.coverage-card {
  position: relative;
  padding: 34px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 16px 42px rgba(7, 21, 37, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  overflow: hidden;
}

.coverage-card::before {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  right: -80px;
  top: -80px;
  border-radius: 50%;
  background: rgba(11, 111, 145, 0.08);
}

.coverage-card:hover {
  transform: translateY(-6px);
  border-color: rgba(11, 111, 145, 0.25);
  box-shadow: 0 22px 54px rgba(7, 21, 37, 0.11);
}

.coverage-number {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  font-weight: 900;
  margin-bottom: 22px;
}

.coverage-card h3 {
  color: var(--navy);
  font-size: 24px;
  line-height: 1.18;
  margin-bottom: 14px;
}

.coverage-card p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 14px;
}

.coverage-card p:last-child {
  margin-bottom: 0;
}

.coverage-cta {
  margin-top: 36px;
  padding: 38px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 10% 15%, rgba(255, 255, 255, 0.16), transparent 30%),
    linear-gradient(135deg, var(--navy), var(--primary-dark), var(--primary));
  color: var(--white);
  text-align: center;
  box-shadow: var(--shadow);
}

.coverage-cta h3 {
  font-size: clamp(30px, 4vw, 46px);
  letter-spacing: -0.04em;
  margin-bottom: 10px;
}

.coverage-cta p {
  max-width: 660px;
  margin: 0 auto 22px;
  opacity: 0.84;
}

.coverage-cta .btn {
  background: var(--white);
  color: var(--navy);
}

.faq-section,
.testimonials-section {
  background: var(--bg);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 16px 40px rgba(7, 21, 37, 0.06);
}

.faq-item h3 {
  color: var(--navy);
  font-size: 20px;
  line-height: 1.25;
  margin-bottom: 10px;
}

.faq-item p {
  color: var(--muted);
  font-size: 15px;
}

.other-insurance-section {
  background: var(--white);
}

.other-insurance-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.other-insurance-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 16px 42px rgba(7, 21, 37, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.other-insurance-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 54px rgba(7, 21, 37, 0.11);
}

.other-insurance-card img {
  height: 190px;
  object-fit: cover;
}

.other-insurance-card div {
  padding: 24px;
}

.other-insurance-card h3 {
  color: var(--navy);
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: 10px;
}

.other-insurance-card p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 16px;
}

.other-insurance-card a {
  color: var(--primary);
  font-weight: 900;
  font-size: 14px;
}

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

  .insurance-hero-image,
  .insurance-hero-image img {
    min-height: unset;
    height: 460px;
  }

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

@media (max-width: 860px) {
  .insurance-hero-content {
    text-align: center;
  }

  .insurance-hero-content .eyebrow {
    justify-content: center;
  }

  .insurance-hero-actions {
    justify-content: center;
  }

  .insurance-trust-row {
    margin: 0 auto;
  }

  .coverage-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .insurance-hero-content h1 {
    font-size: 38px;
  }

  .insurance-hero-content p {
    font-size: 15.5px;
  }

  .insurance-trust-row,
  .other-insurance-grid {
    grid-template-columns: 1fr;
  }

  .insurance-hero-image,
  .insurance-hero-image img {
    height: 360px;
    border-radius: 24px;
  }

  .insurance-image-card {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .coverage-card,
  .faq-item {
    padding: 24px;
  }

  .coverage-cta {
    padding: 30px 20px;
    border-radius: 26px;
  }
}

/* ===============================
   NAV DROPDOWN
================================ */

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.dropdown-link {
  display: flex;
  align-items: center;
  gap: 6px;
}

.dropdown-arrow {
  font-size: 12px;
  line-height: 1;
  transition: transform 0.25s ease;
}

.dropdown-menu {
  position: absolute;
  top: 130%;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  min-width: 260px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 12px;
  box-shadow: 0 22px 55px rgba(7, 21, 37, 0.14);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.25s ease;
  z-index: 999;
}

.dropdown-menu::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  width: 16px;
  height: 16px;
  background: var(--white);
  border-left: 1px solid var(--border);
  border-top: 1px solid var(--border);
  transform: translateX(-50%) rotate(45deg);
}

.dropdown-menu a {
  display: block;
  padding: 12px 14px;
  border-radius: 12px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
  transition: all 0.25s ease;
}

.dropdown-menu a:hover {
  background: rgba(11, 111, 145, 0.08);
  color: var(--primary);
  padding-left: 18px;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

/* Mobile Dropdown */
@media (max-width: 860px) {
  .nav-dropdown {
    width: 100%;
    display: block;
  }

  .dropdown-link {
    justify-content: left;
    width: 100%;
  }

  .dropdown-menu {
    position: static;
    transform: none;
    min-width: 100%;
    margin-top: 10px;
    padding: 10px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    display: none;
    box-shadow: none;
    border-radius: 16px;
    background: rgba(11, 111, 145, 0.06);
  }

  .dropdown-menu::before {
    display: none;
  }

  .nav-dropdown:hover .dropdown-menu {
    transform: none;
  }

  .nav-dropdown.open .dropdown-menu {
    display: block;
  }

  .dropdown-menu a {
    text-align: center;
  }
}

/* ===============================
   CONTACT PAGE
================================ */

.contact-hero {
  position: relative;
  overflow: hidden;
  padding: 120px 0 90px;
  background:
    radial-gradient(circle at 8% 12%, rgba(11, 111, 145, 0.14), transparent 32%),
    linear-gradient(135deg, #f8fbff 0%, #eef7fb 45%, #ffffff 100%);
}

.contact-hero::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -170px;
  top: -150px;
  border-radius: 50%;
  background: rgba(11, 111, 145, 0.08);
}

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

.contact-hero-content h1 {
  color: var(--navy);
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.055em;
  margin-bottom: 22px;
}

.contact-hero-content p {
  color: var(--muted);
  font-size: 17px;
  max-width: 720px;
  margin-bottom: 28px;
}

.contact-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.contact-hero-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 34px;
  padding: 38px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.contact-hero-card::before {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  right: -90px;
  top: -90px;
  border-radius: 50%;
  background: rgba(11, 111, 145, 0.08);
}

.contact-hero-card h3 {
  color: var(--navy);
  font-size: 30px;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.contact-hero-card p {
  color: var(--muted);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.contact-mini-list {
  display: grid;
  gap: 14px;
  position: relative;
  z-index: 1;
}

.contact-mini-list div {
  padding: 18px;
  border-radius: 18px;
  background: var(--bg);
  border: 1px solid var(--border);
}

.contact-mini-list strong,
.contact-mini-list span {
  display: block;
}

.contact-mini-list strong {
  color: var(--navy);
  font-size: 16px;
  margin-bottom: 4px;
}

.contact-mini-list span {
  color: var(--muted);
  font-size: 13px;
}

.contact-info-section {
  padding: 30px 0 70px;
  background: var(--white);
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.contact-info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 16px 42px rgba(7, 21, 37, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 54px rgba(7, 21, 37, 0.11);
}

.contact-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(11, 111, 145, 0.1);
  border: 1px solid rgba(11, 111, 145, 0.14);
  font-size: 24px;
  margin-bottom: 20px;
}

.contact-info-card h3 {
  color: var(--navy);
  font-size: 21px;
  margin-bottom: 10px;
}

.contact-info-card p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 12px;
}

.contact-info-card a,
.contact-info-card span {
  color: var(--primary);
  font-weight: 900;
  font-size: 14px;
}

.contact-main-section {
  background: var(--bg);
}

.contact-main-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: start;
}

.contact-form-content {
  position: sticky;
  top: 110px;
}

.contact-form-content h2 {
  color: var(--navy);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.06;
  letter-spacing: -0.055em;
  margin-bottom: 18px;
}

.contact-form-content p {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 26px;
}

.contact-benefits {
  display: grid;
  gap: 15px;
}

.contact-benefits div {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 14px 34px rgba(7, 21, 37, 0.05);
}

.contact-benefits strong,
.contact-benefits span {
  display: block;
}

.contact-benefits strong {
  color: var(--navy);
  font-size: 16px;
  margin-bottom: 5px;
}

.contact-benefits span {
  color: var(--muted);
  font-size: 14px;
}

.contact-page-form {
  box-shadow: var(--shadow);
}

.map-section {
  padding: 90px 0;
  background: var(--white);
}

.map-box {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
  align-items: center;
  padding: 36px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 8% 12%, rgba(255, 255, 255, 0.14), transparent 32%),
    linear-gradient(135deg, var(--navy), var(--primary-dark), var(--primary));
  box-shadow: var(--shadow);
}

.map-content h2 {
  color: var(--white);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.045em;
  margin-bottom: 14px;
}

.map-content p,
.map-content .eyebrow {
  color: var(--white);
}

.map-content p {
  opacity: 0.82;
}

.map-content .eyebrow::before {
  background: var(--white);
}

.map-placeholder {
  min-height: 340px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.78)),
    repeating-linear-gradient(
      45deg,
      rgba(11, 111, 145, 0.08),
      rgba(11, 111, 145, 0.08) 10px,
      transparent 10px,
      transparent 20px
    );
  border: 1px solid rgba(255, 255, 255, 0.5);
  display: grid;
  place-items: center;
  text-align: center;
}

.map-placeholder span {
  color: var(--navy);
  font-weight: 900;
  font-size: 18px;
}

.contact-bottom-cta {
  padding: 0 0 90px;
  background: var(--white);
}

.contact-cta-box {
  text-align: center;
  padding: 50px 28px;
  border-radius: 34px;
  background: var(--bg);
  border: 1px solid var(--border);
}

.contact-cta-box h2 {
  color: var(--navy);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.045em;
  margin-bottom: 12px;
}

.contact-cta-box p {
  color: var(--muted);
  max-width: 720px;
  margin: 0 auto 24px;
}

@media (max-width: 1100px) {
  .contact-hero-grid,
  .contact-main-grid,
  .map-box {
    grid-template-columns: 1fr;
  }

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

  .contact-form-content {
    position: static;
  }
}

@media (max-width: 860px) {
  .contact-hero {
    padding: 95px 0 70px;
  }

  .contact-hero-content {
    text-align: center;
  }

  .contact-hero-content .eyebrow {
    justify-content: center;
  }

  .contact-hero-actions {
    justify-content: center;
  }

  .contact-hero-card {
    padding: 30px;
  }

  .map-box {
    padding: 28px;
    text-align: center;
  }

  .map-content .eyebrow {
    justify-content: center;
  }
}

@media (max-width: 620px) {
  .contact-hero-content h1 {
    font-size: 38px;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .contact-hero-card,
  .contact-info-card {
    border-radius: 24px;
  }

  .contact-main-grid {
    gap: 34px;
  }

  .map-placeholder {
    min-height: 260px;
  }

  .contact-cta-box {
    padding: 38px 22px;
    border-radius: 26px;
  }
}

/* ===============================
   QUICK QUOTE POPUP MODAL
================================ */

.quote-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
}

.quote-modal.active {
  display: flex;
}

.quote-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 21, 37, 0.72);
  backdrop-filter: blur(8px);
}

.quote-modal-box {
  position: relative;
  z-index: 2;
  width: min(760px, 100%);
  max-height: 92vh;
  overflow-y: auto;
  background: var(--white);
  border-radius: 34px;
  padding: 36px;
  box-shadow: 0 30px 90px rgba(7, 21, 37, 0.35);
  animation: quoteModalIn 0.28s ease;
}

@keyframes quoteModalIn {
  from {
    opacity: 0;
    transform: translateY(22px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.quote-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(11, 111, 145, 0.1);
  color: var(--navy);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  transition: all 0.25s ease;
}

.quote-modal-close:hover {
  background: var(--primary);
  color: var(--white);
  transform: rotate(90deg);
}

.quote-modal-header {
  max-width: 620px;
  margin-bottom: 26px;
}

.quote-modal-header h2 {
  color: var(--navy);
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.045em;
  margin-bottom: 12px;
}

.quote-modal-header p {
  color: var(--muted);
  font-size: 15.5px;
}

.quote-popup-form {
  display: grid;
  gap: 18px;
}

.quote-popup-form .form-row {
  margin-bottom: 0;
}

.quote-popup-form input,
.quote-popup-form select,
.quote-popup-form textarea {
  width: 100%;
}

.quote-popup-form textarea {
  min-height: 120px;
  resize: vertical;
}

.quote-popup-success {
  display: none;
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(11, 111, 145, 0.1);
  color: var(--primary-dark);
  font-weight: 800;
  text-align: center;
}

.quote-popup-success.show {
  display: block;
}

body.modal-open {
  overflow: hidden;
}

@media (max-width: 620px) {
  .quote-modal {
    padding: 14px;
  }

  .quote-modal-box {
    padding: 28px 20px;
    border-radius: 24px;
  }

  .quote-modal-close {
    top: 12px;
    right: 12px;
  }

  .quote-modal-header {
    padding-right: 34px;
  }

  .quote-modal-header h2 {
    font-size: 30px;
  }
}

/* Legal Pages */
.legal-hero {
  padding: 120px 0 80px;
  background:
    linear-gradient(135deg, rgba(7, 21, 37, 0.92), rgba(6, 76, 103, 0.86)),
    url("https://images.unsplash.com/photo-1450101499163-c8848c66ca85?auto=format&fit=crop&w=1600&q=80") center/cover;
  color: var(--white);
}

.legal-hero-content {
  max-width: 820px;
}

.legal-hero h1 {
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.06em;
  margin: 14px 0 18px;
}

.legal-hero p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.75;
}

.legal-content-section {
  background: var(--light-bg);
}

.legal-wrapper {
  max-width: 980px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 46px;
  box-shadow: 0 20px 60px rgba(7, 21, 37, 0.08);
}

.legal-wrapper h2 {
  color: var(--navy);
  font-size: 28px;
  margin: 34px 0 14px;
  letter-spacing: -0.035em;
}

.legal-wrapper h2:first-child {
  margin-top: 0;
}

.legal-wrapper h3 {
  color: var(--navy);
  font-size: 20px;
  margin: 24px 0 10px;
}

.legal-wrapper p,
.legal-wrapper li {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.legal-wrapper ul {
  padding-left: 22px;
  margin: 12px 0 20px;
}

.legal-note {
  padding: 18px 20px;
  background: rgba(11, 111, 145, 0.08);
  border: 1px solid rgba(11, 111, 145, 0.16);
  border-radius: 18px;
  margin-bottom: 26px;
}

.legal-note strong {
  color: var(--navy);
}

.footer-legal {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 34px;
  padding-top: 20px;
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.footer-legal a:hover {
  color: var(--white);
}

@media (max-width: 700px) {
  .legal-wrapper {
    padding: 28px 20px;
    border-radius: 22px;
  }

  .legal-hero {
    padding: 100px 0 60px;
  }
}

/* Insurance Company Logo Slider */
.carrier-section {
  background: var(--white);
  overflow: hidden;
}

.carrier-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin-top: 10px;
}

.carrier-slider::before,
.carrier-slider::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.carrier-slider::before {
  left: 0;
  background: linear-gradient(to right, var(--white), transparent);
}

.carrier-slider::after {
  right: 0;
  background: linear-gradient(to left, var(--white), transparent);
}

.carrier-track {
  display: flex;
  width: max-content;
  animation: carrierScroll 42s linear infinite;
}

.carrier-slider:hover .carrier-track {
  animation-play-state: paused;
}

.carrier-group {
  display: flex;
  gap: 24px;
  padding-right: 24px;
}

.carrier-logo-card {
  width: 180px;
  height: 95px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  box-shadow: 0 14px 35px rgba(7, 21, 37, 0.07);
  transition: all 0.25s ease;
}

.carrier-logo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(7, 21, 37, 0.12);
  border-color: rgba(11, 111, 145, 0.28);
}

.carrier-logo-card img {
  max-width: 100%;
  max-height: 56px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.75;
  transition: all 0.25s ease;
}

.carrier-logo-card:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

@keyframes carrierScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 700px) {
  .carrier-logo-card {
    width: 145px;
    height: 82px;
    padding: 14px;
  }

  .carrier-group {
    gap: 16px;
    padding-right: 16px;
  }

  .carrier-track {
    animation-duration: 32s;
  }

  .carrier-slider::before,
  .carrier-slider::after {
    width: 55px;
  }
}

/* Header License Badge */
.header-license {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(11, 111, 145, 0.08);
  border: 1px solid rgba(11, 111, 145, 0.16);
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.license-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 5px rgba(11, 111, 145, 0.12);
  flex-shrink: 0;
}

/* Smaller Laptop */
@media (max-width: 1180px) {
  .header-license {
    font-size: 12px;
    padding: 9px 11px;
  }
}

/* Mobile Responsive */
@media (max-width: 860px) {
  .site-header {
    padding-top: 12px;
  }

  .header-inner {
    flex-wrap: wrap;
    padding-top: 8px;
    padding-bottom: 12px;
  }

  .header-license {
    order: 3;
    width: 100%;
    justify-content: center;
    margin-top: 10px;
    padding: 10px 12px;
    font-size: 13px;
  }

  .main-nav {
    order: 4;
  }

  .header-cta {
    order: 5;
  }
}

/* Very Small Mobile */
@media (max-width: 420px) {
  .site-header {
    padding-top: 14px;
  }

  .header-license {
    font-size: 12px;
    white-space: normal;
    text-align: center;
    line-height: 1.35;
  }
}

/* Trust Highlights Section */
.trust-highlight-section {
  position: relative;
  background: var(--white);
  padding: 0 0 74px;
  margin-top: -38px;
  z-index: 5;
}

.trust-highlight-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 18px;
  box-shadow: 0 24px 70px rgba(7, 21, 37, 0.12);
}

.trust-highlight-card {
  position: relative;
  padding: 28px 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(11, 111, 145, 0.07), rgba(255, 255, 255, 0.95));
  border: 1px solid rgba(11, 111, 145, 0.12);
  text-align: center;
  transition: all 0.25s ease;
  overflow: hidden;
}

.trust-highlight-card::before {
  content: "";
  position: absolute;
  top: -45px;
  right: -45px;
  width: 90px;
  height: 90px;
  background: rgba(11, 111, 145, 0.1);
  border-radius: 50%;
}

.trust-highlight-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 38px rgba(7, 21, 37, 0.1);
  border-color: rgba(11, 111, 145, 0.25);
}

.trust-highlight-icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 16px;
  border-radius: 18px;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 14px 30px rgba(11, 111, 145, 0.28);
}

.trust-highlight-card h3 {
  color: var(--navy);
  font-size: 17px;
  line-height: 1.25;
  margin-bottom: 8px;
  letter-spacing: -0.025em;
}

.trust-highlight-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

/* Laptop */
@media (max-width: 1180px) {
  .trust-highlight-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Tablet */
@media (max-width: 800px) {
  .trust-highlight-section {
    margin-top: -20px;
    padding-bottom: 58px;
  }

  .trust-highlight-grid {
    grid-template-columns: repeat(2, 1fr);
    border-radius: 24px;
  }
}

/* Mobile */
@media (max-width: 560px) {
  .trust-highlight-section {
    margin-top: 0;
    padding: 36px 0 54px;
  }

  .trust-highlight-grid {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .trust-highlight-card {
    padding: 24px 18px;
  }
}