.form-section {
    margin: 15px auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 10px 10px;
    font-size: 14px;
    background-color: #f2f2f2;
    border-radius: 4px;
    border: none;
}

.form-group input[type="text"]:hover,
.form-group input[type="email"]:hover,
.form-group textarea:hover {
    border-color: rgba(255, 204, 0, 0.5);
    box-shadow: 0 0 0 3px rgba(255, 204, 0, 0.5);
    background-color: #ffffff;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(255, 204, 0, 0.5);
    box-shadow: 0 0 0 3px rgba(255, 204, 0, 0.5);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.btn-submit {
    color: white;
    width: 100px;
    height: 40px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: block;
    margin: 0 auto;
    background: var(--color-red);
}

.btn-submit:hover {
    background: rgb(155, 1, 1);
}

.address-contact {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 5px;
    margin-bottom: 16px;
}

.item-address-contact {
    width: 100%;
    display: flex;
    align-items: center;
}

.img-address-contact {
    color: var(--text-title);
}

.img-address-contact .fa-location-dot {
    font-size: 16px;
}

.img-address-contact .fa-phone-flip {
    font-size: 16px;
}

.img-address-contact .fa-envelope {
    font-size: 16px;
}

.text-address-contact {
    margin-left: 10px;
    line-height: 22px;
}

.text-address-contact span {
    color: #9b9b9b;
    font-size: 10px;
}

.text-address-contact p {
    color: #3636369e;
    font-size: 16px;
    font-weight: 500;
}

.map-section {
    text-align: center;
    margin: 15px auto;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background-color: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #666;
    border-radius: 8px;
    overflow: hidden;
}

.map-placeholder iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.contact_wrapper {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 20px;
    margin: 30px 0px;
}

.contact_left {
    flex: 1;
    width: 100%;
}

.form-flex {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.form-item {
    flex: 1;
    width: 100%;
    margin-bottom: 20px;
}

.form-item input[type="text"],
.form-item input[type="email"],
.form-item textarea {
    width: 100%;
    padding: 10px 10px;
    font-size: 14px;
    background-color: #f2f2f2;
    border-radius: 4px;
    border: 1px solid #9b9b9b5b;
    outline: none;
}

.form-item input[type="text"]:hover,
.form-item input[type="email"]:hover,
.form-item textarea:hover {
    background-color: #ffffff;
    border: 1px solid green;
}

.form-item input[type="text"]:focus,
.form-item input[type="email"]:focus,
.form-item textarea:focus {
    outline: none;
    background-color: #ffffff;
    border: 1px solid green;
}

.form-item textarea {
    min-height: 120px;
    resize: vertical;
}

/* 4K and Ultra-wide Screens */
@media (min-width: 1600px) {}

/* Ultra Large Devices (Extra Large Desktop) */
@media (max-width: 1599px) {}

/* XXL Devices (Large Desktop) */
@media (max-width: 1399px) {}

/* Extra Large Devices (Small Desktop) */
@media (max-width: 1199px) {
    .address-contact {
        flex-direction: column;
    }

    .item-address-contact {
        width: 100%;
    }
}

/* Large Devices (Tablets) */
@media (max-width: 991px) {
    .contact_wrapper {
        flex-direction: column;
        width: 100%;
    }

    .contact_right {
        width: 100%;
    }

    .contact_right>img {
        width: 100%;
    }
}

/* Medium Devices (Tablets) */
@media (max-width: 767px) {}

/* Small Devices (Phones) */
@media (max-width: 575px) {}

/* Extra Small Devices */
@media (max-width: 374px) {}