@charset "utf-8";

/* =========================================
   Global & Reset
========================================= */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Pretendard', sans-serif;
    word-break: keep-all; /* Korean typography standard */
}

html {
    scroll-behavior: smooth;
}

body {
    color: #111111;
    line-height: 1.6;
    background-color: #ffffff;
    overflow-x: hidden;
}

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

ul, ol, li {
    list-style: none;
}

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

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

/* =========================================
   Utility Classes
========================================= */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.pc_br {
    display: inline;
}

.m_br {
    display: none;
}

@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }
    .section-padding {
        padding: 80px 0;
    }
    .pc_br {
        display: none;
    }
    .m_br {
        display: inline;
    }
}

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


/* =========================================
   Top Bar Component
========================================= */
.top-bar {
    background: #111111;
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.top-info {
    display: flex;
    gap: 20px;
}

.top-info span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.top-info i {
    font-size: 14px;
    color: #22ab3c; /* Accent Green */
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
}



/* =========================================
   Mobile Quick Menu Component
========================================= */
.mobile-quick-menu {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 1500;
    padding: 10px 0;
}

.quick-menu-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    max-width: 100%;
}

.quick-menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8px 5px;
    text-decoration: none;
    color: #666666;
    transition: 0.2s;
}

.quick-menu-item:active {
    background: #f5f5f5;
}

.quick-menu-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
    font-size: 22px;
}

.quick-menu-icon.phone {
    background: linear-gradient(135deg, #01419a, #0056b3);
    color: #ffffff;
}

.quick-menu-icon.sms {
    background: linear-gradient(135deg, #22ab3c, #2ecc71);
    color: #ffffff;
}

.quick-menu-icon.quote {
    background: linear-gradient(135deg, #01419a, #333);
    color: #ffffff;
}

.quick-menu-icon.kakao {
    background: #fee500;
    color: #3c1e1e;
}

.quick-menu-icon.naver {
    background: #03c75a;
    color: #ffffff;
}

.quick-menu-label {
    font-size: 11px;
    font-weight: 500;
    color: #666666;
}


/* =========================================
   Hero Slider Component
========================================= */
.hero-wrap {
    position: relative;
    width: 100%;
    height: 950px;
    overflow: hidden;
}

.heroSwiper {
    position: relative;
    height: 100%;
}


.hero-slide-item {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide-bg-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/main_slide/m1.jpg') no-repeat 50% 50%;
    background-size: cover;
}

.slide-bg-2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/main_slide/m2.jpeg') no-repeat 50% 50%;
    background-size: cover;
}

.slide-bg-3 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/main_slide/m3.png') no-repeat 50% 50%;
    background-size: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Slightly darker for contrast */
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0;
    text-shadow: 0 5px 10px rgba(0,0,0,0.2);
}

.hero-badge {
    display: inline-block;
    background: #01419a;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 4px; /* More standard */
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 24px;
    width: fit-content;

}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 30px;
}

.hero-desc {
    font-size: 24px;
    color: #f4f6f9;
    margin-bottom: 50px;
    max-width: 800px;
    opacity: 0.9;
}

.hero-btn-group {
    display: flex;
    gap: 16px;
    text-shadow:none;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    padding: 0 40px;
    background: #01419a;
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    border-radius: 2px;
    border: 2px solid #01419a;

}

.btn-hero-primary:hover {
    background: #002e70;
    border-color: #002e70;
}

.btn-hero-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    padding: 0 40px;
    background: transparent;
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    border-radius: 2px;
    border: 2px solid #ffffff;
}

.btn-hero-outline:hover {
    background: #ffffff;
    color: #01419a;
}

@media (max-width: 1024px) {
    .hero-wrap {
        height: 600px;
    }
    .hero-content {
        padding: 0 30px;
    }
    .hero-badge {
        font-size: 14px;
        padding: 6px 12px;
        margin-bottom: 20px;
    }
    .hero-title {
        font-size: 48px;
        margin-bottom: 24px;
    }
    .hero-desc {
        font-size: 18px;
        margin-bottom: 40px;
    }
}

@media (max-width: 767px) {
    .hero-wrap {
        height: 500px;
    }
    .hero-title {
        font-size: 32px;
        margin-bottom: 20px;
    }
    .hero-desc {
        font-size: 16px;
        margin-bottom: 30px;
    }
    .hero-btn-group {
        width: 100%;
        margin-top: 20px;
    }
    .btn-hero-primary,
    .btn-hero-outline {
        width: 100%;
        height: 50px;
        font-size: 16px;
        padding: 0 20px;
    }
}

