.swiper {
    width: 100%;
    height: 435px;
    margin-top: 40px;
    background-color: #fff;
    border-radius: 20px;
   
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    border-bottom: 1px solid #242424;
    box-sizing: border-box;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 상담현황 아이템 스타일 */
.consultation-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
    color: #242424;
}
.consultation-item span{
    display: block;
}
.consultation-item .name {
    font-size: 20px;
    font-weight: 500;
    color: #242424;
    flex: 1;
    text-align: left;
}

.consultation-item .date {
    font-size: 20px;
    color: #242424;
    flex: 1;
    text-align: center;
}

.consultation-item .status {
    width: 115px;
    height: 40px;
    font-size: 20px;
    padding: 6px 12px;
    border-radius: 12px;
    font-weight: 500;
    flex: 1;
    text-align: center;
    line-height: 30px;
}
.consultation-item .flex_center{
    gap: 15px;
   
}
.status.completed {
    background: #007bff;
    color: #fff;
}

.status.waiting {
    background: #dc3545;
    color: #fff;
}


.floating{
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
}
.floating img{
    display: block;
    width: 100%;
}


/* 전체 레이아웃 */
.main {
    width: 100%;
    min-height: 100vh;
    color: #fff;
}

.sec{
    width: 100%;
    max-width: 1200px;
    margin: auto;
}
.flex_center{
    display: flex;
    align-items: center;
    justify-content: center;
}






/* 헤더 스타일 */
header {
    width: 100%;
    padding: 10px 15px;
background: rgba(255, 122, 0, 0.5);
    position: fixed;
    left: 0; top: 0;
    box-sizing: border-box;
    z-index: 9999;
}

.hd_inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hd_inner img {
    height: 70px;
}

.nav ul {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav a {
    color: #fff;
    text-decoration: none;
    font-size: 24px;
    transition: color 0.3s;
}

.nav a:hover {
    color: #ff6b35;
}

/* 셀프가입하기 버튼 애니메이션 */
.nav .ani a {
    position: relative;
    background: transparent;
    color: #fff;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 24px;
    transition: all 0.3s ease;
    overflow: hidden;
    display: inline-block;
    border: 2px solid transparent;
}

.nav .ani a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid transparent;
    border-radius: 8px;
    background: linear-gradient(45deg, #ff7a00, #fba226, #ff6b35, #ff7a00);
    background-size: 400% 400%;
    animation: borderRotate 2s linear infinite;
    z-index: 1;
}

.nav .ani a::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    border-radius: 6px;
    z-index: 2;
}

.nav .ani a span {
    position: relative;
    z-index: 3;
}

.nav .ani a:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3);
}

