/* GomSuViet_Project/Lienhe.css */

.page-content h1 { /* Tiêu đề "Liên Hệ Với Gốm Sứ Việt" */
    text-align: center;
    margin-bottom: 30px;
}

.contact-page-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.contact-form-section {
    /* width: 58%; (sẽ dùng col-7 từ grid.css) */
    background-color: var(--white-color);
    padding: 25px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--box-shadow-light);
}

.contact-info-section {
    /* width: 38%; (sẽ dùng col-5 từ grid.css) */
    background-color: var(--white-color);
    padding: 25px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--box-shadow-light);
    align-self: flex-start;
}

.contact-form-section h2,
.contact-info-section h2 {
    font-size: 1.6em;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
}
.contact-form-section p {
    margin-bottom: 20px;
    line-height: 1.7;
    color: #555;
}

#contact-form .form-row { /* Dùng cho tên và email trên 1 hàng */
    display: flex;
    gap: 20px;
}
#contact-form .form-row .form-group {
    flex: 1;
}

#send-contact-btn {
    /* Đã có style chung từ button[type="submit"] trong styles.css */
    display: inline-block; /* Để không chiếm full width nếu không cần */
}

.contact-info-section .info-block {
    display: flex;
    align-items: flex-start; /* Icon và text align top */
    gap: 15px;
    margin-bottom: 20px;
}
.contact-info-section .info-block img { /* Placeholder cho icon */
    width: 32px;
    height: 32px;
    margin-top: 5px; /* Căn chỉnh với dòng text đầu */
    opacity: 0.7;
}
.contact-info-section .info-block strong {
    display: block;
    font-size: 1.1em;
    color: var(--primary-color);
    margin-bottom: 5px;
}
.contact-info-section .info-block p {
    margin-bottom: 3px;
    line-height: 1.6;
    color: #555;
}
.contact-info-section .info-block a {
    color: var(--accent-color);
}
.contact-info-section .info-block a:hover {
    text-decoration: underline;
}

.map-embed h3 {
    font-size: 1.2em;
    margin-top: 25px;
    margin-bottom: 10px;
}
.map-embed iframe {
    border-radius: var(--border-radius-sm);
    box-shadow: var(--box-shadow-light);
}

/* Responsive for Contact Page */
@media (max-width: 992px) {
    .contact-form-section.col-7, .contact-info-section.col-5 { /* Reset grid width */
        width: 100% !important;
    }
}
@media (max-width: 768px) {
    #contact-form .form-row {
        flex-direction: column; /* Tên và email thành 2 hàng */
        gap: 0; /* Bỏ gap vì đã có margin-bottom từ form-group */
    }
}