/* Swiper Controls */
.heroSwiper .swiper-pagination {
    position: absolute;
    bottom: 10px !important;
    z-index: 100 !important;
}

.heroSwiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.6);
    opacity: 1;
    margin: 0 8px !important;
    transition: 0.3s;
}

.heroSwiper .swiper-pagination-bullet:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.2);
}

.heroSwiper .swiper-pagination-bullet-active {
    background: #ffffff;
    width: 32px;
    border-radius: 6px;
    transition: 0.3s;
}

.heroSwiper .swiper-button-next,
.heroSwiper .swiper-button-prev {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: 0.3s;
}

.heroSwiper .swiper-button-next:after,
.heroSwiper .swiper-button-prev:after {
    font-size: 24px;
    font-weight: 900;
    color: #ffffff;
}

.heroSwiper .swiper-button-next:hover,
.heroSwiper .swiper-button-prev:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .heroSwiper .swiper-button-next,
    .heroSwiper .swiper-button-prev {
        width: 40px;
        height: 40px;
    }
    .heroSwiper .swiper-button-next:after,
    .heroSwiper .swiper-button-prev:after {
        font-size: 20px;
    }
}


/* =========================================
   Stats Section
========================================= */
.stats-wrap {
    background: #01419a; /* Trust Blue */
    color: #ffffff;
    padding: 20px 0;
    position: relative;
    z-index: 20;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    text-align: center;
}

.stat-item {
    padding: 10px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item:last-child {
    border-right: none;
}

.stat-icon {
    font-size: 48px;
    margin-bottom:0px;
    opacity: 0.9;
    display: block;
}

.stat-num {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 5px;
    display: block;
}

.stat-label {
    font-size: 16px;
    opacity: 0.8;
    font-weight: 500;
}

@media (max-width: 1024px) {
    .stats-wrap {
        margin-top: 0;
        padding: 50px 0;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 20px;
    }
    .stat-item {
        border-right: none;
        padding: 15px;
    }
    .stat-icon {
        font-size: 40px;
        margin-bottom: 12px;
    }
    .stat-num {
        font-size: 36px;
    }
    .stat-label {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .stats-wrap {
        padding: 40px 0;
    }
    .stats-grid {
        gap: 30px 15px;
    }
}


/* =========================================
   Section Headers
========================================= */
.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-sub {
    color: #01419a;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px; /* Increased slightly */
    margin-bottom: 10px;
    display: block;
    font-size: 15px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    color: #111111;
    margin-bottom: 15px;
}

.section-desc {
    font-size: 18px;
    color: #666666;
    max-width: 700px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .section-header {
        margin-bottom: 50px;
    }
    .section-title {
        font-size: 36px;
    }
    .section-desc {
        font-size: 17px;
    }
}

@media (max-width: 768px) {
    .section-header {
        margin-bottom: 40px;
    }
    .section-title {
        font-size: 28px;
    }
    .section-desc {
        font-size: 16px;
    }
    .section-sub {
        font-size: 13px;
    }
}


/* =========================================
   Why Us Component
========================================= */
.why-wrap {
    background: #ffffff;
}

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

.feature-box {
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid #eeeeee;
    transition: 0.4s;
    position: relative;
    overflow: hidden;
}

.feature-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06);
    border-color: #01419a;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(1, 65, 154, 0.05); /* Slight tint */
    border-radius: 12px;
    color: #01419a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin-bottom: 25px;
}

.feature-tit {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.feature-txt {
    font-size: 16px;
    color: #666666;
    line-height: 1.7;
    word-break: keep-all;
}

@media (max-width: 1024px) {
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .feature-box {
        padding: 35px;
    }
}

@media (max-width: 768px) {
    .feature-box {
        padding: 30px;
    }
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 40px;
        margin-bottom: 20px;
    }
    .feature-tit {
        font-size: 20px;
    }
    .feature-txt {
        font-size: 15px;
    }
}


/* =========================================
   Certifications Component
========================================= */
.cert-wrap {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0;
    border-top: 1px solid #eeeeee;
    border-bottom: 1px solid #eeeeee;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.cert-card {
    background: #ffffff;
    padding: 40px 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: 0.3s;
    border: 2px solid transparent;
}

