@charset "utf-8";



/* =========================================
   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%;
    overflow: hidden;
}

/* 배경 이미지 및 줌인 인터랙션 */
.modoo-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    transform: scale(1);
    /* 비활성화 시 슬라이드 전환 시간(1.5초)에 맞춰 부드럽게 복구 */
    transition: transform 1.5s ease-out;
}

.swiper-slide-active .modoo-slide-bg {
    transform: scale(1.08);
    /* 활성화 시 슬라이드 주기(JS 연동 변수, 기본값 6초) 동안 부드럽게 등속 확대 */
    transition: transform var(--hero-autoplay-delay, 6000ms) linear;
}

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

.hero-content {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    z-index: 10;
    max-width: 1400px;
    height: 100%;
    margin: 0 auto;
    padding: 0 40px;
    text-align: left;
}

.hero-accent-badge {
    display: inline-block;
    border-left: 3px solid #3b82f6;
    padding-left: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #3b82f6;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.25;
    color: #ffffff;
    margin-bottom: 30px;
    letter-spacing: -0.02em;
    word-break: keep-all;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.hero-desc {
    max-width: 720px;
    font-size: 22px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 48px;
    word-break: keep-all;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

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

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    padding: 0 36px;
    border: 2px solid #01419a;
    border-radius: 4px;
    background: #01419a;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

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

.btn-hero-primary:hover i {
    transform: translateX(4px);
}

.btn-hero-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    padding: 0 36px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.08);
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    backdrop-filter: blur(4px);
}

.btn-hero-outline:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: #111827;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

@media (max-width: 1024px) {
    .hero-wrap {
        height: 700px;
    }
    .hero-content {
        padding: 0 30px;
    }
    .hero-accent-badge {
        font-size: 13px;
        margin-bottom: 20px;
    }
    .hero-title {
        font-size: 48px;
        line-height: 1.3;
        margin-bottom: 24px;
    }
    .hero-desc {
        font-size: 18px;
        margin-bottom: 36px;
        max-width: 600px;
    }
    .btn-hero-primary,
    .btn-hero-outline {
        height: 54px;
        padding: 0 30px;
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .hero-wrap {
        height: 600px;
    }
    .hero-overlay {
        background: linear-gradient(to bottom, rgba(10, 17, 30, 0.95) 0%, rgba(10, 17, 30, 0.8) 60%, rgba(10, 17, 30, 0.6) 100%);
    }
    .hero-content {
        padding: 0 20px;
    }
    .hero-accent-badge {
        font-size: 12px;
        margin-bottom: 16px;
    }
    .hero-title {
        font-size: 28px;
        line-height: 1.35;
        margin-bottom: 16px;
    }
    .hero-desc {
        font-size: 15px;
        line-height: 1.5;
        margin-bottom: 28px;
        color: rgba(255, 255, 255, 0.8);
    }
    .hero-btn-group {
        width: 80%;
        gap: 10px;
    }
    .btn-hero-primary,
    .btn-hero-outline {
        flex: 1;
        width: auto;
        height: 38px;
        padding: 0 10px;
        font-size: 14px;
        border-radius: 4px;
    }
}









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

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

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

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

.heroSwiper .swiper-button-next,
.heroSwiper .swiper-button-prev {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    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;
    }
}




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

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

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

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

@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;
    gap: 30px;
    grid-template-columns: repeat(3, 1fr);
}

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

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

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

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

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

@media (max-width: 1024px) {
    .feature-grid {
        gap: 24px;
        grid-template-columns: 1fr;
    }
    .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 {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-top: 1px solid #eeeeee;
    border-bottom: 1px solid #eeeeee;
}

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

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

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

.cert-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: #01419a;
    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;
    line-height: 1.6;
    color: #666666;
}

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

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


/* =========================================
   Business Services Component
========================================= */
.biz-full-wrap {
    position: relative;
    overflow: hidden;
    padding: 110px 0;
    background: #ffffff;
    color: #111111;
}

.biz-bg-overlay {
    position: absolute;
    top: -220px;
    right: -160px;
    z-index: 0;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: rgba(1, 65, 154, 0.06);
    pointer-events: none;
}

.biz-content-container {
    position: relative;
    z-index: 1;
}

.biz-card-grid {
    display: grid;
    gap: 24px;
    position: relative;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.biz-card {
    position: relative;
    min-height: 520px;
    border-radius: 20px;
    overflow: hidden;
    color: #ffffff;
    isolation: isolate;
    background: #111111;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.biz-card:hover {
    box-shadow: 0 18px 45px rgba(1, 28, 64, 0.2);
    transform: translateY(-8px);
}

.biz-icon-circle {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
}

.biz-icon-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.biz-card:hover .biz-icon-circle img {
    transform: scale(1.06);
}

.biz-card::after {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg, rgba(0, 16, 36, 0.18) 0%, rgba(0, 16, 36, 0.48) 45%, rgba(0, 16, 36, 0.84) 100%);
    content: "";
}

.biz-card-content {
    display: flex;
    position: relative;
    min-height: 520px;
    padding: 34px;
    flex-direction: column;
    align-items: flex-start;
}



.biz-card-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin-bottom: 26px;
    border-radius: 50%;
    background: #01419a;
    font-size: 16px;
    font-weight: 800;
    color: #ffffff;
}

