.form-section {
    padding: 20px;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    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;
    padding: 9px 9px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: block;
    margin: 0 auto;
    background: #333;
}

.address-contact {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-flow: wrap;
    width: 100%;
    margin-top: 20px;
    margin: 15px auto;
}

.item-address-contact {
    width: calc(100% / 3);
    padding: 10px;
    display: flex;
    align-items: center;
}

.img-address-contact {
    color: #333;
}

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

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

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

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

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

.text-address-contact p {
    color: #363636;
    font-size: 12px;
    font-weight: 700;
}

.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-form-wrapper {
    position: relative;
}

.contact-form-loading {
    display: none;
    position: absolute;
    inset: 0;
    z-index: 10;
    background: rgba(255, 255, 255, 0.85);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    border-radius: 4px;
}

.contact-form-wrapper.is-submitting .contact-form-loading {
    display: flex;
}

.contact-form-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(0, 0, 0, 0.08);
    border-top-color: #fd6e1d;
    border-radius: 50%;
    animation: contact-form-spin 0.8s linear infinite;
}

.contact-form-loading-text {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

@keyframes contact-form-spin {
    to {
        transform: rotate(360deg);
    }
}

.contact-form-wrapper .btn-send.is-loading .btn-send-text,
.contact-form-wrapper .btn-send.is-loading .btn-send-icon {
    visibility: hidden;
}

.contact-form-wrapper .btn-send.is-loading {
    position: relative;
    pointer-events: none;
    color: transparent;
}

.contact-form-wrapper .btn-send.is-loading::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-top-color: #fff;
    border-radius: 50%;
    animation: contact-form-spin 0.7s linear infinite;
}

.contact-section .theme-btn-two .btn-send-icon.fa-chevron-right {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.contact-section .theme-btn-two .btn-send-icon.fa-chevron-right::before {
    content: "\f054";
}

.btn-send:hover .btn-send-icon {
    transform: rotate(0);
    transition: transform 0.3s ease;
    transform-origin: center;
}

/* 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) {}

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

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

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