.contact-us-wrapper {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.contact-form-card,
.contact-info-card,
.working-hours-card,
.social-follow-card {
    background: #F5F1EA;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #D9B56D;
    margin-bottom: 20px;
}

.form-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
}

.form-desc {
    font-size: 14px;
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.icon-circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #F4C76C;
    display: flex;
    align-items: center;
    justify-content: center;
}

.working-hours-card ul {
    list-style: none;
    padding: 0;
}

.working-hours-card li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.social-follow-card .social-icons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

@media(max-width: 1280px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.custom-contact-form .form-row {
    margin-bottom: 20px;
}

.custom-contact-form input,
.custom-contact-form textarea,
.custom-contact-form select {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    border: 1px solid #c8a96a;
    background-color: #f4f1ea;
}

.custom-contact-form textarea {
    height: 120px;
}

.two-col {
    display: flex;
    gap: 20px;
}

.two-col .form-group {
    flex: 1;
}

.radio-group span {
    margin-right: 20px;
}

.file-upload input {
    border: 2px dashed #c8a96a;
    padding: 30px;
    text-align: center;
}

.submit-btn input {
    background: #a37b12;
    color: #fff;
    padding: 14px 40px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
}

.submit-btn input:hover {
    opacity: 0.9;
}

.contact-us-map-wrap {
    margin-top: 40px;
}

.contact-us-map-wrap iframe {
    width: 100%;
    height: 400px;
    border: 0;
    border-radius: 12px;
}