.biz-card h3 {
    margin-bottom: 12px;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.25;
    color: #ffffff;
    word-break: keep-all;
}

.biz-card p {
    max-width: 280px;
    font-size: 16px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.86);
    word-break: keep-all;
}

.biz-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-top: auto;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    font-size: 15px;
    color: #ffffff;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    backdrop-filter: blur(6px);
}

.biz-card:hover .biz-link {
    background: #ffffff;
    color: #01419a;
    transform: translateX(4px);
}

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

@media (max-width: 768px) {
    .biz-full-wrap {
        padding: 60px 0;
    }
    .biz-card-grid {
        grid-template-columns: 1fr;
    }
    .biz-card {
        min-height: 360px;
        border-radius: 16px;
    }
    .biz-card-content {
        min-height: 360px;
        padding: 28px;
    }
    .biz-card-badge {
        width: 42px;
        height: 42px;
        margin-bottom: 20px;
        font-size: 15px;
    }
    .biz-card h3 {
        font-size: 24px;
    }
    .biz-card p {
        font-size: 15px;
    }
    .biz-link {
        width: 48px;
        height: 48px;
    }
}


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

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

.home-tit-box {
    flex: 1;
    width: 100%;
    text-align: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

.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;
    line-height: 1.5;
    color: #777777;
}

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

@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;
    gap: 30px;
    position: relative;
    width: 100%;
    grid-template-columns: repeat(4, 1fr);
}

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

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

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

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

.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 {
        gap: 40px;
        width: 100%;
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .process-list {
        gap: 30px;
        grid-template-columns: 1fr;
    }
    .process-icon-box {
        width: 90px;
        height: 90px;
        font-size: 40px;
        margin-bottom: 20px;
    }
    .process-card {
        padding: 15px;
    }
}


/* =========================================
   Portfolio Gallery Component
========================================= */

/* =========================================
   Work Gallery (Horizontal Ticker Redesign)
 ========================================= */
.pf-wrap {
    background: #f4f7f9; /* Soft premium grey/blue tint */
    padding: 100px 0;
    overflow: hidden;
    position: relative;
    z-index: 10;
}

.gallery-ticker-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.gallery-marquee-row {
    display: flex;
    overflow: hidden;
    width: 100%;
    user-select: none;
    position: relative;
}

.gallery-track {
    display: flex;
    gap: 28px;
    width: max-content;
    animation: gallery-scroll 35s linear infinite;
}

/* Pause marquee scroll when the row or card is hovered */
.gallery-marquee-row:hover .gallery-track {
    animation-play-state: paused;
}

/* Gallery Card Design */
.gallery-card {
    width: 320px; /* Precise Golden Standard Width */
    background: #ffffff;
    border-radius: 0px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-thumb {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

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

.gallery-info {
    padding: 0;
    background: #ffffff;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.gallery-card-title {
    margin: 0;
    padding: 24px 0;
    width: 100%;
    font-size: 18px;
    font-weight: 700;
    color: #0f172a; /* Slate 900 */
    line-height: 1.5;
    word-break: keep-all;
    transition: color 0.3s ease;
}

/* Hover Micromotion: Lift up, card border color, image scale, box glow shadow */
.gallery-card:hover {
    transform: translateY(-8px);
    border-color: #01419a; /* Highlight Brand Blue */
    box-shadow: 0 20px 25px -5px rgba(1, 65, 154, 0.12), 0 10px 10px -5px rgba(1, 65, 154, 0.06);
}

.gallery-card:hover .gallery-thumb img {
    transform: scale(1.08); /* Cinematic Zoom In */
}

.gallery-card:hover .gallery-card-title {
    color: #01419a; /* Color focus Shift */
}

/* Seamless infinite looping keyframes calculated perfectly */
@keyframes gallery-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 14px)); /* Midpoint + half gap */
    }
}

/* Work Gallery Responsive Design */
@media (max-width: 1200px) {
    .pf-wrap {
        padding: 80px 0;
    }
    .gallery-card {
        width: 280px;
    }
    .gallery-thumb {
        height: 180px;
    }
    .gallery-info {
        padding: 18px 20px;
        min-height: 70px;
    }
    .gallery-card-title {
        font-size: 15px;
    }
    .gallery-track {
        gap: 24px;
        animation: gallery-scroll-1200 40s linear infinite;
    }
}

@media (max-width: 991px) {
    .pf-wrap {
        padding: 70px 0;
    }
    .gallery-card {
        width: 260px;
    }
    .gallery-thumb {
        height: 160px;
    }
    .gallery-info {
        padding: 16px;
        min-height: 64px;
    }
    .gallery-card-title {
        font-size: 14px;
    }
    .gallery-track {
        gap: 20px;
        animation: gallery-scroll-991 34s linear infinite;
    }
}

@media (max-width: 768px) {
    .pf-wrap {
        padding: 55px 0;
    }
    .gallery-card {
        width: 220px;
    }
    .gallery-thumb {
        height: 140px;
    }
    .gallery-info {
        padding: 14px;
        min-height: 58px;
    }
    .gallery-card-title {
        font-size: 13.5px;
    }
    .gallery-track {
        gap: 16px;
        animation: gallery-scroll-768 26s linear infinite;
    }
}

/* Precise Responsive Keyframes for Work Gallery seamless infinite loops */
@keyframes gallery-scroll-1200 {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 12px)); }
}

@keyframes gallery-scroll-991 {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 10px)); }
}