@keyframes borderRotate {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* 섹션 스타일 */

.sec01 img, 
.sec05 img,
.footer img{
    width: 100%;
    height: auto;
    display: block;
}




.sec02{
    background: url(../img/sec02_bg.png) no-repeat;
    background-position: center;
    background-size: cover;
}
/* 숫자 애니메이션 영역 */
.num_ani {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 40px;
}

.num_box {
    width: 100%;
    max-width: 370px;
    height: 324px;
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    border: 1px solid #fff;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.num_box .flex_center{
    align-items: end;
}
.num_box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.number {
    display: block;
    font-size: 100px;
    font-weight: bold;
    color: #fff;
    font-family: 'Arial', sans-serif;
}

.num_box p {
    font-size: 32px;
    color: #bebebe;
    line-height: 1.4;
    font-weight: bold;
}
.num_box .small{
    font-size: 70px;
    font-weight: bold;
    color: #BEBEBE;
    margin-bottom: 15px;
}


.sec02{
    height: 1400px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sec02 img{margin: auto; display: block;}
.sec02 .sec02_inner{
    width: 100%;
}
.sec02 .swiper{
    margin-top: 30px;
}





.sec03{
    padding: 150px 0;
}
.sec03 .sec03_inner > img{
    display: block;
    margin: 0 auto 30px;
}





/* 반응형 디자인 */
@media (max-width: 1200px) {
    .wrap {
        max-width: 100%;
    }
    
    /* 헤더 반응형 */
    header {
        padding: 1.5vh 3vw;
    }
    
    .hd_inner img {
        height: 8vh;
    }
    
    .nav ul {
        gap: 3vw;
    }
    
    .nav a {
        font-size: 2.5vw;
    }
    
    /* 셀프가입하기 버튼 반응형 */
    .nav .ani a {
        padding: 1.5vh 3vw;
        font-size: 2.5vw;
        border-radius: 1vw;
    }
    
    .nav .ani a::before {
        border-radius: 1vw;
    }
    
    .nav .ani a::after {
        top: 0.2vw;
        left: 0.2vw;
        right: 0.2vw;
        bottom: 0.2vw;
        border-radius: 0.8vw;
    }
    
    /* 섹션 반응형 */
    
    /* 숫자 애니메이션 반응형 */
    .num_ani {
        gap: 3vw;
        margin-top: 5vh;
    }
    
    .num_box {
        max-width: 30vw;
        height: 35vw;
        padding: 3vh 2vw;
        border-radius: 2vw;
    }
    
    .number {
        font-size: 12vw;
    }
    
    .num_box p {
        font-size: 3vw;
    }
    
    .num_box .small {
        font-size: 24px;
        margin-bottom: 7px;
    }
    
    /* 스와이퍼 반응형 */
    .swiper {
        height: 45vh;
        margin-top: 5vh;
        border-radius: 2.5vw;
    }
    .sec02{
        height: unset;
        padding: 10vw 0;
    }
    .swiper-slide {
        padding: 0 2vw;
    }
    
    .consultation-item {
        padding: 2vh 2vw;
    }
    
    .consultation-item .name {
        font-size: 2vw;
    }
    
    .consultation-item .date {
        font-size: 2vw;
    }
    
    .consultation-item .status {
        width: 90px;
        height: 30px;
        line-height: 20px;
        font-size: 2vw;
        padding: 0.8vh 1.5vw;
        border-radius: 2.5vw;
    }
    
    /* 상담신청 폼 반응형 */
    .consultation-form {
        padding: 5vh 4vw;
        border-radius: 2.5vw;
        max-width: 60vw;
        margin-left: 4vw;
    }
    
    .form-section {
        margin-bottom: 3vh;
    }
    
    .form-section h3 {
        font-size: 2.2vw;
        margin-bottom: 2vh;
    }
    
    .form-section label {
        font-size: 1.8vw;
        margin-bottom: 1vh;
    }
    
    .form-section input[type="text"],
    .form-section input[type="date"],
    .form-section input[type="time"] {
        padding: 1.5vh 2vw;
        border-radius: 1vw;
        font-size: 1.6vw;
    }
    
    .phone-input-group {
        gap: 1vw;
    }
    
    .time-input-group {
        gap: 2.5vw;
    }
    
    .checkbox-label {
        font-size: 1.6vw;
        margin-bottom: 1vh;
    }
    
    .checkmark {
        width: 2vw;
        height: 2vw;
        border-radius: 0.4vw;
        margin-right: 1.5vw;
    }
    
    .radio-label {
        font-size: 1.6vw;
        margin-bottom: 0.8vh;
    }
    
    .radio-mark {
        width: 1.8vw;
        height: 1.8vw;
        margin-right: 1.5vw;
    }
    
    .submit-btn {
        padding: 2vh;
        border-radius: 1.5vw;
        font-size: 2vw;
    }
    .sec02 .swiper{
        width: 95%;
    }
}

.only_m{display: none !important;}
@media (max-width: 768px) {
    .only_pc{display: none !important;}
    .only_m{display: block !important;}
    header .nav li:nth-child(1),
    header .nav li:nth-child(2){
        display: none;
    }
    .swiper {
        height: 55vh;
    }
    .sec03{
        padding: 15vw 15px;
    }
    .sec03 .sec03_inner > img{
        display: block;
        margin: 0 auto 30px;
        width: 60%;
    }
    .sec03 .sec03_inner .flex_center > img{
        width: 100%;
    }
    .sec03 .sec03_inner > .flex_center{
        flex-direction: column;
    }
    .num_ani {
        gap: 2vw;
        padding: 0 15px;
    }
    
    .num_box {
        padding: 25px 15px;
    }
    
    .number {
        font-size: 36px;
    }
    
    .nav ul {
        gap: 20px;
    }

    .consultation-item .name {
        font-size: 3vw;
    }
    
    .consultation-item .date {
        font-size: 3vw;
    }
    
    .consultation-item .status {
        font-size: 3vw;
    }

    .sec02 img{
        width: 60%;
    }
}

/* 상담신청 폼 스타일 */
.consultation-form {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px;
    margin-left: 40px;
}

.form-section {
    margin-bottom: 15px;
}

.form-section h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.form-section label {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
}

.form-section input[type="text"],
.form-section input[type="date"],
.form-section input[type="time"] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.form-section input:focus {
    outline: none;
    border-color: #6c5ce7;
    box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.1);
}

/* 연락처 입력 그룹 */
.phone-input-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.phone-input-group input {
    flex: 1;
    text-align: center;
}

.phone-separator {
    color: #666;
    font-weight: 500;
}

/* 상담시간 입력 그룹 */
.time-input-group {
    display: flex;
    gap: 20px;
}

.date-input,
.time-input {
    flex: 1;
}

/* 체크박스 스타일 */
.checkbox-group {
    margin-top: 10px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    color: #333;
    margin-bottom: 8px;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 16px;
    height: 16px;
    border: 2px solid #ddd;
    border-radius: 3px;
    margin-right: 12px;
    position: relative;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #6c5ce7;
    border-color: #6c5ce7;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 4px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* 라디오 버튼 스타일 */
.radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 10px;
}

.visit-path-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
}

