/* =========================================
   1. Global Reset & Basic Setup
   ========================================= */
* {
    margin: 0;
    padding: 0;
    outline: none;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #ffffff;
    font-family: "Pretendard", sans-serif;
    line-height: 1.6;
    color: #111111;
    word-break: keep-all;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    font-weight: 600;
    color: #111111;
}

ul, li {
    list-style: none;
}

a {
    display: inline-block;
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

img {
    display: block;
    max-width: 100%;
}

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

/* =========================================
   2. Typography Components
   ========================================= */
.txt-title {
    font-size: 42px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}
@media (max-width: 1024px) {
    .txt-title {
        font-size: 32px;
    }
}
@media (max-width: 767px) {
    .txt-title {
        font-size: 24px;
    }
}

.txt-sub {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: #21cbbe;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}
@media (max-width: 1024px) {
    .txt-sub {
        font-size: 14px;
    }
}

.txt-desc {
    font-size: 18px;
    font-weight: 400;
    color: #555555;
}

/* =========================================
   3. Layout Components
   ========================================= */
.container {
    max-width: 1480px;
    margin: 0 auto;
    padding: 0 20px;
}

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

/* 유틸리티 클래스 대신 직접 사용 권장 (기존 호환성 유지 위해 남겨둠) */
.bg-gray {
    background-color: #f8f9fa;
}

.section-header {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}
.section-header .txt-desc {
    margin-top: 15px;
}

/* =========================================
   4. Header & Navigation Styles
   ========================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    height: 90px;
    background-color: transparent;
    transition: background-color 0.3s, box-shadow 0.3s, height 0.4s ease-out;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
@media (max-width: 1024px) {
    .header {
        height: 70px;
    }
}

.header.scrolled,
.header.menu-open {
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    background-color: #ffffff;
    border-bottom: 1px solid #eeeeee;
}

.header.menu-open {
    height: 360px;
}

.header .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1600px;
    height: 90px;
    margin: 0 auto;
    padding: 0 40px;
}
@media (max-width: 1200px) {
    .header .wrap {
        padding: 0 20px;
    }
}
@media (max-width: 1024px) {
    .header .wrap {
        height: 70px;
    }
}

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

.header .logo img {
    width: 100%;
    height: auto;
}

.header .logo-dark {
    display: none;
}
.header .logo-white {
    display: block;
}

.header.scrolled .logo-dark,
.header.menu-open .logo-dark {
    display: block;
}

.header.scrolled .logo-white,
.header.menu-open .logo-white {
    display: none;
}

/* Desktop Nav */
.nav-desktop .gnb {
    display: flex;
}
@media (max-width: 1024px) {
    .nav-desktop {
        display: none;
    }
}

.nav-desktop .gnb > li > a {
    display: flex;
    align-items: center;
    position: relative;
    height: 90px;
    padding: 0 20px;
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
}
@media (max-width: 1200px) {
    .nav-desktop .gnb > li > a {
        padding: 0 15px;
        font-size: 16px;
    }
}

.header.scrolled .nav-desktop .gnb > li > a,
.header.menu-open .nav-desktop .gnb > li > a {
    color: #343a40;
}

.nav-desktop .gnb > li > a:hover {
    color: #00a1e9;
}

.nav-desktop .gnb > li > a::after {
    position: absolute;
    bottom: 20px;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: #00a1e9;
    transition: width 0.3s;
    content: "";
    transform: translateX(-50%);
}

.header:not(.scrolled):not(.menu-open) .nav-desktop .gnb > li > a::after {
    background-color: #ffffff;
}

.nav-desktop .gnb > li:hover > a::after {
    width: calc(100% - 40px);
}

/* Header Contact */
.header-contact a {
    display: flex;
    gap: 5px;
    align-items: center;
    padding: 8px 20px;
    border-radius: 100px;
    background: #08348b;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
}
@media (max-width: 1200px) {
    .header-contact {
        display: none;
    }
}

.header.scrolled .header-contact a,
.header:hover .header-contact a,
.header.menu-open .header-contact a {
    color: #ffffff;
}

/* Mega Menu */
.mega-menu-panel {
    position: absolute;
    top: 90px;
    left: 0;
    width: 100%;
    visibility: hidden;
    padding: 40px 0;
    background-color: #ffffff;
    transition: all 0.4s ease-out;
    opacity: 0;
    border-top: 1px solid #eeeeee;
    transform: translateY(-10px);
}
@media (max-width: 1024px) {
    .mega-menu-panel {
        display: none;
    }
}

.header.menu-open .mega-menu-panel {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.mega-menu-panel .wrap {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    justify-content: center;
}

.submenu-column {
    width: 180px;
}

.submenu-column h4 a {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0px;
    padding-bottom: 10px;
}

.submenu-column ul li a {
    display: block;
    padding: 6px 0;
    font-size: 15px;
    color: #666666;
    transition: 0.3s;
}

.submenu-column ul li a:hover {
    color: #00a1e9;
    transform: translateX(5px);
}

/* Mobile Toggle */
#menu-toggle {
    display: none;
    z-index: 10;
    border: none;
    background: none;
    font-size: 32px;
    color: #ffffff;
    cursor: pointer;
}
@media (max-width: 1024px) {
    #menu-toggle {
        display: block;
    }
}

.header.scrolled #menu-toggle {
    color: #333333;
}

