
/* =================================================
   CONTACT PAGE
================================================= */


/* ================= CONTACT HERO ================= */

.contact-hero {
    min-height: 500px;

    background:
        linear-gradient(
            rgba(0, 0, 0, 0.52),
            rgba(0, 0, 0, 0.52)
        ),
        url("../images/contact.jpg");

    background-size: cover;

    background-position: center;

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    color: white;
}

.contact-hero-content {
    max-width: 800px;

    padding: 40px 20px;
}

.contact-hero .section-label {
    color: #B86F5A;
}

.contact-hero h1 {
    font-family: "Playfair Display", serif;

    font-size: clamp(55px, 7vw, 85px);

    font-weight: 500;

    line-height: 1;

    margin: 20px 0;
}

.contact-hero h1 span {
    display: block;

    color: #B86F5A;
}

.contact-hero-content > p:last-child {
    max-width: 600px;

    margin: auto;

    color: #ddd;

    font-size: 14px;

    line-height: 1.9;
}


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

.contact-intro {
    padding: 90px 5% 40px;

    text-align: center;

    background: #FFFFFF;
}

.contact-intro-content {
    max-width: 700px;

    margin: auto;
}

.contact-intro h2 {
    font-family: "Playfair Display", serif;

    font-size: clamp(42px, 5vw, 65px);

    font-weight: 500;

    line-height: 1;

    margin: 15px 0 25px;
}

.contact-intro h2 span {
    color: #E7A49A;
}

.contact-intro-content > p:last-child {
    color: #777;

    font-size: 13px;

    line-height: 1.9;
}


/* ================= CONTACT AREA ================= */

.contact-area {
    padding: 70px 5% 110px;

    background: #FFFFFF;

    display: grid;

    grid-template-columns: 1.1fr 0.9fr;

    gap: 90px;

    max-width: 1500px;

    margin: auto;
}


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

.contact-form-wrapper h2 {
    font-family: "Playfair Display", serif;

    font-size: clamp(40px, 4vw, 58px);

    font-weight: 500;

    line-height: 1;

    margin: 15px 0 40px;
}

.contact-form-wrapper h2 span {
    color: #E7A49A;
}

#contactForm {
    display: flex;

    flex-direction: column;

    gap: 25px;
}

.form-group {
    display: flex;

    flex-direction: column;

    gap: 9px;
}

.form-group label {
    font-size: 9px;

    font-weight: 600;

    letter-spacing: 1.5px;
}

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

    border: none;

    border-bottom: 1px solid #cfcac3;

    background: transparent;

    padding: 13px 5px;

    outline: none;

    color: #111;

    font-size: 13px;

    transition: 0.3s;
}

.form-group textarea {
    resize: vertical;

    min-height: 130px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #E7A49A;
}

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

.contact-submit {
    margin-top: 5px;

    border: none;

    cursor: pointer;
}


/* ================= CONTACT INFO ================= */

.contact-info {
    background: #111;

    color: white;

    padding: 45px;

    display: flex;

    flex-direction: column;

    gap: 10px;
}

.contact-info-card {
    display: flex;

    align-items: flex-start;

    gap: 20px;

    padding: 25px 0;

    border-bottom: 1px solid #333;
}

.contact-info-card:last-of-type {
    border-bottom: none;
}

.contact-icon {
    min-width: 48px;

    width: 48px;
    height: 48px;

    border-radius: 50%;

    background: #211e1a;

    color: #B86F5A;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 17px;
}

.contact-info-card p {
    color: #B86F5A;

    font-size: 9px;

    letter-spacing: 2px;

    margin-bottom: 7px;
}

.contact-info-card h3 {
    font-family: "Playfair Display", serif;

    font-size: 19px;

    font-weight: 500;

    margin-bottom: 5px;
}

.contact-info-card span {
    color: #999;

    font-size: 10px;

    line-height: 1.6;
}


/* ================= CONTACT SOCIAL ================= */

.contact-social {
    padding-top: 25px;
}

.contact-social > p {
    color: #B86F5A;

    font-size: 9px;

    letter-spacing: 2px;

    margin-bottom: 15px;
}

.contact-social-icons {
    display: flex;

    gap: 10px;
}

.contact-social-icons a {
    width: 38px;
    height: 38px;

    border: 1px solid #444;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    transition: 0.3s;
}

.contact-social-icons a:hover {
    background: #E7A49A;

    border-color: #E7A49A;
}


/* ================= FAQ ================= */

.contact-faq {
    padding: 100px 5%;

    background: white;
}

.faq-grid {
    max-width: 1000px;

    margin: 0 auto;

    border-top: 1px solid #ddd;
}

.faq-item {
    border-bottom: 1px solid #ddd;
}

.faq-question {
    width: 100%;

    border: none;

    background: transparent;

    padding: 25px 5px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    cursor: pointer;

    text-align: left;

    font-size: 13px;

    font-weight: 600;
}

.faq-question i {
    color: #E7A49A;

    font-size: 13px;

    transition: 0.3s;
}

.faq-answer {
    max-height: 0;

    overflow: hidden;

    transition: max-height 0.4s ease;
}

.faq-answer p {
    color: #777;

    font-size: 12px;

    line-height: 1.8;

    padding: 0 40px 25px 5px;
}

.faq-item.active .faq-question {
    color: #E7A49A;
}


/* ================= CONTACT CTA ================= */

.contact-cta {
    min-height: 480px;

    background:
        linear-gradient(
            rgba(0, 0, 0, 0.55),
            rgba(0, 0, 0, 0.55)
        ),
        url("../images/home/blog1.avif");

    background-size: cover;

    background-position: center;

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    color: white;

    padding: 70px 5%;
}

.contact-cta > div {
    max-width: 750px;
}

.contact-cta .section-label {
    color: #B86F5A;
}

.contact-cta h2 {
    font-family: "Playfair Display", serif;

    font-size: clamp(45px, 6vw, 75px);

    font-weight: 500;

    line-height: 1;

    margin: 20px 0;
}

.contact-cta h2 span {
    display: block;

    color: #B86F5A;
}

.contact-cta > div > p:not(.section-label) {
    color: #ddd;

    font-size: 13px;

    line-height: 1.8;

    margin-bottom: 25px;
}


/* =================================================
   CONTACT RESPONSIVE
================================================= */

@media (max-width: 1000px) {

    .contact-area {
        grid-template-columns: 1fr;

        gap: 60px;
    }

}


@media (max-width: 700px) {

    .contact-hero {
        min-height: 450px;
    }

    .contact-hero h1 {
        font-size: 52px;
    }

    .contact-intro {
        padding: 70px 5% 30px;
    }

    .contact-area {
        padding: 50px 5% 75px;

        gap: 50px;
    }

    .contact-info {
        padding: 30px 25px;
    }

    .contact-faq {
        padding: 70px 5%;
    }

    .contact-cta {
        min-height: 430px;
    }

}


@media (max-width: 450px) {

    .contact-hero h1 {
        font-size: 45px;
    }

    .contact-info-card {
        gap: 13px;
    }

    .contact-info-card h3 {
        font-size: 16px;
    }

    .contact-info {
        padding: 25px 18px;
    }

    .contact-icon {
        min-width: 42px;

        width: 42px;
        height: 42px;
    }

}
