    /* =========================================
12. 우측 하단 고정 플로팅 버튼
========================================= */
.fixed-quick-wrapper {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

/* 공통 버튼 스타일 */
.quick-btn {
    border: none;
    outline: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

/* 1) 온라인 문의 버튼 (검은색 원형) */
.inquiry-btn {
    width: 90px;
    height: 90px;
    background-color: #333333;
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
}
.inquiry-btn .icon-wrap {
    width: 28px;
    height: 28px;
    margin-bottom: 5px;
}
.inquiry-btn .icon-wrap svg {
    width: 100%; height: 100%;
}
.inquiry-btn span {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: -0.5px;
}
.inquiry-btn:hover {
    background-color: #111111;
    transform: translateY(-3px);
}

/* 2) 탑 버튼 (파란색 원형) */
.top-btn {
    width: 60px;
    height: 60px;
    background-color: #6ba4e0; /* 이미지와 유사한 하늘/파란색 */
    border-radius: 50%;
    color: #ffffff;
    opacity: 0;
    visibility: hidden; /* 처음 최상단일 때는 숨김 */
    transform: scale(0.8);
}
.top-btn svg {
    width: 24px;
    height: 24px;
}
.top-btn:hover {
    background-color: #4a8cd4;
    transform: translateY(-3px) scale(1);
}

/* 스크롤 시 등장할 클래스 */
.top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

/* 모바일 반응형 조절 */
@media screen and (max-width: 1022px) {
    .fixed-quick-wrapper {
        right: 15px;
        bottom: 15px;
        gap: 10px;
    }
    .inquiry-btn { width: 75px; height: 75px; }
    .inquiry-btn span { font-size: 11px; }
    .top-btn { width: 50px; height: 50px; }
}
  /* 푸터 전체 배경 및 패딩 설정 */
.site-footer {
  width: 100%;
  background-color: #1e1e1e; /* 이미지의 짙은 차콜/검은색 배경 */
  padding: 60px 0;
  color: #888888;
  font-family: 'Noto Sans KR', sans-serif;
  box-sizing: border-box;
}

/* 내부 컨테이너 정렬 (최대 가로폭 1400px 맞춤) */
.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: flex-start;
    gap: 80px;
    box-sizing: border-box;
}

/* 1) 로고 스타일링 */
.footer-logo-box {
    flex-shrink: 0;
}
.f-logo-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}
.f-logo-circle {
    width: 42px;
    height: 42px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    letter-spacing: -0.5px;
}
.f-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}
.f-brand {
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.5px;
}
.f-company {
    color: #ffffff;
    font-size: 12px;
    font-weight: 400;
    margin-top: 2px;
    opacity: 0.8;
}

/* 2) 우측 정보 영역 스타일링 */
.footer-info-box {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* 푸터 링크 */
.footer-links {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
}
.footer-links .bold-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
}
.footer-links .bold-link:hover {
    text-decoration: underline;
}
.footer-links .bar {
    color: #555555;
    font-size: 12px;
}

/* 사업자 세부 정보 */
.footer-details {
    font-size: 14px;
    line-height: 1.8;
    color: #aaaaaa;
}
.footer-details p {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    column-gap: 15px;
}
.footer-details p span {
    position: relative;
}

/* 카피라이트 */
.footer-copyright {
    margin: 5px 0 0 0;
    font-size: 13px;
    color: #666666;
    letter-spacing: 0.3px;
}

/* =========================================
   푸터 모바일 반응형 대응 (1022px 이하)
========================================= */
@media screen and (max-width: 1022px) {
    .site-footer {
        padding: 40px 0;
    }
    .footer-container {
        flex-direction: column;
        gap: 30px;
    }
    .footer-details p {
        flex-direction: column;
        row-gap: 5px;
    }
}
