/* =========================================
           0. RESET & GLOBAL UTILS
           ========================================= */
* {
    margin: 0;
    padding: 0;
    font-family: 'Pretendard', sans-serif;
    box-sizing: border-box;
}

:root {
    --color-primary: #00489e;
    --color-primary-dark: #00306e;
    --color-accent: #73bb2e;
    --color-navy: #1a1f3c;
    --color-dark: #1a1f3c;
    --color-text-body: #475569;
    --color-bg-light: #f8fafc;
    --color-white: #ffffff;
    --color-border: #e2e8f0;

    --max-width: 1280px;
    --section-spacing: 140px;

    --radius-md: 16px;
    --radius-lg: 24px;

    --shadow-card: 0 20px 40px -10px rgba(35, 48, 117, 0.08);
    --shadow-float: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

body {
    background: #ffffff;
    line-height: 1.6;
    color: #334155;
    word-break: keep-all;
    overflow-x: hidden;
}

ul,
li {
    list-style: none;
}

a {
    color: inherit;
    text-decoration: none;
    transition: 0.3s;
}

/* =========================================
   [MERGED] layout.css contents
   ========================================= */
.header-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 3000;
    width: 100%;
    height: 90px;
    padding: 0 40px;
    background: transparent;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.header-wrap.scrolled {
    height: 80px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    background: rgba(255, 255, 255, 0.98);
}

@media (max-width: 1024px) {
    .header-wrap {
        position: absolute;
        height: 70px;
        padding: 0 20px;
    }

    .header-wrap.scrolled {
        position: fixed;
        height: 70px;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    }
}

.header-logo {
    width: auto;
    height: 50px;
}

.header-logo img {
    width: auto;
    height: 100%;
    object-fit: contain;
}

/* GNB PC */
.gnb-pc {
    display: flex;
    gap: 50px;
    height: 100%;
}

.gnb-pc>li {
    display: flex;
    align-items: center;
    position: relative;
    height: 100%;
}

.gnb-pc>li>a {
    padding: 10px 0;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    transition: color 0.3s;
}

.header-wrap.scrolled .gnb-pc>li>a {
    color: #222;
}

.gnb-pc>li:hover>a {
    color: #0084cd;
}

.gnb-pc .submenu {
    position: absolute;
    top: 100%;
    left: 50%;
    min-width: 180px;
    visibility: hidden;
    padding: 15px 0;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: #fff;
    transition: all 0.3s;
    transform: translateX(-50%) translateY(10px);
    opacity: 0;
}

.gnb-pc>li:hover .submenu {
    visibility: visible;
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.gnb-pc .submenu li a {
    display: block;
    padding: 10px 25px;
    font-size: 18px;
    font-weight: 500;
    color: #555;
    transition: all 0.2s;
}

.gnb-pc .submenu li a:hover {
    background: #f9fbfd;
    color: #0084cd;
}

@media (max-width: 1024px) {
    .gnb-pc {
        display: none;
    }
}

/* Header Util Btns */
.header-util {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn-consult {
    padding: 10px 24px;
    border-radius: 30px;
    background: #0084cd;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    transition: background 0.3s;
}

.btn-consult:hover {
    background: #00306e;
}

@media (max-width: 1024px) {
    .btn-consult {
        display: none;
    }
}

.btn-mo-open {
    display: none;
    font-size: 28px;
    color: #222;
}

@media (max-width: 1024px) {
    .btn-mo-open {
        display: block;
        color: #fff;
    }

    .header-wrap.scrolled .btn-mo-open {
        color: #222;
    }
}

/* Mobile Nav */
.gnb-mo-wrap {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
    width: 100%;
    height: 100vh;
    visibility: hidden;
    background: #0f172a;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    opacity: 0;
}

.gnb-mo-wrap.active {
    visibility: visible;
    opacity: 1;
}

.gnb-mo-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    padding: 30px 24px 80px;
    background: transparent;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.mo-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.mo-header h2 img {
    height: 40px;
    filter: brightness(0) invert(1);
}

.btn-mo-close {
    padding: 10px;
    font-size: 32px;
    color: #ffffff;
}

.gnb-mo-list {
    display: flex;
    gap: 15px;
    flex-direction: column;
}

.gnb-mo-list>li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.gnb-mo-list>li>a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.gnb-mo-list>li>a i {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.5);
    transition: transform 0.4s ease;
}

.gnb-mo-list>li.on>a i {
    color: #ffffff;
    transform: rotate(180deg);
}

.gnb-mo-sub {
    display: none;
    padding: 5px 0 25px 15px;
}

.gnb-mo-sub li a {
    display: block;
    padding: 12px 0;
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s;
}

.gnb-mo-sub li a:hover {
    color: #ffffff;
}

.gnb-mo-list>li.on .gnb-mo-sub {
    display: block;
    animation: fadeInDown 0.4s ease forwards;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#contents {
    width: 100%;
    min-height: 750px;
    margin: 0 auto;
}

#contents .page {
    width: 100%;
    margin: 0 auto;
    margin-top: 40px;
}

#contents .contents {
    width: 1200px;
    min-height: 750px;
    margin: 0 auto;
}


#md {
    position: relative;
    width: 100%;
    padding: 95px 0;
    background: url("/img/banner/md_bg.jpg") center/cover no-repeat;
    box-sizing: border-box;
}

#md ul {
    width: 65%;
    max-width: 700px;
    margin: 0 auto;
    padding: 50px 0;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
    text-align: center;
    box-sizing: border-box;
}

#md ul>h1 {
    padding: 0 0 10px 0;
    font-size: 28px;
    font-weight: 400;
    color: #ddd;
}

#md ul>h2 {
    width: 85%;
    margin: 0 auto;
    padding: 0 0 30px 0;
    font-size: 42px;
    font-weight: 600;
    line-height: 1.3;
    word-break: keep-all;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 30px;
}

#md ul>h2 span {
    color: #009fe8;
}

#md ul li {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: flex-start;
    width: 85%;
    margin: 0 auto 24px;
    text-align: left;
}

#md ul li i {
    flex-shrink: 0;
    font-size: 26px;
    color: #009fe8;
}

#md ul li h1 {
    gap: 15px;
    align-items: center;
    margin: 0;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: -0.5px;
}

#md ul li h1 span {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-left: 10px;
}

#gallery {
    width: 1200px;
    height: 520px;
    margin: 0 auto;
    overflow: hidden;
    margin-bottom: 20px;
}

#gallery>.idx-gallery-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding-bottom: 20px;
    border-bottom: 2px solid #222;
    margin-bottom: 25px;
}

#gallery>.idx-gallery-head h1 {
    margin: 0;
    font-size: 32px;
    font-weight: 800;
    line-height: 1.2;
    color: #111;
    letter-spacing: -1px;
}

#gallery>.idx-gallery-head h1 span {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #00489e;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

#gallery>h1 {
    display: none;
}

#board {
    width: 100%;
    height: auto;
    padding: 170px 0;
    background: url("/img/banner/board_bg.jpg") no-repeat 50% 0;
    box-sizing: border-box;
}

#board .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 1200px;
    margin: 0 auto;
}

.reservation-rolling {
    display: flex;
    flex-direction: column;
    width: 705px;
    height: 402px;
    padding: 25px 40px;
    border: 1px solid #eee;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    background: #fff;
    box-sizing: border-box;
}

.rolling-title {
    margin-bottom: 21px;
}

.rolling-title h2 {
    font-size: 26px;
    font-weight: 800;
    line-height: 31px;
    color: #111;
    letter-spacing: -1px;
}

.rolling-list-wrap {
    flex: 1;
    position: relative;
    overflow: hidden;
}

#reservationList {
    width: 100%;
    transition: margin-top 0.5s ease-in-out;
}

#reservationList li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 50px;
    border-bottom: 1px solid #f5f5f5;
}

#reservationList li:last-child {
    border-bottom: none;
}

.r-cat {
    width: 85px;
    padding: 5px 0;
    border-radius: 20px;
    background: #f0f0f0;
    font-size: 14px;
    font-weight: 600;
    color: #888;
    text-align: center;
    letter-spacing: -0.5px;
}

.r-txt {
    flex: 1;
    padding: 0 15px;
    overflow: hidden;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    text-align: left;
    letter-spacing: -0.5px;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.r-loc {
    width: 120px;
    font-size: 15px;
    font-weight: 400;
    color: #999;
    text-align: center;
}

.r-state {
    width: 80px;
    padding: 6px 0;
    border-radius: 20px;
    background: #00489e;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    letter-spacing: -0.5px;
}

#customer {
    display: flex;
    justify-content: center;
    flex-direction: column;
    position: relative;
    width: 463px;
    height: 402px;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(26, 80, 161, 0.2);
    background: linear-gradient(135deg, #00489e 0%, #00306e 100%);
    text-align: left;
    letter-spacing: -0.5px;
    box-sizing: border-box;
}

#customer .cs-top h1 {
    font-size: 18px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
    margin-top: 0;
}

#customer .cs-top h2 {
    display: block;
    margin: 0;
    padding: 0;
    border-radius: 0;
    background: none;
    font-family: 'Roboto', sans-serif;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    color: #fff;
    letter-spacing: -1px;
}

#customer .cs-top p {
    font-size: 16px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 15px;
}

#customer .cs-bottom {
    margin-top: 35px;
}

#customer .cs-sns {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

#customer .cs-sns a {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    height: 50px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #111;
    text-decoration: none;
    transition: transform 0.2s;
}

#customer .cs-sns a:hover {
    transform: translateY(-3px);
}

#customer .cs-sns a i {
    font-size: 20px;
    margin-right: 8px;
}

#customer .cs-sns .kakao-btn {
    background: #fae100;
    color: #3a2929;
}

#customer .cs-sns .blog-btn {
    background: #03c75a;
    color: #fff;
}

#customer .email {
    margin: 0;
    font-size: 15px;
    color: #ffffff;
}

#customer .email span {
    padding: 3px 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.2);
    font-size: 13px;
    font-weight: 800;
    margin-right: 8px;
}

#online {
    position: relative;
    width: 100%;
    height: auto;
    padding: 100px 0;
    background: url("/img/banner/online_bg.jpg") no-repeat 50% 0;
    background-size: cover;
    box-sizing: border-box;
}

#online::before {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 30, 70, 0.85), rgba(0, 0, 0, 0.6));
    content: '';
}

#online .online-inner {
    display: flex;
    gap: 60px;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

/* 왼쪽 텍스트 영역 */
.online-text {
    flex: 0 0 38%;
    text-align: left;
}

.online-badge {
    display: inline-block;
    padding: 6px 18px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.08);
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

#online .online-text h1 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.25;
    color: #fff;
    text-align: left;
    margin-bottom: 16px;
}

.online-desc {
    font-size: 17px;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 32px;
}

.online-phone {
    display: flex;
    gap: 14px;
    align-items: center;
    padding: 20px 24px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    margin-bottom: 28px;
    backdrop-filter: blur(5px);
}

.online-phone ul {
    display: flex;
    gap: 10px;
    flex-direction: column;
}

.online-phone ul li {
    display: flex;
    gap: 14px;
    align-items: center;
}

.online-phone i {
    font-size: 28px;
    color: #34b8ff;
}