@keyframes gallery-scroll-768 {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 8px)); }
}


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

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

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

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

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


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

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

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

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

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

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

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

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

.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;
    padding: 120px 0;
    overflow: hidden;
    color: white;
}

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

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

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


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

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

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

/* Legacy duplicate track-item styles removed for cleanup */


/* =========================================
   Partners Section (Marquee Redesign)
 ========================================= */
.partners-wrap {
    padding: 100px 0;
    background: #f8fafc; /* Crisp clean light slate background */
    overflow: hidden;
    position: relative;
    z-index: 10;
}

.partners-wrap .section-sub {
    color: #01419a; /* Deep Brand Blue */
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 3px;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-align: center;
}

.partners-wrap .section-title {
    color: #0f172a; /* Midnight Charcoal slate */
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    text-align: center;
    line-height: 1.35;
    letter-spacing: -1px;
}

.partners-wrap .section-desc {
    color: #475569; /* Slate 600 */
    font-size: 18px;
    max-width: 720px;
    margin: 0 auto 60px auto;
    text-align: center;
    line-height: 1.6;
}

.partners-track-container {
    width: 100%;
    position: relative;
}

.partners-marquee-row {
    display: flex;
    width: 100%;
    user-select: none;
    position: relative;
}

.partners-marquee-row.mb-20 {
    margin-bottom: 20px;
}

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

.marquee-track.marquee-reverse {
    animation: scroll-right 45s linear infinite;
}

.partners-marquee-row:hover .marquee-track {
    /* Auto-play animation does not pause on hover as per user request */
    animation-play-state: running;
}

.partners-wrap .track-item {
    width: 220px;
    height: 100px;
    padding: 10px;
    border-radius: 0;
    border: 1px solid #ccc;
    background-color: white;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease-in-out;

    /* Grayscale filter removed to show original colors directly */
    filter: none;
    opacity: 1;
}

.partners-wrap .track-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: all 0.3s ease-in-out;
}

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

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 20px)); /* Half of container + half gap width to ensure seamless transition */
    }
}

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


/* =========================================
   Corporate Value Showcase Component
 ========================================= */
.value-wrap {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    min-height: 720px;
    background: #020617; /* Midnight dark slate baseline */
    display: flex;
    align-items: center;
    box-sizing: border-box;
}

/* Background Crossfade System */
.value-bg-wrapper {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.value-bg-item {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}

/* Activate active bg image with smooth transition */
.value-bg-item.active {
    opacity: 0.35; /* Elegant dark image visibility */
    transform: scale(1);
    z-index: 2;
}

/* Dark elegant gradient cover overlay to ensure high readability */
.value-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(9, 15, 30, 0.95) 40%, rgba(9, 15, 30, 0.7) 100%);
    z-index: 3;
}

.value-content-container {
    position: relative;
    z-index: 10;
    width: 100%;
}

.value-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr; /* Editorial asymmetrical columns */
    gap: 80px;
    align-items: center;
}

/* Left Content Styles */
.value-left {
    display: flex;
    flex-direction: column;
}

.value-sub {
    color: #00d2ff; /* Bright Trust Cyan color */
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 3px;
    margin-bottom: 24px;
    text-transform: uppercase;
}

/* Left text groups crossfade style */
.value-text-group {
    display: none;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.value-text-group.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.value-title {
    color: #ffffff;
    font-size: 46px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
}

.value-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    line-height: 1.8;
    word-break: keep-all;
}

