/* Remove image shadow & fix positioning */
.hero .hero-illustration {
    position: relative !important;
    inset: auto !important;
    box-shadow: none !important;
    z-index: 3;
}

/* Service selection dot */
.btn-service .dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e0e0e0;
    vertical-align: middle;
}
.btn-check:checked + .btn-service .dot {
    background: var(--bs-primary);
}

/* --- Hero spacing tweaks --- */
@media (min-width: 992px) {
    #hero.hero {
        padding: 20px 0;
    }
    #hero.hero h1 {
        font-size: 38px;
        line-height: 1.2;
    }
}
@media (max-width: 992px) {
    #hero.hero {
        padding: 30px 0;
    }
}
.hero .hero-illustration {
    max-width: 50%;
    height: auto;
}
@media (max-width: 992px) {
    .hero .hero-illustration {
        display: block;
        margin: 0 auto;
    }
}

/* Compact Hero (Fetch Quotes) */
#hero.hero {
    min-height: auto;
    padding: 12px 0;
}
@media (min-width: 992px) {
    #hero.hero h1 {
        font-size: 34px;
        line-height: 1.15;
        margin-bottom: .5rem;
    }
}
#hero.hero form {
    margin-bottom: .75rem !important;
}
@media (min-width: 992px) {
    .hero .hero-illustration {
        max-width: 80%;
        height: auto;
    }
}

/* =========================
   Service selection layout
   ========================= */
#service-form {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}
#service-form h5 {
    flex: 0 0 100%;
    margin-bottom: .25rem;
}
#service-form label.btn-service {
    white-space: nowrap;
}


.btn-getstarted,
.btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 25px;
  margin-top: 15px;
  display: inline-block;
  border-radius: 4px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-getstarted:hover,
.btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}
