/* ================= Contact Page ================= */
.contact-page {
  background: #fff;
  padding: 60px 20px;
}

.contact-page .container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.contact-page h1 {
  font-size: 2.2rem;
  margin-bottom: 10px;
  color: #333;
}

.contact-intro {
  color: #555;
  margin-bottom: 40px;
  font-size: 1.1rem;
}

/* ================= Locations ================= */
.locations {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-bottom: 60px;
}

.location-card {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 10px;
  flex: 0 1 500px;
  text-align: left;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.location-card h2 {
  color: #333;
  margin-bottom: 10px;
}

.location-card p {
  margin: 6px 0;
  color: #555;
}

.location-card a {
  color: var(--main-green);
  text-decoration: none;
}

.location-card a:hover {
  text-decoration: underline;
}

.map-wrapper {
  margin-top: 15px;
}

.map-wrapper iframe {
  width: 100%;
  height: 250px;
  border: none;
  border-radius: 8px;
}

/* ================= Contact Form ================= */
.contact-form-section {
  max-width: 600px;
  margin: 0 auto;
}

.contact-form-section h2 {
  color: #333;
  margin-bottom: 20px;
}

.contact-form .form-group {
  margin-bottom: 20px;
  text-align: left;
}

.contact-form label {
  display: block;
  margin-bottom: 6px;
  color: #333;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--main-green);
  outline: none;
}

.contact-form button {
  margin-top: 10px;
  width: 100%;
  padding: 12px;
  font-size: 1.1rem;
  border: none;
  border-radius: 6px;
  background: var(--main-green);
  color: #000;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background: #2ecc12;
}

/* Responsive */
@media (max-width: 768px) {
  .locations {
    flex-direction: column;
    align-items: center;
  }

  .location-card {
    flex: 0 1 100%;
  }
}
/* ================= Contact Form Alert ================= */
.form-alert {
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 6px;
  text-align: center;
  font-weight: 600;
}

.form-alert.success {
  background: #e7ffe7;
  color: #207c20;
  border: 1px solid #2ecc12;
}

.form-alert.error {
  background: #ffe7e7;
  color: #b30000;
  border: 1px solid #e74c3c;
}