/* Right Glassmorphism Tabs Styles */
.value-tabs {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Tab button: glassmorphic frosted glass design */
.value-tab-btn {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 32px;
    border-radius: 16px;
    background: rgba(15, 23, 42, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    cursor: pointer;
    box-sizing: border-box;
    text-align: left;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    width: 100%;
}

.tab-num {
    font-size: 16px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    transition: color 0.4s ease;
}

.tab-txt {
    font-size: 18px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
    transition: color 0.4s ease;
}

/* Tab Button Hover Effect */
.value-tab-btn:hover {
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(15, 23, 42, 0.6);
    transform: translateX(-4px);
}

.value-tab-btn:hover .tab-txt {
    color: #ffffff;
}

/* Tab Button Active State: Clean White Background, Slate 900 text, slides out */
.value-tab-btn.active {
    background: #ffffff;
    border-color: #ffffff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transform: translateX(-12px); /* Editorial slide-out offset */
}

.value-tab-btn.active .tab-num {
    color: #01419a; /* Brand Blue */
}

.value-tab-btn.active .tab-txt {
    color: #0f172a; /* Slate 900 */
}

/* =========================================
   Corporate Value Showcase Responsive Styles
 ========================================= */
@media (max-width: 1200px) {
    .value-wrap {
        padding: 100px 0;
    }
    .value-layout {
        gap: 50px;
    }
    .value-title {
        font-size: 38px;
    }
    .value-desc {
        font-size: 17px;
    }
    .value-tab-btn {
        padding: 20px 28px;
    }
    .tab-txt {
        font-size: 17px;
    }
}

@media (max-width: 991px) {
    .value-wrap {
        padding: 80px 0;
    }
    .value-layout {
        grid-template-columns: 1fr; /* Switch to 1 column on tablet viewports */
        gap: 60px;
    }
    .value-tab-btn.active {
        transform: translateY(-8px); /* Shifts up on mobile rather than left */
    }
    .value-tab-btn:hover {
        transform: translateY(-2px);
    }
}

@media (max-width: 768px) {
    .value-wrap {
        padding: 60px 0;
        min-height: auto;
    }
    .value-title {
        font-size: 30px;
        margin-bottom: 18px;
    }
    .value-desc {
        font-size: 15.5px;
        line-height: 1.7;
    }

    /* Convert vertical stack to smooth horizontal scrolling bar for best mobile usability */
    .value-tabs {
        flex-direction: row;
        overflow-x: auto;
        padding: 10px 0 20px 0;
        gap: 12px;
        width: 100%;
        scroll-snap-type: x mandatory;
        scrollbar-width: none; /* Hide default scrollbars */
    }
    .value-tabs::-webkit-scrollbar {
        display: none;
    }

    .value-tab-btn {
        flex: 0 0 auto;
        width: auto;
        padding: 14px 22px;
        border-radius: 12px;
        gap: 10px;
        scroll-snap-align: start;
    }
    .tab-num {
        font-size: 13px;
    }
    .tab-txt {
        font-size: 15px;
        white-space: nowrap;
    }
    .value-tab-btn.active {
        transform: none;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    }
}


/* Partners Section Responsive Design */
@media (max-width: 1200px) {
    .partners-wrap {
        padding: 80px 0;
    }
    .partners-wrap .section-title {
        font-size: 38px;
    }
    .partners-wrap .section-desc {
        font-size: 17px;
        margin-bottom: 50px;
    }
    .partners-wrap .track-item {
        width: 180px;
        height: 85px;
        padding: 10px;
    }
    .marquee-track {
        gap: 30px;
        animation: scroll-left-1200 40s linear infinite;
    }
    .marquee-track.marquee-reverse {
        animation: scroll-right-1200 40s linear infinite;
    }
}

@media (max-width: 991px) {
    .partners-wrap {
        padding: 70px 0;
    }
    .partners-wrap .track-item {
        width: 150px;
        height: 75px;
        padding: 8px;
    }
    .marquee-track {
        gap: 24px;
        animation: scroll-left-991 35s linear infinite;
    }
    .marquee-track.marquee-reverse {
        animation: scroll-right-991 35s linear infinite;
    }
}

@media (max-width: 768px) {
    .partners-wrap {
        padding: 55px 0;
    }
    .partners-wrap .section-title {
        font-size: 28px;
        letter-spacing: -0.5px;
    }
    .partners-wrap .section-desc {
        font-size: 15px;
        margin-bottom: 35px;
    }
    .partners-wrap .track-item {
        width: 120px;
        height: 60px;
        padding: 8px;
        border-radius: 8px;
    }
    .marquee-track {
        gap: 20px;
        animation: scroll-left-768 28s linear infinite;
    }
    .marquee-track.marquee-reverse {
        animation: scroll-right-768 28s linear infinite;
    }
}

/* Precise Responsive Keyframes to ensure 100% seamless loop alignment */
@keyframes scroll-left-1200 {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 15px)); }
}
@keyframes scroll-right-1200 {
    0% { transform: translateX(calc(-50% - 15px)); }
    100% { transform: translateX(0); }
}

@keyframes scroll-left-991 {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 12px)); }
}
@keyframes scroll-right-991 {
    0% { transform: translateX(calc(-50% - 12px)); }
    100% { transform: translateX(0); }
}

@keyframes scroll-left-768 {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 10px)); }
}
@keyframes scroll-right-768 {
    0% { transform: translateX(calc(-50% - 10px)); }
    100% { transform: translateX(0); }
}


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

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

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

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

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 30px;
    background: #ffffff;
    font-size: 18px;
    font-weight: 600;
    color: #111111;
    transition: 0.3s;
    cursor: pointer;
    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;
    background: #f8f9fa;
    transition: max-height 0.4s ease;
}

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

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

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

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


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

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

.cta-section .cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background:linear-gradient(180deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8));
}

.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;
    gap: 10px;
    align-items: center;
    justify-content: center;
    height: 64px;
    padding: 0 40px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    font-size: 18px;
    font-weight: 700;
    transition: 0.3s;
}

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

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

.cta-btn.consult {
    background: #01419a;
    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%;
        height: 56px;
        font-size: 16px;
    }
}


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

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

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

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

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

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

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

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

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

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

@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 {
    display: flex;
    gap: 15px;
    flex-direction: column;
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 1000;
}

.fab-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.15);
    background: #ffffff;
    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-size: 20px; font-weight: 800; color: #0043e0; }