/* Sidebar & Dimmed */
#layoutDimmed {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

#aside {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: -100%;
    bottom: 0;
    z-index: 1001;
    width: 80%;
    max-width: 320px;
    visibility: hidden;
    background: #ffffff;
    transition: all 0.4s;
    overflow-y: auto;
}

body.expand #layoutDimmed {
    display: block;
}
body.expand #aside {
    right: 0;
    visibility: visible;
}

#aside .btnClose {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    color: #333333;
}

#aside .intro {
    padding: 30px 20px;
    text-align: center;
    border-bottom: 1px solid #eeeeee;
}

#aside .intro img {
    width: 140px;
    margin: 0 auto;
}

/* Accordion Menu */
#lnb {
    flex: 1;
    padding: 0;
}
#lnb > ul > li {
    border-bottom: 1px solid #f0f0f0;
}

#lnb > ul > li > a {
    display: flex;
    justify-content: space-between;
    padding: 16px 20px;
    font-size: 16px;
    font-weight: 600;
    color: #333333;
}

#lnb > ul > li > a:not(.no-sub)::after {
    font-family: "Material Icons";
    font-size: 20px;
    transition: 0.3s;
    content: "expand_more";
}

#lnb > ul > li.on > a::after {
    transform: rotate(180deg);
}

#lnb ul ul {
    display: none;
    padding: 10px 0;
    background: #f8f9fa;
}

#lnb ul ul li a {
    display: block;
    padding: 10px 30px;
    font-size: 14px;
    color: #555555;
}

/* Sidebar Contact */
#aside .scustom {
    padding: 30px 20px;
    background: #f1f3f5;
}

#aside .scustom h2 {
    font-size: 16px;
    color: #333333;
    margin-bottom: 10px;
}

#aside .scustom h3 a {
    display: flex;
    gap: 5px;
    align-items: center;
    font-size: 20px;
    font-weight: 700;
    color: #00a1e9;
    margin-bottom: 5px;
}

.mobile-tel a {
    font-size: 16px !important;
    color: #555555 !important;
}

#aside .social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

#aside .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    font-size: 20px;
    color: #ffffff;
}

.kakao-link {
    background: #fee500;
    color: #191919 !important;
}
.naver-link {
    background: #03c75a;
}

/* =========================================
   5. Hero Section (Main Slider)
   ========================================= */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 740px;
    overflow: hidden;
    background: #000000;
}
@media (max-width: 767px) {
    .hero-section {
        height: 100vh;
        min-height: 100%;
    }
}

.hero-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s;
    opacity: 0;
}
.hero-item.active {
    visibility: visible;
    opacity: 1;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    transition: transform 6s ease;
    transform: scale(1.4);
}

.bg-business { background-image: url("/img/main_slide/m1.jpg"); }
.bg-special { background-image: url("/img/main_slide/m2.jpg"); }
.bg-residential { background-image: url("/img/main_slide/m3.jpg"); }

.hero-item.active .hero-bg {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
}

.hero-content {
    display: flex;
    justify-content: center;
    flex-direction: column;
    position: relative;
    z-index: 10;
    max-width: 1400px;
    height: 100%;
    margin: 0 auto;
    padding: 0 100px;
    color: #ffffff;
}
@media (max-width: 1024px) {
    .hero-content {
        align-items: center;
        padding: 0 20px;
        text-align: center;
    }
}

.hero-item .slide-sub {
    font-size: 20px;
    font-weight: 600;
    color: #21cbbe;
    letter-spacing: 3px;
    transition: 0.8s 0.2s;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
}
@media (max-width: 767px) {
    .hero-item .slide-sub {
        font-size: 16px;
        margin-bottom: 10px;
    }
}

