* {
    font-family: "Lato", sans-serif;
}

html,
body {
    overflow-x: hidden;
    padding: 0 !important;
}

.container {
    max-width: 1170px !important;
}

.py-50 {
    padding-top: 50px;
    padding-bottom: 50px;
}

.py-50 {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
}

/* Qualification section */
.qual-section {
    background: #fff;
    color: #111;
}

.qual-section .section-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 32px;
}

.stars {
    width: 120px;
    margin-bottom: 10px;
}

.qual-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: start;
}

.qual-card {
    background: #ef8a1e;
    /* orange */
    padding: 36px 28px;
    text-align: center;
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.06);
}

.qual-icon {
    width: 60px;
    height: auto;
    margin: 0 auto 18px auto;
}

.qual-title {
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 12px;
}

.fs-15 {
    font-size: 15px;
    font-weight: 700;
    /* bold as requested */
    line-height: 1.4;
    color: #111;
}

@media (max-width: 992px) {
    .qual-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .qual-grid {
        grid-template-columns: 1fr;
    }
}

.middle-section {
    background-image: url("../img/middle-bg.webp");
    background-size: cover;
    background-position: bottom;
    position: relative;
    padding: 100px 0;
}


.middle-title {
    font-size: 30px;
    font-weight: 500;
    /* medium */
    color: #fff;
}

.middle-title .text-orange {
    color: #f28c28;
    font-weight: 700;
    /* bold */
}

.middle-text {
    font-size: 15px;
    font-weight: 400;
    color: #fff;
}

.middle-items {
    margin-top: 28px;
}

.middle-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 18px;
}

.middle-item-icon {
    width: 48px;
    height: 48px;
    background: #f28c28;
    padding: 10px;
    border-radius: 4px;
}

.middle-item-head {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 6px 0;
    color: #f5a24a;
}

.middle-item-text {
    font-size: 15px;
    font-weight: 400;
    margin: 0;
    color: #fff;
}

@media (max-width: 768px) {
    .middle-title {
        font-size: 26px;
    }
}

/* Bento / stats section */
.bento-section {
    background: #f6f6f6;
    color: #111;
    padding: 50px 0 100px 0;
}

.bento-title {
    font-size: 30px;
    font-weight: 500;
    /* medium */
    margin-bottom: 18px;
}

.bento-orange {
    color: #f28c28;
    font-weight: 700;
}

.bento-text {
    font-size: 15px;
    color: #333;
}

.bento-note {
    margin-top: 12px;
    font-weight: 700;
}