.online-phone span {
    font-size: 28px;
    font-weight: 500;
    color: rgba(255, 255, 255, 1);
    margin-right: 6px;
}

.online-phone strong {
    font-family: 'Roboto', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: #34b8ff;
    letter-spacing: -0.5px;
}

.online-features {
    display: flex;
    gap: 10px;
    flex-direction: column;
}

.online-features li {
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
}

.online-features li i {
    font-size: 18px;
    color: #34b8ff;
}

/* 오른쪽 폼 카드 */
.online-form-card {
    flex: 1;
    max-width: 580px;
    padding: 35px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(5px);
}

.online-form-card .form-container {
    width: 100%;
    max-width: none;
    height: auto;
    margin: 0;
}

/* 폼 카드 내부 스타일 오버라이드 */
.online-form-card .sc-contact-form.sc-compact .sc-field label {
    font-size: 13px;
    font-weight: 600;
    color: #334155;
}

.online-form-card .sc-contact-form.sc-compact .sc-field input,
.online-form-card .sc-contact-form.sc-compact .sc-field textarea,
.online-form-card .sc-contact-form.sc-compact .sc-field select {
    padding: 12px 14px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: #f8fafc;
    font-size: 14px;
    color: #1e293b;
}

.online-form-card .sc-contact-form.sc-compact .sc-field input:focus,
.online-form-card .sc-contact-form.sc-compact .sc-field textarea:focus {
    box-shadow: 0 0 0 3px rgba(0, 72, 158, 0.1);
    background: #fff;
    border-color: #00489e;
}

.online-form-card .sc-contact-form.sc-compact .sc-privacy-box {
    max-height: 80px;
    padding: 12px;
    background: #f8fafc;
    border-color: #e2e8f0;
}

.online-form-card .sc-contact-form.sc-compact .sc-privacy-text {
    font-size: 12px;
    color: #64748b;
}

.online-form-card .sc-contact-form.sc-compact .sc-agree {
    font-size: 13px;
    color: #334155;
}

.online-form-card .sc-contact-form.sc-compact .sc-req {
    color: #ef4444;
}

.online-form-card .sc-form-grid {
    gap: 14px;
    margin-bottom: 16px;
}

.online-form-card .sc-privacy {
    margin: 14px 0;
}

.online-form-card .sc-submit-btn {
    padding: 15px;
    border-radius: 10px;
    font-size: 16px;
}

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

.form-row input,
.form-row textarea {
    width: 100%;
    padding: 20px;
    border: none;
    border-radius: 8px;
    background: #fff;
    font-family: inherit;
    font-size: 16px;
    color: #333;
    box-sizing: border-box;
}

.form-row textarea {
    resize: none;
    padding-top: 20px;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
    color: #999;
}

.form-row input:focus,
.form-row textarea:focus {
    outline: 2px solid #00489e;
}

.form-agreement {
    display: flex;
    align-items: center;
    font-size: 15px;
    color: #fff;
    text-align: left;
    margin-bottom: 20px;
}

.form-agreement label {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.form-agreement input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    margin-right: 10px;
}

.form-agreement .chk-text {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.form-submit {
    width: 100%;
}

.form-submit .btn-submit {
    width: 100%;
    padding: 25px;
    border: none;
    border-radius: 12px;
    background: #00489e;
    font-family: inherit;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    transition: background 0.3s;
    cursor: pointer;
}

.form-submit .btn-submit:hover {
    background: #00306e;
}

@media (max-width: 1200px) {

    #visual .wrap,
    #gallery,
    #board .wrap {
        width: 100%;
        padding: 0 20px;
        box-sizing: border-box;
    }



    #visual .wraps {
        width: 100%;
        padding: 0 20px;
        box-sizing: border-box;
    }
}

@media (max-width: 1024px) {
    #md {
        padding: 60px 0;
    }

    #md ul {
        width: 80%;
        padding: 40px 20px;
    }

    #board {
        padding: 80px 0;
    }

    #board .wrap {
        gap: 40px;
        flex-direction: column;
    }

    .reservation-rolling,
    #customer {
        width: 100%;
        height: auto;
        padding: 30px;
        box-sizing: border-box;
    }

    #online .online-inner {
        gap: 40px;
        flex-direction: column;
        width: 100%;
        padding: 0 24px;
        text-align: center;
    }

    .online-text {
        flex: auto;
        text-align: center;
    }

    #online .online-text h1 {
        font-size: 34px;
        text-align: center;
    }

    .online-phone {
        justify-content: center;

    }

    .online-features {
        align-items: center;
    }

    .online-form-card {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .form-row {
        gap: 15px;
        flex-direction: column;
        margin-bottom: 15px;
    }

    .form-row input,
    .form-row textarea {
        padding: 15px;
        font-size: 15px;
    }

    #online {
        padding: 60px 0;
    }

    #online .online-text h1 {
        font-size: 26px;
        line-height: 1.3;
        word-break: keep-all;
    }

    .online-desc {
        font-size: 15px;
        margin-bottom: 24px;
    }

    .online-phone ul {
        gap: 5px;
    }

    .online-phone ul li {
        gap: 5px;
    }

    .online-phone i {
        font-size: 18px;
    }

    .online-phone span {
        font-size: 20px;
    }


    .online-phone strong {
        font-size: 22px;
    }

    .online-form-card {
        padding: 24px;
        border-radius: 16px;
    }

    #md ul {
        width: 92%;
        padding: 30px 15px;
    }

    #md ul>h1 {
        font-size: 20px;
        word-break: keep-all;
    }

    #md ul>h2 {
        width: 100%;
        font-size: 28px;
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    #md ul li {
        gap: 12px;
        width: 100%;
        margin-bottom: 20px;
        align-items: flex-start;
        justify-content: center;
    }

    #md ul li i {
        font-size: 22px;
        margin-top: 2px;
    }

    #md ul li h1 {
        gap: 4px;
        font-size: 20px;
    }

    #md ul li h1 span {
        font-size: 15px;
        display: block;
    }

    #gallery {
        height: auto;
    }

    #gallery>.idx-gallery-head {
        gap: 10px;
        align-items: flex-start;
        flex-direction: column;
        padding-bottom: 15px;
        margin-bottom: 15px;
    }

    #gallery>.idx-gallery-head h1 {
        font-size: 24px;
    }

    #gallery>.idx-gallery-head h1 span {
        font-size: 13px;
        margin-bottom: 4px;
    }

    #board {
        padding: 50px 0;
    }

    .reservation-rolling,
    #customer {
        padding: 20px;
    }

    #customer .cs-top h2 {
        font-size: 34px;
        line-height: 1.1;
        margin-top: 5px;
    }

    #customer .cs-top p {
        font-size: 14px;
        margin-top: 10px;
    }

    #customer .cs-bottom {
        margin-top: 25px;
    }

    #customer .email {
        display: block;
        font-size: 14px;
        word-break: break-all;
        margin-top: 10px;
    }

    /* 모바일 실시간 예약현황 글자 겹침 방지 최적화 */
    .r-loc {
        display: none;
    }

    .r-cat {
        width: 75px;
        font-size: 13px;
    }

    .r-state {
        width: 70px;
        font-size: 13px;
    }

    .r-txt {
        padding: 0 10px;
        font-size: 14px;
    }
}

/* ========================================= */

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

button {
    border: none;
    background: none;
    font-family: inherit;
    cursor: pointer;
}

/* P Tag Reset (To use as div alternative if needed, but per guide mainly div/span used) */
p {
    margin: 0;
    padding: 0;
}


.inner {
    position: relative;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Line Break Utility */
.pc_br {
    display: inline;
}

.m_br {
    display: none;
}

@media (max-width: 1024px) {
    .pc_br {
        display: none;
    }

    .m_br {
        display: inline;
    }
}

/* Animation */
.fade-up {
    transition: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    transform: translateY(30px);
}

.fade-up.active {
    opacity: 1;
    transform: translateY(0);
}

/* Unified Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header .tag-sm {
    display: inline-block;
    padding: 6px 24px;
    border-radius: 100px;
    background: rgba(26, 80, 161, 0.1);
    font-size: 18px;
    font-weight: 700;
    color: #00D2FF;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.section-header .tag-sm.blue {
    background: rgba(26, 80, 161, 0.1);
    color: #00489e;
}

.section-header .tag-sm.white {
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.section-header .title_main {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--color-dark);
    margin-bottom: 16px;
}

.section-header .desc {
    max-width: 600px;
    margin: 0 auto;
    font-size: 18px;
    color: #64748b;
}

@media (max-width: 768px) {
    .section-header .title_main {
        font-size: 24px;
        line-height: 1.4;
    }

    .section-header .desc {
        padding: 0 20px;
        /* Add padding for better reading */
        font-size: 18px;
        word-break: keep-all;
    }
}

/* =========================================
           2. 헤더 (Header)
           ========================================= */
.header-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    height: 90px;
    padding: 0 40px;
    background: transparent;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.header-wrap.scrolled {
    height: 80px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    background: rgba(255, 255, 255, 0.98);
}

@media (max-width: 1024px) {
    .header-wrap {
        position: absolute;
        height: 70px;
        padding: 0 20px;
    }

    .header-wrap.scrolled {
        position: fixed;
        height: 70px;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    }
}

.header-logo {
    width: auto;
    height: 50px;
}

@media (max-width: 1024px) {
    .header-logo {
        height: 40px;
    }
}

.header-logo img {
    width: auto;
    height: 100%;
    object-fit: contain;
}

/* GNB PC */
.gnb-pc {
    display: flex;
    gap: 50px;
    height: 100%;
}

.gnb-pc>li {
    display: flex;
    align-items: center;
    position: relative;
    height: 100%;
}

.gnb-pc>li>a {
    padding: 10px 0;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    transition: color 0.3s;
}

.header-wrap.scrolled .gnb-pc>li>a {
    color: #222;
}

.gnb-pc>li:hover>a {
    color: #00489e;
}

.gnb-pc .submenu {
    position: absolute;
    top: 100%;
    left: 50%;
    min-width: 180px;
    visibility: hidden;
    padding: 15px 0;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: #fff;
    transition: all 0.3s;
    transform: translateX(-50%) translateY(10px);
    opacity: 0;
}

.gnb-pc>li:hover .submenu {
    visibility: visible;
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.gnb-pc .submenu li a {
    display: block;
    padding: 10px 25px;
    font-size: 18px;
    font-weight: 500;
    color: #555;
    transition: all 0.2s;
}

.gnb-pc .submenu li a:hover {
    background: #f9fbfd;
    color: #00489e;
}

@media (max-width: 1024px) {
    .gnb-pc {
        display: none;
    }
}

/* Header Util Btns */
.header-util {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn-consult {
    padding: 10px 24px;
    border-radius: 30px;
    background: #00489e;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    transition: background 0.3s;
}

.btn-consult:hover {
    background: #00306e;
}

@media (max-width: 1024px) {
    .btn-consult {
        display: none;
    }
}

.btn-mo-open {
    display: none;
    font-size: 28px;
    color: #222;
}

@media (max-width: 1024px) {
    .btn-mo-open {
        display: block;
        color: #fff;
        /* White on transparent background */
    }

    .header-wrap.scrolled .btn-mo-open {
        color: #222;
        /* Black on white sticky header */
    }
}

/* Mobile Nav (Full Screen Dark Theme) */
.gnb-mo-wrap {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
    width: 100%;
    height: 100vh;
    visibility: hidden;
    background: #0f172a;
    /* Dark Navy Background */
    transition: opacity 0.4s ease, visibility 0.4s ease;
    opacity: 0;
}

.gnb-mo-wrap.active {
    visibility: visible;
    opacity: 1;
}

.gnb-mo-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    padding: 30px 24px 80px;
    background: transparent;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.mo-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
}

.mo-header h2 img {
    height: 40px;
    filter: brightness(0) invert(1);
    /* Ensure logo is white */
}

.btn-mo-close {
    padding: 10px;
    font-size: 32px;
    color: #ffffff;
}

.gnb-mo-list {
    display: flex;
    gap: 15px;
    flex-direction: column;
}

.gnb-mo-list>li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.gnb-mo-list>li>a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.gnb-mo-list>li>a i {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.5);
    transition: transform 0.4s ease;
}

