/* =========================
   GENERAL
========================= */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Inter", sans-serif;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #071107,
            #0d1c0c
        );

    min-height: 100vh;
}



/* =========================
   HEADER
========================= */

header {
    position: relative;

    width: 100%;

    min-height: 135px;

    background-color: #ffffff;
}


/* =========================
   LOGO
========================= */

.quote-header {
    position: absolute;

    top: 15px;
    left: 5%;

    z-index: 10;
}

.quote-logo {
    display: block;
}

.quote-logo img {
    display: block;

    width: 180px;
    height: auto;
}


/* =========================
   NAVIGATION
========================= */

header nav {
    display: flex;

    justify-content: flex-end;
    align-items: center;

    width: 100%;

    padding: 25px 5% 25px 240px;
}

.nav-links {
    display: flex;

    align-items: center;

    gap: 30px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.nav-links a {
    text-decoration: none;

    color: #222;

    font-family: "Barlow Condensed", sans-serif;

    font-size: 19px;
    font-weight: 600;

    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: #4d7048;
}


/* =========================
   GET A FREE QUOTE
========================= */

.quote-btn {
    display: inline-block;

    padding: 10px 18px;

    background-color: #4d7048;

    color: #ffffff !important;

    font-family: "Barlow Condensed", sans-serif;

    font-size: 19px !important;
    font-weight: 600 !important;

    text-decoration: none;

    border-radius: 2px;

    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
}

.quote-btn:hover {
    background-color: #3d5b39;

    transform: translateY(-1px);
}


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

@media (max-width: 768px) {

    header {
        min-height: auto;
    }

    .quote-header {
        position: relative;

        top: 0;
        left: 0;

        display: flex;
        justify-content: center;

        padding-top: 15px;
    }

    .quote-logo img {
        width: 160px;
    }

    header nav {
        justify-content: center;

        padding: 10px 20px 20px;
    }

    .nav-links {
        flex-wrap: wrap;

        justify-content: center;

        gap: 15px;
    }

    .nav-links a {
        font-size: 17px;
    }

}


/* =========================
   QUOTE PAGE
========================= */

.quote-page {
    min-height: calc(100vh - 60px);

    display: flex;
    justify-content: center;
    align-items: center;

    padding: 120px 20px 80px;
}


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

.quote-section {
    width: 100%;
    max-width: 700px;

    background: #ffffff;

    color: #222222;

    padding: 50px;

    border-radius: 20px;

    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.35);
}


/* =========================
   INTRO
========================= */

.quote-intro {
    text-align: center;

    margin-bottom: 40px;
}

.quote-eyebrow {
    font-family: "Barlow Condensed", sans-serif;

    color: #285A22;

    font-size: 1rem;
    font-weight: 700;

    letter-spacing: 3px;

    text-transform: uppercase;

    margin-bottom: 8px;
}

.quote-intro h1 {
    font-family: "Barlow Condensed", sans-serif;

    color: #1d3219;

    font-size: 3.5rem;
    font-weight: 700;

    line-height: 1;

    text-transform: uppercase;

    margin-bottom: 15px;
}

.quote-intro > p:last-child {
    color: #666666;

    font-size: 1rem;

    line-height: 1.6;

    max-width: 500px;

    margin: 0 auto;
}


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

.quote-form {
    display: flex;
    flex-direction: column;

    gap: 22px;
}

.form-group {
    display: flex;
    flex-direction: column;

    gap: 8px;
}

.form-group label {
    font-size: 0.9rem;

    font-weight: 600;

    color: #333333;
}


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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    padding: 15px 16px;

    font-family: "Inter", sans-serif;

    font-size: 0.95rem;

    color: #222222;

    background: #fafafa;

    border: 2px solid #dddddd;

    border-radius: 10px;

    outline: none;

    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    background: #ffffff;

    border-color: #285A22;

    box-shadow:
        0 0 0 3px rgba(40, 90, 34, 0.12);
}


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

.form-group textarea {
    min-height: 170px;

    resize: vertical;

    line-height: 1.5;
}

.form-group textarea::placeholder,
.form-group input::placeholder {
    color: #999999;
}


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

.quote-submit {
    width: 100%;

    margin-top: 8px;

    padding: 16px 25px;

    border: none;

    border-radius: 999px;

    background: #285A22;

    color: #ffffff;

    font-family: "Barlow Condensed", sans-serif;

    font-size: 1.2rem;
    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;

    cursor: pointer;

    box-shadow:
        0 8px 20px rgba(40, 90, 34, 0.25);

    transition:
        background 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.quote-submit:hover {
    background: #3B7D32;

    transform: translateY(-2px);

    box-shadow:
        0 12px 25px rgba(40, 90, 34, 0.35);
}

.main-text {
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.small-text {
    font-size: 0.7rem;
    color: #888;
    margin-top: 0;
}


/* =========================
   FOOTER
========================= */

.quote-footer {
    text-align: center;

    padding: 0 20px 25px;
}

.quote-footer p {
    color: rgba(255, 255, 255, 0.45);

    font-size: 0.75rem;

    letter-spacing: 0.5px;
}


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

@media (max-width: 700px) {

    .quote-header {
        top: 18px;
        left: 20px;
    }

    .quote-logo img {
        width: 130px;
    }

    .quote-page {
        padding: 100px 15px 50px;
    }

    .quote-section {
        padding: 35px 25px;

        border-radius: 16px;
    }

    .quote-intro h1 {
        font-size: 2.8rem;
    }
}