:root {
  /* Colors */
  --primary-color: #0b4bb6;
  --secondary-color: #141435;
  --text-color: #485d7d;
  --border-color: #d1d9e2;
  --light-background: #F7F8FA;

  /* Typography */
  --font-family: "Plus Jakarta Sans", sans-serif;
  --h1-size: 48px;
  --h2-size: 34px;
  --h3-size: 24px;
  --h4-size: 18px;
  --text-size: 18px;
  --small-text-size: 14px;
  --x-small-text-size: 12px;

  /* Buttons */
  --button-font-size: 15px;
  --button-height: 44px;
  --button-padding: 10px 20px;
  --button-border-radius: 60px;
}

body {
  font-family: var(--font-family);
  color: var(--text-color);
  background-color: white;
  margin: 0;
  padding: 0;
}

.logo {
  width: 200px;
  transition: width 0.3s ease;
}

@media (max-width: 768px) {
  .logo {
    width: 160px;
  }
}

section {
  padding: 80px 0;
}

.card {
  --bs-card-border-color: var(--border-color) !important;
}

.card-title {
  color: var(--secondary-color) !important;
}

h1,
h2,
h3,
h4,
h5 {
  color: var(--secondary-color);
  font-weight: 700; /* Optional: Define font-weight */
}

h1 {
  font-size: var(--h1-size);
}
h2 {
  font-size: var(--h2-size);
}
h3 {
  font-size: var(--h3-size);
}
h4 {
  font-size: var(--h4-size);
}

p {
  font-size: var(--text-size);
  color: var(--text-color);
}

.lead {
  color: var(--secondary-color);
  font-size: 22px;
}

@media (max-width: 768px) {
  p {
    font-size: var(--small-text-size);
  }
  .lead {
    font-size: 18px;
  }
  h2 {
    font-size: var(--h3-size);
  }
  section {
    padding: 40px 0;
  }
  .container {
    padding: 0 20px;
  }
}

a {
  color: var(--primary-color);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

.text-custom-primary {
  color: var(--primary-color);
}

.bg-primary {
  background: var(--primary-color) !important;
}

/* Base Button Styles */
.btn {
  font-size: var(--button-font-size, 15px);
  font-weight: 500;
  padding: var(--button-padding, 10px 20px);
  border-radius: var(--button-border-radius, 4px);
  height: var(--button-height, auto);
  text-align: center;
  border: 1px solid var(--secondary-color);
  color: var(--primary-color);
  background-color: transparent;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}

.btn:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.btn-primary {
  color: white;
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}
.btn-primary:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-outlined,
.btn-outline-primary {
  border: 1px solid var(--primary-color);
  color: var(--secondary-color);
  background-color: transparent;
}
.btn-outlined:hover,
.btn-outline-primary:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.btn-outlined-white {
  border: 1px solid white;
  color: white;
  background-color: transparent;
}
.btn-outlined-white:hover {
  background-color: white;
  color: var(--primary-color);
  border-color: white;
}

form input,
form textarea {
  border: 1px solid var(--border-color);
  border-radius: 4px;
  padding: 8px 12px;
  font-size: var(--text-size);
  color: var(--secondary-color);
  background-color: white;
  margin-bottom: 16px;
}

form label {
  color: var(--text-color);
  font-size: var(--small-text-size);
  margin-bottom: 5px;
  display: block;
}

form input::placeholder {
  color: var(--text-color);
  font-size: 14px;
  opacity: 0.7;
}

/* INCLUDES STYLES */

/* HOME STYLES */
section.hero {
  padding-bottom: 0;
  margin-top: -110px;
  padding-top: 120px;
  height: 950px;
  background-image: url("/imgs/hero2.png");
  background-size: cover;
  background-position: right bottom;
  border-top: 8px solid var(--secondary-color);
}

@media (max-width: 768px) {
  section.hero {
    background-image: url("/imgs/hero-mobile.png");
    background-size: cover;
    background-position: bottom center;
  }
}

.hero-check-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(4px);
  padding: 8px 18px;
  border-radius: 60px;
  font-size: 15px;
  font-weight: 500;
  color: var(--secondary-color);
}

section.info-cards {
  padding-bottom: 80px;
}

section.info-cards .card {
  margin-top: -180px;
  border: none;
  border-left: 8px solid var(--primary-color) !important;
}

