/* --- CSS RIÊNG CHO TRANG LIÊN HỆ (lienhe.css) --- */

#contact-container {
  width: 85%;
  margin: 40px auto;
}

.contact-page-title {
  font-size: 26px;
  color: #3e2723;
  border-bottom: 2px solid #6f5946;
  padding-bottom: 10px;
  margin-bottom: 30px;
}

/* Chia bố cục trang thành 2 phần: Thông tin (45%) và Form (50%) nằm song song */
.contact-layout {
  display: flex;
  justify-content: space-between;
  gap: 5%;
}

.contact-info-box, .contact-form-box {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  box-sizing: border-box;
}

.contact-info-box {
  width: 45%;
}

.contact-form-box {
  width: 50%;
}

.contact-info-box h3, .contact-form-box h3 {
  font-size: 18px;
  color: #6f5946;
  margin-top: 0;
  margin-bottom: 20px;
  border-left: 4px solid #6f5946;
  padding-left: 10px;
}

.contact-info-box p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* Danh sách thông tin liên hệ */
.contact-details {
  list-style: none;
  padding: 0;
  margin: 25px 0;
}

.contact-details li {
  font-size: 14px;
  color: #444;
  margin-bottom: 15px;
  line-height: 1.5;
}

/* Khung bọc bản đồ Google Maps */
.contact-map-box {
  width: 100%;
  height: 250px;
  border: 1px solid #ddd;
}

/* --- GIAO DIỆN FORM CỘT PHẢI --- */
.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #555;
  margin-bottom: 6px;
}

.form-group input, .form-group textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  box-sizing: border-box;
  font-family: inherit;
}

.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: #6f5946;
  box-shadow: 0 0 5px rgba(111, 89, 70, 0.2);
}

/* Nút bấm gửi lời nhắn */
.btn-send-contact {
  background: #6f5946;
  color: #fff;
  border: none;
  padding: 12px 25px;
  font-size: 14px;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s;
  width: 100%;
}

.btn-send-contact:hover {
  background: #5d4a3a;
}