.btn-close-menu { border: none; background: 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 { font-size: 18px; color: #999999; text-align: center; text-transform: uppercase; margin-bottom: 30px; }
.btn-icon { font-size: 28px; }
.ft-logo-icon { vertical-align: middle; font-family: 'Material Symbols Rounded'; font-size: 32px; color: #ffffff; }
.ft-logo-text { vertical-align: middle; font-size: 24px; font-weight: 800; color: #ffffff; }
.terms-link { color: #999999 !important; }
.marquee-reverse { animation-direction: reverse; }
.swiper-pagination-bottom { bottom: 0 !important; }



/* =========================================
   ModooClean Legacy Content Adjustments
========================================= */
.brand-logo-text {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    font-size: 25px;
    font-weight: 800;
    letter-spacing: 0;
    color: #01419a;
    white-space: nowrap;
}

.logo-white .brand-logo-text {
    color: #ffffff;
}

.header.scrolled .brand-logo-text,
.header.menu-open .brand-logo-text {
    color: #01419a;
}

.mobile-brand-text {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    font-size: 24px;
    font-weight: 800;
    color: #01419a;
}

.footer-logo-text {
    display: inline-block;
    margin-bottom: 20px;
    font-size: 26px;
    font-weight: 800;
    color: #ffffff;
}

.modoo-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
}

.modoo-slide-bg-building {
    background-image: url("../images/generated/index_hero_building.jpg");
}

.modoo-slide-bg-cleaning {
    background-image: url("../images/generated/index_hero_cleaning.jpg");
}

.modoo-slide-bg-facility {
    background-image: url("../images/generated/index_process_checklist_16x9_v2.png");
}

@media (max-width: 768px) {
    .modoo-slide-bg-building {
        background-image: url("../images/generated/index_hero_building_m.png");
    }
    .modoo-slide-bg-cleaning {
        background-image: url("../images/generated/index_hero_cleaning_m.png");
    }
    .modoo-slide-bg-facility {
        background-image: url("../images/generated/index_hero_facility_m.png");
    }
}


.page-modooclean .page-hero::before {
    background-image: url("../images/page/bld03.jpg");
}

.page-modooclean .cta-section:before {
    background-image: url("../images/generated/index_cta_consult.jpg");
}

.page-modooclean .stat-num,
.page-modooclean .stat-value {
    font-size: 60px;
    display: block;
    font-weight: 700;
    margin-bottom: 5px;
    line-height: 1.25;
    word-break: keep-all;
}

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

.modoo-detail-wrap {
    display: grid;
    align-items: center;
    gap: 60px;
    grid-template-columns: 1fr 1fr;
}

.modoo-detail-photo {
    overflow: hidden;
    min-height: 420px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.modoo-detail-photo img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
}

.modoo-detail-copy p {
    margin-bottom: 18px;
    font-size: 18px;
    line-height: 1.8;
    color: #444444;
}

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

.modoo-info-card {
    padding: 36px;
    border: 1px solid #eeeeee;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.modoo-info-card h3 {
    margin-bottom: 24px;
    font-size: 22px;
    font-weight: 800;
    color: #111111;
}

.modoo-info-card dl div {
    display: grid;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid #eeeeee;
    grid-template-columns: 120px 1fr;
}

.modoo-info-card dl div:last-child {
    border-bottom: none;
}

.modoo-info-card dt {
    font-weight: 700;
    color: #01419a;
}

.modoo-info-card dd {
    color: #444444;
    line-height: 1.6;
}

/* =========================================
   Stats Section
 ========================================= */
/* =========================================
   Stats Section (Masterpiece Redesign)
 ========================================= */
.stats-wrap {
    position: relative;
    z-index: 20;
    padding: 126px 0 118px;
    color: #ffffff;
    overflow: hidden;
}

.stats-wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.stats-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.22;
    pointer-events: none;
}

.stats-wrap .container {
    position: relative;
    z-index: 1;
}


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

.stats-grid .stat-item {
    position: relative;
    height: 440px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 0px !important;
    background:rgba(2, 6, 23, 0.98);
    overflow: hidden;
    isolation: isolate;
    cursor: pointer;


}


.stat-bg-img {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-size: cover;
    background-position: center;
    filter: saturate(0.82) contrast(1.08);
    opacity: 0.14;
    transition: transform 0.85s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
}

.stats-grid .stat-item:hover {
    transform: translateY(-6px);
background:#01419a;
}

.stat-item:hover .stat-bg-img {
    transform: scale(1.05);
    opacity: 0.2;
}

.stat-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 3;
    width: 100%;
    height: 100%;
    padding: 46px 32px;
    box-sizing: border-box;
}

.stat-content > * {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 96px;
    height: 96px;
    margin-bottom: 30px;
    border: 1px solid rgba(191, 219, 254, 0.34);
    border-radius: 18px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.04)),
        rgba(15, 58, 145, 0.36);
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.stat-icon svg {
    width: 68px;
    height: 68px;
    display: block;
    color: #dbeafe;
    filter: drop-shadow(0 0 14px rgba(147, 197, 253, 0.34));
}

.stat-item:hover .stat-icon {
    opacity: 1;
    transform: translateY(-3px);
}

.stat-num-box {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 20px;
}

.stat-prefix {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 800;
    background: linear-gradient(180deg, #ffffff 18%, #dbeafe 58%, #94a3b8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-right: 2px;
    display: inline-block;
}

.stat-num {
    font-family: 'Outfit', sans-serif;
    font-size: 108px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0;
    background: linear-gradient(180deg, #ffffff 12%, #eff6ff 44%, #9eb8e6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    text-shadow: 0 24px 54px rgba(96, 165, 250, 0.18);
}

.stat-suffix {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 800;
    background: linear-gradient(180deg, #ffffff 18%, #dbeafe 58%, #94a3b8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-left: 4px;
    line-height: 1;
    vertical-align: baseline;
    display: inline-block;
}

.stat-label {
    margin: 0;
    padding: 0;
    font-size: 18px;
    font-weight: 700;
    color: rgba(241, 245, 249, 0.88);
    letter-spacing: 0;
    word-break: keep-all;
    text-align: center;
    text-shadow: 0 10px 26px rgba(3, 7, 18, 0.4);
}

@media (max-width: 1200px) {
    .stats-wrap {
        padding: 100px 0;
    }
    .stats-wrap .section-title {
        font-size: 44px;
    }
    .stats-wrap .section-desc {
        font-size: 17px;
        margin-bottom: 60px;
    }
    .stats-grid .stat-item {
        height: 400px;
    }
    .stat-num {
        font-size: 92px;
    }
    .stat-prefix,
    .stat-suffix {
        font-size: 22px;
    }
}

@media (max-width: 991px) {
    .stats-wrap {
        padding: 80px 0;
    }
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    .stats-grid .stat-item {
        height: 350px;
    }
    .stat-icon {
        width: 54px;
        height: 54px;
        border-radius: 16px;
        margin-bottom: 24px;
    }
    .stat-icon svg {
        width: 32px;
        height: 32px;
    }
    .stat-num {
        font-size: 72px;
    }
    .stat-prefix,
    .stat-suffix {
        font-size: 20px;
    }
    .stat-label {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .stats-wrap {
        padding: 60px 0;
    }
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .stats-wrap .section-title {
        font-size: 30px;
    }
    .stats-wrap .section-desc {
        font-size: 15px;
        margin-bottom: 40px;
    }
    .stats-grid .stat-item {
        height: 320px;
    }
    .stat-num {
        font-size: 72px;
    }
    .stat-prefix,
    .stat-suffix {
        font-size: 18px;
    }
    .stat-label {
        font-size: 16px;
    }

    .modoo-detail-wrap {
        gap: 40px;
        grid-template-columns: 1fr;
    }

    .brand-logo-text {
        font-size: 21px;
    }
}

@media (max-width: 768px) {

    body .fab-wrap {
        display: none;
    }

    .modoo-detail-photo,
    .modoo-detail-photo img {
        min-height: 280px;
    }

    .modoo-detail-copy p {
        font-size: 16px;
    }

    .modoo-info-grid {
        grid-template-columns: 1fr;
    }

    .modoo-info-card {
        padding: 26px 22px;
    }

    .modoo-info-card dl div {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   [NEW] Work Gallery Section (Horizontal Ticker)
========================================= */
.pf-wrap {
    overflow: hidden;
    background: #f8fafc;
}



/* =========================================
   [NEW] Corporate Value Showcase Section
========================================= */
.value-wrap {
    position: relative;
    min-height: 800px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #ffffff;
    background: #020617; /* Midnight Dark */
}

.value-bg-wrapper {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.value-bg-item {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.06);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.value-bg-item.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.value-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    background: linear-gradient(to right, rgba(2, 6, 23, 0.88) 0%, rgba(2, 6, 23, 0.7) 50%, rgba(2, 6, 23, 0.5) 100%);
}

.value-content-container {
    position: relative;
    z-index: 4;
    width: 100%;
}

.value-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}

.value-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.value-sub {
    font-size: 14px;
    font-weight: 800;
    color: #38bdf8; /* Soft Cyan */
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 24px;
    display: block;
}

.value-text-group {
    display: none;
}

.value-text-group.active {
    display: block;
    animation: valueFadeIn 0.8s forwards cubic-bezier(0.16, 1, 0.3, 1);
}

.value-title {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 24px;
    line-height: 1.25;
    letter-spacing: -1.5px;
}

.value-desc {
    font-size: 22px;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.8);
    word-break: keep-all;
}

.value-right {
    display: flex;
    justify-content: flex-end;
}

.value-tabs {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    max-width: 440px;
}

.value-tab-btn {
    display: flex;
    align-items: center;
    padding: 24px 30px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    text-align: left;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    color: #ffffff;
}

.value-tab-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateX(-4px);
}

.value-tab-btn.active {
    background: #ffffff;
    border-color: #ffffff;
    color: #01419a;
    transform: translateX(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.tab-num {
    font-size: 16px;
    font-weight: 800;
    margin-right: 20px;
    opacity: 0.5;
    transition: opacity 0.4s;
}

.value-tab-btn.active .tab-num {
    opacity: 1;
    color: #01419a;
}

.tab-txt {
    font-size: 18px;
    font-weight: 700;
    transition: color 0.4s;
}

.value-tab-btn.active .tab-txt {
    color: #01419a;
}

@keyframes valueFadeIn {
    0% {
        opacity: 0;
        transform: translateY(24px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1024px) {
    .value-wrap {
        min-height: auto;
        padding: 100px 0;
    }
    .value-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .value-title {
        font-size: 40px;
    }
    .value-tabs {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .value-wrap {
        padding: 60px 0;
    }
    .value-layout {
        gap: 40px;
    }
    .value-overlay {
        background: rgba(2, 6, 23, 0.92);
    }
    .value-title {
        font-size: 30px;
    }
    .value-desc {
        font-size: 16px;
    }
    .value-right {
        justify-content: center;
    }
    .value-tabs {
        flex-direction: column; /* 세로 1열 스택 배치로 잘림 방지 */
        overflow-x: visible;
        white-space: normal;
        padding: 0;
        gap: 10px;
        width: 100%;
    }
    .value-tabs::-webkit-scrollbar {
        display: none;
    }
    .value-tab-btn {
        flex-shrink: 0;
        padding: 14px 20px;
        border-radius: 12px;
        transform: none !important;
        box-sizing: border-box;
        width: 100%;
    }
    .value-tab-btn:hover {
        transform: scale(1.01) !important;
    }
    .value-tab-btn.active {
        transform: scale(1.02) !important; /* 모바일 이탈 방지 부드러운 스케일 */
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
    }
    .tab-num {
        margin-right: 12px;
        font-size: 13.5px;
    }
    .tab-txt {
        font-size: 14.5px;
    }
}


/* =========================================
   [NEW] Premium Service Cards (Full Image Style)
========================================= */
.biz-card-grid {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 60px;
}

.biz-card {
    position: relative;
    height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border-radius: 0px;
    overflow: hidden;
    isolation: isolate;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.biz-card-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.biz-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(7, 38, 70, 0.16);
}

.biz-card:hover .biz-card-bg {
    transform: scale(1.08);
}

.biz-card-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.15) 100%);
    transition: background 0.5s ease;
}

.biz-card:hover .biz-card-overlay {
    background: linear-gradient(to top, rgba(7, 38, 70, 0.95) 0%, rgba(7, 38, 70, 0.5) 60%, rgba(7, 38, 70, 0.25) 100%);
}

.biz-card-content {
    position: relative;
    z-index: 3;
    padding: 40px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    box-sizing: border-box;
}

.biz-card-sub {
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.65);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
    transition: color 0.4s;
}

.biz-card:hover .biz-card-sub {
    color: #38bdf8; /* Accent light blue on hover */
}

.biz-card-title {
    font-size: 28px;
    font-weight: 800;
    line-height: 1.3;
    color: #ffffff;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.biz-card-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding-top: 20px;
    transition: border-color 0.4s;
}

.biz-card:hover .biz-card-bottom {
    border-color: rgba(255, 255, 255, 0.35);
}

.biz-card-more {
    font-size: 15px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
    transition: color 0.4s;
}

.biz-card:hover .biz-card-more {
    color: #ffffff;
}

.biz-card-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    margin-left:5px;
}

.biz-card:hover .biz-card-arrow {
    background: #ffffff;
    border-color: #ffffff;
    color: #01419a;
    transform: translateX(6px);
}

@media (max-width: 1024px) {
    .biz-card-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .biz-card {
        height: 430px;
    }
    .biz-card-content {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .biz-card-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }
    .biz-card {
        height: 380px;
    }
    .biz-card-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
}

/* =========================================
   [NEW] Premium Info Links Cards (Double Visual Grid)
========================================= */
.info-links-wrap {
    background: #ffffff;
}

.info-links-header {
    text-align: left;
    margin-bottom: 50px;
}

.info-links-section-title {
    font-size: 38px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.35;
    letter-spacing: -1px;
}

.info-links-section-title span {
    font-weight: 800;
}

.info-links-grid {
    display: grid;
    gap: 30px;
    grid-template-columns: 1fr 1fr;
}

.info-link-card {
    position: relative;
    height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border-radius: 0px;
    overflow: hidden;
    isolation: isolate;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.info-card-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.info-link-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.12);
}

.info-link-card:hover .info-card-bg {
    transform: scale(1.06);
}

.info-card-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.2) 100%);
    transition: background 0.5s ease;
}