section.info-cards p {
  font-size: 14px;
}

.info-icon {
  width: 64px;
  height: 64px;
  background-color: #edf2fc;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

section.how-it-works {
  background-color: var(--light-background);
}

section.news-feed {
  background-color: white;
}

.eyebrow {
  color: var(--primary-color);
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
}

section.news-feed .card {
  border: none;
  border-bottom: 8px solid var(--secondary-color);
  min-height: 280px;
  height: auto;
}

section.news-feed .card img {
  height: 180px;
  width: 258px;
}

section.news-feed .card p {
  font-size: 14px;
  margin-top: 14px;
}

section.news-feed .card a.link {
  font-weight: 500;
  text-align: right;
  text-decoration: underline;
  margin-top: 24px;
  display: block;
}

section.contact-form-section {
  padding: 180px 0;
}

section.contact-form-section .container {
  padding-top: 80px;
  background-image: url("/imgs/cta-backg.png");
  background-size: cover;
  background-position: left center;
  height: 440px;
}

section.contact-form-section .form-card {
  margin-top: -190px;
}

.site-footer {
  background-color: var(--light-background);
}

.site-footer h6 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: var(--text-color);
  font-size: 14px;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--primary-color);
}

.feature-cards p {
  font-size: 14px;
}

/* ========================================
   NEW SITE STYLES (2026 Redesign)
   ======================================== */

html {
  scroll-behavior: smooth;
}

/* Shared Nav */
.navbar .nav-link {
  color: var(--secondary-color);
  font-size: 15px;
  font-weight: 500;
  padding: 8px 16px !important;
}

.navbar .nav-link:hover {
  color: var(--primary-color);
}

.navbar-toggler {
  border: 1px solid var(--border-color);
  padding: 6px 10px;
}

.navbar-toggler-icon {
  width: 20px;
  height: 20px;
}

@media (max-width: 767px) {
  .navbar-collapse {
    background-color: white;
    border-radius: 12px;
    padding: 16px 20px;
    margin-top: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  }
  .navbar-collapse .nav-link {
    padding: 10px 0 !important;
  }
}

/* Shared nav overlay */
header .navbar {
  position: relative;
  z-index: 10;
}

/* New Hero */
.hero-new {
  margin-top: -110px;
  padding: 180px 0 100px;
  background: linear-gradient(180deg, rgba(240,244,251,0.85) 0%, rgba(255,255,255,0.88) 100%), url("/imgs/hero2.png");
  background-size: cover;
  background-position: right bottom;
  border-top: 6px solid var(--secondary-color);
}

@media (max-width: 768px) {
  .hero-new {
    background: linear-gradient(180deg, rgba(240,244,251,0.85) 0%, rgba(255,255,255,0.88) 100%), url("/imgs/hero-mobile.png");
    background-size: cover;
    background-position: bottom center;
  }
}

.hero-new h1 {
  font-size: 56px;
  line-height: 1.15;
}

.hero-new .hero-subtitle {
  font-size: 20px;
  color: var(--text-color);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-new .hero-desc {
  font-size: 16px;
  color: var(--text-color);
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .hero-new {
    padding: 120px 0 60px;
  }
  .hero-new h1 {
    font-size: 32px;
  }
  .hero-new .hero-subtitle {
    font-size: 17px;
  }
}

/* How It Works */
.hiw-section {
  background-color: white;
}

.hiw-section .step-card {
  background: var(--light-background);
  border-radius: 16px;
  padding: 32px 24px;
  height: 100%;
  border: none;
  transition: transform 0.2s;
  position: relative;
}

.hiw-section .step-card:hover {
  transform: translateY(-4px);
}

.step-number {
  width: 40px;
  height: 40px;
  background-color: #edf2fc;
  color: var(--primary-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  position: absolute;
  top: 10px;
  right: 10px;
}

.step-card .step-icon {
  width: 56px;
  height: 56px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.step-card .step-icon svg {
  stroke: white;
}

/* Privacy Section */
.privacy-section {
  background-color: #F7F8FA;
}

.privacy-img-wrapper {
  position: relative;
}

.privacy-device-img {
  position: absolute;
  left: 22%;
  top: 2%;
  width: 140px;
  z-index: 2;
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.15));
}

.privacy-img-wrapper > .img-fluid {
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .privacy-device-img {
    width: 60px;
    left: 10px;
  }
}

.privacy-feature {
  background: white;
  border-radius: 12px;
  padding: 24px;
  border-left: 4px solid var(--primary-color);
}

.privacy-feature h5 {
  font-size: 16px;
  margin-bottom: 8px;
}

.privacy-feature p {
  font-size: 14px;
  margin-bottom: 0;
}

/* Availability */
.availability-section {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #1a1a50 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.availability-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/imgs/map-bg.svg") repeat;
  background-size: 960px 600px;
  opacity: 0.3;
  pointer-events: none;
}

.availability-section h2,
.availability-section p,
.availability-section .lead {
  color: white;
}

.availability-section .form-control {
  border-radius: 60px;
  padding: 12px 24px;
  font-size: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  color: white;
  height: 52px;
}

.availability-section .form-control::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.availability-section .form-control:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: white;
  box-shadow: none;
  color: white;
}

