/* ================= FOOTER SECTION ================= */

.footer-section {
  background:#111;                /* 🔥 전체 블랙톤 */
  padding:40px 0 30px;
  font-family:Pretendard,"Noto Sans KR",sans-serif;
  color:#ddd;
}

.footer-inner {
  max-width:900px;
  margin:0 auto;
  padding:0 16px;

  display:flex;
  justify-content:space-between;  /* PC에서 좌/우 배치 */
  gap:40px;
}

/* 상담 정보(좌측) */
.footer-info p {
  margin:2px 0;
  font-size:14px;
  color:#d0d0d0;
}

.footer-tel b {
  color:#fff;
  font-size:15px;
  font-weight:800;
}

/* 회사 정보(우측) */
.footer-company {
  text-align:right;              /* 🔥 PC에서 오른쪽 정렬 */
}
.footer-company p {
  margin:2px 0;
  font-size:14px;
  color:#ccc;
}

/* 약관 버튼 */
.footer-bottom {
  margin-top:25px;
  text-align:right;
}

.footer-bottom .ft-link {
  background:none;
  border:none;
  color:#9bb8ff;                /* 파랑 포인트 */
  font-size:14px;
  text-decoration:underline;
  cursor:pointer;
  margin:0 10px;
}
.footer-bottom .ft-link:hover {
  color:#c8d8ff;
}

/* ================= MODAL ================= */
.modal-overlay {
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.55);
  display:none;
  align-items:center;
  justify-content:center;
  padding:20px;
  z-index:9999;
}

.modal-box {
  background:#fff;
  width:100%;
  max-width:520px;
  border-radius:14px;
  padding:26px 24px 32px;
  position:relative;
  max-height:80vh;
  overflow-y:auto;
  box-shadow:0 15px 30px rgba(0,0,0,0.35);
}

.modal-close {
  position:absolute;
  top:10px;
  right:16px;
  font-size:26px;
  background:none;
  border:none;
  cursor:pointer;
  color:#444;
}

.modal-content {
  margin-top:14px;
  font-size:14px;
  color:#333;
  line-height:1.55;
}

/* ================= MOBILE ================= */
@media(max-width:768px){

  .footer-inner {
    flex-direction:column;
    text-align:center;
    gap:18px;
  }

  .footer-company {
    text-align:center !important;   /* 모바일에서는 중앙 정렬 */
  }

  .footer-bottom .ft-link {
    margin:0 6px;
  }
}
