/* ----------------- Header Section ----------------- */
.header {backdrop-filter: blur(10px); background-color: rgba(255, 255, 255, 0.8); border-bottom: 4px solid #000;}
.sale-line span {margin-left: 4px; font-weight: 500; color: #000; text-decoration: none; font-size: 20px;}
.sale-line .saving {color: grey; font-style: italic;}
/* ----------------- Hero Section ----------------- */
.hero-section {background-color: #fff;padding: 4rem 0; border-bottom: 4px solid #000; font-family: 'Roboto', sans-serif;}
.hero-section h1 {color: #000; font-family: 'Montserrat', sans-serif; font-weight: 700;}
.hero-section p.lead,.hero-section ul li,.hero-section p.small {color: #6c757d;}
.hero-section ul li i { color: #000; }
.hero-section .btn-dark {background-color: #000; color: #fff; border: none; font-weight: 600; padding: 0.75rem 1.5rem;}
.hero-section .btn-dark:hover { background-color: #333; }
.hero-section .hero-img {filter: grayscale(100%) brightness(90%); max-width: 100%; height: auto; max-height: 400px;}
/* ----------------- Services / Cards Section ----------------- */
.services-section {
    background-color: #fff;
    padding: 5rem 0;
    border-bottom: 4px solid #000;
    font-family: 'Roboto', sans-serif;
}

/* Headings */
.services-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #000;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.services-section .card {
    border-radius: 0.75rem;
    border: 2px solid #000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #fff;
}

.services-section .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.services-section .card-title {
    font-family: 'Montserrat', sans-serif;
    color: #000;
    font-size: 1.25rem;
}

.services-section .card-text,
.services-section ul li,
.services-section .card p.small {
    color: #6c757d;
}

.services-section ul li {
    margin-bottom: 0.5rem;
    display: flex;           /* make icon + text a flex row */
    align-items: flex-start; /* top-align icon with first line of text */
    gap: 0.5rem;             /* space between icon and text */
}

.services-section ul li i {
    color: #000;
    flex-shrink: 0; 
}

.services-section .btn-dark {
    background-color: #000;
    color: #fff;
    font-weight: 600;
    border: none;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.services-section .btn-dark:hover {
    background-color: #333;
    transform: translateY(-2px);
}

@media (max-width: 767px) {
    .services-section .card {
        text-align: center;
    }
}

/* ----------------- Why Choose Us Section ----------------- */
.info-section {
    background: #fff;
    padding: 5rem 0;
    border-bottom: 4px solid #000;
}

.info-section h4 {
    font: 700 2.2rem 'Montserrat', sans-serif;
    margin-bottom: 1.5rem;
    color: #000;
}

.info-section p.lead {
    font: 1.1rem 'Roboto', sans-serif;
    color: #6c757d;
    margin-bottom: 3rem;
}

/* ----------------- Info Boxes ----------------- */
.row.g-4 {
    display: flex;
    flex-wrap: wrap;
}

.row.g-4 > .col-6,
.row.g-4 > .col-md-3 {
    display: flex;
}

.info-box {
    background: #f8f8f8;
    border-radius: 0.75rem;
    padding: 2rem;
    border: 1px solid #ddd;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto; /* ensures equal height and flexible width */
    transition: transform 0.3s, box-shadow 0.3s;
}

.info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.info-box.accent-left { border-left: 4px solid #000; }

.info-box h5 {
    font: normal 1.15rem 'Montserrat', sans-serif;
    color: #000;
    margin-bottom: 0.5rem;
}

.info-box p {
    font: 0.95rem 'Roboto', sans-serif;
    color: #6c757d;
    margin: 0;
}

.info-box i { color: #000; }

.coverage-line {
    font: 0.9rem 'Roboto', sans-serif;
    color: #6c757d;
    margin-top: 2rem;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .info-box { text-align: center; }
    .info-section h4 { font-size: 2rem; }
    .info-section p.lead { font-size: 1rem; margin-bottom: 2rem; }
}

/* ----------------- Highlight Section ----------------- */
.highlight-section {
    position: relative;
    overflow: hidden;
    min-height: 400px; /* ensures section has height */
    display: flex;
    align-items: center; /* vertically center content */
    border-bottom: 4px solid #000; /* black line */
}

.highlight-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;      /* ensures full coverage */
    background-position: center; /* center the image */
    background-repeat: no-repeat;
    filter: grayscale(100%) brightness(0.6); /* black & white + dark overlay */
    z-index: 1;
}

.highlight-section .container {
    position: relative;
    z-index: 2; /* place content above background */
}

.highlight-card {
    max-width: 100%;
    color: #fff;
    border-left: 4px solid #000; /* black left border */
    background-color: rgba(0,0,0,0.6); /* semi-transparent dark background */
    padding: 2rem;
    border-radius: 0.75rem;
}

.highlight-card h3 {
    font-size: 2rem;
    font-weight: 700;
}

.highlight-card p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.highlight-card a.btn {
    color: #000;
    background-color: #fff;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
}


/* Responsive adjustments */
@media (max-width: 991px) {
    .highlight-card {
        margin-top: 2rem;
        border-left: 0; /* remove left border on smaller screens */
        text-align: center;
    }
}

.faq-section { background:#fff; border-bottom:4px solid #000; }
.faq-heading { font-size:2rem; color:#000; margin-bottom:3rem; }
.accordion-button { background:#f8f9fa; font-weight:600; color:#000; border-radius:.25rem; box-shadow:none; }
.accordion-button:not(.collapsed) { background:#e9ecef; }
.accordion-body { font-size:.95rem; color:#6c757d; }
.accordion-item { border-radius:.5rem; overflow:hidden; }
.accordion-item::before { display:none; }

.how-it-works {
  background: #f8f8f8;
  padding: 5rem 0;
  border-bottom: 4px solid #000;
}

.how-it-works h2 {
  font: 700 2.2rem 'Montserrat', sans-serif;
  margin-bottom: 3rem;
  color: #000;
}

.step-box {
  position: relative;
  background: #fff;
  border-left: 4px solid #000;
  padding: 2rem;
  border-radius: 0.75rem;
  transition: transform 0.3s, box-shadow 0.3s;
}
.step-box:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.1); }

.step-box h5 { font: 600 1.25rem 'Montserrat', sans-serif; margin-bottom: 0.75rem; color: #000; }
.step-box p { font: 400 0.95rem 'Roboto', sans-serif; color: #6c757d; }

.icon-circle {
  width: 60px; height: 60px; border-radius: 50%;
  background: #e9ecef; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}

@media (max-width: 767px) {
  .step-box { text-align: center; border-left: 0; padding-left: 1.5rem; }
}

.site-footer {
    background-color: #000; /* black background */
    color: #fff; /* white text */
    text-align: center; /* center all text */
}

.site-footer a {
    color: #fff; /* white links */
}

.site-footer a:hover {
    color: #ccc; /* lighter on hover */
}

.site-footer p {
    color: #fff; /* ensure all paragraph text is white */
}
    .privacy-card {
      background-color: #fff;
      border: 1px solid #000; /* black border */
      border-radius: 1rem;
      padding: 2rem;
      box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    }

    .back-home-btn {
      display: inline-block;
      margin-bottom: 2rem;
      font-weight: 600;
    }

    .privacy-card h2 {
      font-weight: 600;
      margin-top: 1.5rem;
      margin-bottom: 0.5rem;
    }

    .privacy-card p, 
    .privacy-card ul li {
      font-size: 1rem;
      color: #333;
    }
    body.error {
      background-color: #f8f9fa;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100vh;
      margin: 0;
    }
    .error-card {
      background-color: #fff;
      border: 1px solid #000; /* black border */
      border-radius: 1rem;
      padding: 3rem 2rem;
      text-align: center;
      box-shadow: 0 8px 20px rgba(0,0,0,0.1);
      max-width: 600px;
      width: 90%;
    }

    .error-card h1 {
      font-size: 4rem;
      font-weight: 700;
      margin-bottom: 1rem;
    }

    .error-card h2 {
      font-size: 1.75rem;
      font-weight: 500;
      margin-bottom: 1.5rem;
    }

    .back-home-btn {
      display: inline-block;
      font-weight: 600;
    }

    @media (max-width: 576px) {
      .error-card h1 {
        font-size: 3rem;
      }

      .error-card h2 {
        font-size: 1.5rem;
      }
    }