/* ---------- CONTACT PAGE ONLY ---------- */

/* Ensure same page width/feel as homepage */
.contact-page {
  max-width: 1100px;
  margin: auto;
  padding: 20px;
}

/* MAIN CARD */
.contact-page .section {
  background: linear-gradient(135deg, #fffaf3, #ffe8cc);
  padding: 40px;
  border-radius: 24px;
  margin-top: 30px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.contact-page .section h2 {
  margin-top: 0;
  font-size: 42px;
  font-weight: 900;
}

.contact-page .section p {
  font-size: 18px;
}

/* SIDE BY SIDE LAYOUT */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 20px;
  align-items: stretch;
}

/* FORM */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-form label {
  font-weight: 800;
  font-size: 16px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 16px;
  font-family: 'Inter', sans-serif;
}

.contact-form textarea {
  resize: vertical;
  min-height: 200px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #2e9e5b;
  outline: none;
  box-shadow: 0 0 0 3px rgba(46, 158, 91, 0.15);
}
form-status {
  margin-top: 12px;
  font-weight: 700;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.form-status.show {
  opacity: 1;
}

.form-status.success {
  color: #2e9e5b;
}

.form-status.error {
  color: #d9534f;
}
.contact-info {
  margin-bottom: 20px;
  font-size: 16px;
}

.phone-link {
  display: inline-block;
  margin-top: 5px;
  font-size: 20px;
  font-weight: 900;
  color: #2e9e5b;
}

.phone-link:hover {
  color: #257a46;
  text-decoration: underline;
}
/* BUTTON */
.btn {
  padding: 16px 22px;
  border-radius: 10px;
  font-weight: 900;
  border: none;
  cursor: pointer;
  margin-top: 15px;
  font-size: 16px;
}

.btn-green {
  background: #2e9e5b;
  color: white;
}

.btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* MAP */
.map-container {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  min-height: 480px;
  display: block;
  border: 0;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .map-container iframe {
    min-height: 320px;
  }
}

@media (max-width: 600px) {
  .contact-page .section {
    padding: 25px;
  }

  .contact-page .section h2 {
    font-size: 30px;
  }

  .contact-page .section p {
    font-size: 16px;
  }
}