body{

font-family:'Poppins',sans-serif;

background:#f7f8f5;

}

.hero{

padding:90px 0;

background:linear-gradient(135deg,#ffffff,#edf5eb);

}

.green-text{

color:#5E8C61;

}

.hero-badge{

background:#dcefd9;

color:#4d6f4f;

font-weight:600;

}

.hero-logo{

max-width:420px;

filter:drop-shadow(0px 20px 35px rgba(0,0,0,.12));

}

.package{

background:white;

padding:40px;

border-radius:25px;

box-shadow:0 12px 30px rgba(0,0,0,.08);

transition:.3s;

position:relative;

margin-bottom:25px;

}

.package:hover{

transform:translateY(-10px);

}

.bronze{

border-top:8px solid #9AAE72;

}

.silver{

border-top:8px solid #6F8F6A;

}

.platinum{

border-top:8px solid #3F5E49;

}

.popular{

position:absolute;

top:-15px;

left:50%;

transform:translateX(-50%);

background:#6F8F6A;

color:white;

padding:8px 20px;

border-radius:30px;

font-size:13px;

font-weight:bold;

}
/* =========================================
   HOME SIZE ESTIMATOR
========================================= */

.estimator-section {
    background:
        linear-gradient(
            135deg,
            rgba(171, 202, 85, 0.12),
            rgba(129, 170, 118, 0.18)
        );
}

.estimator-card,
.estimate-card {
    background: #ffffff;
    border-radius: 28px;
    padding: 38px;
    box-shadow: 0 18px 45px rgba(45, 74, 47, 0.12);
    height: 100%;
}

.step-label {
    display: inline-block;
    background: #e8f2d5;
    color: #486a42;
    border-radius: 30px;
    padding: 8px 16px;
    margin-bottom: 18px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    color: #687367;
    font-size: 14px;
    margin-bottom: 8px;
}

.home-slider {
    appearance: none;
    width: 100%;
    height: 12px;
    border-radius: 20px;
    background: linear-gradient(
        90deg,
        #abca55,
        #95b965,
        #81aa76
    );
    outline: none;
    cursor: pointer;
}

.home-slider::-webkit-slider-thumb {
    appearance: none;
    width: 31px;
    height: 31px;
    border-radius: 50%;
    background: #365d36;
    border: 5px solid #ffffff;
    box-shadow: 0 5px 14px rgba(0, 0, 0, 0.24);
    cursor: grab;
}

.home-slider::-moz-range-thumb {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #365d36;
    border: 5px solid #ffffff;
    box-shadow: 0 5px 14px rgba(0, 0, 0, 0.24);
    cursor: grab;
}

.square-footage-display {
    text-align: center;
    margin: 24px 0 30px;
}

.square-footage-display span {
    color: #315832;
    font-family: Georgia, serif;
    font-size: clamp(46px, 7vw, 70px);
    font-weight: 700;
}

.square-footage-display small {
    color: #667066;
    font-size: 17px;
    margin-left: 8px;
}

.exact-size-input {
    border: 1px solid #cad9bc;
    border-radius: 16px;
}

.exact-size-input:focus {
    border-color: #81aa76;
    box-shadow: 0 0 0 0.25rem rgba(129, 170, 118, 0.2);
}

.quick-size-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.quick-size {
    border: 1px solid #b9c9ae;
    background: #ffffff;
    color: #456446;
    padding: 9px 17px;
    border-radius: 999px;
    font-weight: 600;
    transition: 0.2s ease;
}

.quick-size:hover,
.quick-size.active {
    background: #557f4f;
    border-color: #557f4f;
    color: #ffffff;
}

.estimate-card {
    background:
        linear-gradient(
            160deg,
            #315b35,
            #527d4d
        );
    color: #ffffff;
    position: sticky;
    top: 25px;
}

.estimate-eyebrow {
    color: #dbeac4;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.estimate-card h3 {
    font-family: Georgia, serif;
    font-size: 30px;
    margin-bottom: 28px;
}

.estimate-line {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin: 18px 0;
}

.estimate-line span {
    color: #e1eadb;
}

.estimate-card hr {
    border-color: rgba(255, 255, 255, 0.28);
    margin: 27px 0;
}

.estimate-label {
    text-align: center;
    color: #dbeac4;
    font-size: 14px;
    margin-bottom: 0;
}

.estimated-price {
    text-align: center;
    font-family: Georgia, serif;
    font-size: clamp(56px, 7vw, 76px);
    font-weight: 700;
    line-height: 1.1;
    margin: 10px 0;
}

.estimate-note {
    color: #e3ebdf;
    text-align: center;
    font-size: 12px;
    line-height: 1.6;
}

.estimate-button {
    display: block;
    width: 100%;
    background: #ffffff;
    color: #315832;
    border-radius: 999px;
    padding: 14px 22px;
    margin-top: 25px;
    font-weight: 700;
}

.estimate-button:hover {
    background: #edf4df;
    color: #254a29;
}

@media (max-width: 767px) {
    .estimator-card,
    .estimate-card {
        padding: 26px 20px;
    }

    .estimate-card {
        position: static;
    }

    .estimate-line {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }
}

/* =========================================
   EXPANDING PACKAGE DETAILS
========================================= */

.package-details {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    margin-top: 0;
    text-align: left;
    transition:
        max-height 0.55s ease,
        opacity 0.35s ease,
        margin-top 0.35s ease;
}

.package-details.is-open {
    max-height: 1400px;
    opacity: 1;
    margin-top: 24px;
}

.details-divider {
    height: 1px;
    background: #dce4d7;
    margin-bottom: 22px;
}

.package-details h6 {
    color: #315832;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 18px;
}

.details-group {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 11px 0;
    border-bottom: 1px solid #edf1e9;
}

.details-group strong {
    color: #345a38;
    font-size: 13px;
}

.details-group span {
    color: #626c62;
    font-size: 12px;
    line-height: 1.5;
}

.package-details .package-select-btn {
    width: 100%;
    margin-top: 22px;
    padding: 11px 16px;
}

.package-details-btn[aria-expanded="true"] {
    background: var(--theme-primary, #557f4f);
    border-color: var(--theme-primary, #557f4f);
    color: #ffffff;
}

.package.is-expanded {
    transform: translateY(-7px);
    box-shadow: 0 18px 42px rgba(45, 75, 49, 0.17);
}

@media (max-width: 767px) {
    .package-details.is-open {
        max-height: 1800px;
    }
}

/* =========================================
   STEP 2: CLEANING ADD-ONS
========================================= */

.addons-section {
    background: #f8faf6;
}

.addon-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    min-height: 220px;
    padding: 28px;
    border: 2px solid transparent;
    border-radius: 24px;
    background: #ffffff;
    color: #1c2d1f;
    text-align: left;
    box-shadow: 0 12px 30px rgba(44, 73, 47, 0.08);
    cursor: pointer;
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        background-color 0.25s ease;
}

.addon-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(44, 73, 47, 0.14);
}

.addon-card.is-selected {
    border-color: var(--theme-primary, #557f4f);
    background:
        linear-gradient(
            145deg,
            #ffffff,
            var(--theme-light, #eef4e6)
        );
    box-shadow:
        0 18px 40px rgba(44, 73, 47, 0.16),
        0 0 0 3px rgba(129, 170, 118, 0.12);
}

.addon-icon {
    display: block;
    margin-bottom: 18px;
    font-size: 38px;
}

.addon-card strong {
    font-size: 19px;
    margin-bottom: 8px;
}

.addon-description {
    display: block;
    color: #687368;
    font-size: 13px;
    line-height: 1.6;
}

.addon-price {
    display: block;
    margin-top: auto;
    padding-top: 20px;
    color: var(--theme-dark, #315832);
    font-size: 18px;
    font-weight: 700;
}

.addon-check {
    position: absolute;
    top: 16px;
    right: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border: 2px solid #cbd7c5;
    border-radius: 50%;
    background: #ffffff;
    color: transparent;
    font-weight: 700;
    transition:
        background-color 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease;
}

.addon-card.is-selected .addon-check {
    background: var(--theme-primary, #557f4f);
    border-color: var(--theme-primary, #557f4f);
    color: #ffffff;
}

.addon-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    padding: 25px 30px;
    border: 1px solid #dce5d7;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 10px 28px rgba(44, 73, 47, 0.07);
}

.addon-summary-label {
    display: block;
    margin-bottom: 6px;
    color: #6d776d;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

#selectedAddonsText {
    color: #294d2d;
    font-weight: 600;
}

.addon-summary-total {
    text-align: right;
}

.addon-summary-total span {
    display: block;
    color: #6d776d;
    font-size: 13px;
}

.addon-summary-total strong {
    color: var(--theme-dark, #315832);
    font-family: Georgia, serif;
    font-size: 30px;
}

@media (max-width: 767px) {
    .addon-summary {
        align-items: flex-start;
        flex-direction: column;
    }

    .addon-summary-total {
        text-align: left;
    }
}

/* =========================================
   STEP 3: QUOTE REQUEST FORM
========================================= */

.quote-section {
    background:
        linear-gradient(
            145deg,
            #f5f8f2,
            #eaf2e4
        );
}

.quote-form-card {
    max-width: 980px;
    margin: 0 auto;
    padding: 45px;
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 20px 55px rgba(41, 76, 45, 0.12);
}

.quote-form-card .form-label {
    color: #294f2f;
    font-size: 14px;
    font-weight: 700;
}

.quote-input {
    min-height: 54px;
    padding: 13px 16px;
    border: 1px solid #ccd9c6;
    border-radius: 14px;
    background: #fbfcfa;
}

textarea.quote-input {
    min-height: 130px;
    resize: vertical;
}

.quote-input:focus {
    border-color: var(--theme-primary, #557f4f);
    background: #ffffff;
    box-shadow:
        0 0 0 0.25rem
        rgba(85, 127, 79, 0.15);
}

.form-quote-summary {
    padding: 28px;
    border: 1px solid #dce6d7;
    border-radius: 22px;
    background:
        linear-gradient(
            145deg,
            #ffffff,
            var(--theme-light, #eef4e6)
        );
}

.form-quote-summary h4 {
    color: var(--theme-dark, #315832);
    font-family: Georgia, serif;
    margin-bottom: 22px;
}

.form-summary-line {
    display: flex;
    justify-content: space-between;
    gap: 25px;
    padding: 13px 0;
    border-bottom: 1px solid rgba(66, 104, 79, 0.12);
}

.form-summary-line span {
    color: #697469;
}

.form-summary-line strong {
    color: #294f2f;
    text-align: right;
}

.form-summary-line.total-line {
    align-items: center;
    border-bottom: 0;
    padding-top: 22px;
}

.form-summary-line.total-line strong {
    color: var(--theme-dark, #315832);
    font-family: Georgia, serif;
    font-size: 34px;
}

.quote-submit-button {
    width: 100%;
    padding: 16px 24px;
    border: 0;
    border-radius: 999px;
    background:
        linear-gradient(
            135deg,
            var(--theme-primary, #557f4f),
            var(--theme-dark, #315832)
        );
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    box-shadow: 0 12px 28px rgba(45, 84, 49, 0.22);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.quote-submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 35px rgba(45, 84, 49, 0.3);
}

.form-privacy-note {
    margin: 14px 0 0;
    color: #798279;
    font-size: 12px;
    text-align: center;
}

.honeypot-field {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
}

@media (max-width: 767px) {
    .quote-form-card {
        padding: 30px 20px;
    }

    .form-summary-line {
        align-items: flex-start;
        flex-direction: column;
        gap: 5px;
    }

    .form-summary-line strong {
        text-align: left;
    }
}

.form-example-text {
    margin-top: -6px;
    margin-bottom: 12px;
    color: #6b746b;
    font-size: 13px;
    font-style: italic;
    line-height: 1.5;
}
.flexible-schedule-check {
    padding: 18px 20px 18px 48px;
    border: 1px solid #d7e1d2;
    border-radius: 14px;
    background: #f8faf6;
}

.flexible-schedule-check .form-check-input {
    width: 20px;
    height: 20px;
    margin-left: -30px;
    cursor: pointer;
}

.flexible-schedule-check .form-check-input:checked {
    background-color: var(--theme-primary, #557f4f);
    border-color: var(--theme-primary, #557f4f);
}

.flexible-schedule-check .form-check-label {
    color: #294f2f;
    font-weight: 700;
    cursor: pointer;
}



}

/* =========================================
   PROMOTION BANNER
========================================= */

.promotion-banner {
    max-width: 760px;
    margin: 48px auto 28px;
    padding: 30px;
    border: 2px solid #dbe7d4;
    border-radius: 24px;
    background: linear-gradient(
        135deg,
        #fbfdf8,
        #eef6e8
    );
    box-shadow: 0 14px 35px rgba(49, 88, 50, 0.1);
    text-align: center;
}

.promotion-image {
    display: block;
    width: 100%;
    max-width: 520px;
    height: auto;
    margin: 0 auto 26px;
    border-radius: 18px;
    object-fit: cover;
    box-shadow: 0 10px 26px rgba(49, 88, 50, 0.14);
}

.promotion-banner h3 {
    margin: 0 0 16px;
    color: #315832;
    font-size: 34px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
}

.promotion-banner p {
    max-width: 650px;
    margin: 0 auto;
    color: #5f685f;
    font-size: 20px;
    line-height: 1.7;
    text-align: center;
}

.promotion-banner strong {
    color: #315832;
}

@media (max-width: 767px) {
    .promotion-banner {
        padding: 22px 16px;
    }

    .promotion-image {
        max-width: 100%;
        margin-bottom: 22px;
    }

    .promotion-banner h3 {
        font-size: 28px;
    }

    .promotion-banner p {
        font-size: 17px;
    }
}
/* =========================================
   VEHICLE ADD-ONS — SIDE BY SIDE
========================================= */

.vehicle-addon-row {
    align-items: stretch;
}

.vehicle-addon-row > div {
    display: flex;
}

.vehicle-addon-card {
    width: 100%;
    height: 100%;
    min-height: 260px;
}

/* Keep the cards readable on smaller screens */
@media (max-width: 767px) {
    .vehicle-addon-card {
        min-height: 290px;
        padding: 22px 16px;
    }

    .vehicle-addon-card .addon-icon {
        font-size: 30px;
        margin-bottom: 14px;
    }

    .vehicle-addon-card strong {
        font-size: 16px;
        line-height: 1.3;
    }

    .vehicle-addon-card .addon-description {
        font-size: 12px;
        line-height: 1.45;
    }

    .vehicle-addon-card .addon-price {
        font-size: 17px;
    }
}

/* =========================================
   QUOTE SUBMISSION CONFIRMATION
========================================= */

.form-error-message {
    margin-top: 18px;
    padding: 15px 18px;
    border: 1px solid #d99b9b;
    border-radius: 14px;
    background: #fff1f1;
    color: #8a2929;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}

.quote-success-message {
    max-width: 720px;
    margin: 0 auto;
    padding: 30px 10px 10px;
    text-align: center;
}

.success-checkmark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 84px;
    height: 84px;
    margin: 0 auto 22px;
    border-radius: 50%;
    background: linear-gradient(
        135deg,
        var(--theme-primary, #557f4f),
        var(--theme-dark, #315832)
    );
    color: #ffffff;
    font-size: 46px;
    font-weight: 700;
    box-shadow: 0 14px 32px rgba(49, 88, 50, 0.24);
}

.success-eyebrow {
    margin-bottom: 10px;
    color: var(--theme-primary, #557f4f);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.quote-success-message h2 {
    margin-bottom: 15px;
    color: #294f2f;
    font-family: Georgia, serif;
    font-size: clamp(32px, 5vw, 46px);
    font-weight: 700;
    line-height: 1.15;
}

.success-intro {
    max-width: 580px;
    margin: 0 auto 30px;
    color: #657065;
    font-size: 17px;
    line-height: 1.7;
}

.success-summary {
    margin: 0 auto 28px;
    padding: 24px 28px;
    border: 1px solid #dce6d7;
    border-radius: 20px;
    background: linear-gradient(
        145deg,
        #ffffff,
        var(--theme-light, #eef4e6)
    );
    text-align: left;
}

.success-summary-line {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding: 13px 0;
    border-bottom: 1px solid rgba(66, 104, 79, 0.12);
}

.success-summary-line:last-child {
    border-bottom: 0;
}

.success-summary-line span {
    color: #6a756a;
}

.success-summary-line strong {
    color: #294f2f;
    text-align: right;
}

.success-next-step {
    max-width: 620px;
    margin: 0 auto 18px;
    color: #596459;
    font-size: 15px;
    line-height: 1.7;
}

.success-closing {
    color: #315832;
    font-family: Georgia, serif;
    font-size: 21px;
    font-weight: 700;
}

.start-another-quote-button {
    margin-top: 18px;
    padding: 13px 25px;
    border: 1px solid var(--theme-primary, #557f4f);
    border-radius: 999px;
    background: #ffffff;
    color: var(--theme-dark, #315832);
    font-weight: 700;
    cursor: pointer;
    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.start-another-quote-button:hover {
    background: var(--theme-primary, #557f4f);
    color: #ffffff;
    transform: translateY(-2px);
}

.quote-submit-button:disabled {
    cursor: not-allowed;
    opacity: 0.7;
}

@media (max-width: 767px) {
    .success-summary-line {
        align-items: flex-start;
        flex-direction: column;
        gap: 5px;
    }

    .success-summary-line strong {
        text-align: left;
    }
}
.form-error-message {
    margin-top: 18px;
    padding: 15px 18px;
    border: 1px solid #d99b9b;
    border-radius: 14px;
    background: #fff1f1;
    color: #8a2929;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}
/* =========================================
   SMOOTH FORM TRANSITIONS
========================================= */

#quoteRequestForm,
.quote-success-message {

    transition:
        opacity .5s ease;

}