.cert-card:hover {
    transform: translateY(-5px); /* Subtler lift */
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    border-color: #22ab3c; /* Accent Green on hover */
}

.cert-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: #01419a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #ffffff;
}

.cert-icon.gold {
    background: linear-gradient(135deg, #d4af37, #ffd700);
}

.cert-icon.green {
    background: #22ab3c;
}

.cert-title {
    font-size: 18px;
    font-weight: 700;
    color: #111111;
    margin-bottom: 10px;
}

.cert-desc {
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
}

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

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


/* =========================================
   Business Services Component
========================================= */
.biz-full-wrap {
    position: relative;
    background-image: url('https://images.unsplash.com/photo-1497366216548-37526070297c?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    color: #ffffff;
}

.biz-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 5, 20, 0.88); /* Darker blue overlay */
    z-index: 1;
}

.biz-card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    z-index: 2;
}

.biz-card {
    border-radius: 12px;
    transition: 0.3s;
    background: #ffffff;
    color:#000;
}

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




.biz-icon-circle {
    width: 100%;
    height:200px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    transition: 0.3s;
}


.biz-card-content {
    padding: 15px 25px;
}

.biz-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #000;
    margin-bottom:5px;
    transition: 0.3s;
}

.biz-card p {
    font-size: 16px;
    color: #000;
    line-height: 1.6;
    margin-bottom:5px;
    transition: 0.3s;
    word-break: keep-all;
}

.biz-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 15px;
    font-weight: 600;
    color: #22ab3c; /* Green link */
    transition: 0.3s;
}

.biz-card:hover .biz-link {
    color: #01419a;
}

@media (max-width: 1024px) {
    .biz-full-wrap {
        padding: 80px 0;
    }
    .biz-card-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .biz-full-wrap {
        padding: 60px 0;
    }
    .biz-card-grid {
        grid-template-columns: 1fr;
    }
    .biz-card {
        padding: 30px 25px;
    }
    .biz-card h3 {
        font-size: 20px;
    }
    .biz-card p {
        font-size: 15px;
    }
}


/* =========================================
   Residential Service Component
========================================= */
.home-full-wrap {
    padding: 100px 0;
    background: #fdfdfd;
}

.home-header-row {
    display: flex;
    gap: 60px;
    align-items: center;
}

.home-tit-box {
    flex: 1;
}

