/* Contact Title */
.contact-title {
    color: var(--skin-color);
    text-align: center;
    font-size: 25px;
    margin-bottom: 20px;
}

/* Contact Info Items */
.contact .contact-info-item {
    flex: 0 0 33.33%; /* Adjust for better spacing on medium screens */
    max-width: 33.33%;
    text-align: center;
    margin-bottom: 40px; /* Adjust spacing between items */
}

.contact .contact-info-item .icon .fa,
.contact .contact-info-item .icon .fa-brands {
    font-size: 25px;
    color: var(--skin-color);
}

.contact .contact-info-item h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-black-900);
    margin: 15px 0 5px;
}

.contact .contact-info-item p {
    font-size: 16px;
    line-height: 25px;
    color: var(--text-black-700);
    font-weight: 400;
}

/* Contact Form */
.contact .contact-form {
    flex: 0 0 100%;
    max-width: 100%;
}

.contact .contact-form .col-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

.contact .contact-form .col-12 {
    flex: 0 0 100%;
    max-width: 100%;
}

.contact .contact-form .form-item {
    margin-bottom: 30px;
}

.contact .contact-form .form-item .form-control {
    width: 100%;
    height: 50px;
    border-radius: 25px;
    background: var(--bg-black-100);
    border: 1px solid var(--bg-black-50);
    padding: 10px 25px;
    font-size: 16px;
    color: var(--text-black-700);
    transition: all 0.3s ease;
}

.contact .contact-form .form-item .form-control:focus {
    box-shadow: 0 20px rgba(48, 46, 77, 0.15);
}

.contact .contact-form .form-item textarea.form-control {
    height: 140px;
}

/* Responsive Styling for Smaller Screens */
@media (max-width: 767px) {
    /* Full width for contact info items on smaller screens */
    .contact .contact-info-item {
        flex: 0 0 100%;
        max-width: 100%;
    }

    /* Full width for form items on smaller screens */
    .contact .contact-form .col-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}
