/* ========================================
   Footer
======================================== */

#footer {
    background-color: #2c2c2c;
    color: #ffffff;
    font-family: 'Noto Sans KR', sans-serif;
    margin: 0;
    border-top: 1px solid #4a4a4a;
}

/* 상단 링크 영역 (화면 전체 너비) */
#footer .footer-top {
    border-bottom: 1px solid #4a4a4a;
    padding: 20px 0;
}

#footer .footer-top .inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

#footer .footer-top a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.3s ease;
}

#footer .footer-top a:hover {
    color: #D4AF5F;
}

#footer .inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* 로고 */
#footer .logo {
    margin-bottom: 40px;
}

#footer .logo img {
    height: auto;
    width: 130px;
}

/* 정보 영역 */
#footer .info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

#footer .info p {
    color: #AAAAAA;
    font-size: 11px;
    font-weight: 400;
    margin: 0;
}

#footer .info p span {
    margin-right: 20px;
}

#footer .info p span:last-child {
    margin-right: 0;
}

/* 저작권 */
#footer .copy {
    margin-top: 40px;
}

#footer .copy p {
    color: #AAAAAA;
    font-size: 12px;
    font-weight: 400;
    margin: 0;
}

/* Footer 반응형 디자인 */

/* 태블릿 (768px ~ 1199px) */
@media (max-width: 1199px) and (min-width: 768px) {
    #footer .footer-top {
        padding: 18px 0;
    }
    
    #footer .footer-top .inner {
        padding: 0 30px;
        gap: 25px;
    }
    
    #footer .footer-top a {
        font-size: 13px;
    }
    
    #footer .inner {
        padding: 50px 30px 30px;
    }
    
    #footer .logo {
        margin-bottom: 18px;
    }
    
    #footer .logo img {
        width: 130px;
        height: auto;
    }
    
    #footer .info p {
        font-size: 11px;
    }
    
    #footer .copy p {
        font-size: 11px;
    }
}

/* 모바일 (480px ~ 767px) */
@media (max-width: 767px) and (min-width: 480px) {
    #footer .footer-top {
        padding: 15px 0;
    }
    
    #footer .footer-top .inner {
        padding: 0 20px;
        gap: 20px;
    }
    
    #footer .footer-top a {
        font-size: 13px;
    }
    
    #footer .inner {
        padding: 40px 20px 30px;
    }
    
    #footer .logo {
        margin-bottom: 20px;
    }
    
    #footer .logo img {
        width: 130px;
        height: auto;
    }
    
    #footer .info {
        gap: 2px;
    }
    
    #footer .info p {
        font-size: 11px;
    }
    
    #footer .info p span {
        margin-right: 5px;
    }
    
    #footer .copy {
        margin-top: 20px;
    }
    
    #footer .copy p {
        font-size: 11px;
    }
}

/* 작은 모바일 (480px 이하) */
@media (max-width: 479px) {
    #footer .footer-top {
        padding: 12px 0;
    }
    
    #footer .footer-top .inner {
        padding: 0 15px;
        gap: 15px;
    }
    
    #footer .footer-top a {
        font-size: 12px;
    }
    
    #footer .inner {
        padding: 30px 15px 20px;
    }
    
    #footer .logo {
        margin-bottom: 20px;
    }
    
    #footer .logo img {
        width: 130px;
        height: auto;
    }
    
    #footer .info {
        gap: 2px;
    }
    
    #footer .info p {
        font-size: 10px;
    }
    
    #footer .info p span {
        margin-right: 5px;
    }
    
    #footer .copy {
        margin-top: 20px;
    }
    
    #footer .copy p {
        font-size: 10px;
    }
}

/* ========================================
   Section 6: 상담신청 폼
======================================== */

.section6 {
    background-color: #F5F5F5;
    padding: 80px 0;
    width: 100%;
}

.section6_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.section6_content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section6_title {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #333333;
    margin: 0 0 20px 0;
    line-height: 1.2;
    text-align: left;
    width: 100%;
    max-width: 1200px;
}

.section6_subtitle {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 22px;
    font-weight: 400;
    color: #58595B;
    margin: 0 0 50px 0;
    line-height: 1.6;
    text-align: left;
    width: 100%;
    max-width: 1200px;
}

.section6_form {
    width: 100%;
    max-width: 1200px;
}

.section6_form_row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.section6_form_group {
    margin-bottom: 15px;
}

.section6_form_row .section6_form_group {
    flex: 1;
    margin-bottom: 0;
}

.section6_label {
    display: block;
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #333333;
    margin: 0 0 10px 0;
    line-height: 1.5;
}

.section6_input,
.section6_textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #DDDDDD;
    border-radius: 0;
    background-color: #ffffff;
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #333333;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.section6_input:focus,
.section6_textarea:focus {
    outline: none;
    border-color: #BA884B;
    box-shadow: 0 0 0 2px rgba(186, 136, 75, 0.2);
}

.section6_input::placeholder,
.section6_textarea::placeholder {
    color: #999999;
}

.section6_textarea {
    min-height: 150px;
    resize: vertical;
    line-height: 1.6;
    white-space: pre-wrap;
}

.section6_checkbox_group {
    display: flex;
    flex-direction: row;
    gap: 30px;
    flex-wrap: wrap;
}

