/* =========================================================
   SNOW HILLS - HOME PAGE
   QUOTE / REQUEST FORM SECTION
========================================================= */


/* =========================================================
   QUOTE SECTION
========================================================= */

.quote-section {

    background: #6c2db5;

    padding: 90px 20px;

    margin-top: 20px;

}


/* =========================================================
   QUOTE SCALE
========================================================= */

.quote-scale {

    transform: scale(1.25);

    /* increase size */

    transform-origin: center;

}


/* =========================================================
   QUOTE CONTAINER
========================================================= */

.quote-container {

    width: 100%;

    max-width: 920px;

    margin: auto;

    display: flex;

    gap: 80px;

    align-items: center;

    padding-top: 70px;

}


/* =========================================================
   QUOTE LEFT
========================================================= */

.quote-left {

    flex: 1;

    color: #fff;

}


/* =========================================================
   QUOTE HEADING
========================================================= */

.quote-left h2 {

    font-size: 30px;

    font-weight: 800;

    margin-bottom: 14px;

}


/* =========================================================
   QUOTE SUBTITLE
========================================================= */

.quote-sub {

    font-size: 13px;

    line-height: 1.3;

    margin-bottom: 35px;

    max-width: 520px;

}


/* =========================================================
   QUOTE FORM
========================================================= */

.quote-form {

    max-width: 420px;

}


/* =========================================================
   FORM ROW
========================================================= */

.form-row {

    display: flex;

    gap: 20px;

    margin-bottom: 18px;

    margin-left: 78px;

}


/* =========================================================
   FORM GROUP
========================================================= */

.form-group {

    flex: 1;

    display: flex;

    flex-direction: column;

}


/* =========================================================
   FULL WIDTH FORM GROUP
========================================================= */

.form-group.full {

    margin-bottom: 25px;

    margin-left: 78px;

}


/* =========================================================
   LABEL
========================================================= */

label {

    font-size: 14px;

    font-weight: 600;

    margin-bottom: 8px;

}


label span {

    color: #ffb3bd;

}


/* =========================================================
   FORM INPUTS
========================================================= */

input,
select,
textarea {

    padding: 14px 14px;

    border-radius: 6px;

    border: none;

    outline: none;

    font-size: 14px;

    background: #ffffff;

}


/* =========================================================
   TEXTAREA
========================================================= */

textarea {

    resize: none;

    height: 140px;

}


/* =========================================================
   SELECT
========================================================= */

select {

    appearance: none;

    background-image:
        url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23999' stroke-width='2'/%3E%3C/svg%3E");

    background-repeat: no-repeat;

    background-position: right 14px center;

}


/* =========================================================
   SEND BUTTON
========================================================= */

.send-btn {

    background: #4a6cf7;

    color: #fff;

    border: none;

    padding: 10px 20px;

    border-radius: 8px;

    font-size: 10px;

    font-weight: 600;

    cursor: pointer;

    transition: background 0.3s ease;

    margin-left: 78px;

    margin-bottom: 50px;

}


/* =========================================================
   SEND BUTTON HOVER
========================================================= */

.send-btn:hover {

    background: #3b5be0;

}


/* =========================================================
   QUOTE RIGHT IMAGE
========================================================= */

.quote-right {

    flex: 1;

    display: flex;

    justify-content: center;

}


/* =========================================================
   QUOTE IMAGE
========================================================= */

.quote-right img {

    width: 100%;

    max-width: 360px;

    border-radius: 18px;

    margin-left: 78px;

    margin-top: -250px;

    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.25);

}


/* =========================================================
   SNOW HILLS - QUOTE SECTION
   TABLET + MOBILE RESPONSIVE
========================================================= */


/* =========================================================
   LARGE TABLET
========================================================= */