.gnb-mo-list>li.on>a i {
    /* Changed from active to on based on header.js */
    color: #ffffff;
    transform: rotate(180deg);
}

.gnb-mo-sub {
    display: none;
    padding: 5px 0 25px 15px;
}

.gnb-mo-sub li a {
    display: block;
    padding: 12px 0;
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s;
}

.gnb-mo-sub li a:hover {
    color: #ffffff;
}

.gnb-mo-list>li.on .gnb-mo-sub {
    display: block;
    animation: fadeInDown 0.4s ease forwards;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================
           3. HERO SECTION (Dynamic)
           ========================================= */
/* 1. HERO SECTION */
.hero-sec {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: linear-gradient(to bottom, #001233, #000000);
}

.hero-pagination {
    display: flex;
    gap: 12px;
    position: absolute;
    bottom: 50px;
    left: 50%;
    z-index: 10;
    transform: translateX(-50%);
}

.hero-bullet {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.hero-bullet.active {
    width: 40px;
    border-radius: 6px;
    background: #ffffff;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    animation: moveBg 10s infinite alternate;
    transition: opacity 1.2s ease-in-out;
    opacity: 0;
}

.hero-slide.active {
    z-index: 1;
    opacity: 1;
}

/* Hero Background Images */
.hero-slide.slide-1 {
    background: url("/img/main_slide/m1.webp") 50% 50% no-repeat;
}

.hero-slide.slide-2 {
    background: url("/img/main_slide/m2.webp") 50% 50% no-repeat;
}

.hero-slide.slide-3 {
    background: url("/img/main_slide/m3.webp") 50% 50% no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.35));
}

@keyframes moveBg {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.1);
    }
}


.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 10;
    width: 100%;
    padding: 0 20px;
    text-align: center;
    transform: translate(-50%, -50%);
}

.hero-badge {
    display: inline-block;
    font-size: 22px;
    font-weight: 700;
    color: #00489e;
    letter-spacing: 10px;
    margin-bottom: 20px;
}

.hero-txt {
    width: 100%;
    text-align: center;
    margin-bottom: 0;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.2;
    color: #fff;
    transition: 0.8s ease-out;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
}

.hero-desc {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    transition: 0.8s 0.2s ease-out;
    opacity: 0;
    transform: translateY(30px);
}

.hero-txt.active .hero-title,
.hero-txt.active .hero-desc {
    opacity: 1;
    transform: translateY(0);
}

.hero-btn {
    transition: 0.8s 0.4s ease-out;
    margin-top: 35px;
    opacity: 0;
    transform: translateY(30px);
}

.hero-txt.active .hero-btn {
    opacity: 1;
    transform: translateY(0);
}

.hero-btn a {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50px;
    background: transparent;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.hero-btn a i {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.hero-btn a:hover {
    background: #fff;
    color: #00489e;
    border-color: #fff;
}

.hero-btn a:hover i {
    transform: translateX(5px);
}

/* Enhanced Quote Form */
.quote-form {
    display: inline-flex;
    gap: 10px;
    align-items: flex-end;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
}

.q-field {
    text-align: left;
}

.q-label {
    display: block;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 5px;
    padding-left: 5px;
}

.q-input,
.q-select {
    width: 180px;
    height: 50px;
    padding: 0 15px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    outline: none;
    background: rgba(0, 0, 0, 0.4);
    font-size: 18px;
    color: #fff;
    transition: 0.3s;
}

.q-input:focus,
.q-select:focus {
    background: rgba(0, 0, 0, 0.6);
    border-color: var(--color-primary);
}

.btn-submit {
    height: 50px;
    padding: 0 35px;
    border-radius: 8px;
    background: var(--color-primary);
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    transition: 0.3s;
}

.btn-submit:hover {
    background: #00306e;
    transform: translateY(-2px);
}


/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        justify-content: center;
        flex-direction: column;
        text-align: center;
        padding-bottom: 0px;
        margin-top: 0;
    }

    .hero-txt {
        width: 100%;
        min-height: auto;
        text-align: center;
        margin-bottom: 40px;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-desc {
        font-size: 18px;

        br {
            display: none;
        }

        /* Show in single line or allow wrap */
    }

    .quote-form {
        align-items: stretch;
        flex-direction: column;
        width: 90%;
        max-width: 400px;
    }

    .q-input,
    .q-select {
        width: 100%;
    }
}

@media (max-width: 767px) {

    .hero-content {
            position: absolute;
    top: 40%;
    }

    .hero-sec {
        height: 100vh;
        overflow: hidden
    }

    .hero-slide.slide-1 {
        background: url("/img/main_slide/m11.jpg") 50% 50% no-repeat;
        background-size: cover;
    }

    .hero-slide.slide-2 {
        background: url("/img/main_slide/m22.jpg") 50% 50% no-repeat;
        background-size: cover;
    }

    .hero-slide.slide-3 {
        background-size: cover;
        background: url("/img/main_slide/m33.jpg") 50% 50% no-repeat;
    }


    .hero-title {
        font-size: 32px;
        word-break: keep-all;
    }

    .hero-desc {
        padding: 0 10px;
        font-size: 18px;
        word-break: keep-all;
    }

    .hero-badge {
        margin-bottom: 15px;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 32px;
        word-break: keep-all;
        /* Prevent awkward breaks */
    }

    .hero-desc {
        font-size: 18px;
        word-break: keep-all;
        margin-bottom: 30px;
    }

    .quote-form {
        flex-direction: column;
        padding: 20px;
        margin-top: 20px;
    }
}



.section-padding {
    padding: 120px 0;
}

@media (max-width: 1024px) {
    .section-padding {
        padding: 80px 0;
    }
}

@media (max-width: 767px) {
    .section-padding {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 30px;
    }
}

/* 타이포그래피 */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header .sub-title {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #00489e;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-header .main-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    color: #111;
    margin-bottom: 16px;
    /* Reduced from 20px */
}

.section-header .desc {
    font-size: 18px;
    line-height: 1.6;
    color: #666;
}

@media (max-width: 1024px) {
    .section-header .main-title {
        font-size: 32px;
    }

    .section-header .desc {
        padding: 0 20px;
        /* Add padding for better reading */
        font-size: 18px;
        word-break: keep-all;
    }
}

@media (max-width: 767px) {
    .section-header {
        margin-bottom: 40px;
    }

    .section-header .main-title {
        font-size: 26px;
    }

    .section-header .desc {
        font-size: 18px;
    }
}


/* =========================================
           3. WHY US & SERVICES (Standard)
           ========================================= */
.why-sec,
.srv-sec {
    padding: var(--section-spacing) 0;
}

.why-sec {
    position: relative;
    padding: var(--section-spacing) 0;
    overflow: hidden;
    background: url('/img/why_bg.png') no-repeat 50% 50%;
    background-attachment: fixed;
    background-size: cover;
}

.why-sec::before {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    content: '';
}

.why-sec .inner {
    position: relative;
    z-index: 1;
}

/* Why Section Header Overrides */
.why-sec .section-header .tag-sm {
    background: rgba(255, 255, 255, 0.1);
}

.why-sec .section-header .title_main {
    color: #fff;
}

.why-sec .section-header .desc {
    color: rgba(255, 255, 255, 0.8);
}

.why-grid {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(3, 1fr);
}

.why-card {
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.1);
    transition: 0.4s ease;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.why-card:hover {
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 12px 48px 0 rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-10px);
}

.why-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border: 1px solid rgba(0, 64, 155, 0.9);
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background: rgba(0, 64, 155, 0.2);
    margin-bottom: 24px;
}

.why-icon i {
    font-size: 38px;
    color: #fff;
}

.why-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.why-card p {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

.srv-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(4, 1fr);
}

.srv-card {
    position: relative;
    height: 500px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
}

.srv-bg {
    position: absolute;
    background-position: center;
    background-size: cover;
    transition: transform 0.6s;
    inset: 0;
}

.srv-overlay {
    position: absolute;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.95), transparent);
    inset: 0;
}

.srv-info {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    padding: 40px 30px;
    color: #fff;
}

.srv-icon {
    display: block;
    font-size: 36px;
    color: var(--color-primary);
    margin-bottom: 15px;
}