.radio-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    color: #333;
    margin-bottom: 5px;
}

.radio-label input[type="radio"] {
    display: none;
}

.radio-mark {
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid #ddd;
    border-radius: 50%;
    margin-right: 12px;
    position: relative;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.radio-label input[type="radio"]:checked + .radio-mark {
    border-color: #6c5ce7;
}

.radio-label input[type="radio"]:checked + .radio-mark::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: #6c5ce7;
    border-radius: 50%;
}

/* 호버 효과 */
.checkbox-label:hover .checkmark,
.radio-label:hover .radio-mark {
    border-color: #6c5ce7;
    transform: scale(1.1);
}

/* 포커스 효과 */
.checkbox-label:focus-within .checkmark,
.radio-label:focus-within .radio-mark {
    box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.1);
}

/* 상담신청 버튼 */
.submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #6c5ce7, #a29bfe);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(108, 92, 231, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

.sec04 .flex_center{
    margin-bottom: 50px;
}
.sec04 .full_vd.flex_center{
    margin-bottom: 20px;
}
.sec04 .flex_column .imgbox img{
    display: block;
    margin: 30px auto 0;
    transition: all 0.3s;
}
.sec04 .flex_column .imgbox img:hover{
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3);
}
.sec04 .grid_box{
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 200px;
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(2,1fr);
}
.sec04 .full_vd video{
    width: 100%;
    max-width: 1200px;
    margin: auto;
}
.sec04 .table{
    display: block;
    margin: 20px auto 50px;
}


/* 반응형 디자인 */
@media (max-width: 768px) {
    .consultation-form {
        margin-left: 0;
        margin-top: 30px;
        padding: 30px 20px;
    }
    
    .time-input-group {
        flex-direction: column;
        gap: 15px;
    }
    
    .visit-path-group {
        grid-template-columns: 1fr;
    }


    .sec04 .grid_box{
        margin: 0 auto 20vw;
    }
    .sec04 .flex_center{
        margin-bottom: 5vw;
    }
    .sec04 .flex_center img{
        width: 90%;
        margin: auto;
        display: block;
    }
    .sec04 .flex_center .imgbox img{
        width: 60%;
    }
    .sec04 iframe{
        width: 92%;
        height: 250px;
        margin: auto;
    }
    .sec04 .grid_box{
        grid-template-columns: repeat(1,1fr);
    }
    .sec04 .table{
        width: 92%;
        display: block;
        margin: 20px auto 30px;
    }
    .floating{
        right: 15px;
        width: 17vw;
    }


}
