/* =====================================================
   SERVICE DETAIL PAGE
===================================================== */

.service-detail-page {
    width: 100%;
    overflow: hidden;
}

.service-detail-hero {
    width: 100%;
    height: 375px;
    position: relative;
    overflow: hidden;
}

.service-detail-hero>img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-detail-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.38);
    z-index: 1;
}

.service-detail-hero .container {
    position: relative;
    height: 100%;
    z-index: 2;
}

.service-hero-content {
    height: 100%;
    display: flex;
    align-items: center;
}

.service-hero-content h1 {
    margin: 0;
    color: #fff;
    font-size: 42px;
    font-weight: 600;
    line-height: 1.2;
}


/* INTRO SECTION */
.service-intro-section {
    padding: 30px 0 70px;
}
.service-intro-content {
    padding-right: 55px;
}

.service-intro-content p {
    margin: 0 0 20px;
    color: #5d5d5d;
    font-size: 16px;
    line-height: 1.55;
    letter-spacing: 0.2px;
}

.service-intro-content p:first-child {
    margin-top: 0;
}

.service-intro-content strong {
    color: #202020;
    font-weight: 600;
}


/* =====================================================
   RIGHT IMAGE
===================================================== */
.service-intro-image {
    width: 100%;
}

.service-intro-image img {
    display: block;
    width: 100%;
    height: 325px;
    object-fit: cover;
}


/* =====================================================
   FORM + ACCORDION SECTION
===================================================== */

.service-form-section {
    padding: 0 0 28px;
}

.service-form-section .row {
    --bs-gutter-x: 20px;
}


/* =====================================================
   ACCORDION
===================================================== */

.service-accordion {
    width: 100%;
}

.service-accordion-item {
    border-top: 1px solid #e4e4e4;
}

.service-accordion-item:last-child {
    border-bottom: 1px solid #e4e4e4;
}

.service-accordion-button {
    width: 100%;
    padding: 19px 20px;
    border: 0;
    outline: none;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    color: #2a7d2e;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    transition: 0.3s;
}

.service-accordion-button:hover {
    color: #124a2f;
}

.service-accordion-button i {
    color: #333;
    font-size: 18px;
    transition: 0.3s;
}

.service-accordion-button.active i {
    transform: rotate(45deg);
}

.service-accordion-content {
    display: none;
    padding: 0 20px 20px;
}

.service-accordion-content.active {
    display: block;
}

.service-accordion-content p {
    margin: 0;
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

/* =====================================================
   QUOTE FORM
===================================================== */

.service-quote-form {
    width: 100%;
}

#serviceQuoteForm {
    width: 100%;
}

.form-row {
    display: flex;
    gap: 14px;
    margin-bottom: 14px;
}

.form-group {
    width: 50%;
}

.form-group.full-width {
    width: 100%;
}

.form-group input,
.form-group select,
.form-group textarea {

    width: 100%;
    border: 1px solid #dedede;
    outline: none;
    background: #fff;
    margin-bottom: 10px;
    color: #333;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    transition: 0.3s;
}

/* INPUT */

.form-group input,
.form-group select {

    height: 50px;
    padding: 0 22px;
    border-radius: 30px;
}

/* SELECT */

.form-group select {
    appearance: auto;
    cursor: pointer;
}

/* TEXTAREA */

.form-group textarea {
    display: block;
    padding: 15px 22px;
    border-radius: 14px;
    resize: none;
    min-height: 150px;
}

/* PLACEHOLDER */

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #888;
}


/* FOCUS */

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #2a7d2e;
    box-shadow: 0 0 0 1px rgba(42, 125, 46, 0.08);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: #2a7d2e;
}


/* FORM BUTTON */
.form-submit {
    margin-top: 20px;
}

.form-submit button {
    border: 0;
    padding: 13px 30px;
    background: #2a7d2e;
    color: #fff;
    border-radius: 30px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s;
}

.form-submit button:hover {
    background: #124a2f;
}

/* =====================================================
   WHY CHOOSE US
===================================================== */

.why-service-section {
    padding: 0 0 45px;
}

.why-service-content {
    border-top: 1px solid #e5e5e5;
    padding-top: 20px;
}

.why-service-content h2 {
    margin: 0 0 5px;
    color: #124a2f;
    font-size: 23px;
    font-weight: 400;
    line-height: 1.4;
}

/* WHY ITEM */

.why-item {
    margin: 0;
}

.why-item-title {
    display: block;
    color: #222;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.85;
}

.why-item-title::first-letter {
    color: #222;
}

.why-item p {
    margin: 0 0 2px 24px;
    color: #666;
    font-size: 15px;
    line-height: 2;
}

/* ============responsive=========== */

@media (max-width: 1200px) {

    .service-intro-content {
        padding-right: 35px;
    }

}

@media (max-width: 991px) {

    .service-detail-hero {
        height: 330px;
    }

    .service-hero-content h1 {
        font-size: 44px;
    }

    .service-intro-section {
        padding: 40px 0 55px;
    }

    .service-intro-content {
        padding-right: 0;
        margin-bottom: 30px;
    }

    .service-intro-image img {
        height: 320px;
    }

    .service-form-section {
        padding-bottom: 35px;
    }

}

@media (max-width: 767px) {

    .service-detail-hero {
        height: 280px;
    }

    .service-hero-content h1 {
        font-size: 34px;
    }

    .service-intro-section {
        padding: 30px 0 45px;
    }

    .service-intro-content p {
        font-size: 15px;
    }

    .service-intro-image img {
        height: 270px;
    }

    .service-form-section {
        padding-bottom: 30px;
    }

    .service-accordion {
        margin-bottom: 35px;
    }

    .form-row {
        flex-direction: column;

        gap: 14px;
    }

    .form-group {
        width: 100%;
    }

    .why-service-content h2 {
        font-size: 21px;
    }

}

@media (max-width: 575px) {

    .service-detail-hero {
        height: 245px;
    }

    .service-hero-content h1 {
        font-size: 29px;
    }

    .service-intro-image img {
        height: 240px;
    }

    .service-accordion-button {
        padding: 17px 12px;

        font-size: 15px;
    }

    .service-accordion-content {
        padding-left: 12px;
        padding-right: 12px;
    }

    .form-group input,
    .form-group select {
        height: 48px;
    }

    .form-submit button {
        width: auto;
    }

    .why-item-title {
        font-size: 15px;
    }

    .why-item p {
        margin-left: 22px;

        font-size: 14px;
    }

}

@media (max-width: 400px) {

    .service-detail-hero {
        height: 220px;
    }

    .service-hero-content h1 {
        font-size: 25px;
    }

    .service-intro-content p {
        font-size: 14px;
    }

    .service-intro-image img {
        height: 210px;
    }

    .why-service-content h2 {
        font-size: 19px;
    }

}

@media (max-width: 320px) {

    .service-detail-hero {
        height: 200px;
    }

    .service-hero-content h1 {
        font-size: 22px;
    }

    .service-intro-image img {
        height: 185px;
    }

    .service-accordion-button {
        font-size: 14px;
    }

}