.srv-tit {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.srv-desc {
    display: block;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 20px;
}

.srv-link {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
}

.srv-card:hover .srv-bg {
    transform: scale(1.1);
}

@media (max-width: 1024px) {

    .why-grid,
    .srv-grid {
        grid-template-columns: repeat(2, 1fr);
    }



}

@media (max-width: 767px) {

    .why-grid,
    .srv-grid {
        gap: 20px;
        grid-template-columns: 1fr;
    }

    .why-card,
    .srv-card {
        height: auto;
        min-height: 300px;
    }
}


/* =========================================
           3. SERVICES SECTION (.srv-sec)
           ========================================= */
.srv-sec {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 140px 0;
    padding-left: 24px;
    padding-right: 24px;
}

@media (max-width: 1024px) {
    .srv-sec {
        padding: 100px 24px;
    }
}

@media (max-width: 768px) {
    .srv-sec {
        padding: 80px 24px;
    }
}

.srv-sec .head-area {
    text-align: center;
    margin-bottom: 50px;
    /* Reduced from 60px */
}

.srv-sec .tag-sm {
    display: inline-block;
    padding: 6px 26px;
    border-radius: 100px;
    background: rgba(14, 165, 233, 0.1);
    font-size: 18px;
    font-weight: 700;
    color: #0ea5e9;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.srv-sec .tag-sm.blue {
    background: rgba(26, 80, 161, 0.1);
    color: #00489e;
}

.srv-sec .title_main {
    font-size: 36px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 16px;
    /* Reduced from 20px */
}

@media (max-width: 1024px) {
    .srv-sec .title_main {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .srv-sec .title_main {
        font-size: 24px;
    }
}

.srv-sec .desc-sub {
    max-width: 600px;
    margin: 0 auto;
    font-size: 18px;
    /* 본문 기준 */
    color: #64748b;
}

@media (max-width: 1024px) {
    .srv-sec .desc-sub {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .srv-sec .desc-sub {
        font-size: 18px;
    }
}

/* Grid */
.srv-sec .grid-wrap {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1024px) {
    .srv-sec .grid-wrap {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .srv-sec .grid-wrap {
        grid-template-columns: 1fr;
    }
}

.srv-sec .card-item {
    position: relative;
    height: 500px;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
}

/* Background Images via Classes */
.srv-sec .bg-1 {
    background: url('/img/banner_01.png') no-repeat 50% 50%;
    background-size: cover;
}

.srv-sec .bg-2 {
    background: url('/img/banner_02.png') no-repeat 50% 50%;
    background-size: cover;
}

.srv-sec .bg-3 {
    background: url('/img/banner_03.png') no-repeat 50% 50%;
    background-size: cover;
}

.srv-sec .bg-4 {
    background: url('/img/banner_04.png') no-repeat 50% 50%;
    background-size: cover;
}

.srv-sec .card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
}

.srv-sec .card-item:hover .card-bg {
    transform: scale(1.1);
}

.srv-sec .card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent 90%);
    transition: 0.4s;
}



.srv-sec .txt-box {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    padding: 40px 30px;
    color: #ffffff;
    transition: 0.4s;
    transform: translateY(0);
}

.srv-sec .card-item:hover .txt-box {
    transform: translateY(-10px);
}

.srv-sec .icon-lg {
    font-size: 32px;
    color: #38bdf8;
    margin-bottom: 15px;
}

.srv-sec .card-tit {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

@media (max-width: 1024px) {
    .srv-sec .card-tit {
        font-size: 18px;
    }

    .srv-sec .card-item {
        height: 300px;
    }


}

.srv-sec .card-desc {
    max-height: 100px;
    /* Visible by default */
    overflow: hidden;
    font-size: 18px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
    transition: 0.4s;
    opacity: 1;
    /* Visible by default */
    margin-bottom: 10px;
}

.srv-sec .card-item:hover .card-desc {
    /* Hover state remains same or slightly enhanced */
    opacity: 1;
}

.srv-sec .link-more {
    display: inline-flex;
    gap: 5px;
    align-items: center;
    font-size: 18px;
    font-weight: 700;
    color: #38bdf8;
    transition: 0.4s;
    margin-top: 20px;
    opacity: 1;
    /* Visible by default */
    transform: translateY(0);
    /* Visible by default */
}

.srv-sec .card-item:hover .link-more {
    opacity: 1;
    transform: translateY(0);
}




.tech-sec {
    padding: var(--section-spacing) 0;
    background: var(--color-bg-light);
}

.tech-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(2, 1fr);
}

.tech-card {
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    position: relative;
    height: 300px;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    overflow: hidden;
    background: #0f172a;
    transition: 0.3s;
}

.tech-card:hover {
    box-shadow: var(--shadow-float);
    transform: translateY(-8px);
}

.tech-bg {
    position: absolute;
    background-position: center;
    background-size: cover;
    transition: 0.5s;
    inset: 0;
    opacity: 0.9;
}

.tech-card:hover .tech-bg {
    opacity: 0.4;
    transform: scale(1.05);
}



.tech-bg-1 {
    background-image: url('/img/icon_01.png');
}

.tech-bg-2 {
    background-image: url('/img/icon_02.jpg');
}

.tech-bg-3 {
    background-image: url('/img/icon_03.png');
}

.tech-bg-4 {
    background-image: url('/img/icon_04.png');
}

.tech-overlay {
    position: absolute;
    z-index: 1;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.1) 100%);
    inset: 0;
}

.tech-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.tech-tag {
    display: block;
    font-size: 18px;
    font-weight: 800;
    color: #00d2ff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.tech-tit {
    font-size: 24px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 10px;
}

.tech-desc {
    font-size: 18px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

.tech-icon-float {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2;
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    font-size: 24px;
    color: #fff;
    backdrop-filter: blur(5px);
}

@media (max-width: 1024px) {
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .tech-grid {
        grid-template-columns: 1fr;
    }
}


/* =========================================
           5. GALLERY
           ========================================= */
.gal-sec {
    padding: var(--section-spacing) 0;

    overflow: hidden;
    background: #fff;
}

.marquee-wrap {
    display: flex;
    gap: 30px;
    width: max-content;
    padding: 20px 0;
    animation: scrollLeft 40s linear infinite;
}

.marquee-wrap:hover {
    animation-play-state: paused;
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-33.333%);
        /* 1/3 of total width (one set) */
    }
}

.gal-item {
    width: 400px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    background: #fff;
}

.gal-img {
    height: 240px;
    overflow: hidden;
}

.gal-img img {
    transition: 0.5s;
}

.gal-item:hover .gal-img img {
    transform: scale(1.1);
}

.gal-info {
    padding: 24px;
}

.gal-cat {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
    margin-bottom: 6px;
}

.gal-tit {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-dark);
}

.gal-loc {
    display: flex;
    gap: 4px;
    align-items: center;
    font-size: 18px;
    color: #94a3b8;
    margin-top: 5px;
}

@media (max-width: 768px) {
    .gal-item {
        width: 300px;
    }
}


/* =========================================
           6. LIVE BOOKING STATUS (New Design: Professional Schedule)
           ========================================= */
.live-sec {
    padding: var(--section-spacing) 0;

    background: #f8fafc;
}

/* New Style: Clean White Board, not Dark Command Center */
/* New 2-Col Layout for Live Section */
.live-content-wrap {
    display: flex;
    gap: 30px;
    flex-direction: column;
    max-width: 1200px;
    /* 전체 너비를 줄여서 가운데로 집중 */
    margin: 0 auto;
}

.live-links {
    display: flex;
    gap: 15px;
    flex-direction: row;
}

.quick-link-card {
    display: flex;
    align-items: center;
    flex: 1;
    height: 100%;
    padding: 24px;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    background: #fff;
    transition: 0.3s;
}

.quick-link-card:hover {
    box-shadow: var(--shadow-card);
    transform: translateX(10px);
    border-color: var(--color-primary);
}

.quick-link-card .icon-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #f0f9ff;
    font-size: 24px;
    color: var(--color-primary);
    margin-right: 20px;
}

.quick-link-card .ql-text h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 4px;
}

.quick-link-card .ql-text p {
    font-size: 18px;
    color: #64748b;
}

.quick-link-card .arrow {
    font-size: 18px;
    color: #cbd5e1;
    margin-left: auto;
}

/* Booking Board Adjustments */
.booking-board {
    height: 100%;
    margin: 0;
    padding: 60px 90px;
    /* 기존 40px 대신 좌우 여백을 줄이고 상하 좌우 균형을 맞춥니다 */
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    background: #ffffff;
    box-sizing: border-box;
}

.booking-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 5px;
    padding-bottom: 15px;
    border-bottom: 0px solid #f1f5f9;
}

.booking-title {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 24px;
    font-weight: 800;
    /* Bolder for emphasis */
    color: #1a1f3c;
    /* Darker navy for contrast */
    letter-spacing: -0.02em;
}

.booking-title span {
    position: relative;
    z-index: 1;
}

/* Add a subtle highlight behind the title text */
.booking-title span::after {
    position: absolute;
    bottom: 2px;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 10px;
    border-radius: 2px;
    background: rgba(26, 80, 161, 0.1);
    /* Theme blue with transparency */
    content: '';
}

.booking-info {
    font-size: 18px;
    color: #64748b;
}

.list-container {
    position: relative;
    height: 350px;
    /* Add padding to top and bottom to prevent cropping of extreme items */
    padding: 10px 0;
    overflow: hidden;
    /* Use a mask to soften top/bottom edges (optional but recommended for rolling lists) */
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 5%, black 95%, transparent);
    mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
}

.list-track {
    position: relative;
    /* Ensure no margin/padding interference on track itself */
    margin: 0;
    padding: 0;
}

.list-row {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    transition: 0.2s;
    border-bottom: 1px solid #f1f5f9;
}

.list-row:hover {
    background: #f8fafc;
}

.bk-date {
    display: none;
    /* Hide Date Column */
}

.bk-region {
    width: 20%;
    /* Increased */
    font-size: 18px;
    font-weight: 700;
    color: #334155;
}

.bk-service {
    width: 45%;
    /* 다시 너비를 확보하여 텍스트가 잘리지 않도록 함 */
    font-size: 18px;
    color: #475569;
    padding-right: 10px;
}

.bk-user {
    width: 15%;
    font-size: 18px;
    color: #64748b;
    text-align: center;
    /* 고객명 텍스트들을 중앙 정렬 */
}

.bk-status {
    display: flex;
    justify-content: flex-end;
    /* 배지 우측 정렬 유지 */
    width: 20%;
}

.status-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    padding: 6px 0;
    border-radius: 20px;
    font-size: 18px;
    font-weight: 700;
    margin-left: auto;
}

.status-badge.confirmed {
    border: 1px solid #dbeafe;
    background: #eff6ff;
    color: #2563eb;
}

@media (max-width: 1024px) {
    .live-content-wrap {
        grid-template-columns: 1fr;
    }

    .live-links {
        flex-wrap: wrap;
        flex-direction: row;
    }

    .quick-link-card {
        flex: 1;
    }
}

@media (max-width: 767px) {
    .live-links {
        flex-direction: column;
    }

    .booking-title {
        font-size: 18px;
    }

    .bk-region {
        font-size: 18px;
    }

    .bk-service {
        font-size: 18px;
    }
}

/* 예약확정 */
.status-badge.progress {
    border: 1px solid #d1fae5;
    background: #ecfdf5;
    color: #059669;

}

/* 작업중 */
.status-badge.done {
    border: 1px solid #e2e8f0;
    background: #f1f5f9;
    color: #475569;
}

/* 완료 */

@media (max-width: 768px) {
    .booking-board {
        padding: 15px;
    }

    .booking-header {
        gap: 10px;
        align-items: flex-start;
        flex-direction: column;
    }

    .bk-date,
    .bk-user {
        display: none;
    }

    /* Optimized Mobile Layout */
    .list-row {
        gap: 10px;
        padding: 16px 10px;
    }

    .bk-region {
        flex: 0 0 75px;
        width: auto;
        font-size: 16px;
        white-space: nowrap;
    }

    .bk-service {
        flex: 1;
        width: auto;
        font-size: 16px;
        line-height: 1.4;
        word-break: keep-all;
        padding-right: 0;
    }

    .bk-status {
        flex: 0 0 85px;
        width: auto;
    }

    .status-badge {
        width: 100%;
        padding: 6px 0;
        font-size: 14px;
    }
}


/* =========================================
           8. CONTACT & FOOTER
           ========================================= */
.contact-sec {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background: url('/img/online_bg.jpg') no-repeat center/cover;
    background-attachment: fixed;
    /* Parallax effect */
}

.contact-sec::before {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    /* Dark layout */
    content: '';
}

.contact-sec .inner {
    position: relative;
    z-index: 2;
}

.contact-sec .section-header .tag-sm {
    background: rgba(255, 255, 255, 0.1);
    color: #00D2FF;
    border-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
}

.contact-sec .section-header .title_main {
    color: #fff;
}

.contact-sec .section-header .desc {
    color: rgba(255, 255, 255, 0.8);
}

.map-bg {
    display: none;
}

.area-list {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto 50px;
    margin-bottom: 50px;
}

.area-pill {
    padding: 10px 20px;
    border: 1px solid #e2e8f0;
    border-radius: 30px;
    background: #fff;
    font-size: 18px;
    font-weight: 600;
    color: #64748b;
    transition: 0.3s;
}

.area-pill.active {
    background: #eef2ff;
    color: var(--color-navy);
    border-color: var(--color-navy);
}

.cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 10;
    max-width: 850px;
    margin: 0 auto;
    padding: 60px 50px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 1.0);
    /* 반투명 흰색 바탕 */
    backdrop-filter: blur(20px);
    /* 글래스모피즘 (유리 효과) */
    -webkit-backdrop-filter: blur(20px);
}

.cta-box.cta-center {
    gap: 20px;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.cta-box.cta-center .cta-btns {
    justify-content: center;
    width: 100%;
}

.ctt-num {
    margin: 0 0 5px 0;
    padding: 0;
    font-size: 20px;
    font-weight: 700;
    color: #475569;
}

.cta-num {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 25px 0;
    font-size: 72px;
    font-weight: 900;
    line-height: 1;
    color: #00489e;
    letter-spacing: -2px;
}

.cta-num i {
    border-radius: 12px;
    font-size: 64px;
    margin-right: 12px;
}


.btn-online {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    width: 280px;
    margin: 0 auto 30px auto;
    padding: 18px 0;
    border-radius: 100px;
    box-shadow: 0 10px 20px rgba(26, 98, 191, 0.2);
    background: #1a62bf;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-online:hover {
    box-shadow: 0 15px 30px rgba(26, 98, 191, 0.35);
    background: #00489e;
    color: #fff;
    transform: translateY(-4px);
}

.cta-info p {
    font-size: 15px;
    line-height: 1.6;
    color: #64748b;
    margin-bottom: 30px;
}



.cta-btns {
    display: flex;
    gap: 15px;
}

.btn-talk {
    display: flex;
    gap: 8px;
    align-items: center;
    padding: 14px 24px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-talk:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.btn-talk.kakao {
    background: #FEE500;
    color: #3c1e1e;
}

.btn-talk.kakao i {
    font-size: 24px;
}

.btn-talk.naver {
    background: #03C75A;
    color: #fff;
}

.btn-talk.naver i {
    font-size: 24px;
}

footer {
    padding: 80px 0 100px;
    background: #191919;
    font-size: 18px;
    color: #94a3b8;
}

.foot-top {
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.f-logo {
    width: 200px;
}

.f-sns a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: 0.3s;
    margin-left: 10px;
}

.f-info {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}


.f-contact-line {
    display: flex;
    gap: 20px;
    margin-bottom: 10px;
}

@media (max-width: 1024px) {
    .cta-box {
        gap: 30px;
        flex-direction: column;
        padding: 40px 20px;
        text-align: center;
    }

    .ctt-num {
        font-size: 22px;
    }

    .cta-num {
        font-size: 44px;
    }

    .cta-num i {
        font-size: 38px;
    }

    .cta-btns {
        flex-direction: column;
        width: 100%;
    }

    .btn-online {
        width: 90%;
        padding: 10px 0;
    }

    .btn-talk {
        justify-content: center;
        width: 100%;
    }

    .area-list {
        flex-direction: column;
        width: 80%;
        text-align: center;
    }

    /* Footer Responsive */
    footer {
        padding: 50px 0 90px;
        font-size: 15px;
    }

    .foot-top {
        gap: 20px;
        align-items: flex-start;
        flex-direction: column;
    }

    .f-info {
        gap: 10px 15px;
    }

    .f-contact-line {
        gap: 8px;
        flex-direction: column;
    }

    .f-contact-line span {
        line-height: 1.5;
        word-break: keep-all;
    }
}


/* SMILE CLEAN Premium Footer Override */
.ch-footer-wrap {
    padding: 80px 24px 40px;
    background-color: #101828;
    font-family: 'Pretendard', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: -0.01em;
}

.ch-footer-inner {
    display: grid;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    grid-template-columns: 1fr 2fr 1fr;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ch-f-logo {
    margin-bottom: 24px;
}

.ch-f-logo img {
    width: 100%;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.ch-f-slogan {
    font-size: 14px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    word-break: keep-all;
}

.ch-f-info {
    display: flex;
    gap: 12px 30px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.ch-f-info dl {
    display: flex;
    margin: 0;
}

.ch-f-info dt {
    font-weight: 600;
    color: #ffffff;
    margin-right: 8px;
    opacity: 0.8;
}

.ch-f-info dd {
    margin: 0;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
}

.ch-f-info-full {
    display: flex;
    width: 100%;
    margin-top: 8px;
}

.ch-f-info-full dt {
    font-weight: 600;
    color: #ffffff;
    margin-right: 8px;
    opacity: 0.8;
}

.ch-f-info-full dd {
    margin: 0;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
}

.ch-f-cs h3 {
    font-size: 14px;
    font-weight: 600;
    color: #00489e;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.ch-f-cs h2 {
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.ch-f-cs p {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.5);
}

.ch-f-bank {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.ch-f-bank strong {
    display: block;
    font-weight: 500;
    color: #ffffff;
    opacity: 0.8;
    margin-bottom: 4px;
}

.ch-f-copy {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    font-size: 13px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.4);
    padding-top: 30px;
}

.ch-f-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s;
    margin-left: 20px;
}

.ch-f-links a:hover {
    color: #ffffff;
}

@media (max-width: 1024px) {
    .ch-footer-inner {
        gap: 40px;
        grid-template-columns: 1fr;
        padding-bottom: 40px;
    }

    .ch-f-cs {
        order: -1;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 40px;
    }

    .ch-f-bank {
        border-top: none;
        padding-top: 0;
        margin-top: 16px;
    }

    .ch-f-copy {
        gap: 20px;
        flex-direction: column;
        text-align: center;
    }

    .ch-f-links {
        margin-top: 10px;
    }

    .ch-f-links a {
        margin: 0 10px;
    }
}




/* =========================================
   [NEW] Flat Sticky Sidebar Quick Menu
   ========================================= */
/* PC Quick Menu */
.ch-quick-flat-pc {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 50%;
    right: 0;
    z-index: 999;
    transform: translateY(-50%);
}

.ch-quick-flat-pc ul {
    display: flex;
    flex-direction: column;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
}

.ch-quick-flat-pc li {
    position: relative;
    list-style: none;
}

.ch-quick-flat-pc a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 65px;
    height: 65px;
    background: var(--color-dark);
    font-size: 26px;
    color: #fff;
    text-decoration: none;
    transition: 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.ch-quick-flat-pc a.btn-call {
    background: #2ca9a7;
}

.ch-quick-flat-pc a.btn-top {
    background: #ececec;
    color: #222;
}


.ch-quick-flat-pc li:last-child a {
    border-bottom: none;
}

.ch-quick-flat-pc a:hover {
    background: var(--color-primary);
}

/* Brand Colors */
.ch-quick-flat-pc a.brand-kakao {
    background: #FEE500;
    color: #3C1E1E;
}

.ch-quick-flat-pc a.brand-kakao:hover {
    background: #f4dc00;
}

.ch-quick-flat-pc a.brand-naver {
    background: #03C75A;
}

.ch-quick-flat-pc a.brand-naver:hover {
    background: #02b350;
}

/* Slide Panel (Hover) */
.ch-q-slide-panel {
    display: flex;
    justify-content: center;
    flex-direction: column;
    position: absolute;
    top: 0;
    right: 65px;
    z-index: -1;
    height: 100%;
    visibility: hidden;
    padding: 0 20px;
    background: var(--color-primary);
    color: #fff;
    white-space: nowrap;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    opacity: 0;
    transform: translateX(10px);
}

.ch-quick-flat-pc a:hover .ch-q-slide-panel {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
}

.ch-q-slide-panel.text-only {
    align-items: center;
    flex-direction: row;
    font-size: 16px;
    font-weight: 600;
}

.ch-q-slide-panel.brand-kakao-bg {
    background: #FEE500;
    color: #3C1E1E;
}

.ch-q-slide-panel.brand-naver-bg {
    background: #03C75A;
    color: #fff;
}

.ch-q-slide-panel .t-title {
    display: block;
    font-size: 13px;
    color: #00D2FF;
    margin-bottom: 2px;
}

.ch-q-slide-panel .t-tel {
    display: block;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Mobile Quick Menu */
.ch-quick-flat-mo {
    display: none;
}

@media (max-width: 1024px) {
    .ch-quick-flat-pc {
        display: none;
    }

    .ch-quick-flat-mo {
        display: block;
        z-index: 1000;
    }

    .ch-quick-bar {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        z-index: 1000;
        width: 100%;
        height: 60px;
        box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.05);
    }

    .ch-quick-bar a {
        display: flex;
        gap: 6px;
        align-items: center;
        justify-content: center;
        flex: 1;
        font-size: 15px;
        font-weight: 600;
        color: #fff;
        text-decoration: none;
    }

    .ch-quick-bar .btn-call {
        background: var(--color-dark);
    }

    .ch-quick-bar .btn-sms {
        background: var(--color-primary);
    }

    .ch-quick-bar .btn-kakao {
        background: #FEE500;
        color: #3C1E1E;
    }

    .ch-quick-float-blog {
        display: flex;
        align-items: center;
        justify-content: center;
        position: fixed;
        right: 15px;
        bottom: 80px;
        z-index: 1000;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        box-shadow: 0 4px 10px rgba(3, 199, 90, 0.4);
        background: #03C75A;
        font-size: 26px;
        color: #fff;
        text-decoration: none;
        transition: transform 0.3s ease;
    }

    .ch-quick-float-blog:active {
        transform: scale(0.95);
    }
}


/* [NEW] Systematic Process Section */
.process-sec {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background: #f8fafc;
}

.process-sec .inner {
    position: relative;
    z-index: 2;
}

.process-wrap {
    display: flex;
    gap: 30px;
    justify-content: space-between;
    position: relative;
    margin-top: 60px;
}

.process-step {
    flex: 1;
    position: relative;
    z-index: 1;
}

.process-card {
    display: flex;
    align-items: center;
    flex-direction: column;
    position: relative;
    height: 100%;
    padding: 40px 30px;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    background: #fff;
    text-align: center;
    transition: 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.process-card:hover {
    box-shadow: 0 20px 40px rgba(26, 80, 161, 0.1);
    transform: translateY(-5px);
    border-color: #00489e;
}

.process-card::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #00489e;
    transition: transform 0.4s ease;
    content: '';
    transform: scaleX(0);
    transform-origin: left;
}

.process-card:hover::before {
    transform: scaleX(1);
}

.step-info {
    position: relative;
    width: 100%;
}

.step-info .step-num {
    display: block;
    position: relative;
    font-family: 'Times New Roman', Times, serif;
    /* 보다 클래식하고 고급스러운 번호 폰트 (옵션) */
    font-size: 62px;
    font-weight: 800;
    line-height: 1;
    color: #00489e;
    margin-bottom: 20px;
}

/* 숫자 아래 짧은 장식 선 */
.step-info .step-num::after {
    display: block;
    width: 24px;
    height: 2px;
    margin: 10px auto 0;
    background: #00489e;
    transition: 0.3s;
    content: '';
}

.process-card:hover .step-num::after {
    width: 40px;
}

.step-info .step-tit {
    position: relative;
    z-index: 1;
    font-size: 22px;
    font-weight: 700;
    color: #1a1f3c;
    margin-bottom: 8px;
}

.step-info .step-eng {
    display: block;
    position: relative;
    z-index: 1;
    font-size: 18px;
    font-weight: 600;
    color: #00489e;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.step-info .step-desc {
    position: relative;
    z-index: 1;
    font-size: 18px;
    line-height: 1.6;
    color: #64748b;
    word-break: keep-all;
}

/* Arrow Connector */
.process-wrap>.process-step:not(:last-child)::after {
    position: absolute;
    top: 50%;
    right: -25px;
    z-index: 2;
    font-family: 'xeicon';
    font-size: 24px;
    color: #cbd5e1;
    content: '\e93e';
    /* xeicon arrow-right */
    transform: translateY(-50%);
}

@media (max-width: 1024px) {
    .process-wrap {
        gap: 20px;
        flex-wrap: wrap;
    }

    .process-step {
        flex: 0 0 calc(50% - 10px);
    }

    .process-wrap>.process-step:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .process-sec {
        padding: 60px 0;
    }

    .process-step {
        flex: 0 0 100%;
    }

    .process-card {
        padding: 30px 20px;
    }
}

/* [NEW] Clients/Activity Section Styling (Wide Horizon) */
.clients-sec {
    padding: 140px 0;
    background: #f8fafc;
}

.coop-badge {
    display: inline-flex;
    gap: 6px;
    align-items: center;
    padding: 8px 16px;
    border: 1px solid #00489e;
    border-radius: 100px;
    background: #fff;
    font-size: 18px;
    font-weight: 700;
    color: #00489e;
    margin-bottom: 20px;
}

.cl-stack {
    display: flex;
    gap: 40px;
    flex-direction: column;
    margin-top: 60px;
}

.cl-row {
    display: flex;
    border: 1px solid #e2e8f0;
    border-radius: 0px;
    overflow: hidden;
    background: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cl-row:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

/* Specific Border Accents on Left */
.cl-gov {
    border-left: 5px solid #233075;
}

.cl-edu {
    border-left: 5px solid #059669;
}

.cl-corp {
    border-left: 5px solid #00489e;
}

/* Image Area */
.cl-img-box {
    flex: 0 0 32%;
    /* Image takes 32% width */
    position: relative;
    min-height: 280px;
    background-position: center;
    background-size: cover;
}

.cl-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 20px;
    left: 20px;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background: #fff;
    font-size: 28px;
    color: #334155;
}

.cl-gov .cl-badge {
    color: #233075;
}

.cl-edu .cl-badge {
    color: #059669;
}

.cl-corp .cl-badge {
    color: #00489e;
}

/* Text Content Area */
.cl-text-box {
    display: flex;
    justify-content: center;
    flex: 1;
    flex-direction: column;
    padding: 40px 50px;
}

.cl-head {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f1f5f9;
}

.cl-head h3 {
    font-size: 26px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 6px;
}

.cl-eng {
    font-size: 18px;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.cl-desc {
    font-size: 18px;
    line-height: 1.6;
    color: #64748b;
}

/* Wide List (Multicolumn) */
.cl-wide-list {
    display: grid;
    gap: 12px 20px;
    grid-template-columns: repeat(4, 1fr);
    /* 4 Column Grid */
}

.cl-wide-list li {
    display: flex;
    align-items: center;
    font-size: 18px;
    color: #475569;
}

.cl-wide-list li::before {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #cbd5e1;
    content: '';
    margin-right: 10px;
}

.cl-gov .cl-wide-list li::before {
    background: #233075;
}

.cl-edu .cl-wide-list li::before {
    background: #059669;
}

.cl-corp .cl-wide-list li::before {
    background: #00489e;
}

/* Responsive */
@media (max-width: 1024px) {
    .cl-row {
        flex-direction: column;
    }

    .cl-img-box {
        flex: none;
        height: 200px;
        min-height: auto;
    }

    .cl-text-box {
        padding: 30px;
    }

    .cl-wide-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .cl-head h3 {
        font-size: 22px;
    }

    .cl-desc {
        font-size: 18px;
    }
}

@media (max-width: 600px) {
    .cl-wide-list {
        grid-template-columns: 1fr;
    }

    .cl-text-box {
        padding: 25px;
    }
}


/* SMILE CLEAN Main Gallery Override */
.idx-gallery-wrap {
    margin-top: 40px;
    margin-bottom: 80px;
}

/* .idx-gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; } */
.idx-gallery-card {
    display: flex;
    flex-direction: column;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    background: #fff;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.idx-gallery-card:hover {
    box-shadow: 0 20px 40px rgba(0, 137, 123, 0.1);
    transform: translateY(-10px);
    border-color: #00489e;
}

.idx-gallery-img {
    position: relative;
    width: 100%;
    height: 210px;
    overflow: hidden;
}

.idx-gallery-img img {
    width: 100%;
    height: 100%;
    transition: transform 0.6s ease;
    object-fit: cover;
}

.idx-gallery-card:hover .idx-gallery-img img {
    transform: scale(1.05);
}

.idx-gallery-txt {
    display: flex;
    justify-content: center;
    flex: 1;
    flex-direction: column;
    padding: 24px 20px;
}

.idx-gallery-tit {
    display: -webkit-box;
    overflow: hidden;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    color: #101828;
    letter-spacing: -0.01em;
    margin-bottom: 12px;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.idx-gallery-date {
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 14px;
    font-weight: 300;
    color: #64748b;
    margin-top: auto;
}

.idx-gallery-date i {
    font-size: 15px;
    color: #00489e;
}

.idx-gallery-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 20px;
}

.idx-gallery-more {
    display: flex;
    align-items: center;
    font-size: 15px;
    font-weight: 600;
    color: #00489e;
    text-decoration: none;
}

.idx-gallery-more i {
    margin-right: 6px;
}

.idx-gallery-loader {
    width: 100%;
    padding: 60px 0;
    text-align: center;
    grid-column: 1/-1;
}

.idx-gallery-loader-icon {
    font-size: 32px;
    color: #00489e;
    margin-bottom: 16px;
}

.idx-gallery-loader-txt {
    margin: 0;
    font-size: 16px;
    color: #64748b;
}

@media (max-width: 1024px) {
    /* .idx-gallery-grid { grid-template-columns: repeat(2, 1fr); } */
}

@media (max-width: 768px) {

    /* .idx-gallery-grid { grid-template-columns: 1fr; gap: 16px; } */
    .idx-gallery-img {
        height: 240px;
    }
}

/* =========================================
   [NEW] Hero Slide Text Styles
   ========================================= */
.hero-txt-wrap {
    display: flex;
    justify-content: center;
    position: relative;
    width: 100%;
    min-height: 220px;
}

.hero-txt {
    position: absolute;
    top: 0;
    left: 50%;
    z-index: 10;
    width: 100%;
    transition: opacity 0.8s ease-out;
    pointer-events: none;
    transform: translateX(-50%);
    opacity: 0;
}

.hero-txt.active {
    pointer-events: auto;
    opacity: 1;
}

/* =========================================
   PREMIUM ONLINE INQUIRY SECTION (#online)
   ========================================= */

.idx-online-sec {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background: linear-gradient(135deg, #f4f6f9 0%, #ffffff 100%);
}

/* Decorative background elements */
.idx-online-sec::before {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 137, 123, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    content: '';
}

.idx-online-container {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
}

.idx-online-header {
    text-align: center;
    margin-bottom: 50px;
}

.idx-online-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 50px;
    background: rgba(0, 137, 123, 0.1);
    font-size: 14px;
    font-weight: 700;
    color: #00489e;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.idx-online-title {
    font-size: 40px;
    font-weight: 800;
    color: #111;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.idx-online-desc {
    font-size: 18px;
    line-height: 1.6;
    color: #666;
}

/* Form Wrapper (Glassmorphism + Neumorphism) */
.idx-online-form-wrapper {
    padding: 60px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.02);
    background: #ffffff;
}

.idx-form-grid {
    display: grid;
    gap: 30px;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 30px;
}

.idx-input-group label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.idx-input-group label span {
    color: #ff4757;
    margin-left: 4px;
}

.idx-input-box {
    display: flex;
    align-items: center;
    position: relative;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.idx-input-box:focus-within {
    box-shadow: 0 0 0 4px rgba(0, 137, 123, 0.1);
    background: #fff;
    border-color: #00489e;
}

.idx-input-box i {
    width: 50px;
    font-size: 18px;
    color: #a0a5ab;
    text-align: center;
    transition: color 0.3s ease;
}

.idx-input-box:focus-within i {
    color: #00489e;
}

.idx-input-box input,
.idx-input-box textarea {
    flex: 1;
    padding: 16px 20px 16px 0;
    border: none;
    outline: none;
    background: transparent;
    font-family: inherit;
    font-size: 16px;
    color: #333;
}

.idx-input-box input::placeholder,
.idx-input-box textarea::placeholder {
    color: #adb5bd;
}

.idx-input-box textarea {
    resize: none;
}

.idx-form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

/* Custom Checkbox */
.idx-agree-label {
    display: flex;
    align-items: center;
    cursor: pointer;
}

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

.idx-custom-checkbox {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border: 2px solid #ccc;
    border-radius: 6px;
    transition: all 0.2s;
    margin-right: 12px;
}

.idx-agree-label input[type="checkbox"]:checked+.idx-custom-checkbox {
    background: #00489e;
    border-color: #00489e;
}

.idx-agree-label input[type="checkbox"]:checked+.idx-custom-checkbox::after {
    font-family: 'Font Awesome 6 Free';
    font-size: 12px;
    font-weight: 900;
    color: #fff;
    content: '\f00c';
}

.idx-agree-text {
    font-size: 15px;
    font-weight: 500;
    color: #555;
}

/* Submit Button */
.idx-submit-btn {
    display: inline-flex;
    gap: 12px;
    align-items: center;
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    background: #111;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.idx-submit-btn:hover {
    box-shadow: 0 10px 25px rgba(0, 137, 123, 0.3);
    background: #00489e;
    transform: translateY(-3px);
}

.idx-submit-btn i {
    font-size: 18px;
    transition: transform 0.3s;
}

.idx-submit-btn:hover i {
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 900px) {
    .idx-form-grid {
        gap: 20px;
        grid-template-columns: 1fr;
    }

    .idx-online-form-wrapper {
        padding: 40px 30px;
    }

    .idx-form-footer {
        gap: 25px;
        align-items: flex-start;
        flex-direction: column;
    }

    .idx-submit-btn {
        justify-content: center;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .idx-online-sec {
        padding: 80px 0;
    }

    .idx-online-title {
        font-size: 28px;
    }

    .idx-online-desc {
        font-size: 15px;
    }

    .idx-online-form-wrapper {
        padding: 30px 20px;
    }
}


/* =========================================
   PREMIUM REDESIGN: CHART & WORK (#chart, #work)
   ========================================= */

/* PREMIUM CHART */
.premium-chart {
    position: relative;
    width: 100%;
    padding: 120px 0;
    background: url("/img/main_slide/md_bg.jpg");
    background-size: cover;
}

.premium-chart::before {
    position: absolute;
    z-index: 1;
    background: rgba(0, 72, 158, 0.85);
    /* 브랜드 블루 오버레이 */
    content: '';
    inset: 0;
}

.chart-inner {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

#chart.premium-chart .chart-eyebrow {
    padding: 0;
    font-family: 'Roboto', sans-serif;
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #0084cd !important;
    /* 밝은 청록색 악센트 */
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

#chart.premium-chart .chart-title {
    padding: 0 !important;
    font-size: 48px !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    letter-spacing: -0.02em !important;
    margin-bottom: 20px;
}

#chart.premium-chart .chart-desc {
    font-size: 20px !important;
    font-weight: 300 !important;
    color: rgba(255, 255, 255, 0.8) !important;
    margin-bottom: 60px;
}

#chart.premium-chart ul.chart-grid {
    display: grid !important;
    gap: 30px;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    grid-template-columns: repeat(4, 1fr);
}

#chart.premium-chart ul.chart-grid li.chart-card {
    display: flex !important;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100% !important;
    margin: 0;
    padding: 40px 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.1);
    transition: transform 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

#chart.premium-chart ul.chart-grid li.chart-card:hover {
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.25);
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.4);
}