/* Zip search results */
.zip-result-card {
  position: relative;
}

.zip-result-close {
  position: absolute;
  top: 10px;
  right: 14px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 20px;
  line-height: 0;
  cursor: pointer;
  padding: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s, color 0.2s;
}

.zip-result-close:hover {
  background: rgba(255, 255, 255, 0.15);
  color: white;
}

.zip-result-card {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 20px;
  color: white;
}

.zip-result-card strong {
  color: white;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.zip-location-item {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 15px;
}

.zip-location-item:last-child {
  border-bottom: none;
}

.zip-location-item span {
  font-size: 13px;
  opacity: 0.7;
}

.zip-location-link {
  color: white;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
  opacity: 0.85;
}

.zip-location-link:hover {
  color: white;
  opacity: 1;
  text-decoration-color: white;
}

#resultNoMatch p {
  color: white;
  font-size: 15px;
}

.availability-section .btn-light {
  border-radius: 60px;
  padding: 12px 32px;
  font-weight: 600;
  height: 52px;
  border: none;
  background-color: white;
  color: var(--secondary-color);
}

.availability-section .btn-light:hover {
  background-color: var(--light-background);
  color: var(--primary-color);
}

/* Education Section */
.education-section {
  background-color: white;
}

/* Comparison Table */
.comparison-table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 15px;
}

.comparison-table th,
.comparison-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-color);
  vertical-align: middle;
}

.comparison-table thead th {
  font-size: 16px;
  font-weight: 700;
  color: var(--secondary-color);
  padding-bottom: 20px;
  border-bottom: 2px solid var(--border-color);
  background: white;
}

