/* Font (Montserrat) */
body {
  font-family: 'Montserrat', sans-serif;
}
html {
  scroll-behavior: smooth;
}

.glass-header {
  background-color: #EEEDED;
  backdrop-filter: none; /* Optional: remove blur if not needed */
  z-index: 1030;
}

/* Logo styling */
.site-logo {
  height: 52px;
  max-width: 100%;
}

/* Sales line style */
.sales-line {
  font-size: 1.35rem;
  font-weight: 600;
  color: #000;
  letter-spacing: 0.4px;
}

/* Savings! special style */
.savings {
  color: #00bf63;
  font-style: italic;
  text-decoration: underline;
  text-decoration-color: #00bf63;
  text-underline-offset: 5px;
}

/* Responsive mobile centering */
@media (max-width: 767.98px) {
  .glass-header {
    text-align: center;
  }
}

/* Hero Section Background */
.bg-light-gray {
  background-color: #EEEDED;
}

.hero-img {
  width: 100%;               /* Full width inside the column */
  max-width: 100%;           /* Prevent overflow */
  max-height: 700px;         /* Increase this number for larger image */
  height: auto;              /* Maintain aspect ratio */
  border-radius: 0;          /* No rounded corners */
  box-shadow: none;          /* No shadow */
  object-fit: contain;       /* Clean scaling */
}


/* Brand Green Text */
.text-primary-green {
  color: #00bf63;
}

/* Primary CTA Button - Get Quote */
.btn-primary-green {
  background-color: #00bf63;
  color: #fff;
  border: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-primary-green:hover {
  background-color: #009e54;
  color: #fff;
  transform: translateY(-2px);
}

/* Secondary CTA Button - Call Now */
.btn-call-now {
  background-color: #5271FF;
  color: #fff;
  border: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-call-now:hover {
  background-color: #4059d6;
  color: #fff;
  transform: translateY(-2px);
}

/* Icon spacing */
.btn i {
  margin-right: 0.4rem;
}

/* Bullet points in hero */
.hero-section ul {
  padding-left: 0;
  list-style: none;
}

.hero-section li {
  margin-bottom: 0.5rem;
}

/* Center text on mobile */
@media (max-width: 767.98px) {
  .hero-section {
    text-align: center;
  }

  .hero-section ul {
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }

  .hero-section .btn {
    width: 100%;
    max-width: 320px;
  }
}

/* Center the list on larger screens if needed */
.hero-section ul {
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* Auto Insurance Section */
.auto-insurance-section {
    background-color: #EEEDED; /* Match hero section */
}

.auto-insurance-section ul {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
/* Health Insurance Section */
.health-insurance-section {
  background-color: #EEEDED;
}

/* Property Insurance Section (Homeowners & Renters) */
.property-insurance-section {
  background-color: #EEEDED;
}

.property-insurance-section .card {
  background-color: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  transition: transform 0.2s ease;
}

.property-insurance-section .card:hover {
  transform: translateY(-4px);
}
/* Quote Form Section */
.quote-form-section {
  background-color: #EEEDED;
}

.quote-form-section input,
.quote-form-section select {
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  font-size: 1rem;
}

.quote-form-section input::placeholder {
  color: #999;
}

/* Blue Primary Button */
.btn-primary-blue {
  background-color: #5271FF;
  color: #fff;
  border: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-primary-blue:hover {
  background-color: #4059d6;
  color: #fff;
  transform: translateY(-2px);
}
/* Why Choose Us Section */

/* Why Choose Us Section */
.why-choose-section {
  background-color: #EEEDED;
}

.text-primary-blue {
  color: #5271FF;
}

.border-primary-blue {
  border-color: #5271FF !important;
}

.border-primary-green {
  border-color: #00bf63 !important;
}

.feature-box i {
  font-size: 1.25rem;
}


.coverage-section {
  background-color: #EEEDED;
}

.coverage-box {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.coverage-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.text-primary-blue {
  color: #5271FF;
}

.text-primary-green {
  color: #00bf63;
}

.border-primary-blue {
  border-color: #5271FF !important;
}

.border-primary-green {
  border-color: #00bf63 !important;
}

.sticky-contact-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #5271FF;
  padding: 12px;
  text-align: center;
  z-index: 1000;
  transition: transform 0.3s ease;
}

/* When footer is visible, hide sticky bar */
.hide-sticky {
  transform: translateY(100%);
}

.sticky-contact-bar .btn {
  padding: 0.5rem 1.25rem;
  font-size: 0.95rem;
  border-radius: 0.4rem;
  transition: background-color 0.3s ease;
}

/* Call button */
.sticky-contact-bar .btn-call {
  background-color: #4059d6;
}

.sticky-contact-bar .btn-call:hover {
  background-color: #3048b0;
}

/* Quote button */
.sticky-contact-bar .btn-quote {
  background-color: #00bf63;
}

.sticky-contact-bar .btn-quote:hover {
  background-color: #009e54;
}

#sticky-bar {
  transition: opacity 0.3s ease;
}

/* Mobile adjust */
@media (max-width: 767.98px) {
  .sticky-contact-bar {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}
.faq-section {
  background-color: #EEEDED;
}

.accordion-button {
  font-weight: 600;
  color: #212529;
}

.accordion-button:not(.collapsed) {
  background-color: #f1f1f1;
  color: #5271FF;
}

.accordion-body {
  font-size: 0.95rem;
}

.border-primary-blue {
  border-color: #5271FF !important;
}

.border-primary-green {
  border-color: #00bf63 !important;
}


/* Compare Section Background */
.compare-section {
  background-color: #EEEDED;
}

/* Card Style Inside Compare Section */
.compare-section .bg-white {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.compare-section .bg-white:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

/* Section Icons */
.text-primary-blue {
  color: #5271FF;
}

.text-primary-green {
  color: #00bf63;
}

/* Section Heading & Text */
.compare-section h2 {
  font-size: 2rem;
}

.compare-section p {
  font-size: 1rem;
  line-height: 1.6;
}

/* Disclaimer Text */
.compare-section .small {
  font-size: 0.85rem;
  color: #666;
}

/* How It Works Section */
.how-it-works {
  background-color: #EEEDED;
}

.step-box {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

.icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #f2f2f2;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

/* Reuse brand colors */
.text-primary-blue {
  color: #5271FF;
}

.text-primary-green {
  color: #00bf63;
}

/* Testimonials Section */
.testimonials-section {
  background-color: #EEEDED;
}

.testimonial-box {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

.testimonials-section p {
  font-size: 1rem;
  line-height: 1.6;
}

.site-footer {
  background-color: #EEEDED;
}

.site-footer a:hover {
  color: #5271FF;
  text-decoration: underline;
}
.site-footer a:hover {
  color: #5271FF;
  text-decoration: underline;
}
