/* =========================================
   GET ROOFING QUOTES
========================================= */

.quote-section {
    padding: 120px 0;
    background: #171717;
    color: #fff;
}

.quote-container {
    display: grid;
    grid-template-columns: 1fr 0.7fr;
    align-items: center;
    gap: 80px;
}


/* =========================================
   CONTENT
========================================= */

.quote-label {
    display: inline-block;

    margin-bottom: 22px;

    color: #e87532;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
}

.quote-content h2 {
    margin-bottom: 25px;

    font-size: clamp(44px, 5vw, 68px);
    letter-spacing: -0.04em;
}

.quote-content h2 span {
    display: block;
    color: #e87532;
}

.quote-content > p {
    max-width: 520px;
    margin-bottom: 35px;

    color: #999;

    font-size: 16px;
    line-height: 1.8;
}


/* =========================================
   FORM
========================================= */

.quote-form {
    max-width: 600px;
}

.quote-form label {
    display: block;

    margin-bottom: 9px;

    color: #aaa;

    font-size: 12px;
    font-weight: 600;
}

.quote-input-wrap {
    display: flex;

    padding: 6px;

    background: #fff;

    border-radius: 60px;
}

.quote-input-wrap input {
    flex: 1;

    min-width: 0;

    padding: 0 20px;

    border: none;
    outline: none;

    background: transparent;

    color: #171717;

    font-size: 15px;
}

.quote-input-wrap input::placeholder {
    color: #999;
}

.quote-input-wrap button {
    display: flex;
    align-items: center;
    gap: 12px;

    padding: 15px 24px;

    border: none;
    border-radius: 50px;

    background: #e87532;
    color: #fff;

    font-size: 14px;
    font-weight: 700;

    cursor: pointer;

    transition: 0.3s ease;
}

.quote-input-wrap button span {
    font-size: 20px;
}

.quote-input-wrap button:hover {
    background: #cf5f21;
}


/* =========================================
   NOTE
========================================= */

.quote-note {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-top: 16px;

    color: #888;

    font-size: 12px;
}

.quote-note span {
    color: #e87532;
    font-weight: 700;
}

.quote-note span:nth-of-type(2) {
    margin-left: 8px;
}


/* =========================================
   VISUAL
========================================= */

.quote-visual {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    height: 430px;
}


/* CIRCLE */

.quote-circle {
    position: relative;
    z-index: 2;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    width: 280px;
    height: 280px;

    border: 1px solid #444;
    border-radius: 50%;

    background: #222;

    text-align: center;

    box-shadow:
        0 0 0 25px #1c1c1c,
        0 0 0 26px #333;
}

.quote-circle span {
    color: #999;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
}

.quote-circle strong {
    margin: 5px 0;

    color: #e87532;

    font-family: "Manrope", sans-serif;
    font-size: 70px;
    line-height: 1;
    letter-spacing: -5px;
}


/* DECORATIVE LINES */

.quote-visual-line {
    position: absolute;

    height: 1px;

    background: #444;
}

.line-one {
    width: 180px;
    top: 70px;
    right: 0;

    transform: rotate(-25deg);
}

.line-two {
    width: 160px;
    bottom: 75px;
    left: 0;

    transform: rotate(25deg);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .quote-section {
        padding: 90px 0;
    }

    .quote-container {
        grid-template-columns: 1fr;
        gap: 70px;
    }

    .quote-visual {
        height: 350px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .quote-section {
        padding: 70px 0;
    }

    .quote-content h2 {
        font-size: 44px;
    }

    .quote-content > p {
        font-size: 15px;
    }

    .quote-input-wrap {
        flex-direction: column;
        padding: 8px;

        border-radius: 18px;
    }

    .quote-input-wrap input {
        height: 52px;
    }

    .quote-input-wrap button {
        justify-content: center;
        width: 100%;
    }

    .quote-note {
        flex-wrap: wrap;
    }

    .quote-visual {
        height: 300px;
    }

    .quote-circle {
        width: 210px;
        height: 210px;
    }

    .quote-circle strong {
        font-size: 55px;
    }

    .line-one {
        width: 100px;
    }

    .line-two {
        width: 90px;
    }

}