.chart-card .icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    margin-bottom: 20px;
}

.chart-card .icon-box span {
    font-size: 32px;
}

#chart.premium-chart ul.chart-grid li.chart-card h2 {
    padding: 0 !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 56px !important;
    font-weight: 800 !important;
    line-height: 1.1;
    color: #ffffff !important;
    margin-bottom: 10px;
}

#chart.premium-chart ul.chart-grid li.chart-card h2 span {
    font-size: 24px !important;
    font-weight: 400 !important;
    margin-left: 5px;
}

#chart.premium-chart ul.chart-grid li.chart-card h1 {
    margin: 0 !important;
    padding: 0;
    font-size: 18px !important;
    font-weight: 500 !important;
    color: rgba(255, 255, 255, 0.9) !important;
    letter-spacing: -0.5px;
}

/* PREMIUM WORK BENTO GRID */
.premium-work {
    max-width: 1200px;
    margin: 80px auto 120px;
    padding: 0 20px;
}

.bento-grid {
    display: flex;
    gap: 20px;
    height: 600px;
}

.minor-wrap {
    display: flex;
    gap: 20px;
    flex-direction: column;
    width: 40%;
}

.bento-item {
    display: block;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: #111;
}

.bento-item.major {
    width: 60%;
    height: 100%;
}

