.contact-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.contact-wrapper h2 {
  text-align: center;
  font-size: 28px;
  color: #1d1d1f;
  font-weight: bold;
  margin-bottom: 12px;
}

.contact-wrapper .desc {
  text-align: center;
  color: #666;
  font-size: 15px;
  margin-bottom: 50px;
}

/* Box grid */
.contact-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.contact-grid .item {
  background: #fff;
  flex: 1 1 300px;
  max-width: 360px;
  text-align: center;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.contact-grid .item i {
  font-size: 28px;
  color: #a56a45;
  margin-bottom: 10px;
}

.contact-grid .item h4 {
  font-size: 16px;
  color: #000;
  font-weight: 600;
  margin-bottom: 6px;
}

.contact-grid .item p {
  font-size: 14px;
  color: #555;
}

/* Style cho liên kết Zalo */
.contact-grid .item a.zalo-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  color: #7a5a3a;
  margin-top: 10px;
  font-size: 14px;
  transition: color 0.3s ease;
}

.contact-grid .item a.zalo-link:hover {
  color: #ad7555; /* Màu hover theo theme */
}

.contact-grid .item a.zalo-link img {
  width: 24px;
  height: 24px;
  background: transparent; /* Đảm bảo không có nền vàng */
  vertical-align: middle;
}

/* Map + Form */
.map-form {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  align-items: flex-start;
}

.map-form .map {
  flex: 1 1 50%;
  min-width: 350px;
}

.map-form .map iframe {
  width: 100%;
  height: 400px;
  border-radius: 12px;
  border: 0;
}

.map-form .form {
  flex: 1 1 40%;
  min-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.map-form .form input,
.map-form .form textarea {
  padding: 12px 14px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
  width: 100%;
  resize: none;
}

.map-form .form textarea {
  height: 120px;
}

.map-form .form button {
  padding: 12px;
  background: #a56a45;
  color: #fff;
  font-weight: bold;
  font-size: 14px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.map-form .form button:hover {
  background: #8a5434;
}