/* ===== TRANG LIÊN HỆ (KHÔNG ẢNH HƯỞNG CSS CHÍNH) ===== */

/* --- Khung tổng thể trang liên hệ --- */
.contact-page {
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  box-sizing: border-box;
}

/* --- Tiêu đề trang --- */
.contact-page h1 {
  text-align: center;
  color: #c59d5f;
  font-size: 26px;
  margin-bottom: 30px;
  width: 100%;
}

/* --- Thông tin công ty --- */
.contact-info {
  flex: 1;
  margin-top: 100px;
  min-width: 300px;
}

.contact-info h2 {
  color: #c59d5f;
  font-size: 20px;
  margin-bottom: 10px;
}

.contact-info p {
  margin: 6px 0;
  line-height: 1.6;
  font-size: 15px;
  color: #333;
}

.contact-info a {
  color: #c59d5f;
  text-decoration: none;
  font-weight: bold;
}

.contact-info a:hover {
  text-decoration: underline;
}

/* --- Form liên hệ --- */
.contact-form {
  flex: 1;
  min-width: 300px;
}

.contact-form h2 {
  color: #c59d5f;
  font-size: 20px;
  margin-bottom: 10px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-form input,
.contact-form textarea {
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  width: 100%;
  box-sizing: border-box;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #c59d5f;
  box-shadow: 0 0 6px rgba(197,157,95,0.4);
  outline: none;
}

.contact-form button {
  background-color: #c59d5f;
  color: #fff;
  font-weight: bold;
  padding: 10px 15px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.contact-form button:hover {
  background-color: #b2874f;
}

/* --- Bản đồ Google --- */
.map-container {
  max-width: 1200px;
  margin: 30px auto 60px auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
}

/* --- Responsive cho mobile --- */
@media (max-width: 768px) {
  .contact-page {
    flex-direction: column;
    padding: 15px;
    gap: 25px;
  }

  .contact-info {
  margin-top: 100px;
  margin-left: 10px;
  margin-right: 10px; 
  }

  .contact-info h2 {
    font-size: 20px;
  }

  .contact-info p {
    font-size: 14px;
  }

  .contact-form {
    margin-left: 10px;
    margin-right: 10px; 
  }

  .contact-form h2 {
    font-size: 18px;
  }

  .contact-form form {
    gap: 8px;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 8px 10px;
    font-size: 13px;
  }

  .contact-form button {
    padding: 8px 12px;
    font-size: 14px;
}

  .contact-info,
  .contact-form {
    width: 100%;
  }

  .map-container iframe {
    height: 300px;
  }
}
