.contact-page-main {
    font-family: 'Be Vietnam Pro', sans-serif !important;
    background-color: #fcfcfc;
    padding-bottom: 80px;
}

.contact-hero {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    padding: 80px 20px 120px;
    text-align: center;
    color: #ffffff;
}

.contact-hero h1 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 15px;
}

.contact-hero p {
    font-size: 18px;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

.contact-section {
    padding: 0;
    margin-top: -60px;
}

.contact-wrapper-full {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 30px;
}

.contact-info-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.info-header h2 { font-size: 24px; color: #1f2937; margin-bottom: 10px; }
.info-header p { color: #6b7280; margin-bottom: 30px; }

.info-item { display: flex; gap: 15px; margin-bottom: 25px; }

.icon-box {
    width: 50px; height: 50px; min-width: 50px;
    background: rgba(248, 115, 22, 0.1);
    color: #f87316;
    display: flex; align-items: center; justify-content: center;
    border-radius: 12px; font-size: 20px;
}

.text-box h3 { font-size: 16px; margin: 0 0 5px 0; color: #1f2937; }
.text-box p { margin: 0; color: #4b5563; font-size: 15px; line-height: 1.5; }

.social-icons { display: flex; gap: 15px; margin-top: 15px; }
.social-icons a {
    width: 40px; height: 40px; background: #f3f4f6; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #1f2937; text-decoration: none; transition: 0.3s;
}
.social-icons a:hover { background: #f87316; color: #fff; }

/* --- KHU VỰC CHỈNH SỬA KHOẢNG CÁCH Ô --- */
.contact-form-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px; /* Tăng từ 20px lên 35px để dãn cách Họ tên và SĐT */
}

.form-group {
    margin-bottom: 25px; /* Tăng khoảng cách giữa các hàng luôn cho đồng bộ */
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    color: #374151;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    font-family: 'Be Vietnam Pro', sans-serif !important;
    font-size: 15px;
    transition: 0.3s;
}

.form-group input:focus, .form-group textarea:focus {
    border-color: #f87316;
    outline: none;
    box-shadow: 0 0 0 4px rgba(248, 115, 22, 0.1);
}

.btn-send {
    background: #f87316;
    color: #fff;
    border: none;
    padding: 16px 30px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    display: flex; align-items: center; justify-content: center;
    gap: 10px; transition: 0.3s;
}

.btn-send:hover {
    background: #ea580c;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(248, 115, 22, 0.3);
}

@media (max-width: 992px) {
    .contact-grid { grid-template-columns: 1fr; }
    .contact-section { margin-top: -80px; }
    .form-row { gap: 20px; } /* Trên mobile thu hẹp lại để không phí diện tích */
}

@media (max-width: 600px) {
    .form-row { grid-template-columns: 1fr; }
}

/* --- BỔ SUNG CHO NÚT GỬI VÀ HỘP THOẠI --- */

/* 1. Cấu trúc nội dung bên trong nút khi Loading */
.btn-loading {
    display: none; /* Mặc định ẩn, sẽ hiện bằng JS thông qua display: flex */
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* 2. Hiệu ứng xoay cho icon loading (Spinner) */
.fa-spin {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* 3. Trạng thái nút khi bị vô hiệu hóa (is-loading) */
.btn-send.is-loading {
    background-color: #9ca3af !important; /* Màu xám trung tính */
    border-color: #9ca3af !important;
    cursor: not-allowed !important;
    transform: none !important; /* Không nhảy lên khi hover */
    box-shadow: none !important;
    opacity: 0.8;
}

/* 4. Tùy chỉnh Hộp thoại SweetAlert2 cho đồng bộ với giao diện của bạn */
.swal2-popup {
    font-family: 'Be Vietnam Pro', sans-serif !important;
    border-radius: 20px !important;
    padding: 2rem !important;
}

.swal2-title {
    font-size: 24px !important;
    font-weight: 800 !important;
    color: #1f2937 !important;
}

.swal2-html-container {
    font-size: 16px !important;
    color: #4b5563 !important;
    line-height: 1.6 !important;
}

.swal2-confirm {
    padding: 12px 35px !important;
    font-weight: 700 !important;
    border-radius: 10px !important;
    font-size: 16px !important;
}

/* 5. Ẩn Warning Box tĩnh (Vì đã có Popup hộp thoại hiện lên giữa màn hình) */
.status-msg {
    display: none !important; /* Ẩn để tránh bị hiện 2 lần trên trang */
}