/* =====================================================
                    CONTACT SECTION
====================================================== */

.contact-section {
    width: 100%;
    padding: 110px 20px;
    background: #f8f8f8;
}


.contact-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: center;
}



/* =====================================================
                    LEFT CONTACT INFO
====================================================== */

.contact-info {
    width: 100%;
}


.contact-info .section-subtitle {
    display: inline-block;

    margin-bottom: 18px;

    font-family: "Poppins", Arial, sans-serif;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 3px;

    color: #b08d3c;
}


.contact-info h2 {
    margin: 0;

    font-family: "Playfair Display", Georgia, serif;

    font-size: clamp(38px, 4.2vw, 54px);

    line-height: 1.18;

    font-weight: 600;

    color: #171717;
}


.contact-info .gold-line {
    width: 60px;
    height: 3px;

    margin: 28px 0 30px;

    background: #b08d3c;

    border-radius: 10px;
}



/* =====================================================
                CONTACT DESCRIPTION
====================================================== */

.contact-description {
    max-width: 560px;

    margin: 0 0 38px;

    font-family: "Poppins", Arial, sans-serif;

    font-size: 15px;

    line-height: 1.9;

    color: #6d6d6d;
}



/* =====================================================
                    CONTACT ITEMS
====================================================== */

.contact-item {
    display: flex;

    align-items: flex-start;

    gap: 18px;

    margin-bottom: 26px;
}


.contact-item:last-child {
    margin-bottom: 0;
}



/* =====================================================
                    CONTACT ICON
====================================================== */

.contact-icon {
    flex: 0 0 auto;

    width: 50px;
    height: 50px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid #d6c59b;

    border-radius: 50%;

    font-size: 17px;

    color: #b08d3c;

    background: #ffffff;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}


.contact-item:hover .contact-icon {
    background: #b08d3c;

    color: #ffffff;

    transform: translateY(-2px);
}


/* WhatsApp Icon */

.contact-icon.whatsapp {
    color: #b08d3c;
}


.contact-item:hover .contact-icon.whatsapp {
    background: #b08d3c;

    color: #ffffff;
}



/* =====================================================
                    CONTACT TEXT
====================================================== */

.contact-item h4 {
    margin: 2px 0 5px;

    font-family: "Poppins", Arial, sans-serif;

    font-size: 14px;

    font-weight: 600;

    letter-spacing: 0.3px;

    color: #333333;
}


.contact-item a {
    display: inline-block;

    font-family: "Poppins", Arial, sans-serif;

    font-size: 14px;

    line-height: 1.6;

    color: #777777;

    text-decoration: none;

    transition:
        color 0.3s ease;
}


.contact-item a:hover {
    color: #b08d3c;
}


.contact-item > div:last-child > p {
    margin: 0;

    font-family: "Poppins", Arial, sans-serif;

    font-size: 14px;

    line-height: 1.75;

    color: #777777;
}



/* =====================================================
                    CONTACT FORM BOX
====================================================== */

.contact-form-box {
    width: 100%;

    padding: 45px 42px;

    background: #ffffff;

    border: 1px solid #e7e7e7;

    box-shadow:
        0 18px 50px rgba(0, 0, 0, 0.07);
}


.contact-form-box h3 {
    margin: 0 0 10px;

    font-family: "Playfair Display", Georgia, serif;

    font-size: 29px;

    line-height: 1.3;

    font-weight: 600;

    color: #1b1b1b;
}


.contact-form-box > p {
    margin: 0 0 28px;

    font-family: "Poppins", Arial, sans-serif;

    font-size: 13.5px;

    line-height: 1.75;

    color: #777777;
}



/* =====================================================
                    FORM
====================================================== */

#whatsappForm {
    width: 100%;

    display: flex;

    flex-direction: column;

    gap: 15px;
}



/* =====================================================
                    INPUTS
====================================================== */

#whatsappForm input,
#whatsappForm select,
#whatsappForm textarea {

    width: 100%;

    box-sizing: border-box;

    border: 1px solid #dddddd;

    background: #ffffff;

    border-radius: 0;

    outline: none;

    font-family: "Poppins", Arial, sans-serif;

    font-size: 13.5px;

    color: #333333;

    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}


#whatsappForm input,
#whatsappForm select {
    height: 53px;

    padding: 0 16px;
}


#whatsappForm textarea {
    min-height: 140px;

    padding: 15px 16px;

    resize: vertical;
}



/* =====================================================
                PLACEHOLDER
====================================================== */

#whatsappForm input::placeholder,
#whatsappForm textarea::placeholder {
    color: #999999;

    opacity: 1;
}



/* =====================================================
                    FOCUS
====================================================== */

#whatsappForm input:focus,
#whatsappForm select:focus,
#whatsappForm textarea:focus {

    border-color: #b08d3c;

    box-shadow:
        0 0 0 2px rgba(176, 141, 60, 0.08);
}



