body {font-family: 'Pretendard', sans-serif !important;padding-top:136px;}
#wrap {width:100% !important;}
#header {
    width:100% !important;
    max-width:unset !important;
    float:unset !important;
    height:unset !important;
    display:flex !important;
    align-items: center !important;
    justify-content: center !important;
}
#container {
    float:unset !important;margin:0 auto;margin-top:20px;padding-bottom:0px !important;
}
.contents {max-width:unset;padding:0px;}
.floating-chat-button {background:none;box-shadow:none;}
.floating-chat-message {background:#FFAEF7;color:#0C0B15;}
.floating-chat-message::after {border-color:#FFAEF7 transparent  transparent  transparent;}
.floating-container {
    position: absolute;
}

.chat-header {background:#80B7FF;}
.chat-header strong {color:#000;}
.send-btn {background:#80B7FF;color:#000;}

.plan_floating{ position: fixed; top: calc(305px + var(--top-banner-height)); left: calc(50% - 522px - 120px);z-index: 101;}
.search_floating{ position: fixed; top: calc(305px + var(--top-banner-height)); left: calc(50% - 520px - 120px) !important;z-index: 101;}

.floating-container.is-fixed {
    position: fixed;
    top: 70px !important; /* 헤더 높이 + 여백 */
}

.search_layerall {margin-left:20px;}

@keyframes floating {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes floating-smooth {
    0% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(5px, -10px);
    }
    50% {
        transform: translate(0, -20px);
    }
    75% {
        transform: translate(-5px, -10px);
    }
    100% {
        transform: translate(0, 0);
    }
}

/* 회전도 추가하려면 */
.floating-badge-img {
    animation: floating-rotate 9s ease-in-out infinite;
}

@keyframes floating-rotate {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-10px) rotate(2deg);
    }
    50% {
        transform: translateY(-20px) rotate(0deg);
    }
    75% {
        transform: translateY(-10px) rotate(-2deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}

/* ========== 헤더 시작 ========== */
.header-blue {
    width: 100%;
    position:fixed;
    top:0px;
    z-index:9999;
}

.header-blue .top-bar {
    background-color: #4193FF;
    height:56px;
    display:flex;
    align-items: center;
    justify-content: center;
}

.header-blue .top-bar .container {
    width: 1320px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

/* 왼쪽 메뉴 */
.header-blue .top-bar .left-menu {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-blue .top-bar .left-menu .link {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    transition: opacity 0.2s;
}

.header-blue .top-bar .left-menu .link:hover {
    opacity: 0.8;
}

.header-blue .top-bar .left-menu .divider {
    border-right:solid 1px #ddd;
    height:12px;
}

/* 오른쪽 메뉴 영역 */
.header-blue .top-bar .right-menu {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left:auto;
}

/* 검색박스 */
.header-blue .top-bar .right-menu .search-box {
    position: relative;
    width: 260px;
    height:30px;
    display:inline-flex;
}

.header-blue .top-bar .right-menu .search-box input {
    height:30px;
    border: none;
    border-radius: 20px;
    font-size: 13px;
    outline: none;
    padding-left:20px;
    color:#687B9E;
}

.header-blue .top-bar .right-menu .search-box input::placeholder {
    color: #999;
    font-size:13px;
}

.header-blue .top-bar .right-menu .search-box .search-btn {
    position: absolute;
    right:0px;
    top: 50%;
    width:40px;
    height:30px;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    display:inline-flex;
    align-items: center;
    justify-content: center;
}

.header-blue .top-bar .right-menu .search-box .search-btn img {width:24px;}

.header-blue .top-bar .right-menu .search-box .search-btn svg {
    fill: #4a90e2;
}

/* 우측 유틸 메뉴 */
.header-blue .top-bar .right-menu .utils {
    display: flex;
    gap: 14px;
    align-items: center;
}

.header-blue .top-bar .right-menu .divider {
    border-right:solid 1px #ddd;
    height:12px;
}

.header-blue .top-bar .right-menu .utils .link {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    white-space: nowrap;
    transition: opacity 0.2s;
}

.header-blue .top-bar .right-menu .utils .link:hover {
    opacity: 0.8;
}

/* ========== 메인 네비게이션 (흰색 배경) ========== */
.header-blue .navigation {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: relative;
    z-index:90;
    display:flex;
    align-items: center;
    justify-content: center;
}

.header-blue .navigation .container {
    width: 1320px;

    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height:80px;
    padding-bottom:0px;
}

/* 로고 (왼쪽) */
.header-blue .navigation .logo {
    flex-shrink: 0;
    display:inline-flex;
    align-items: center;
}

.header-blue .navigation .logo a {
    display: block;
}
.header-blue .navigation .logo img {
    width:110px;
    height:auto;
}


/* 메인 메뉴 (가운데) */
.header-blue .navigation .menu {
    display:flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    height:100%;
    position: absolute;
    left: 50%;
    z-index:100;
    transform: translateX(-50%);
}

.header-blue .navigation .menu > .item {
    position: relative;
    height:100%;
    align-items: center;
    justify-content: center;
    display:inline-flex;
    width:125px;
    z-index:100;
}


.header-blue .navigation .menu > .item > .link {
    display: block;
    color: #040524;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: color 0.2s;
}

.header-blue .navigation .menu > .item > .link:hover {
    color: #FF52D4;
}

.header-blue .navigation .menu > .item.active > .link {
    color: #FF52D4;
    font-weight: 600;
}

/* 메뉴 전체 버튼 (오른쪽) */
.header-blue .navigation .menu-all-btn {
    background:#FF63D8;
    color: #ffffff;
    border: none;
    width:124px;
    height:41px;
    display:inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 22px;
    padding:0px;
    font-size: 18px;
    font-weight:500;
    cursor: pointer;
    margin-left:auto;
}

.header-blue .navigation .menu-all-btn img {
    width:20px;
    margin-left:2px;
}

/* ========== 드롭다운 ========== */
.header-blue .navigation .menu > .item .dropdown {
    visibility: hidden;  /* display 대신 visibility 사용 */
    position: absolute;
    top: calc(100% - 10px);
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: #4a90e2;
    border-radius: 15px;
    padding: 20px;
    width: auto;
    white-space: nowrap;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    margin-top: 10px;
    min-width:170px;
    /* 애니메이션 */
    opacity: 0;
    transition: opacity 0.2s ease, transform 0.5s ease, visibility 0.3s;
}

.header-blue .navigation .menu > .item .dropdown::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 10px solid #4a90e2;
}

/* 전체 메뉴가 활성화되지 않았을 때만 dropdown 표시 */
.header-blue .mega-menu:not(.active) ~ .container .menu > .item.active:hover .dropdown,
.header-blue .mega-menu:not(.active) ~ .container .menu > .item:hover .dropdown {
    visibility: visible;
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* 또는 더 간단하게 body에 클래스 추가 방식 */
body:not(.mega-menu-open) .header-blue .navigation .menu > .item.active:hover .dropdown,
body:not(.mega-menu-open) .header-blue .navigation .menu > .item:hover .dropdown {
    visibility: visible;
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.header-blue .navigation .menu > .item .dropdown .list {
    list-style: none;
}

.header-blue .navigation .menu > .item .dropdown .list > .item {
    margin-bottom: 2px;
}

.header-blue .navigation .menu > .item .dropdown .list > .item:last-child {
    margin-bottom: 0;
}

.header-blue .navigation .menu > .item .dropdown .list > .item > .link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 15px;
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    font-weight:600;
    border-radius: 8px;
    transition: background-color 0.2s;
    white-space: nowrap; /* 링크 텍스트도 줄바꿈 방지 */
}

.header-blue .navigation .menu > .item .dropdown .list > .item > .link:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* ========== 메가 메뉴 (전체 메뉴) ========== */
.header-blue .mega-menu {
    display: none;
    position: absolute;
    top:calc(100% - 1px);
    left: 0;
    width: 100%;
    background: #ffffff;
    border-top: 1px solid #D7E9FF;
    border-bottom:solid 1px #eee;
    z-index: 999;
}

.header-blue .mega-menu.active {
    display: block;
}

.header-blue .mega-menu .container {
    max-width: 1008px;
    margin: 0 auto;
    padding:10px;
    float:unset;
}

.header-blue .mega-menu .columns {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap:0px;
}

.header-blue .mega-menu .columns .column {
    display: flex;
    flex-direction: column;
    gap:0px;
}

.header-blue .mega-menu .columns .column > .item {
    color: #3A5079;
    text-decoration: none;
    font-size: 15px;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.2s;
    display:inline-flex;
    align-items: center;
    justify-content: center;
    letter-spacing: -1px;
}

.header-blue .mega-menu .columns .column > .item:hover {
    background-color: #f5f5f5;
    color: #4a90e2;
    font-size: 15px;
}

.header-blue .mega-menu .columns .column > .item.highlight {
    color: #4a90e2;
    background-color: #e8f4fd;
    font-weight: 600;
    font-size: 15px;
}

.header-blue .mega-menu .columns .column > .item.highlight:hover {
    background-color: #d0e8f9;
}

/* ========== 히어로 배너 ========== */
.hero-banner {
    background: linear-gradient(135deg, #2d1b69 0%, #1a0f3d 100%);
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.hero-banner .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero-banner .content {
    color: #ffffff;
    z-index: 10;
}

.hero-banner .content .title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
}

.hero-banner .content .subtitle {
    font-size: 18px;
    opacity: 0.9;
}

.hero-banner .decoration {
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
}

/* ========== 헤더 종료 ========== */

/* ========== 푸터 시작 ========== */
/* footer.css */
.footer-blue {
    background-color: #1a2332;
    color: #ffffff;
    padding:30px 0px;
    clear:both;
    height:310px;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    position: relative;
    left: 0;
    margin-top:60px;
}

.footer-blue .container {
    max-width: 1320px;
    margin: 0 auto;
    display:block;
    float:unset;
    padding-bottom:0px;
}

.footer-blue .top {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.footer-blue .nav {
    display: flex;
    gap: 40px;
    align-items: center;
}

.footer-blue .nav-item {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: opacity 0.3s;
}

.footer-blue .nav-item:hover {
    opacity: 0.7;
}

.footer-blue .content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-blue .left {
    flex: 1;
}

.footer-blue .company-name {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 20px 0;
    color:#fff;
}

.footer-blue .info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-blue .info-text {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.footer-blue .email {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: underline;
}

.footer-blue .email:hover {
    color: #ffffff;
}

.footer-blue .copyright {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin: 15px 0 0 0;
}

.footer-blue .right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 25px;
}

.footer-blue .customer {
    text-align: right;
}

.footer-blue .customer-title {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 8px 0;
    color:#fff;
}

.footer-blue .customer-time {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 15px 0;
}

.footer-blue .kakao-btn {
    background-color: #fee500;
    color: #000000;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.footer-blue .kakao-btn:hover {
    background-color: #fdd835;
}

.footer-blue .social {
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer-blue .social-link {
    display: inline-block;
    transition: opacity 0.3s;
}

.footer-blue .social-link:hover {
    opacity: 0.7;
}

.footer-blue .social-icon {
    width: 32px;
    height: 32px;
    display: block;
}

/* 반응형 */
@media (max-width: 768px) {
    .footer-blue {
        padding: 30px 20px;
    }

    .footer-blue .nav {
        flex-wrap: wrap;
        gap: 20px;
    }

    .footer-blue .nav-item {
        font-size: 13px;
    }

    .footer-blue .content {
        flex-direction: column;
        gap: 30px;
    }

    .footer-blue .right {
        align-items: flex-start;
        width: 100%;
    }

    .footer-blue .customer {
        text-align: left;
    }

    .footer-blue .customer-title {
        font-size: 24px;
    }
}
/* ========== 푸터 종료 ========== */