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

.contact-section {

    padding: 140px 0 90px;

    background: #f7f7f7;
}

/* GRID */

.contact-grid {

    display: grid;

    grid-template-columns: 380px 1fr;

    gap: 90px;
}

/* IMAGE */

.contact-image img {

    width: 100%;

    border-radius: 10px;

    margin-bottom: 35px;

    object-fit: cover;
}

/* LABEL */

.contact-label {

    display: inline-block;

    color: #2ed3a7;

    font-weight: 700;

    margin-bottom: 18px;
}

/* TITLE */

.contact-title {

    font-size: clamp(2rem, 2.5vw, 3rem);

    line-height: 1.2;

    margin-bottom: 25px;

    color: #1e1e1e;
}

/* TEXT */

.contact-text {

    color: #666;

    line-height: 2;

    margin-bottom: 35px;
}

/* CONTACT ITEMS */

.contact-data {

    margin-top: 35px;
}

.contact-item {

    display: flex;

    gap: 15px;

    margin-bottom: 20px;

    align-items: flex-start;
}

.contact-item i {

    color: #2ed3a7;

    margin-top: 5px;
}

.contact-item span,
.contact-item a {

    color: #666;

    text-decoration: none;
}

/* SOCIAL */

.contact-social {

    display: flex;

    gap: 15px;

    margin-top: 35px;
}

.contact-social a {

    width: 42px;

    height: 42px;

    border-radius: 50%;

    background: #ffffff;

    color: #222;

    display: flex;

    align-items: center;

    justify-content: center;

    text-decoration: none;

    transition: .3s ease;
}

.contact-social a:hover {

    background: #2ed3a7;

    color: white;
}

/* FORM */

.contact-form {

    margin-top: 40px;
}

.form-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 25px;
}

.form-group {

    margin-bottom: 25px;
}

.form-group label {

    display: block;

    margin-bottom: 10px;

    color: #222;

    font-weight: 500;
}

.form-group input,
.form-group textarea {

    width: 100%;

    border: 1px solid #ddd;

    background: white;

    padding: 15px 18px;

    border-radius: 6px;

    outline: none;

    transition: .3s ease;
}

.form-group input:focus,
.form-group textarea:focus {

    border-color: #2ed3a7;
}

/* CHECK */

.form-check-wrapper {

    display: flex;

    gap: 12px;

    align-items: flex-start;

    margin-bottom: 30px;

    color: #666;

    font-size: .95rem;
}

/* BUTTON */

.contact-btn {

    border: none;

    background: #2ed3a7;

    color: white;

    padding: 15px 28px;

    border-radius: 6px;

    font-weight: 600;

    transition: .3s ease;
}

.contact-btn:hover {

    background: #24b893;
}

/* MOBILE */

@media (max-width: 992px) {

    .contact-grid {

        grid-template-columns: 1fr;

        gap: 70px;
    }

    .form-grid {

        grid-template-columns: 1fr;
    }

    .contact-section {

        padding: 120px 0 70px;
    }
}
