.contact-hero-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.contact-info-card {
    height: 100%;
    padding: 24px 20px;
    border: 1px solid #edf1f5;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(16, 24, 40, 0.05);
    transition: all .25s ease;
}

.contact-info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(16, 24, 40, 0.08);
}

.contact-info-icon {
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: rgba(255, 84, 33, 0.1);
    color: #B59A5A;
    font-size: 22px;
    margin-bottom: 16px;
}

.contact-info-title {
    font-size: 20px;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 14px;
    color: #0f172a;
}

.contact-info-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.contact-info-list li {
    padding: 10px 0;
    border-bottom: 1px dashed #e5e7eb;
}

.contact-info-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-item-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: #94a3b8;
    margin-bottom: 4px;
}

.contact-item-value,
.contact-item-value a {
    font-size: 15px;
    line-height: 1.7;
    color: #334155;
    word-break: break-word;
}

.contact-item-value a:hover {
    color: #ff5421;
}

.contact-empty-text {
    color: #94a3b8;
    margin: 0;
}

.contact-main-box {
    border: 1px solid #edf1f5;
    border-radius: 22px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.06);
}

.contact-map2,
.contact-map2 iframe,
.contact-map2 .map-html-wrapper iframe {
    width: 100%;
    min-height: 100%;
    height: 100%;
    border: 0;
}

.contact-map2 {
    min-height: 100%;
    background: #f8fafc;
}

.contact-map-placeholder {
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    text-align: center;
    color: #94a3b8;
    font-weight: 600;
}

.contact-form-side {
    padding: 40px 35px;
}

.contact-form-badge {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 84, 33, 0.1);
    color: #B59A5A;
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 14px;
}

.contact-form-desc {
    color: #64748b;
    margin-bottom: 28px;
}

.rs-quick-contact.new-style .from-control {
    width: 100%;
    height: 56px;
    padding: 0 18px;
    border: 1px solid #dbe3ea;
    border-radius: 14px;
    outline: none;
    background: #fff;
    transition: .2s ease;
}

.rs-quick-contact.new-style textarea.from-control {
    height: 170px;
    resize: vertical;
    padding: 16px 18px;
}

.rs-quick-contact.new-style .from-control:focus {
    border-color: #ff5421;
    box-shadow: 0 0 0 3px rgba(255, 84, 33, 0.08);
}

.rs-quick-contact.new-style .from-control.is-invalid {
    border-color: #dc3545;
}

.btn-send {
    min-width: 180px;
    border: none;
    border-radius: 999px;
    padding: 15px 26px;
    font-weight: 700;
    background: #ff5421;
    color: #fff;
    transition: .2s ease;
}

.btn-send:hover {
    opacity: .92;
}

.btn-send:disabled {
    opacity: .65;
    cursor: not-allowed;
}

.invalid-feedback {
    font-size: 13px;
}

@media (max-width: 1199px) {
    .contact-hero-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .contact-form-side {
        padding: 30px 20px;
    }

    .contact-map-placeholder {
        min-height: 320px;
    }
}

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