/* ===== Contact Us — insight.css 톤에 맞춤 ===== */
:root {
  --aid-green: #1b3b34;
  --muted: #6f7674;
  --line: #e7ebe9;
}

/* 전체 영역 */
.aid-contact {
  padding: clamp(48px, 8vw, 96px) 0;
  color: var(--muted); /* 기본 글자색 */
}

/* 타이틀 */
#contact-us .small-title {
  font-weight: 800;
  color: var(--aid-green);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 6px;
}
#contact-us .ins-title {
  font-weight: 900;
  color: var(--aid-green);
  margin: 0 0 8px;
}
#contact-us .ins-sub {
  color: var(--muted);
  margin: 0;
}

/* 지도 */
#kakaoMap {
  width: 100%;
  height: min(70vh, 560px);
  min-height: 360px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
  background: #f3f5f4;
}
@media (max-width: 768px) {
  #kakaoMap {
    height: 50vh;
    min-height: 280px;
    border-radius: 14px;
  }
}

/* 카드 */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}
@media (max-width: 992px) {
  .contact-cards {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 575px) {
  .contact-cards {
    grid-template-columns: 1fr;
  }
}

.contact-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
  color: var(--muted);
  line-height: 1.6;
}
.contact-box h5 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  color: var(--aid-green); /* 제목만 딥그린 */
  margin: 0 0 10px;
}
.contact-box ul {
  margin: 0;
  padding-left: 18px;
}
.contact-box li {
  margin: 6px 0;
  color: var(--muted);
}
.contact-box p {
  margin: 0 0 6px;
  color: var(--muted);
}

.contact-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.contact-actions .btn {
  color: var(--aid-green);
  border-color: var(--aid-green);
}
.contact-actions .btn:hover {
  background: var(--aid-green);
  color: #fff;
}
/* ==========================
   Contact Us Titles
========================== */
#contact-us .small-title {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--aid-green);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 6px;
}

#contact-us .main-title {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 900;
  color: var(--aid-green);
  margin: 0 0 10px;
  line-height: 1.3;
}

#contact-us .subtitle {
  font-size: 1rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

/* 모바일 최적화 */
@media (max-width: 768px) {
  #contact-us .main-title {
    font-size: clamp(22px, 6vw, 28px);
  }
  #contact-us .subtitle {
    font-size: 0.95rem;
  }
}