.home-sub {
    color: #22ab3c; /* Accent Green */
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

.home-tit-box h2 {
    font-size: 48px;
    font-weight: 800;
    color: #111111;
    line-height: 1.2;
    margin-bottom: 30px;
}

.home-tit-box p {
    font-size: 18px;
    color: #555555;
    line-height: 1.7;
    margin-bottom: 40px;
}

.btn-home-counsel {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #111111;
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    transition: 0.3s;
}

.btn-home-counsel:hover {
    background: #01419a;
    transform: translateX(5px);
}

.home-service-grid {
    flex: 2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.home-item {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.3s;
    border: 1px solid #f0f0f0;
}

.home-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.home-thumb {
    height: 180px;
    position: relative;
    overflow: hidden;
}

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

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

.home-icon-overlay {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 50px;
    height: 50px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #01419a;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    font-size: 24px;
}

.home-txt-box {
    padding: 25px;
}

.home-txt-box h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.home-txt-box p {
    font-size: 15px;
    color: #777777;
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .home-header-row {
        flex-direction: column;
        gap: 40px;
    }
    .home-tit-box {
        text-align: center;
    }
    .home-sub {
        justify-content: center;
        display: flex;
    }
    .home-tit-box h2 {
        font-size: 36px;
    }
    .home-service-grid {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .home-full-wrap {
        padding: 60px 0;
    }
    .home-tit-box h2 {
        font-size: 28px;
    }
    .home-tit-box p {
        font-size: 16px;
    }
    .home-service-grid {
        grid-template-columns: 1fr;
    }
}


/* =========================================
   Process Component
========================================= */
.process-wrap {
    background: #ffffff;
}

.process-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

.process-card {
    text-align: center;
    position: relative;
    padding: 20px;
}

.process-step {
    font-size: 14px;
    font-weight: 800;
    color: #898989;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.process-icon-box {
    width: 120px;
    height: 120px;
    margin: 0 auto 25px;
    border-radius: 20px;
    background: #01419a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 56px;
    color: #ffffff;
    transition: 0.4s;
    position: relative;
    z-index: 2;
}

.process-card:hover .process-icon-box {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 40px rgba(1, 65, 154, 0.3);
}

.process-tit {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.process-desc {
    font-size: 16px;
    color: #777777;
    word-break: keep-all;
}

.process-list::before {
    display: none;
}

@media (max-width: 1024px) {
    .process-list {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}


/* =========================================
   Portfolio Gallery Component
========================================= */
.pf-wrap {
    background: #f8f9fa;
}

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

.pf-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    height: 300px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.pf-item img {
    transition: 0.5s;
}

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

.pf-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: #ffffff;
    transform: translateY(20px);
    opacity: 0;
    transition: 0.3s;
}

.pf-item:hover .pf-overlay {
    transform: translateY(0);
    opacity: 1;
}

.pf-cat {
    font-size: 14px;
    color: #22ab3c; /* Green */
    margin-bottom: 5px;
    font-weight: 600;
}

.pf-tit {
    font-size: 20px;
    font-weight: 700;
}

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


/* =========================================
   Partners Marquee Component
========================================= */
.partners-wrap {
    padding: 60px 0;
    background: #ffffff;
    border-bottom: 1px solid #eeeeee;
    overflow: hidden;
}

.partners-track {
    display: flex;
    gap: 60px;
    animation: scroll 30s linear infinite;
    width: max-content;
}

.partner-logo {
    height: 50px;
    opacity: 0.5;
    filter: grayscale(100%);
    transition: 0.3s;
}

.partner-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
}

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


/* =========================================
   Review Component
========================================= */
.review-wrap {
    background: #ffffff;
    position: relative;
}

.review-card {
    background: #ffffff;
    padding: 0;
    border-radius: 16px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    min-height: 420px;
    overflow: hidden;
}

.review-customer-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.review-content {
    padding: 30px 30px 40px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.review-quote {
    font-size: 40px;
    color: #01419a;
    margin-bottom: 20px;
    opacity: 0.3;
    line-height: 1;
    font-family: serif;
}

.review-txt {
    font-size: 17px;
    color: #444444;
    line-height: 1.6;
    margin-bottom: 30px;
    flex: 1;
}

.review-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid #eeeeee;
    padding-top: 20px;
}

.reviewer-initial {
    width: 45px;
    height: 45px;
    background: #333333;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.reviewer-info strong {
    display: block;
    font-size: 16px;
    color: #111111;
    margin-bottom: 2px;
}

.reviewer-info span {
    font-size: 13px;
    color: #888888;
}

.star-rating {
    color: #f1c40f;
    margin-bottom: 15px;
}


/* =========================================
   Track Record (Marquee) Component
========================================= */
.track-record {
    position: relative;
    color: white;
    padding: 120px 0;
    overflow: hidden;
}

.track-record:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("/img/online_bg.jpg");
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.track-record .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1;
}

.track-record .container {
    position: relative;
    z-index: 2;
}


.track-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 24px;
    opacity: 0.7;
}

.marquee {
    display: flex;
    gap: 40px;
    width: max-content;
    animation: scroll 40s linear infinite;
}

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

.track-item {
    width: 160px; /* Fixed width for better consistency */
    height: 70px; /* Slightly increased height */
    padding: 15px; /* Adjust padding */
    background: #fff;
    border-radius: 10px;
    box-sizing: border-box;
}
.track-item img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Changed from cover to contain */
}

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


/* =========================================
   FAQ Component
========================================= */
.faq-wrap {
    background: #ffffff;
    padding: 100px 0;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s;
}

.faq-item:hover {
    border-color: #0043e0;
}

.faq-question {
    background: #ffffff;
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    color: #111111;
    transition: 0.3s;
    user-select: none;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question.active {
    background: #0043e0;
    color: #ffffff;
}

.faq-icon {
    font-size: 24px;
    transition: transform 0.3s;
}

.faq-question.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: #f8f9fa;
}

.faq-answer-inner {
    padding: 25px 30px;
    color: #555555;
    line-height: 1.8;
    font-size: 16px;
}

.faq-answer ul {
    margin-top: 15px;
    padding-left: 20px;
}

.faq-answer li {
    list-style: disc;
    margin-bottom: 8px;
    color: #666666;
}