/* =====================================================
                    SELECT
====================================================== */

#whatsappForm select {

    appearance: none;

    cursor: pointer;

    background-image:
        linear-gradient(45deg, transparent 50%, #888888 50%),
        linear-gradient(135deg, #888888 50%, transparent 50%);

    background-position:
        calc(100% - 18px) 22px,
        calc(100% - 13px) 22px;

    background-size:
        5px 5px,
        5px 5px;

    background-repeat: no-repeat;
}



/* =====================================================
                WHATSAPP BUTTON
====================================================== */

.whatsapp-submit {
    width: 100%;

    min-height: 55px;

    margin-top: 4px;

    border: none;

    background: #b08d3c;

    color: #ffffff;

    cursor: pointer;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    font-family: "Poppins", Arial, sans-serif;

    font-size: 13.5px;

    font-weight: 600;

    letter-spacing: 0.2px;

    transition:
        background 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.whatsapp-submit i {
    font-size: 19px;
}


.whatsapp-submit:hover {
    background: #94752f;

    transform: translateY(-2px);

    box-shadow:
        0 10px 25px rgba(176, 141, 60, 0.22);
}


.whatsapp-submit:active {
    transform: translateY(0);
}



/* =====================================================
                    TABLET
====================================================== */

@media (max-width: 1000px) {

    .contact-section {
        padding: 90px 20px;
    }


    .contact-container {
        grid-template-columns: 1fr 1fr;

        gap: 45px;
    }


    .contact-info h2 {
        font-size: 42px;
    }


    .contact-form-box {
        padding: 38px 32px;
    }

}



/* =====================================================
                    MOBILE TABLET
====================================================== */

@media (max-width: 768px) {

    .contact-section {
        padding: 75px 18px;
    }


    .contact-container {
        grid-template-columns: 1fr;

        gap: 55px;
    }


    .contact-info {
        text-align: center;
    }


    .contact-info .section-subtitle {
        font-size: 11px;

        letter-spacing: 2.5px;
    }


    .contact-info h2 {
        font-size: 38px;
    }


    .contact-info .gold-line {
        margin: 24px auto 28px;
    }


    .contact-description {
        margin-left: auto;
        margin-right: auto;

        font-size: 14px;
    }


    .contact-item {
        max-width: 430px;

        margin-left: auto;
        margin-right: auto;

        text-align: left;
    }


    .contact-form-box {
        max-width: 600px;

        margin: 0 auto;

        padding: 38px 32px;
    }

}



/* =====================================================
                    MOBILE
====================================================== */

@media (max-width: 600px) {

    .contact-section {
        padding: 65px 16px;
    }


    .contact-container {
        gap: 45px;
    }


    .contact-info .section-subtitle {
        margin-bottom: 14px;

        font-size: 10.5px;

        letter-spacing: 2.3px;
    }


    .contact-info h2 {
        font-size: 31px;

        line-height: 1.25;
    }


    .contact-info .gold-line {
        width: 50px;

        height: 2px;

        margin: 21px auto 25px;
    }


    .contact-description {
        font-size: 13.5px;

        line-height: 1.8;

        margin-bottom: 32px;
    }


    .contact-item {
        gap: 14px;

        margin-bottom: 22px;
    }


    .contact-icon {
        width: 45px;
        height: 45px;

        font-size: 15px;
    }


    .contact-item h4 {
        font-size: 13px;

        margin-top: 1px;
    }


    .contact-item a,
    .contact-item > div:last-child > p {
        font-size: 13px;

        line-height: 1.7;
    }


    .contact-form-box {
        padding: 30px 22px;
    }


    .contact-form-box h3 {
        font-size: 25px;
    }


    .contact-form-box > p {
        font-size: 13px;

        margin-bottom: 23px;
    }


    #whatsappForm {
        gap: 13px;
    }


    #whatsappForm input,
    #whatsappForm select {
        height: 50px;

        padding: 0 14px;

        font-size: 13px;
    }


    #whatsappForm textarea {
        min-height: 125px;

        padding: 14px;

        font-size: 13px;
    }


    .whatsapp-submit {
        min-height: 52px;

        font-size: 13px;
    }

}



/* =====================================================
                SMALL MOBILE
====================================================== */

@media (max-width: 400px) {

    .contact-section {
        padding: 55px 14px;
    }


    .contact-info h2 {
        font-size: 28px;
    }


    .contact-description {
        font-size: 13px;
    }


    .contact-item {
        gap: 12px;
    }


    .contact-icon {
        width: 42px;
        height: 42px;

        font-size: 14px;
    }


    .contact-item a,
    .contact-item > div:last-child > p {
        font-size: 12.5px;
    }


    .contact-form-box {
        padding: 27px 18px;
    }


    .contact-form-box h3 {
        font-size: 23px;
    }

}