.bento-item.minor {
    flex: 1;
    /* 3 items will take 33.3% height each */
    height: 100%;
}

.bento-item img {
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    object-fit: cover;
}

.bento-overlay {
    position: absolute;
    z-index: 1;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
    transition: background 0.6s ease;
    inset: 0;
}

.bento-txt {
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    padding: 40px;
}

.bento-txt h1 {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.2;
    color: #ffffff;
    transition: transform 0.5s ease;
    margin-bottom: 10px;
}

.bento-txt p {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    transition: opacity 0.5s ease, transform 0.5s ease;
    margin-bottom: 20px;
}

.bento-txt h2 {
    display: flex;
    gap: 8px;
    align-items: center;
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    color: #0084cd;
    transition: opacity 0.4s ease, transform 0.4s ease;
    opacity: 0;
    transform: translateY(20px);
}

.bento-item.minor .bento-txt {
    padding: 25px 30px;
}

.bento-item.minor .bento-txt h1 {
    font-size: 24px;
    margin-bottom: 5px;
}

.bento-item.minor .bento-txt p {
    font-size: 14px;
    margin-bottom: 15px;
}

/* Hover Effects */
.bento-item:hover img {
    transform: scale(1.08);
}

.bento-item:hover .bento-overlay {
    background: linear-gradient(to top, rgba(0, 72, 158, 0.9) 0%, rgba(0, 72, 158, 0.4) 60%, transparent 100%);
}

.bento-item:hover .bento-txt h2 {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
    #chart.premium-chart ul.chart-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    .bento-grid {
        flex-direction: column;
        height: auto;
    }

    .bento-item.major {
        width: 100%;
        height: 400px;
    }

    .minor-wrap {
        gap: 20px;
        flex-direction: row;
        width: 100%;
    }

    .bento-item.minor {
        flex: 1;
        height: 250px;
    }
}

@media (max-width: 768px) {
    .premium-chart {
        margin: 0px 0;
        padding: 80px 0;
    }

    #chart.premium-chart .chart-eyebrow {
        font-size: 13px !important;
    }

    #chart.premium-chart .chart-title {
        font-size: 32px !important;
    }

    #chart.premium-chart ul.chart-grid {
        grid-template-columns: 1fr;
    }

    .bento-grid {
        gap: 15px;
    }

    .minor-wrap {
        gap: 15px;
        flex-direction: column;
    }

    .bento-item.minor {
        height: 200px;
    }

    .bento-txt {
        padding: 30px 20px;
    }

    .bento-txt h2 {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 추가 디자인 반영 : #chart 조합마크, #work 6종 변경 */
#chart.premium-chart .chart-mark {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 3;
    margin: 0 auto 50px;
}

#chart.premium-chart .chart-mark img {
    width: auto;
    height: auto;
    transition: transform 0.5s ease;
}


.premium-work .bento-grid-6 {
    display: grid;
    grid-auto-rows: 250px;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    grid-template-columns: repeat(3, 1fr);
}

.premium-work .bento-item {
    display: block;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: #111;
}

.premium-work .bento-item.major-item {
    grid-column: span 2;
    grid-row: span 2;
}

.premium-work .bento-item.minor-item {
    grid-column: span 1;
    grid-row: span 1;
}

.premium-work .bento-item img {
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    object-fit: cover;
}

.premium-work .bento-overlay {
    position: absolute;
    z-index: 1;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.1) 60%, transparent 100%);
    transition: background 0.6s ease;
    inset: 0;
}

.premium-work .bento-txt {
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    padding: 30px;
}

.premium-work .bento-item.major-item .bento-txt {
    padding: 50px;
}

.premium-work .bento-txt h1 {
    font-size: 28px;
    font-weight: 800;
    line-height: 1.2;
    color: #ffffff;
    word-break: keep-all;
    transition: transform 0.5s ease;
    margin-bottom: 10px;
}

.premium-work .bento-item.major-item .bento-txt h1 {
    font-size: 40px;
}

.premium-work .bento-txt p {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    word-break: keep-all;
    transition: opacity 0.5s ease, transform 0.5s ease;
    margin-bottom: 20px;
}

.premium-work .bento-item.major-item .bento-txt p {
    font-size: 18px;
}

.premium-work .bento-txt h2 {
    display: flex;
    gap: 8px;
    align-items: center;
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    color: #0084cd;
    transition: opacity 0.4s ease, transform 0.4s ease;
    opacity: 0;
    transform: translateY(20px);
}

.premium-work .bento-item:hover img {
    transform: scale(1.08);
}

.premium-work .bento-item:hover .bento-overlay {
    background: linear-gradient(to top, rgba(0, 72, 158, 0.9) 0%, rgba(0, 72, 158, 0.4) 60%, transparent 100%);
}

.premium-work .bento-item:hover .bento-txt h2 {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1024px) {
    .premium-work .bento-grid-6 {
        grid-auto-rows: 240px;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .premium-work .bento-grid-6 {
        grid-auto-rows: 220px;
        grid-template-columns: 1fr;
    }

    .premium-work .bento-item.major-item {
        grid-column: span 1;
        grid-row: span 1;
    }

    .premium-work .bento-item.major-item .bento-txt {
        padding: 30px;
    }

    .premium-work .bento-item.major-item .bento-txt h1 {
        font-size: 28px;
    }

    .premium-work .bento-txt h2 {
        opacity: 1;
        transform: translateY(0);
    }

    #chart.premium-chart .chart-mark img {
        width: 150px;
    }
}


/* BUGFIX: PREMIUM HEIGHT OVERRIDES */
#chart.premium-chart {
    height: auto !important;
}

#work.premium-work {
    height: auto !important;
    margin-bottom: 80px;
}


/* PREMIUM CHART MARQUEE */
@media (max-width: 768px) {
    .client-marquee {
        padding: 15px 0;
        margin-top: 30px;
    }

    .marquee-list li {
        padding: 0 15px;
        font-size: 14px;
    }

    .marquee-list li::before {
        margin-right: 15px;
    }
}


/* PREMIUM CHART CLIENT LIST (STATIC 3-COLUMN) */
.premium-clients {
    display: grid;
    gap: 30px;
    width: 100%;
    max-width: 1200px;
    margin: 80px auto 0;
    padding: 0 20px;
    text-align: left;
    grid-template-columns: repeat(3, 1fr);
    box-sizing: border-box;
}

.client-group {
    padding: 40px 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.4s ease, background 0.4s ease;
    backdrop-filter: blur(10px);
}

.client-group:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.3);
}

.client-group h3 {
    display: flex;
    gap: 12px;
    align-items: center;
    margin: 0 0 20px 0;
    font-family: 'Pretendard', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #0084cd;
    letter-spacing: -0.5px;
}

.client-group h3 span {
    font-size: 28px;
    color: #0084cd;
}

.client-group p {
    margin: 0;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.85);
    word-break: keep-all;
}

