/* Contact Page Styles */

:root {
  --brand: #1e8756;
  --brand-dark: #14532d;
  --text: #1f2937;
  --muted: #6b7280;
  --border: #e5e7eb;
  --bg: #ffffff;
}

/* ===== CONTAINER ===== */
.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 50px;
}

/* ===== HERO ===== */
.contact-hero {
  text-align: center;
  margin-bottom: 30px;
}
.contact-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--brand);
}
.contact-subtitle {
  color: var(--muted);
  margin-top: 6px;
}

/* ===== INFO GRID ===== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-bottom: 22px;
}
.contact-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: .2s;
}
.contact-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,.06);
  transform: translateY(-2px);
}
.card-icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), #2d6a4f);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.card-icon svg {
  width: 22px; height: 22px;
  stroke: #fff; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.card-title { font-weight: 700; color: var(--text); margin-bottom: 4px; }
.card-content { font-size: 14px; color: var(--muted); }
.card-content a { color: var(--brand); font-weight: 600; text-decoration: none; }
.card-content a:hover { text-decoration: underline; }
.card-address { white-space: pre-line; }

/* ===== BOTTOM ROW ===== */
.bottom-row {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 20px;
  align-items: stretch;
}

/* ===== SOCIAL PANEL ===== */
.social-panel {
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
  border-radius: 14px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.social-title { font-size: 22px; font-weight: 700; margin-bottom: 6px; }
.social-sub { opacity: .9; margin-bottom: 20px; font-size: 14px; }
.social-icons { display: flex; flex-direction: column; gap: 10px; }
.social-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(255,255,255,.07);
  color: #fff;
  text-decoration: none;
  font-size: 13px; font-weight: 600;
  transition: background .2s, transform .15s;
  border: 1px solid rgba(255,255,255,.08);
}
.social-btn:hover { color: #fff; transform: translateX(4px); }
.social-btn-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.social-btn-icon svg { width: 18px; height: 18px; display: block; fill: #fff; }

.social-facebook  .social-btn-icon  { background: #1877f2; }
.social-facebook:hover               { background: rgba(24,119,242,.15); border-color: rgba(24,119,242,.4); }
.social-twitter   .social-btn-icon  { background: #000; }
.social-twitter:hover                { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.2); }
.social-instagram .social-btn-icon  { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.social-instagram:hover              { background: rgba(225,48,108,.15); border-color: rgba(225,48,108,.4); }
.social-youtube   .social-btn-icon  { background: #ff0000; }
.social-youtube:hover                { background: rgba(255,0,0,.15); border-color: rgba(255,0,0,.4); }
.social-linkedin  .social-btn-icon  { background: #0a66c2; }
.social-linkedin:hover               { background: rgba(10,102,194,.2); border-color: rgba(10,102,194,.5); }

/* ===== MAP ===== */
.map-panel {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.map-panel iframe {
  width: 100%; height: 100%;
  min-height: 360px;
  border: 0;
}

/* ===== MOBILE ===== */
@media (max-width: 900px) {
  .bottom-row { grid-template-columns: 1fr; }
}
