
/* --- CSS Variables --- */
:root {
  --green-dark:   #006B3F;
  --green-mid:    #007A47;
  --green-light:  #00A651;
  --green-footer: #014d2d;
  --gold:         #FFD700;
  --gold-hover:   #e6c200;
  --text-dark:    #1a1a2e;
  --text-body:    #444;
  --text-muted:   #777;
  --bg-light:     #f7f9f7;
  --bg-white:     #ffffff;
  --border:       #d4e8d4; 
  --radius:       6px;
  --shadow:       0 4px 24px rgba(0,0,0,0.08);
  --transition:   0.25s ease;
  --container:    1200px;
}



html { scroll-behavior: smooth; font-size: 16px; }





svg { fill: currentColor; display: block; }




/* .section {
  padding: 5rem 0;
} */



/* =============================================
   CONTACT SECTION
   ============================================= */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  /* align-items: start; */
}

.section-title {
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
}

.divider {
  width: 52px; height: 3px;
  background: var(--green-dark);
  margin-bottom: 1.8rem;
  border-radius: 2px;
}

/* Contact List */
.contact__list {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-bottom: 1.4rem;
}

.contact__item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.95rem;
  color: var(--text-body);
  padding-bottom: 1.1rem;
  border-bottom: 1px solid var(--border);
}
.contact__item:last-child { border-bottom: none; }

.contact__icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact__icon svg { width: 17px; height: 17px; }

.contact__icon--location { background: #e6f4ed; color: var(--green-dark); }
.contact__icon--phone    { background: #e6f4ed; color: var(--green-dark); }
.contact__icon--email    { background: #e6f4ed; color: var(--green-dark); }

.link--green { color: var(--green-dark); font-weight: 600; }
.link--green:hover { color: var(--green-light); }

.contact__divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 1.4rem 0;
}

/* Social Buttons */
.contact__socials {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.2rem;
}
.social-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.55rem 1.2rem;
  border: 2px solid var(--green-dark);
  border-radius: var(--radius);
  color: var(--green-dark);
  font-size: 0.88rem;
  font-weight: 600;
  transition: background var(--transition), color var(--transition);
}
.social-btn svg { width: 16px; height: 16px; }
.social-btn:hover { background: var(--green-dark); color: #fff; }
.social-btn--yt { border-color: #cc0000; color: #cc0000; }
.social-btn--yt:hover { background: #cc0000; color: #fff; }

/* =============================================
   CONTACT FORM
   ============================================= */
.contact__form-wrap {
  background: var(--bg-light);
  border-radius: 10px;
  padding: 2rem;
  border: 1px solid var(--border);
}
.form-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--green-dark);
  margin-bottom: 1.2rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  display: flex; flex-direction: column; gap: 0.3rem;
  margin-bottom: 1rem;
}
.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.03em;
}
.form-group input,
.form-group textarea {
  padding: 0.7rem 0.9rem;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--text-dark);
  background: #fff;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  resize: vertical;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--green-dark);
  box-shadow: 0 0 0 3px rgba(0,107,63,0.12);
}
.btn-submit {
  background: var(--green-dark);
  color: #fff;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  letter-spacing: 0.04em;
}
.btn-submit:hover { background: var(--green-light); transform: translateY(-1px); }
.btn-submit:active { transform: none; }
.form-feedback {
  margin-top: 0.8rem;
  font-size: 0.88rem;
  font-weight: 600;
  min-height: 1.2em;
}
.form-feedback.success { color: var(--green-dark); }
.form-feedback.error   { color: #c0392b; }

/* =============================================
   MAP
   ============================================= */
.contact__map { position: relative; }
.map-wrapper {
  width: 100%;
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.map-wrapper iframe { width: 100%; height: 100%; }

.map-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.13);
  padding: 1.1rem 1.3rem;
  margin: 20px;
  border-left: 4px solid var(--green-dark);
}
.map-card h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}
.map-card p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 0.5rem; }
.map-card__rating {
  display: flex; align-items: center; gap: 0.5rem;
  margin-bottom: 0.7rem;
}
.stars { color: #f59e0b; font-weight: 700; font-size: 0.9rem; }
.review-count { font-size: 0.82rem; color: var(--text-muted); }
.map-card__link {
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--green-dark);
  transition: color var(--transition);
}
.map-card__link:hover { color: var(--green-light); }


/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
.contact__info,
.contact__map {
  animation: fadeUp 0.6s ease both;
}
.contact__map { animation-delay: 0.15s; }

/* =============================================
   RESPONSIVE
   ============================================= */

/* Tablet: ≤ 1024px */
@media (max-width: 1024px) {
  /* .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; } */
}

/* Tablet: ≤ 768px */
@media (max-width: 768px) {
  

  /* Contact grid → single column */
  .contact__grid { grid-template-columns: 1fr; gap: 2.5rem; }

  /* Footer */
  .footer__grid { grid-template-columns: 1fr; gap: 1.8rem; }
  .footer__brand { grid-column: auto; }
}

/* Mobile: ≤ 480px */
@media (max-width: 480px) {
  .form-row { grid-template-columns: 1fr; }

  .contact__form-wrap { padding: 1.2rem; }

  }