.hero-item .slide-title {
    font-size: 60px;
    font-weight: 700;
    line-height: 1.3;
    color: #ffffff;
    transition: 0.8s 0.4s;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(30px);
}
@media (max-width: 1024px) {
    .hero-item .slide-title {
        font-size: 48px;
    }
}
@media (max-width: 767px) {
    .hero-item .slide-title {
        font-size: 30px;
        margin-bottom: 15px;
    }
}

.hero-item .slide-desc {
    max-width: 600px;
    font-size: 20px;
    transition: 0.8s 0.6s;
    opacity: 0;
    margin-bottom: 50px;
    transform: translateY(30px);
}
@media (max-width: 767px) {
    .hero-item .slide-desc {
        font-size: 16px;
        margin-bottom: 25px;
    }
}

.hero-btn {
    display: inline-block;
    width: fit-content;
    padding: 10px 40px;
    border: 2px solid #ffffff;
    font-weight: 600;
    color: #ffffff;
    transition: 0.8s 0.8s;
    opacity: 0;
    transform: translateY(30px);
}
@media (max-width: 767px) {
    .hero-btn {
        padding: 6px 25px;
    }
}

.hero-btn:hover {
    background: #ffffff;
    color: #06348b;
}

.hero-item.active .slide-sub,
.hero-item.active .slide-title,
.hero-item.active .slide-desc,
.hero-item.active .hero-btn {
    opacity: 1;
    transform: translateY(0);
}

.hero-dots {
    display: flex;
    gap: 15px;
    position: absolute;
    bottom: 50px;
    left: 50%;
    z-index: 20;
    transform: translateX(-50%);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: 0.3s;
    cursor: pointer;
}

.dot.active {
    width: 30px;
    border-radius: 10px;
    background: #21cbbe;
}

/* =========================================
   6. About Section
   ========================================= */
.about-wrap {
    position: relative;
    overflow: hidden;
}

.about-layout {
    display: grid;
    gap: 80px;
    align-items: center;
    grid-template-columns: 1fr 1fr;
}
@media (max-width: 1024px) {
    .about-layout {
        gap: 40px;
        grid-template-columns: 1fr;
    }
}

.about-img-main {
    position: relative;
    z-index: 2;
    height: 500px;
    border-radius: 20px 0 20px 0;
    box-shadow: 12px 12px 0 #eeeeee;
    overflow: hidden;
}
@media (max-width: 1024px) {
    .about-visual {
        margin-top: 40px;
        order: 1;
    }
}

.about-img-main img {
    width: 100%;
    height: 100%;
    transition: 0.5s;
    object-fit: cover;
}

.about-img-main:hover img {
    transform: scale(1.05);
}

.about-text {
    padding-right: 20px;
}
@media (max-width: 1024px) {
    .about-text {
        padding: 0;
        text-align: center;
        order: 2;
    }
}

.cert-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 40px;
}
@media (max-width: 1024px) {
    .cert-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

.cert-card {
    display: flex;
    gap: 15px;
    align-items: center;
    padding: 20px;
    border: 1px solid #eeeeee;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    background: #ffffff;
}

.cert-card i {
    font-size: 28px;
    color: #1bd79a;
}

.cert-card span {
    font-size: 16px;
    font-weight: 600;
    color: #333333;
}

/* =========================================
   7. Services Grid
   ========================================= */
.services-grid {
    display: grid;
    gap: 25px;
    grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 767px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.svc-card {
    position: relative;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    transition: 0.4s;
    cursor: pointer;
}

.svc-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transform: translateY(-10px);
}

.svc-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: 0.5s;
    object-fit: cover;
    opacity: 1;
}

.svc-card:hover .svc-bg {
    transform: scale(1.4);
    opacity: 0.9;
}

.svc-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    color: #ffffff;
    transition: 0.4s;
}

.svc-icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #08348b;
    font-size: 24px;
    margin-bottom: 60px;
}

.svc-content h3 {
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 10px;
}

.svc-content p {
    font-size: 18px;
    line-height: 1.5;
    color: #dddddd;
}

/* =========================================
   8. Promise Section
   ========================================= */
.promise-banner-section {
    position: relative;
    padding: 100px 20px;
    background-image: linear-gradient(rgba(0, 134, 125, 0.8), rgba(0, 85, 87, 0.8)), url("/img/eco2.png");
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    color: #ffffff;
}