@media (max-width: 768px) {
    .faq-question {
        font-size: 16px;
        padding: 20px;
    }
    .faq-answer-inner {
        padding: 20px;
        font-size: 15px;
    }
}


/* =========================================
   CTA Component
========================================= */
.cta-section {
    position: relative;
    color: white;
    padding: 120px 0;
    overflow: hidden;
    text-align: center;
}

.cta-section:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("/img/md_bg.jpg");
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.cta-section .cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 48px;
    margin-bottom: 20px;
}

.cta-sub {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-btn-group {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 64px;
    padding: 0 40px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    transition: 0.3s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.cta-btn.phone {
    background: #ffffff;
    color: #002e97;
    border: 2px solid #ffffff;
}

.cta-btn.phone:hover {
    transform: translateY(-3px);
}

.cta-btn.consult {
    background: #0043e0;
    color: #ffffff;
}

.cta-btn.consult:hover {
    transform: translateY(-3px);
}

.cta-btn.kakao {
    background: #fee500;
    color: #3c1e1e;
}

.cta-btn.kakao i {
    font-size: 24px;
    color: #3c1e1e;
}

.cta-btn.kakao:hover {
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .cta-btn {
        width: 100%;
        font-size: 16px;
        height: 56px;
    }
}


/* =========================================
   Footer Component
========================================= */
.footer-wrap {
    background: #0a0a0a;
    color: #999999;
    padding: 80px 0 30px;
    font-size: 15px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.ft-logo {
    width: auto;
    height: 65px;
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
}

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

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

.ft-tit {
    color: #ffffff;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 25px;
}

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

.ft-link a:hover {
    color: #00d2ff;
    padding-left: 5px;
}

.ft-info p {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ft-bottom {
    border-top: 1px solid #222222;
    padding-top: 30px;
    text-align: center;
    font-size: 14px;
}

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

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


/* =========================================
   FAB Component
========================================= */
.fab-wrap {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.fab-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    transition: 0.3s;
}

.fab-btn.kakao {
    background: #fee500;
    color: #3c1e1e;
}

.fab-btn.call {
    background: #0043e0;
    color: #ffffff;
}

.fab-btn:hover {
    transform: translateY(-5px);
}



@media (max-width: 768px) {
    .fab-wrap {
       right:10px;
    }
}


/* =========================================
   Refactoring Utilities (Inline Style Replacements)
========================================= */
.header-logo-icon { font-family: 'Material Symbols Rounded'; font-size: 32px; margin-right: 8px; }
.m-logo-text { font-weight: 800; color: #0043e0; font-size: 20px; }
.btn-close-menu { background: none; border: none; cursor: pointer; }
.icon-close { font-size: 28px; color: #111111; }
.swiper-button-white { color: #ffffff !important; }
.biz-content-container { position: relative; z-index: 2; }
.text-accent { color: #00d2ff !important; }
.text-white { color: #ffffff !important; }
.text-white-80 { color: rgba(255, 255, 255, 0.8) !important; }
.mb-30 { margin-bottom: 30px !important; }
.mt-30 { margin-top: 30px !important; }
.partners-title { text-align: center; margin-bottom: 30px; font-size: 18px; color: #999999; text-transform: uppercase; }
.btn-icon { font-size: 28px; }
.ft-logo-icon { font-family: 'Material Symbols Rounded'; font-size: 32px; color: #ffffff; vertical-align: middle; }
.ft-logo-text { font-weight: 800; font-size: 24px; color: #ffffff; vertical-align: middle; }
.terms-link { color: #999999 !important; }
.marquee-reverse { animation-direction: reverse; }
.swiper-pagination-bottom { bottom: 0 !important; }

    /* --- Header 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);
    }
    .header.scrolled {
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
        background-color: rgba(255, 255, 255, 1);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border-bottom: 1px solid #eee;
    }
    .header.menu-open {
        height: 350px; /* 메가메뉴 높이에 맞게 조절 */
        background-color: #fff;
        border-bottom: 1px solid #eee;
    }
    .header .wrap {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        max-width: 1400px;
        margin: 0 auto;
        height: 90px;
    }
    .header .logo {
        z-index: 2;
        width: 200px;
        height: auto;
        margin-top: 0px;
    }
    .header .logo img {
        width: 100%;
        transition: opacity 0.3s;
    }
    .header .logo .logo-dark {
        display: block;
    }
    .header .logo .logo-white {
        display: none;
    }
    /* --- Desktop Navigation --- */
    .nav-desktop {
        display: flex;
        align-items: center;
        height: 100%;
    }
    .nav-desktop .gnb {
        display: flex;
    }
    .nav-desktop .gnb > li > a {
        display: flex;
        align-items: center;
        position: relative;
        height: 90px;
        padding: 0 28px;
        font-size: 20px;
        font-weight: 500;
        color: #343a40; /* 기본 텍스트 색상 (스크롤 전) */
        transition: color 0.3s;
    }
    /* 스크롤 전 투명 배경일 때 텍스트 색상 (흰색) */
    .header:not(.scrolled):not(.menu-open) .nav-desktop .gnb > li > a {
        color: #ffffff;
    }
    /* 스크롤 전 모바일 트리거 색상 (흰색) */
    .header:not(.scrolled):not(.menu-open) #menu-toggle {
        color: #ffffff;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    }
    /* 스크롤 전/메뉴 닫혔을 때 (투명 배경) 흰색 로고 표시 */
    .header:not(.scrolled):not(.menu-open) .logo .logo-white {
        display: block;
    }
    .header:not(.scrolled):not(.menu-open) .logo .logo-dark {
        display: none;
    }
    .nav-desktop .gnb > li > a:hover {
        color: #072646; /* Updated Color */
    }
    /* 스크롤 안됐을 때 호버 색상 */
    .header:not(.scrolled):not(.menu-open) .nav-desktop .gnb > li > a:hover {
        color: #ddd;
    }
    .nav-desktop .gnb > li > a::after {
        position: absolute;
        bottom: 20px;
        left: 50%;
        width: 0;
        height: 2px;
        background-color: #072646; /* Updated Color */
        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% - 56px);
    }

    /* --- Mega Menu --- */
    .mega-menu-panel {
        position: absolute;
        top: 90px;
        left: 0;
        z-index: 1;
        width: 100%;
        visibility: hidden;
        padding: 30px 0;
        transition: opacity 0.4s ease-out, transform 0.4s ease-out, visibility 0.4s;
        opacity: 0;
        transform: translateY(-10px);
        border-top: 1px solid #eee;
    }
    .header.menu-open .mega-menu-panel {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
    }
    .mega-menu-panel .wrap {
        display: flex;
        gap: 60px;
        align-items: flex-start;
        justify-content: flex-start;
        height: auto;
    }
    .submenu-column.megaf {
        margin-left: 260px;
    }
    .submenu-column {
        max-width: 190px;
    }
    .submenu-column h4 {
        font-size: 19px;
        font-weight: 700;
        color: #000; /* Updated Color */
        margin-bottom: 5px;
        padding-bottom: 10px;
    }
    .submenu-column ul li a {
        display: block;
        padding: 9px 0;
        font-size: 16px;
        color: #495057;
        transition: color 0.3s, transform 0.3s;
    }
    .submenu-column ul li a:hover {
        color: #072646; /* Updated Color */
        transform: translateX(4px);
    }

    /* --- Header Responsive --- */
    @media (max-width: 1024px) {
        .nav-desktop,
        .mega-menu-panel {
            display: none;
        }
        .header .wrap {
            height: 80px;
            padding: 0 20px;
        }
        .header,
        .header.menu-open {
            height: 80px;
        }
        #menu-toggle {
            display: flex;
        }
        .header .logo {
            z-index: 2;
            width: 140px;
            height: auto;
        }
    }
    @media (max-width: 767px) {
        .header,
        .header.menu-open {
            height: 70px;
        }
        .header .wrap {
            height: 70px;
        }
        .header .logo {
            width: 140px;
            height: auto;
        }
        #menu-toggle {
            top: 10px;
            right: 15px;
        }
    }

    #menu-toggle {
        display: none;
        position: fixed;
        top: 20px;
        right: 20px;
        z-index: 1001; /* 1000인 헤더보다 높게 */
        color: #fff;
        border: none;
        cursor: pointer;
        font-size: 16px;
    }

    @media (max-width: 1024px) {
        /* 1024px부터 보이도록 수정 */
        #menu-toggle {
            display: block;
        }
    }

    @media (max-width: 767px) {
        #menu-toggle {
            top: 20px;
            right: 20px;
        }
    }

    #menu-toggle i {
        font-size: 28px;
    }

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