@media (max-width: 1100px) {

    .quote-section {

        padding: 80px 40px;

        overflow: hidden;
    }


    /* Remove desktop scale */

    .quote-scale {

        transform: scale(1);

        transform-origin: center;
    }


    .quote-container {

        max-width: 900px;

        gap: 50px;

        padding-top: 50px;
    }


    .form-row {

        margin-left: 30px;
    }


    .form-group.full {

        margin-left: 30px;
    }


    .send-btn {

        margin-left: 30px;
    }


    .quote-right img {

        width: 90%;

        max-width: 340px;

        margin-left: 0;

        margin-top: -120px;
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 768px) {

    /* =====================================================
       SECTION
    ===================================================== */

    .quote-section {

        padding: 70px 25px 80px;

        margin-top: 10px;

        overflow: hidden;
    }


    /* =====================================================
       REMOVE SCALE
    ===================================================== */

    .quote-scale {

        transform: none;

        width: 100%;
    }


    /* =====================================================
       CONTAINER
    ===================================================== */

    .quote-container {

        width: 100%;

        max-width: 650px;

        margin: 0 auto;

        display: flex;

        flex-direction: column;

        gap: 55px;

        align-items: stretch;

        padding-top: 0;
    }


    /* =====================================================
       LEFT CONTENT
    ===================================================== */

    .quote-left {

        width: 100%;

        flex: none;
    }


    .quote-left h2 {

        font-size: 28px;

        line-height: 1.3;

        margin-bottom: 12px;
    }


    .quote-sub {

        width: 100%;

        max-width: 100%;

        font-size: 12.5px;

        line-height: 1.6;

        margin-bottom: 25px;
    }


    /* =====================================================
       FORM
    ===================================================== */

    .quote-form {

        width: 100%;

        max-width: 100%;
    }


    /* =====================================================
       FORM ROW
    ===================================================== */

    .form-row {

        width: 100%;

        margin-left: 0;

        gap: 15px;

        margin-bottom: 18px;
    }


    /* =====================================================
       FORM GROUP
    ===================================================== */

    .form-group {

        width: 100%;

        min-width: 0;
    }


    /* =====================================================
       FULL WIDTH GROUP
    ===================================================== */

    .form-group.full {

        width: 100%;

        margin-left: 0;

        margin-bottom: 20px;
    }


    /* =====================================================
       LABEL
    ===================================================== */

    label {

        font-size: 13px;

        margin-bottom: 7px;
    }


    /* =====================================================
       INPUTS
    ===================================================== */

    input,
    select,
    textarea {

        width: 100%;

        box-sizing: border-box;

        padding: 12px 13px;

        font-size: 13px;
    }


    /* =====================================================
       TEXTAREA
    ===================================================== */

    textarea {

        height: 125px;
    }


    /* =====================================================
       SEND BUTTON
    ===================================================== */

    .send-btn {

        margin-left: 0;

        margin-bottom: 0;

        padding: 10px 22px;

        font-size: 11px;
    }


    /* =====================================================
       RIGHT IMAGE
    ===================================================== */

    .quote-right {

        width: 100%;

        flex: none;

        display: flex;

        justify-content: center;

        align-items: center;
    }


    .quote-right img {

        width: 75%;

        max-width: 360px;

        height: auto;

        margin: 0 auto;

        border-radius: 18px;

        display: block;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 576px) {

    /* =====================================================
       SECTION
    ===================================================== */

    .quote-section {

        padding: 50px 18px 60px;

        margin-top: 0;

        overflow: hidden;
    }


    /* =====================================================
       SCALE
    ===================================================== */

    .quote-scale {

        transform: none;

        width: 100%;
    }


    /* =====================================================
       CONTAINER
    ===================================================== */

    .quote-container {

        width: 100%;

        max-width: 430px;

        margin: 0 auto;

        gap: 38px;

        padding: 0;
    }


    /* =====================================================
       HEADING
    ===================================================== */

    .quote-left h2 {

        font-size: 24px;

        line-height: 1.3;

        margin-bottom: 10px;
    }


    /* =====================================================
       SUBTITLE
    ===================================================== */

    .quote-sub {

        width: 100%;

        max-width: 100%;

        font-size: 11.5px;

        line-height: 1.6;

        margin-bottom: 22px;
    }


    /* =====================================================
       FORM
    ===================================================== */

    .quote-form {

        width: 100%;

        max-width: 100%;
    }


    /* =====================================================
       FORM ROW
       
       Two fields become one field per row
    ===================================================== */

    .form-row {

        width: 100%;

        display: flex;

        flex-direction: column;

        gap: 15px;

        margin: 0 0 17px 0;
    }


    /* =====================================================
       FORM GROUP
    ===================================================== */

    .form-group {

        width: 100%;

        flex: none;

        min-width: 0;
    }


    /* =====================================================
       FULL WIDTH
    ===================================================== */

    .form-group.full {

        width: 100%;

        margin-left: 0;

        margin-bottom: 17px;
    }


    /* =====================================================
       LABEL
    ===================================================== */

    label {

        font-size: 12px;

        margin-bottom: 6px;
    }


    label span {

        color: #ffb3bd;
    }


    /* =====================================================
       INPUT / SELECT / TEXTAREA
    ===================================================== */

    input,
    select,
    textarea {

        width: 100%;

        max-width: 100%;

        box-sizing: border-box;

        padding: 12px 12px;

        border-radius: 6px;

        font-size: 12px;
    }


    /* =====================================================
       TEXTAREA
    ===================================================== */

    textarea {

        height: 115px;

        min-height: 115px;
    }


    /* =====================================================
       SELECT ARROW
    ===================================================== */

    select {

        background-position: right 12px center;
    }


    /* =====================================================
       SEND BUTTON
    ===================================================== */

    .send-btn {

        margin-left: 0;

        margin-bottom: 0;

        padding: 10px 22px;

        border-radius: 7px;

        font-size: 11px;
    }


    /* =====================================================
       IMAGE
    ===================================================== */

    .quote-right {

        width: 100%;

        display: flex;

        justify-content: center;

        align-items: center;
    }


    .quote-right img {

        width: 82%;

        max-width: 320px;

        height: auto;

        margin: 0 auto;

        border-radius: 16px;

        display: block;

        box-shadow: 0 18px 35px rgba(0, 0, 0, 0.22);
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .quote-section {

        padding: 42px 15px 52px;
    }


    .quote-container {

        max-width: 360px;

        gap: 32px;
    }


    /* =====================================================
       HEADING
    ===================================================== */

    .quote-left h2 {

        font-size: 22px;

        line-height: 1.3;
    }


    /* =====================================================
       SUBTITLE
    ===================================================== */

    .quote-sub {

        font-size: 11px;

        line-height: 1.55;

        margin-bottom: 20px;
    }


    /* =====================================================
       FORM
    ===================================================== */

    .form-row {

        gap: 13px;

        margin-bottom: 15px;
    }


    .form-group.full {

        margin-bottom: 15px;
    }


    /* =====================================================
       LABEL
    ===================================================== */

    label {

        font-size: 11.5px;
    }


    /* =====================================================
       INPUTS
    ===================================================== */

    input,
    select,
    textarea {

        padding: 11px;

        font-size: 11.5px;
    }


    textarea {

        height: 105px;

        min-height: 105px;
    }


    /* =====================================================
       BUTTON
    ===================================================== */

    .send-btn {

        padding: 9px 20px;

        font-size: 10.5px;
    }


    /* =====================================================
       IMAGE
    ===================================================== */

    .quote-right img {

        width: 86%;

        max-width: 290px;

        border-radius: 15px;
    }
}


/* =========================================================
   VERY SMALL PHONES
========================================================= */

@media (max-width: 350px) {

    .quote-section {

        padding: 38px 12px 48px;
    }


    .quote-left h2 {

        font-size: 20px;
    }


    .quote-sub {

        font-size: 10.5px;

        line-height: 1.5;
    }


    label {

        font-size: 11px;
    }


    input,
    select,
    textarea {

        padding: 10px;

        font-size: 11px;
    }


    textarea {

        height: 100px;
    }


    .send-btn {

        padding: 9px 18px;

        font-size: 10px;
    }


    .quote-right img {

        width: 88%;

        max-width: 270px;
    }
}