.section6_checkbox_label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #333333;
    cursor: pointer;
}

.section6_checkbox {
    width: 20px;
    height: 20px;
    cursor: pointer;
    flex-shrink: 0;
    accent-color: #BA884B;
}

.section6_consent_group {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.section6_privacy_link {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #00A0E9;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.section6_privacy_link:hover {
    color: #0088C7;
    text-decoration: underline;
}

.section6_submit_btn {
    width: 100%;
    padding: 18px 0;
    background-color: #BA884B;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-family: 'Paperozi', sans-serif;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.section6_submit_btn:hover {
    background-color: #A6783F;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(186, 136, 75, 0.3);
}

.section6_submit_btn:active {
    transform: translateY(0);
}

/* 태블릿 (768px ~ 1199px) */
@media (max-width: 1199px) and (min-width: 768px) {
    .section6 {
        padding: 60px 0;
    }
    
    .section6_container {
        padding: 0 30px;
    }
    
    .section6_title {
        font-size: 26px;
    }
    
    .section6_subtitle {
        font-size: 16px;
    }
    
    .section6_form {
        /* max-width: 700px; */
    }
    
    .section6_form_row {
        gap: 15px;
    }
}

/* 모바일 (480px ~ 767px) */
@media (max-width: 767px) and (min-width: 480px) {
    .section6 {
        padding: 50px 0;
    }
    
    .section6_container {
        padding: 0 20px;
    }
    
    .section6_title {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .section6_subtitle {
        font-size: 15px;
        margin-bottom: 40px;
    }
    
    .section6_form_row {
        flex-direction: column;
        gap: 0;
        margin-bottom: 0;
    }
    
    .section6_form_row .section6_form_group {
        margin-bottom: 15px;
    }
    
    .section6_form_group {
        margin-bottom: 25px;
    }
    
    .section6_label {
        font-size: 15px;
        margin-bottom: 8px;
    }
    
    .section6_input,
    .section6_textarea {
        padding: 12px 15px;
        font-size: 15px;
    }
    
    .section6_textarea {
        min-height: 120px;
    }
    
    .section6_checkbox_group {
        flex-direction: column;
        gap: 8px;
    }
    
    .section6_checkbox_label {
        font-size: 15px;
    }
    
    .section6_checkbox {
        width: 18px;
        height: 18px;
    }
    
    .section6_consent_group {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        margin-bottom: 12px;
    }
    
    .section6_privacy_link {
        font-size: 13px;
        margin-left: 28px;
    }
    
    .section6_submit_btn {
        padding: 16px 0;
        font-size: 16px;
    }
}

/* 작은 모바일 (480px 이하) */
@media (max-width: 479px) {
    .section6 {
        padding: 40px 0;
    }
    
    .section6_container {
        padding: 0 15px;
    }
    
    .section6_title {
        font-size: 21px;
        font-weight: 700;
        margin-bottom: 12px;
    }
    
    .section6_subtitle {
        font-size: 16px;
        font-weight: 400;
        color: #58595B;
        margin-bottom: 35px;
    }
    
    .section6_form_row {
        flex-direction: column;
        gap: 0;
        margin-bottom: 0;
    }
    
    .section6_form_row .section6_form_group {
        margin-bottom: 10px;
    }
    
    .section6_form_group {
        margin-bottom: 22px;
    }
    
    .section6_label {
        font-size: 14px;
        margin-bottom: 8px;
    }
    
    .section6_input,
    .section6_textarea {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .section6_textarea {
        min-height: 120px;
    }
    
    .section6_checkbox_group {
        flex-direction: column;
        gap: 8px;
    }
    
    .section6_checkbox_label {
        font-size: 14px;
    }
    
    .section6_checkbox {
        width: 18px;
        height: 18px;
    }
    
    .section6_consent_group {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        margin-bottom: 12px;
    }
    
    .section6_privacy_link {
        font-size: 12px;
        margin-left: 26px;
    }
    
    .section6_submit_btn {
        padding: 15px 0;
        font-size: 15px;
    }
}

/* ========================================
   플로팅 버튼
======================================== */

.floating_buttons {
    position: fixed;
    right: 20px;
    bottom: 80px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

.floating_btn {
    width: 50px;
    height: 50px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.floating_btn:hover {
    transform: scale(1.1);
}

.floating_btn:active {
    transform: scale(0.95);
}

.floating_btn img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.floating_btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

/* 태블릿 (768px ~ 1199px) */
@media (max-width: 1199px) and (min-width: 768px) {
    .floating_buttons {
        right: 15px;
        bottom: 60px;
        gap: 10px;
    }
    
    .floating_btn {
        width: 50px;
        height: 50px;
    }
}

/* 모바일 (480px ~ 767px) */
@media (max-width: 767px) and (min-width: 480px) {
    .floating_buttons {
        right: 15px;
        bottom: 60px;
        gap: 10px;
    }
    
    .floating_btn {
        width: 40px;
        height: 40px;
    }
}

/* 작은 모바일 (480px 이하) */
@media (max-width: 479px) {
    .floating_buttons {
        right: 15px;
        bottom: 50px;
        gap: 8px;
    }
    
    .floating_btn {
        width: 40px;
        height: 40px;
    }
}