.promise-banner-section .promise-content {
    display: flex;
    align-items: center;
    flex-direction: column;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.promise-banner-section h2 {
    color: #ffffff;
}

.promise-banner-section .promise-grid {
    display: grid;
    gap: 0;
    width: 100%;
    grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 767px) {
    .promise-banner-section .promise-grid {
        grid-template-columns: 1fr;
    }
}

.promise-item {
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 40px 20px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
@media (max-width: 767px) {
    .promise-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }
}

.promise-item:nth-child(3n) {
    border-right: none;
}

.promise-item:nth-child(n + 4) {
    border-bottom: none;
}

.promise-item .item-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: rgba(142, 248, 255, 0.3);
    font-size: 30px;
    color: #ffffff;
    margin-bottom: 20px;
}

.promise-item .item-icon i {
    font-size: 50px;
}

.promise-item .item-title {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.promise-item .item-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #e9ecef;
    word-break: keep-all;
}

/* =========================================
   9. Stats Section
   ========================================= */
.clinical-stats-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 100px 20px 40px;
}

.clinical-stats-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: 1fr 1fr;
}
@media (max-width: 1024px) {
    .clinical-stats-grid {
        grid-template-columns: 1fr;
    }
}

.stats-header {
    text-align: center;
    grid-column: 1 / -1;
    margin-bottom: 26px;
}

.stat-card {
    display: flex;
    justify-content: space-between;
    position: relative;
    min-height: 200px;
    padding: 30px;
    border-radius: 20px;
    overflow: hidden;
}

.stat-card .item-number-wrapper {
    display: flex;
    gap: 8px;
    align-items: baseline;
}

.stat-card .stat-number {
    font-size: 60px;
    font-weight: 700;
    color: #0a42b1;
}
@media (max-width: 1024px) {
    .stat-card .stat-number {
        font-size: 40px;
        letter-spacing: -1px;
    }
}

.stat-card .stat-unit {
    font-size: 30px;
    font-weight: 700;
}

.stat-card .stat-icon {
    font-size: 60px;
    color: #6bc3a6;
}

.stat-card .visual-content {
    position: absolute;
    right: 30px;
    bottom: 30px;
}

.stat-card.type-sci {
    background-color: #f2fcfb;
}
.stat-card.type-patients {
    background-color: #eef4ff;
    color: #000000;
}
.stat-card.type-surgery {
    background-color: #eff8fb;
}
.stat-card.type-infection {
    background-color: #f8f9fa;
}

/* =========================================
   10. Partners Section
   ========================================= */
.partners-wrap {
    padding: 80px 0;
    overflow: hidden;
    background: #ffffff;
}

.slider-track {
    display: flex;
    gap: 60px;
    width: max-content;
    animation: infiniteScroll 40s linear infinite;
}

.partner-logo {
    width: auto;
    height: 30px;
    transition: 0.3s;
    opacity: 1;
}

.partner-logo:hover {
    opacity: 1;
    transform: scale(1.4);
}

@keyframes infiniteScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* =========================================
   11. Reviews Section
   ========================================= */
.reviews-section {
    background: #f0f2f5;
}