.info-link-card:hover .info-card-overlay {
    background: linear-gradient(to top, rgba(7, 38, 70, 0.85) 0%, rgba(7, 38, 70, 0.45) 60%, rgba(7, 38, 70, 0.25) 100%);
}

.info-card-content {
    position: relative;
    z-index: 3;
    padding: 50px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    box-sizing: border-box;
}

.info-card-title {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.info-link-card:hover .info-card-title {
    transform: translateY(-4px);
}

.info-card-desc {
    font-size: 16px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    max-width: 520px;
    word-break: keep-all;
}

.info-card-more {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.plus-icon {
    font-size: 18px;
    font-weight: 400;
    display: inline-block;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.info-link-card:hover .plus-icon {
    transform: translateX(4px) rotate(90deg);
}

@media (max-width: 1024px) {
    .info-links-wrap {
        padding: 80px 0;
    }
    .info-links-section-title {
        font-size: 32px;
    }
    .info-card-content {
        padding: 40px;
    }
    .info-card-title {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .info-links-wrap {
        padding: 60px 0;
    }
    .info-links-header {
        margin-bottom: 35px;
    }
    .info-links-section-title {
        font-size: 26px;
    }
    .info-links-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .info-link-card {
        height: 360px;
    }
    .info-card-content {
        padding: 30px;
    }
    .info-card-title {
        font-size: 24px;
        margin-bottom: 12px;
    }
    .info-card-desc {
        font-size: 15px;
        margin-bottom: 20px;
    }
}

/* =========================================
   [NEW] Premium Services Process Cards (4-Column Grid)
========================================= */
.services-process-wrap {
    background: #ffffff;
}

.services-process-grid {
    display: grid;
    align-items: stretch;
    grid-template-areas: "step1 arrow1 step2 arrow2 step3 arrow3 step4";
    margin-top: 50px;
}

.process-step-card {
    position: relative;
    height: 480px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border-radius: 0px;
    overflow: hidden;
    isolation: isolate;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.process-step-card--01 {
    grid-area: step1;
}

.process-step-card--02 {
    grid-area: step2;
}

.process-step-card--03 {
    grid-area: step3;
}

.process-step-card--04 {
    grid-area: step4;
}

.process-step-arrow {
    align-self: center;
    color: rgba(1, 65, 154, 0.62);
    display: flex;
    justify-content: center;
    justify-self: center;
    line-height: 0;
    pointer-events: none;
    transition: color 0.35s ease, transform 0.35s ease;
}

.process-step-arrow--01 {
    grid-area: arrow1;
}

.process-step-arrow--02 {
    grid-area: arrow2;
}

.process-step-arrow--03 {
    grid-area: arrow3;
}

.process-step-arrow svg {
    display: block;
    fill: currentColor;
    filter: drop-shadow(0 12px 18px rgba(1, 65, 154, 0.14));
    height: clamp(44px, 4vw, 58px);
    width: clamp(44px, 4vw, 58px);
}

.process-step-card:hover + .process-step-arrow {
    color: #38bdf8;
    transform: translateX(4px);
}

.step-card-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-size: cover;
    background-position: center;
    border-radius: inherit; /* 둥근 테두리 클리핑 상속 */
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.process-step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(7, 38, 70, 0.16);
}

.process-step-card:hover .step-card-bg {
    transform: scale(1.08);
}

.step-card-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.15) 100%);
    border-radius: inherit; /* 둥근 테두리 클리핑 상속 */
    transition: background 0.5s ease;
}

.process-step-card:hover .step-card-overlay {
    background: linear-gradient(to top, rgba(7, 38, 70, 0.95) 0%, rgba(7, 38, 70, 0.5) 60%, rgba(7, 38, 70, 0.25) 100%);
}

.step-card-content {
    position: relative;
    z-index: 3;
    padding: 40px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    box-sizing: border-box;
}

.step-card-title {
    font-size: 26px;
    font-weight: 800;
    line-height: 1.3;
    color: #ffffff;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.process-step-card:hover .step-card-title {
    transform: translateY(-4px);
}

.step-card-desc {
    font-size: 15px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 24px;
    word-break: keep-all;
}

.step-card-link {
    font-size: 14.5px;
    font-weight: 700;
    color: #38bdf8; /* Soft Cyan/Skyblue for link */
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.4s, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.process-step-card:hover .step-card-link {
    color: #ffffff;
    transform: translateX(4px);
}

@media (max-width: 1200px) {
    .services-process-grid {
        column-gap: clamp(14px, 3vw, 24px);
        grid-template-areas:
            "step1 arrow1 step2"
            ". arrow2 ."
            "step3 arrow3 step4";
        grid-template-columns: minmax(0, 1fr) clamp(46px, 6vw, 58px) minmax(0, 1fr);
        row-gap: 18px;
    }
    .process-step-card {
        height: 420px;
    }

    .process-step-arrow--02 {
        transform: rotate(90deg);
    }

    .process-step-card:hover + .process-step-arrow--02 {
        transform: rotate(90deg);
    }
}

@media (max-width: 768px) {
    .services-process-grid {
        grid-template-areas:
            "step1"
            "arrow1"
            "step2"
            "arrow2"
            "step3"
            "arrow3"
            "step4";
        grid-template-columns: 1fr;
        margin-top: 40px;
        row-gap: 10px;
    }
    .process-step-card {
        height: 380px;
    }
    .step-card-content {
        padding: 30px;
    }
    .step-card-title {
        font-size: 22px;
        margin-bottom: 12px;
    }
    .step-card-desc {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .process-step-arrow {
        transform: rotate(90deg);
    }

    .process-step-arrow svg {
        height: 42px;
        width: 42px;
    }

    .process-step-card:hover + .process-step-arrow {
        transform: rotate(90deg);
    }
}



/* =========================================
   Main page background utility classes
========================================= */
.stat-bg-bld01 { background-image: url('../images/generated/index_hero_building.jpg'); }
.stat-bg-bld02 { background-image: url('../images/generated/index_hero_cleaning_m.png'); }
.stat-bg-fac01 { background-image: url('../images/generated/index_hero_facility_m.png'); }

.biz-card-bld02 { background-image: url('../images/generated/pages/building02_facade_wall_cleaning_01.jpg'); }
.biz-card-ofc01 { background-image: url('../images/generated/pages/store_target_lounge_01.jpg'); }
.biz-card-fac02 { background-image: url('../images/generated/pages/aircon_system_cleaning_overview_20260604.png'); }

.step-card-bld01 { background-image: url('../images/generated/index_process_inquiry.jpg'); }
.step-card-bld03 { background-image: url('../images/generated/index_process_site_inspection.jpg'); }
.step-card-fac01 { background-image: url('../images/generated/index_floor_care.jpg'); }
.step-card-fac02 { background-image: url('../images/generated/index_process_checklist.jpg'); }

.value-bg-bld01 { background-image: url('../images/generated/index_hero_building.jpg'); }
.value-bg-fac01 { background-image: url('../images/generated/index_facility_check.jpg'); }
.value-bg-bld03 { background-image: url('../images/generated/index_metropolitan_network_16x9.png'); }
.value-bg-clean03 { background-image: url('../images/generated/index_floor_care.jpg'); }
.value-bg-clean04 { background-image: url('../images/generated/index_process_checklist_16x9_v5.png'); }

.info-card-bld01 { background-image: url('../images/generated/about_intro.jpg'); }
.info-card-bld03 { background-image: url('../images/generated/index_info_handshake.png'); }


