/* ===================== CONTACT HERO ===================== */
.contact-hero {
  padding: 180px 0 80px;
  background: linear-gradient(135deg, #f1f8f3 0%, #e5f2e9 50%, #faf8f4 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-hero h1 {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--primary-dark);
  margin-bottom: 20px;
}

.contact-hero h1::after {
  content: '';
  display: block;
  width: 70px;
  height: 5px;
  background: linear-gradient(90deg, var(--accent), var(--primary-light));
  margin: 16px auto 0;
  border-radius: 10px;
}

/* ===================== CONTACT MAIN ===================== */
.contact-main {
  padding: 80px 0 120px;
  background: var(--bg-light);
}

.contact-info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 45px;
  box-shadow: var(--shadow);
  height: 100%;
  border: 1px solid rgba(7, 34, 18, 0.05);
  transition: var(--transition);
}

.contact-info-card:hover {
  box-shadow: var(--shadow-lg);
}

.contact-info-card h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}

.contact-info-card h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50px;
  height: 3px;
  background: var(--accent);
  border-radius: 10px;
}

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 45px;
  box-shadow: var(--shadow);
  height: 100%;
  border: 1px solid rgba(7, 34, 18, 0.05);
  transition: var(--transition);
}

.contact-form-card:hover {
  box-shadow: var(--shadow-lg);
}

.contact-form-card h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}

.contact-form-card h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50px;
  height: 3px;
  background: var(--accent);
  border-radius: 10px;
}

/* ===================== FORM STATUS ===================== */
.form-status {
  padding: 14px 20px;
  border-radius: 12px;
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid;
}

.form-status-success {
  background: rgba(45, 138, 78, 0.08);
  color: var(--secondary);
  border-color: rgba(45, 138, 78, 0.2);
}

.form-status-error {
  background: rgba(220, 53, 69, 0.08);
  color: #dc3545;
  border-color: rgba(220, 53, 69, 0.2);
}

/* ===================== CONTACT MAP ===================== */
.contact-map-section {
  padding: 0 0 80px;
  background: var(--bg-light);
}

.map-wrapper {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(7, 34, 18, 0.05);
}

.map-wrapper iframe {
  display: block;
}

@media (max-width: 991px) {
  .contact-hero h1 { font-size: 2.8rem; }
}

@media (max-width: 576px) {
  .contact-hero { padding: 150px 0 60px; }
  .contact-hero h1 { font-size: 2rem; }
  .contact-info-card { padding: 25px; }
  .contact-form-card { padding: 25px; }
}