.reviews-grid {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 1024px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 767px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

.review-card {
    display: flex;
    flex-direction: column;
    padding: 20px 20px;
    border-radius: 0px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    background: #ffffff;
    transition: 0.3s;
}

.review-card:hover {
    transform: translateY(-10px);
}

.review-header {
    display: flex;
    justify-content: space-between;
    margin: 20px 0 10px;
}

.rv-stars {
    font-size: 18px;
    color: #ffd600;
}

.rv-quote-icon {
    font-family: serif;
    font-size: 40px;
    line-height: 0;
    color: #eeeeee;
}

.rv-content {
    flex: 1;
    font-size: 17px;
    line-height: 1.6;
    color: #444444;
    margin-bottom: 25px;
}

.rv-author {
    display: flex;
    gap: 15px;
    align-items: center;
    border-top: 1px solid #f0f0f0;
    padding-top: 20px;
}

.rv-avatar {
    width: 100%;
    height: 220px;
    border-radius: 0%;
    background: #eeeeee;
    object-fit: cover;
}

.rv-meta h4 {
    font-size: 16px;
    margin-bottom: 2px;
}

.rv-meta span {
    font-size: 13px;
    color: #888888;
}

/* =========================================
   12. CTA Banner Section
   ========================================= */
.cta-hero-banner {
    position: relative;
    padding: 100px 20px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url("/img/online_bg.jpg");
    background-position: center;
    background-size: cover;
    color: #ffffff;
}

.cta-hero-banner .cta-hero-content {
    display: flex;
    align-items: center;
    flex-direction: column;
    position: relative;
    z-index: 2;
    max-width: auto;
    margin: 0 auto;
    text-align: center;
}

.cta-hero-banner .cta-hero-title {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0px;
    line-height: 1.4;
}

.cta-hero-banner .cta-desc {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 20px;
    margin-top: 5px;
}

.cta-hero-content .cta-icon {
    font-size: 60px;
    color: #21cbbe;
    margin-bottom: 20px;
}

.cta-hero-banner .cta-hero-phone-number {
    font-size: 44px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 1px;
    margin-bottom: 10px;
    line-height: 1.2;
    margin-top: 20px;
}

.cta-hero-banner .cta-hero-phone-number span {font-weight:800; color:#21cbbe;}

@media (max-width: 767px) {
.cta-hero-banner .cta-hero-phone-number {
  font-size:36px;}
}

.cta-hero-banner .cta-hero-buttons-wrap {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-hero-banner .btn-base {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-hero-banner .btn-base i {
    margin-right: 5px;
}

.cta-hero-banner .btn-blue {
    background-color: #0d6efd;
    color: #ffffff;
}

.cta-hero-banner .btn-blue:hover {
    background-color: #0b5ed7;
    transform: translateY(-2px);
}

.cta-hero-banner .btn-kakao {
    background-color: #fee500;
    color: #191919;
}

.cta-hero-banner .btn-kakao i {
    font-size: 24px;
}

.cta-hero-banner .btn-kakao:hover {
    background-color: #f0d900;
    transform: translateY(-2px);
}

/* =========================================
   13. Footer Section
   ========================================= */
.footer-wrap {
    padding: 80px 0 40px;
    background: #111111;
    font-size: 15px;
    color: #999999;
}

.footer-grid {
    display: grid;
    gap: 50px;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    margin-bottom: 60px;
    border-bottom: 1px solid #222222;
    padding-bottom: 60px;
}
@media (max-width: 767px) {
    .footer-grid {
        gap: 40px;
        grid-template-columns: 1fr;
    }
}

.ft-logo {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
}

.ft-desc {
    max-width: 300px;
    line-height: 1.6;
}

.ft-col h4 {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 20px;
}

.ft-links li {
    margin-bottom: 12px;
}

.ft-links a:hover {
    color: #21cbbe;
    text-decoration: underline;
}

.contact-list {
    color: #cccccc;
}

.ft-info {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 14px;
}

.ft-info span b {
    color: #cccccc;
    margin-right: 5px;
}

.ft-copyright {
    font-size: 13px;
    color: #555555;
    margin-top: 20px;
}

/* =========================================
   14. Floating Navigation
   ========================================= */
.quick-nav {
    display: flex;
    gap: 15px;
    flex-direction: column;
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 999;
}
@media (max-width: 1024px) {
    .quick-nav {
        gap: 8px;
        right: 5px;
        bottom: 10px;
    }
}

.q-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    background: #ffffff;
    font-size: 28px;
    transition: 0.3s;
}
@media (max-width: 1024px) {
    .q-btn {
        align-items: center;
        width: 80px;
        height: 32px;
        border-radius: 12px;
        font-size: 12px;
        font-weight: 600;
    }
}

.q-btn.tel {
    background: #06348b;
    color: #ffffff;
    animation: pulse 2s infinite;
}

.q-btn.mail {
    background: #56bb9a;
    color: #ffffff;
    animation: pulse 2s infinite;
}

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

.q-btn.kakao {
    background: #fee500;
    color: #000000;
}
.q-btn.naver {
    background: #03c75a;
    color: #ffffff;
}

.q-btn:hover {
    transform: scale(1.4);
}

@media (max-width: 1024px) {
    .q-btn i {
        font-size: 15px;
        margin-right: 5px;
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(6, 52, 139, 0.7);
    }
    60% {
        box-shadow: 0 0 0 15px rgba(6, 52, 139, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(6, 52, 139, 0);
    }
}

/* =========================================
   15. Map & Etc
   ========================================= */
.root_daum_roughmap .cont {
    display: none;
}

.root_daum_roughmap {
    width: 100% !important;
    height: 100% !important;
}

.root_daum_roughmap .wrap_map {
    height: 100% !important;
}