/* ===== CONTACT PAGE ===== */

/* HERO */
.page-hero.contact-hero {
  background: url('../images/banners/contact_banner.jpg') center/cover no-repeat;
}

/* MAIN CONTACT SECTION */
.contact-section {
  padding: 60px 0;
  background: #fff;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  align-items: start;
}

/* BOXES */
.contact-info-box,
.contact-form-box {
  background: #f9f9f9;
  padding: 25px 30px;
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}
.contact-info-box h2,
.contact-form-box h2 {
  color: var(--green);
  margin-bottom: 20px;
}

/* INFO TEXT */
.contact-info-box p {
  color: #444;
  line-height: 1.6;
  margin-bottom: 15px;
  font-size: 1rem;
}
.contact-info-box a {
  color: var(--green-dark);
  text-decoration: none;
}
.contact-info-box a:hover {
  text-decoration: underline;
}

/* FORM */
.contact-form-box form input,
.contact-form-box form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.contact-form-box form input:focus,
.contact-form-box form textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 4px rgba(46, 125, 50, 0.3);
  outline: none;
}
.contact-form-box .btn-primary {
  border: none;
  cursor: pointer;
}

/* FEEDBACK */
.success,
.error {
  margin-top: 10px;
  font-weight: 600;
  text-align: center;
}
.success { color: #2e7d32; }
.error { color: #c62828; }

/* MAP */
.map-section {
  padding: 60px 0;
  background: #f8f8f8;
  text-align: center;
}
.map-section h2 {
  color: var(--green);
  margin-bottom: 25px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-overlay h1 { font-size: 2rem; }
  .hero-overlay p { font-size: 1rem; }
  .contact-grid { gap: 25px; }
}