@media (max-width: 1024px) {
    .premium-clients {
        gap: 20px;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .premium-clients {
        gap: 20px;
        grid-template-columns: 1fr;
        margin-top: 50px;
    }

    .client-group {
        padding: 30px 20px;
    }

    .client-group h3 {
        font-size: 18px;
    }

    .client-group h3 span {
        font-size: 24px;
    }

    .client-group p {
        font-size: 14px;
    }
}

/* =========================================
   INDEPENDENT MULTI-TRACK MARQUEE (PREMIUM)
   ========================================= */
.multi-marquee {
    display: flex;
    gap: 15px;
    flex-direction: column;
    width: 100%;
    padding: 20px 0;
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.marquee-container {
    width: 100%;
    max-width: 500px;
    margin: 30px auto;
}

.marquee-container img {
    width: 100%;
    height: auto;
}

.marquee-row {
    display: flex;
    align-items: center;
    padding: 0 5px;
    border-radius: 50px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
}

.marquee-label {
    display: flex;
    display: flex;
    gap: 10px;
    align-items: center;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    z-index: 10;
    width: 200px;
    padding: 15px 30px;
    border-radius: 50px;
    background: #fff;
    font-size: 15px;
    font-weight: 700;
    color: #00489e;
}

.marquee-label span {
    font-size: 20px;
}

.marquee-track-container {
    display: flex;
    flex-wrap: nowrap;
    flex-grow: 1;
    position: relative;
    padding: 0 20px;
    overflow: hidden;
}

.marquee-track-container::before,
.marquee-track-container::after {
    position: absolute;
    top: 0;
    z-index: 2;
    width: 80px;
    height: 100%;
    content: '';
    pointer-events: none;
}

.marquee-track {
    display: inline-flex;
    white-space: nowrap;
    animation-name: marquee-roll;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.marquee-list {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.marquee-list li {
    display: inline-flex;
    align-items: center;
    padding: 0 25px;
    font-size: 15px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
}

.marquee-list li::before {
    font-size: 16px;
    color: #298dff;
    content: "\2022";
    margin-right: 25px;
}

@keyframes marquee-roll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 1024px) {
    .multi-marquee {
        gap: 10px;
    }

    .marquee-container {
        max-width: 400px;
    }

    .marquee-label {
        padding: 12px 20px;
        font-size: 13px;
    }

    .marquee-list li {
        padding: 0 15px;
        font-size: 14px;
    }

    .marquee-list li::before {
        margin-right: 15px;
    }
}

@media (max-width: 768px) {
    .marquee-row {
        gap: 5px;
        flex-direction: column;
        padding: 0;
        border-radius: 12px;
        background: transparent;
        margin-bottom: 20px;
    }

    .marquee-label {
        margin-bottom: 10px;
    }

    .marquee-track-container {
        width: 100%;
        padding: 10px 0;
        overflow: hidden;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    .marquee-track-container::before,
    .marquee-track-container::after {
        width: 30px;
    }
}


/* =========================================
   GLASSMORPHISM QUICK MENU (PC)
   ========================================= */
.quick-glass-pc {
    position: fixed;
    top: 50%;
    right: 30px;
    z-index: 9999;
    padding: 15px 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-50%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.quick-glass-pc ul {
    display: flex;
    gap: 15px;
    flex-direction: column;
    margin: 0;
    padding: 0;
    list-style: none;
}

.quick-glass-pc li {
    position: relative;
    text-align: center;
}

.quick-glass-pc a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    font-size: 24px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.quick-glass-pc a.btn-call {
    background: #00489e;
}

.quick-glass-pc a.btn-mail {
    background: #0084cd;
}

.quick-glass-pc a.brand-kakao {
    background: #FEE500;
    color: #3C1E1E;
}

.quick-glass-pc a.brand-naver {
    background: #03C75A;
}

.quick-glass-pc a.btn-top {
    background: rgba(255, 255, 255, 0.7);
    color: #333;
}

.quick-glass-pc a:hover {
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    transform: scale(1.1);
}

.quick-glass-pc a.btn-top:hover {
    background: #333;
    color: #fff;
}

.quick-glass-pc .btn-top-wrap {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.quick-glass-pc .btn-top-wrap a {
    width: 50px;
    height: 50px;
    margin: 0 auto;
    font-size: 20px;
}

/* Tooltip */
.q-tooltip {
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    position: absolute;
    top: 50%;
    right: 80px;
    visibility: hidden;
    padding: 12px 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    background: rgba(0, 0, 0, 0.85);
    font-size: 14px;
    color: #fff;
    white-space: nowrap;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
    transform: translateY(-50%) translateX(20px);
    opacity: 0;
}

.q-tooltip strong {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    color: #0084cd;
    letter-spacing: 1px;
}

.quick-glass-pc a:hover .q-tooltip {
    visibility: visible;
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}


/* =========================================
   FLOATING DOCK QUICK MENU (MOBILE)
   ========================================= */
.quick-glass-mo {
    display: none;
    position: fixed;
    bottom: 25px;
    z-index: 500;
    width: 80%;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.dock-bar-mo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 10px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 100px;
    box-shadow: 0 15px 35px rgba(2, 6, 23, 0.4);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
}

.dock-bar-mo a {
    display: flex;
    gap: 5px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #fff;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.dock-bar-mo a:active {
    transform: scale(0.9);
}

.dock-bar-mo a i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2), inset 0 2px 4px rgba(255, 255, 255, 0.2);
    font-size: 24px;
    color: #fff;
}


.dock-bar-mo a.btn-call i {
    background: #00489e;
}

.dock-bar-mo a.btn-sms i,
.dock-bar-mo a.btn-mail i {
    background: #0084cd;
}

.dock-bar-mo a.btn-kakao i {
    background: #FEE500;
    color: #3C1E1E;
}

.dock-bar-mo a.btn-naver i {
    background: #03C75A;
}

.dock-bar-mo a span {
    font-size: 12px;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
    display:none;
}

@media (max-width: 1024px) {
    .quick-glass-pc {
        display: none;
    }

    .quick-glass-mo {
        display: block;
    }
}

/* =========================================
   [SC] 네이티브 견적문의 폼 스타일
   ========================================= */
.sc-online-wrap {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 0 60px;
}

.form-container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.sc-contact-form {
    width: 100%;
}

.sc-form-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 24px;
}

.sc-field {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.sc-field-full {
    grid-column: 1/-1;
}

.sc-field label {
    font-size: 15px;
    font-weight: 600;
    color: #334155;
    margin-bottom: 6px;
}

.sc-req {
    font-weight: 700;
    color: #ef4444;
    margin-left: 3px;
}

.sc-field input[type="text"],
.sc-field input[type="date"],
.sc-field select,
.sc-field textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    background: #fff;
    font-family: inherit;
    font-size: 15px;
    color: #1e293b;
    transition: border 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}

.sc-field input:focus,
.sc-field textarea:focus,
.sc-field select:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 72, 158, 0.1);
    border-color: #00489e;
}

.sc-field input::placeholder,
.sc-field textarea::placeholder {
    color: #94a3b8;
}

.sc-field textarea {
    min-height: 100px;
    resize: vertical;
}

.sc-radio,
.sc-check {
    display: inline-flex;
    gap: 6px;
    align-items: center;
    padding: 4px 0;
    font-size: 14px;
    color: #475569;
    cursor: pointer;
    margin-right: 16px;
}

.sc-radio input,
.sc-check input {
    accent-color: #00489e;
}

.sc-file-input {
    display: block;
    width: 100%;
    padding: 8px;
    border: 1px dashed #cbd5e1;
    border-radius: 8px;
    background: #f8fafc;
    font-size: 14px;
    color: #64748b;
    cursor: pointer;
    margin-bottom: 8px;
}

.sc-file-input:hover {
    border-color: #00489e;
}

.sc-file-desc {
    font-size: 13px;
    color: #94a3b8;
    margin-bottom: 8px;
}

.sc-privacy {
    margin: 20px 0;
}

.sc-privacy-box {
    max-height: 120px;
    padding: 16px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    background: #f8fafc;
    overflow-y: auto;
    margin-bottom: 12px;
}

.sc-privacy-text {
    font-size: 13px;
    line-height: 1.7;
    color: #64748b;
}

.sc-agree {
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    color: #334155;
    cursor: pointer;
}

.sc-agree input {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #00489e;
}

.sc-submit-btn {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 18px;
    border: none;
    border-radius: 12px;
    background: #00489e;
    font-family: inherit;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    transition: background 0.3s, transform 0.2s;
    cursor: pointer;
}

.sc-submit-btn:hover {
    background: #00306e;
    transform: translateY(-2px);
}

.sc-submit-btn:disabled {
    background: #94a3b8;
    cursor: not-allowed;
    transform: none;
}

.sc-submit-btn i {
    font-size: 20px;
}

.sc-form-msg {
    padding: 14px 20px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 500;
    text-align: center;
    margin-top: 16px;
}

.sc-form-msg.sc-success {
    border: 1px solid #a7f3d0;
    background: #ecfdf5;
    color: #065f46;
}

.sc-form-msg.sc-error {
    border: 1px solid #fecaca;
    background: #fef2f2;
    color: #991b1b;
}

/* 메인페이지 컴팩트 폼 (어두운 배경 위) */
#online .sc-contact-form.sc-compact .sc-field label {
    color: rgba(255, 255, 255, 0.9);
}

#online .sc-contact-form.sc-compact .sc-field input,
#online .sc-contact-form.sc-compact .sc-field textarea,
#online .sc-contact-form.sc-compact .sc-field select {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(255, 255, 255, 0.3);
}

#online .sc-contact-form.sc-compact .sc-privacy-box {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

#online .sc-contact-form.sc-compact .sc-privacy-text {
    color: rgba(255, 255, 255, 0.6);
}

#online .sc-contact-form.sc-compact .sc-agree {
    color: rgba(255, 255, 255, 0.9);
}

#online .sc-contact-form.sc-compact .sc-req {
    color: #ff6b6b;
}

@media (max-width:768px) {
    .sc-form-grid {
        gap: 14px;
        grid-template-columns: 1fr;
    }

    .sc-field label {
        font-size: 14px;
    }

    .sc-field input,
    .sc-field textarea,
    .sc-field select {
        padding: 12px 14px;
        font-size: 14px;
    }

    .sc-submit-btn {
        padding: 16px;
        font-size: 16px;
    }

    .sc-online-wrap {
        padding: 10px 15px 40px;
    }

    .form-container {
        height: auto;
    }
}


/* =========================================
   GLASSMORPHISM QUICK MENU (PC)
   ========================================= */
.quick-glass-pc {
    display: flex;
    position: fixed;
    top: 50%;
    right: 20px;
    z-index: 9999;
    padding: 20px 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 60px;
    box-shadow: 0 15px 35px rgba(2, 6, 23, 0.15);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    transform: translateY(-50%);
}

.quick-glass-pc ul {
    display: flex;
    gap: 15px;
    flex-direction: column;
    padding: 0;
    list-style: none;
}

.quick-glass-pc li {
    position: relative;
    text-align: center;
}

.quick-glass-pc a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    font-size: 24px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.quick-glass-pc a.btn-call { background: #00489e; }
.quick-glass-pc a.btn-mail { background: #0084cd; }
.quick-glass-pc a.brand-kakao { background: #FEE500; color: #3C1E1E; }
.quick-glass-pc a.brand-naver { background: #03C75A; }
.quick-glass-pc a.btn-top { background: rgba(255, 255, 255, 0.7); color: #333; }

.quick-glass-pc a:hover {
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    transform: scale(1.1);
}

.quick-glass-pc a.btn-top:hover { background: #333; color: #fff; }

.quick-glass-pc .btn-top-wrap {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.quick-glass-pc .btn-top-wrap a {
    width: 50px;
    height: 50px;
    margin: 0 auto;
    font-size: 20px;
}

/* Tooltip */
.q-tooltip {
    display: flex;
    gap: 4px;
    align-items: flex-start;
    position: absolute;
    top: 50%;
    right: calc(100% + 15px);
    flex-direction: column;
    white-space: nowrap;
    visibility: hidden;
    padding: 12px 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    background: rgba(0, 0, 0, 0.85);
    font-size: 14px;
    color: #fff;
    text-align: left;
    transition: all 0.3s ease;
    transform: translateY(-50%) translateX(20px);
    opacity: 0;
}

.q-tooltip strong {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    letter-spacing: 1px;
}

.quick-glass-pc a:hover .q-tooltip {
    visibility: visible;
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}


/* =========================================
   FLOATING DOCK QUICK MENU (MOBILE)
   ========================================= */
.quick-glass-mo {
    display: none;
    position: fixed;
    bottom: 25px;
    z-index: 10000;
    width: 80%;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.dock-bar-mo {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    padding: 12px 10px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 100px;
    box-shadow: 0 15px 35px rgba(2, 6, 23, 0.4);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
}

.dock-bar-mo a {
    display: flex;
    gap: 5px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #fff;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.dock-bar-mo a:active {
    transform: scale(0.9);
}

.dock-bar-mo a i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2), inset 0 2px 4px rgba(255, 255, 255, 0.2);
    font-size: 24px;
    color: #fff;
}

.dock-bar-mo a.btn-call i { background: #00489e; }
.dock-bar-mo a.btn-sms i { background: #0084cd; }
.dock-bar-mo a.brand-kakao i { background: #FEE500; color: #3C1E1E; }
.dock-bar-mo a.brand-naver i { background: #03C75A; }

.dock-bar-mo a span {
    font-size: 12px;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

@media (max-width: 1024px) {
    .quick-glass-pc { display: none; }
    .quick-glass-mo { display: block; }
}