/* Hero Override */
.page-hero {
  background: var(--green-900);
  color: white;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(58, 157, 106, 0.15), transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(82, 196, 126, 0.08), transparent 50%);
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero-content {
  max-width: 900px;
}

.page-hero h1 {
  color: white;
  font-weight: 900;
}

.page-hero .hero-desc {
  color: rgba(255, 255, 255, 0.85);
}

.page-hero .breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
}

.page-hero .breadcrumb a:hover {
  color: white;
}

.page-hero .breadcrumb .sep,
.page-hero .breadcrumb span:last-child {
  color: rgba(255, 255, 255, 0.5);
}

/* ===== CONTACT LAYOUT ===== */
.contact-section { padding: 80px 0; }
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; }

/* ===== FORM ===== */
.contact-form {
  background: white; border-radius: var(--radius-lg); padding: 40px;
  border: 2px solid var(--green-200); transition: all 0.4s;
}

.contact-form:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--green-300);
}

.form-title { font-size: 1.3rem; font-weight: 700; color: var(--green-900); margin-bottom: 28px; }
.form-group { margin-bottom: 20px; }
.form-label {
  display: block; font-size: 0.88rem; font-weight: 600; color: var(--green-800);
  margin-bottom: 6px;
}
.form-input, .form-textarea {
  width: 100%; padding: 12px 16px; border: 1.5px solid var(--green-200);
  border-radius: var(--radius-sm); font-family: inherit; font-size: 0.95rem;
  color: var(--text-primary); background: var(--green-50); transition: all 0.3s;
}
.form-input:focus, .form-textarea:focus {
  outline: none; border-color: var(--green-500); background: white;
  box-shadow: 0 0 0 3px rgba(58,157,106,0.1);
}
.form-textarea { resize: vertical; min-height: 120px; }
.checkbox-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.checkbox-item {
  display: flex; align-items: center; gap: 10px; padding: 10px 14px;
  background: var(--green-50); border-radius: var(--radius-sm); border: 1.5px solid transparent;
  transition: all 0.2s; cursor: pointer;
}
.checkbox-item:hover { border-color: var(--green-300); background: white; }
.checkbox-item input[type="checkbox"] {
  width: 18px; height: 18px; accent-color: var(--green-600); cursor: pointer;
}
.checkbox-item label { font-size: 0.88rem; cursor: pointer; color: var(--text-secondary); }
.recaptcha-notice { font-size: 0.78rem; color: var(--text-muted); margin-top: 12px; line-height: 1.6; text-align: center; }
.form-input.error, .form-textarea.error { border-color: #d32f2f; }
.field-error { color: #d32f2f; font-size: 0.78rem; margin-top: 4px; display: none; }
.submit-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.submit-success { color: var(--green-600); font-size: 0.9rem; text-align: center; margin-top: 12px; display: none; }
.submit-fail { color: #d32f2f; font-size: 0.9rem; text-align: center; margin-top: 12px; display: none; }
.submit-btn {
  width: 100%; padding: 14px; background: var(--green-700); color: white;
  border: none; border-radius: 100px; font-size: 1rem; font-weight: 600;
  cursor: pointer; transition: all 0.3s; font-family: inherit;
  box-shadow: 0 4px 16px rgba(30,86,49,0.25); margin-top: 12px;
}
.submit-btn:hover { background: var(--green-600); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(30,86,49,0.3); }

/* ===== INFO SIDEBAR ===== */
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.info-card {
  padding: 24px; background: white; border-radius: var(--radius-lg);
  border: 2px solid var(--green-200); transition: all 0.4s;
  display: flex; align-items: flex-start; gap: 16px;
}
.info-card:hover { box-shadow: var(--shadow-lg); border-color: var(--green-400); transform: translateY(-4px); }
.info-icon {
  width: 48px; height: 48px; min-width: 48px; border-radius: 14px; background: var(--green-100);
  display: flex; align-items: center; justify-content: center;
}
.info-icon svg {
  width: 22px; height: 22px; stroke: var(--green-700); stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round; fill: none;
}
.info-label { font-size: 0.78rem; color: var(--text-muted); font-weight: 500; margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.05em; }
.info-value { font-size: 1rem; font-weight: 600; color: var(--green-900); word-break: break-all; }
.map-container {
  width: 100%; height: 240px; border-radius: var(--radius-lg); overflow: hidden;
  border: 2px solid var(--green-200);
}
.map-container iframe {
  width: 100%; height: 100%; border: 0;
}

/* ===== FAQ ===== */
.faq-section {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--warm-white) 0%, var(--green-50) 50%, var(--warm-white) 100%);
}
.faq-list { max-width: 800px; margin: 48px auto 0; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: white; border-radius: var(--radius-md);
  border: 2px solid var(--green-200); overflow: hidden; transition: all 0.3s;
}
.faq-item.active { border-color: var(--green-400); box-shadow: var(--shadow-md); }
.faq-question {
  padding: 20px 24px; cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  font-weight: 600; font-size: 1rem; color: var(--green-900); user-select: none; transition: color 0.2s;
}
.faq-question:hover { color: var(--green-600); }
.faq-arrow {
  width: 28px; height: 28px; border-radius: 50%; background: var(--green-100);
  display: flex; align-items: center; justify-content: center;
  color: var(--green-600); transition: transform 0.3s, background 0.3s; flex-shrink: 0;
}
.faq-arrow svg {
  width: 16px; height: 16px; stroke: var(--green-600); stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round; fill: none;
  transition: stroke 0.3s;
}
.faq-item.active .faq-arrow { transform: rotate(180deg); background: var(--green-600); }
.faq-item.active .faq-arrow svg { stroke: white; }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 24px; color: var(--text-secondary); font-size: 0.92rem; line-height: 1.8;
}
.faq-item.active .faq-answer { max-height: 300px; padding: 0 24px 20px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) { .contact-grid { grid-template-columns: 1fr; } }
@media (max-width: 640px) {
  .checkbox-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 28px; }
}