.bento-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.bento-tile {
    padding: 28px;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bento-tile.orange {
    background: #f28c28;
    color: #111;
}

.bento-tile.white {
    background: #fff;
    color: #111;
}

.bento-number {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.bento-head {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.bento-copy {
    font-size: 15px;
    color: inherit;
}

@media (max-width: 992px) {
    .bento-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }

    .bento-number {
        font-size: 28px;
    }
}

/* Feature / info section */
.feature-section {
    background: #fff;
    color: #111;
}

.feature-image-wrap {
    display: flex;
    justify-content: center;
}

.feature-image {
    max-width: 520px;
    width: 100%;
    display: block;
}

.feature-title {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 22px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 18px;
}

.feature-check {
    display: inline-flex;
    width: 20px;
    height: 20px;
    background: #111;
    color: #fff;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    margin-top: 0px;
    flex-shrink: 0;
    font-size: 12px;
}

.feature-list-head {
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 6px 0;
}

.feature-list-text {
    font-size: 15px;
    font-weight: 400;
    margin: 0;
    color: #222;
}

/* ensure CTA inherits existing .cta-btn styles and some spacing */
.feature-section .cta-btn {
    background-color: #f28c28 !important;
    color: black !important;
}

@media (max-width: 992px) {
    .feature-image {
        max-width: 420px;
    }
}

@media (max-width: 640px) {
    .feature-title {
        font-size: 30px !important;
    }

    section.bento-section {
        padding-bottom: 0;
    }

    section.strip.pt-50 {
        padding-left: 12px;
        padding-right: 12px;
    }
}

.pt-50 {
    padding-top: 50px;
}

.hero {
    background-image: url("../img/hero-bg.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.logo {
    width: 300px;
}

.fs-40 {
    font-size: 40px;
}

.text-orange {
    color: #f28c28;
}

.cta-btn {
    transition: 0.4s;
    background-color: #f28c28 !important;
    color: black !important;
    font-size: 15px;
    border-radius: 0;
    padding: 12px 32px;
}

.cta-btn:hover {
    animation: elevate .2s forwards;
}

@keyframes elevate {
    to {
        transform: translateY(-10px);
        box-shadow: rgba(0, 0, 0, 0.25) 0px 8px 5px -5px;
    }
}

.fs-18 {
    font-size: 18px;
}

.strip {
    background-color: #f6f6f6;
}

.item-img {
    object-fit: cover;
    width: 100%;
    height: 200px;
}

/* Reviews section */
.reviews-section {
    background: #fff;
}

.google-logo {
    width: 120px;
    height: auto;
}

.reviews-title {
    font-size: 28px;
    font-weight: 700;
    margin-top: 10px;
}

.reviews-row {
    display: flex;
    gap: 28px;
    justify-content: center;
    margin-top: 28px;
}

.review-card {
    background: #fff;
    padding: 36px 28px;
    width: 360px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    text-align: center;
}

.review-card--highlight {
    background: #ef8a1e;
    color: #fff;
}

.review-stars {
    color: #222;
    margin-bottom: 12px;
}

.review-card--highlight .review-stars {
    color: #fff;
}

.review-text {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 18px;
    font-style: italic;
}

.review-author {
    font-weight: 700;
    margin-bottom: 6px;
}

.review-date {
    font-size: 13px;
    color: rgba(0, 0, 0, 0.6);
}

@media (max-width: 992px) {
    .reviews-row {
        flex-direction: column;
        align-items: center;
    }

    .review-card {
        width: 90%;
    }
}

footer {
    background-color: #ededed;
}

footer a {
    color: #0b4cd1;
    text-decoration: none;
    font-size: 15px;
}



/* Lead modal styles */
.modal-dialog {
    max-width: 720px;
}

.modal-content {
    border-radius: 3px;
    overflow: visible;
    border: 12px solid #cbd5e0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-content *:not(i) {
    font-family: 'Montserrat', sans-serif;
}

.modal-close {
    position: absolute;
    right: -7px;
    top: -7px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #1a1a1a;
    border: 3px solid white;
    color: #fff;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.modal-close:hover {
    background: #333;
}

.modal-body {
    padding: 20px 15px;
}

.modal-title {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #000;
    line-height: 1.2;
}

.modal-subtitle {
    font-size: 19px;
    font-weight: 500;
    margin-bottom: 2px;
    color: #000;
}

.modal-desc {
    font-size: 16px;
    color: #555;
    margin-bottom: 28px;
}

.form-label {
    font-size: 14px;
    font-weight: 500;
    color: #000;
    margin-bottom: 2px;
}

.modal-input {
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 5px 16px;
    font-size: 15px;
    background: #fff;
}

.modal-input:focus {
    border-color: #1a3d5c;
    box-shadow: 0 0 0 3px rgba(26, 61, 92, 0.1);
    outline: none;
}

.modal-qualify-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 0px;
    color: #000;
    letter-spacing: 0.5px;
}

strong {
    font-weight: 600;
    ;
}

.modal-qualify-sub {
    font-size: 14px;
    color: #555;
    margin-bottom: 0;
}

.modal-submit {
    background: #133352;
    color: #fff;
    padding: 15px 5px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 20px;
    border: none;
    transition: 0.3s;
    width: 100%;
    box-shadow: 0px 0px 0px 0px #ffffff;
}

.modal-submit:hover {
    background: #152f47;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(26, 61, 92, 0.3);
}

.modal-legal {
    font-size: 12px;
    text-align: center;
    color: #666;
    margin-top: 20px;
    text-align: center;
}

.modal-legal a {
    color: #0000EE;
    text-decoration: underline;
}

.modal-legal a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .modal-dialog {
        max-width: 95%;
        margin: 1rem auto;
    }

    .modal-title {
        font-size: 26px;
    }
}

/* Thank You Page Hero */
.thankyou-hero {
    background: linear-gradient(135deg, #1a4d6f 0%, #2b5f7f 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 0;
}

.thankyou-subtitle {
    color: #f28c28;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.thankyou-title {
    color: #fff;
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.1;
}

.thankyou-text {
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    max-width: 450px;
}

.thankyou-image-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
}

.thank-logo {
    width: 190px;
}

@media (max-width: 992px) {
    .thankyou-title {
        font-size: 48px;
    }

    .thankyou-image {
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .thankyou-hero {
        padding: 60px 0;
    }

    .thankyou-title {
        font-size: 40px;
    }

    .logo {
        width: 188px;
    }

    .fs-40 {
        font-size: 35px;
    }

    .qual-icon {
        width: 50px;
    }

    .qual-card {
        padding: 25px 28px;
    }

    .middle-section {
        padding: 30px 0 0 0;
    }

    .mob-hide {
        display: none !important;
    }
}

.error-alert, .error {
    color: red;
    font-size: 12px;
    display: none;
    margin: 3px 0;
}

.error.visible {
	display: block;
}

/* ensure the Google suggestions dropdown is visible and clickable above the modal */
.pac-container {
  z-index: 2000 !important;
  pointer-events: auto !important;
}

/* modal stacking */
.modal-backdrop {
  --bs-backdrop-zindex: 1040 !important;
}

.modal {
  --bs-modal-zindex: 1050 !important;
}
