/* ================= GLOBAL ================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: #f9fafc;
  color: #333;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
}

/* ================= CONTACT PAGE ================= */
.contact-page {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

.contact-page h1 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 2.5rem;
  font-weight: 600;
  color: #111;
}

/* ================= CONTENT LAYOUT ================= */
.contact-content {
  display: flex;
  gap: 50px;
  margin-bottom: 60px;
  align-items: flex-start;
}

/* ================= CONTACT INFO ================= */
.contact-info {
  flex: 1;
}

.contact-info h3 {
  margin-bottom: 15px;
  font-weight: 600;
}

.contact-info p {
  margin-bottom: 15px;
  font-size: 0.95rem;
  color: #555;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.info-item i {
  color: #0088cc;
  font-size: 16px;
  margin-top: 3px;
}

/* Business Hours */
.business-hours {
  margin-top: 25px;
}

.business-hours h4 {
  margin-bottom: 10px;
  font-weight: 600;
}

.business-hours ul {
  list-style: none;
  padding-left: 0;
}

.business-hours li {
  font-size: 0.95rem;
  margin-bottom: 6px;
  color: #555;
}

/* ================= CONTACT FORM ================= */
.contact-form {
  flex: 1;
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-form input,
.contact-form textarea {
  padding: 14px;
  border-radius: 6px;
  border: 1px solid #ddd;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  width: 100%;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #0088cc;
  box-shadow: 0 0 0 2px rgba(0, 136, 204, 0.1);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form button {
  padding: 14px;
  background-color: #0088cc;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-form button:hover {
  background-color: #006fa6;
  transform: translateY(-2px);
}

/* ================= ALERT MESSAGES ================= */
.success {
  color: #1a7f37;
  background: #e6f4ea;
  padding: 10px 15px;
  border-radius: 6px;
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.error {
  color: #b42318;
  background: #fdecea;
  padding: 10px 15px;
  border-radius: 6px;
  margin-bottom: 15px;
  font-size: 0.9rem;
}

/* ================= MAP ================= */
.map-section {
  margin-top: 30px;
}

.map-section iframe {
  width: 100%;
  height: 420px;
  border: 0;
  border-radius: 10px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .contact-content {
    flex-direction: column;
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .contact-page {
    margin: 40px auto;
  }

  .contact-page h1 {
    font-size: 2rem;
  }

  .contact-form {
    padding: 20px;
  }

  .map-section iframe {
    height: 300px;
  }
}