.comparison-table .row-label {
  font-weight: 600;
  color: var(--secondary-color);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.comparison-table .col-highlight {
  background: #f0f4fb;
  color: var(--secondary-color);
  font-weight: 500;
}

.comparison-table thead .col-highlight {
  background: var(--primary-color);
  color: white;
  border-radius: 12px 12px 0 0;
}

.comparison-table tbody tr:last-child .col-highlight {
  border-radius: 0 0 12px 12px;
}

.comparison-badge {
  display: block;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
  opacity: 0.8;
}

.status-no {
  color: #dc3545;
  font-weight: 700;
  margin-right: 4px;
}

.status-yes {
  color: #0b4bb6;
  font-weight: 700;
  margin-right: 4px;
}

@media (max-width: 768px) {
  .comparison-table th,
  .comparison-table td {
    padding: 12px 14px;
    font-size: 13px;
  }
  .comparison-table thead th {
    font-size: 14px;
  }
}

/* FAQ */
.faq-section {
  background-color: var(--light-background);
}

.faq-section .accordion-item {
  border: none;
  border-bottom: 1px solid var(--border-color);
  background: transparent;
}

.faq-section .accordion-button {
  background: transparent;
  font-weight: 600;
  font-size: 17px;
  color: var(--secondary-color);
  padding: 20px 0;
  box-shadow: none;
}

.faq-section .accordion-button:not(.collapsed) {
  color: var(--primary-color);
  background: transparent;
}

.faq-section .accordion-button::after {
  filter: none;
}

.faq-section .accordion-body {
  padding: 0 0 20px;
  font-size: 15px;
  color: var(--text-color);
}

/* CTA Partners */
.cta-partners {
  background-color: white;
}

.cta-card {
  background: var(--secondary-color);
  border-radius: 16px;
  padding: 40px 32px;
  color: white;
  height: 100%;
}

.cta-card h3,
.cta-card p {
  color: white;
}

.cta-card .eyebrow {
  color: rgba(255, 255, 255, 0.6);
}

.cta-card .btn {
  border-color: white;
  color: white;
}

.cta-card .btn:hover {
  background: white;
  color: var(--secondary-color);
}

/* New Footer */
.footer-new {
  background-color: var(--secondary-color);
  color: rgba(255, 255, 255, 0.7);
}

.footer-new h6 {
  color: white;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.footer-new p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.footer-new .footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.footer-new .footer-links a:hover {
  color: white;
}

.footer-new .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-new .footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

.footer-new .powered-by {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  display: block;
  margin-top: 4px;
}

/* Partners Page */
.partners-hero {
  margin-top: -110px;
  padding: 260px 0 80px;
  background: linear-gradient(180deg, #f0f4fb 0%, #ffffff 100%);
  border-top: 6px solid var(--secondary-color);
}

.partners-content section {
  padding: 60px 0;
}

.partners-content .partners-hero {
  padding: 200px 0 120px;
}

.partner-block {
  background: var(--light-background);
  border-radius: 16px;
  padding: 48px 40px;
  border-left: 6px solid var(--primary-color);
}

@media (max-width: 768px) {
  .partner-block {
    padding: 32px 24px;
  }
}

/* Partner Feature Cards */
.partner-feature-card {
  background: white;
  border-radius: 16px;
  padding: 32px 28px;
  height: 100%;
  border: 1px solid var(--border-color);
  transition: transform 0.2s, box-shadow 0.2s;
}

.partner-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.partner-feature-card .feature-icon {
  width: 56px;
  height: 56px;
  background-color: #edf2fc;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.partner-feature-card h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.partner-feature-card p {
  font-size: 14px;
  margin-bottom: 0;
}

/* Partner Process Steps */
.partner-steps {
  counter-reset: step-counter;
}

.partner-step {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border-color);
}

.partner-step:last-child {
  border-bottom: none;
}

.partner-step .step-num {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
}

.partner-step p {
  font-size: 16px;
  margin-bottom: 0;
  padding-top: 5px;
}

/* Partner Contact Form */
.partner-contact-section {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #1a1a50 100%);
}

.partner-contact-section h2,
.partner-contact-section p {
  color: white;
}

.partner-contact-form {
  background: white;
  border-radius: 16px;
  padding: 40px 32px;
}

.partner-contact-form .form-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--secondary-color);
  margin-bottom: 6px;
}

.partner-contact-form .form-control,
.partner-contact-form .form-select {
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 15px;
  color: var(--secondary-color);
  background-color: white;
  height: auto;
}

.partner-contact-form .form-control:focus,
.partner-contact-form .form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(11, 75, 182, 0.1);
}

.partner-contact-form textarea.form-control {
  min-height: 100px;
  resize: vertical;
}

.partner-contact-form .btn-primary {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  border-radius: 8px;
}

@media (max-width: 768px) {
  .partner-contact-form {
    padding: 28px 20px;
  }
}

/* Partners value section */
.partners-value-section {
  background-color: var(--light-background);
}

.partners-process-section {
  background-color: white;
}

/* Legal Pages */
.legal-hero {
  margin-top: -110px;
  padding: 180px 0 60px;
  background: linear-gradient(180deg, #f0f4fb 0%, #ffffff 100%);
  border-top: 6px solid var(--secondary-color);
}

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

.legal-content h2 {
  font-size: 22px;
  margin-top: 40px;
  margin-bottom: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
}

.legal-content h2:first-of-type {
  border-top: none;
  padding-top: 0;
}

.legal-content h3 {
  font-size: 18px;
  margin-top: 28px;
  margin-bottom: 10px;
}

.legal-content p,
.legal-content li {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-color);
}

.legal-content ul {
  padding-left: 20px;
  margin-bottom: 16px;
}

.legal-content li {
  margin-bottom: 8px;
}

.legal-content .legal-updated {
  font-size: 14px;
  color: var(--text-color);
  opacity: 0.7;
  margin-bottom: 32px;
}

.legal-content .legal-allcaps {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .legal-hero {
    padding: 140px 0 40px;
  }
  .legal-content h2 {
    font-size: 20px;
  }
}
