.contact-section {
    background: #000;
    padding: 80px 0;
    overflow: hidden;
    position: relative;
}

.contact-img {
    width: auto;
    max-width: 431px;
}

.contact-img img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 120px 120px 0 0;
    object-fit: cover;
}

/* Form */

.contact-form-wrapper {
    width: 100%;
}

.contact-form-wrapper label {
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 10px;
    display: block;
    letter-spacing: 0.5px;
    font-family: 'Afacad Flux', sans-serif;
}

.contact-form-wrapper input,
.contact-form-wrapper textarea {
    width: 100%;
    background: #171717;
    border: 2px solid #2b2b2b;
    height: 52px;
    color: #fff;
    padding: 12px 15px;
    outline: none;
    transition: 0.3s ease;
}

.contact-form-wrapper textarea {
    height: 180px;
    resize: none;
}

.contact-form-wrapper input:focus,
.contact-form-wrapper textarea:focus {
    border-color: #7a5a35;
    box-shadow: 0 0 10px rgba(122, 90, 53, 0.3);
}

/* Button */

.submit-btn {
    width: 100%;
    height: 58px;
    border: none;
    border-radius: 50px;
    background: linear-gradient(90deg, #2f2216, #6b4b2a, #2f2216);
    color: #fff;
    letter-spacing: 4px;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s ease;
    background: #2f1e14;
    font-family: 'Afacad Flux', sans-serif;
}

.submit-btn:hover {
    transform: translateY(-2px);
    opacity: 0.95;
}

/* Mobile Responsive */

@media (max-width: 991px) {

    .contact-section {
        padding: 60px 0;
    }

    .contact-img {
        margin: auto;
    }

    .contact-form-wrapper {
        margin-top: 40px;
    }
}

@media (max-width: 767px) {

    .contact-section {
        padding: 50px 0;
    }

    .contact-img {
        max-width: 100%;
    }

    .contact-img img {
        border-radius: 60px 60px 0 0;
    }

    .submit-btn {
        height: 54px;
        font-size: 13px;
        letter-spacing: 3px;
    }
}