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

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

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

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

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

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

ul,
li {
    list-style: none;
}

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

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

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

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


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

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

.m_br {
    display: none;
}

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

    .m_br {
        display: inline;
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

        border-bottom:1px solid rgba(255, 255, 255, 0.2);
    }

    .header-wrap.scrolled {
        height: 70px;
    }
}

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

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

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

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

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

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

.gnb-pc>li:hover>a {
    color: #1fabea;
}

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

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

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

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

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

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

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

.btn-consult:hover {
    background: #123e80;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* =========================================
           3. HERO SECTION (Dynamic)
           ========================================= */
/* 1. HERO SECTION */
.hero-sec {
    position: relative;
    width: 100%;
    height: 100vh;
    background: #000;
    overflow: hidden;
}

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

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

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

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

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

/* Desktop Hero Images */
.hero-slide.slide-1 {
    background-image: url('../img/main_slide/m1.jpg');
}

.hero-slide.slide-2 {
    background-image: url('../img/main_slide/m2.jpg');
}

.hero-slide.slide-3 {
    background-image: url('../img/main_slide/m3.jpg');
}

/* Mobile Hero Images */
@media (max-width: 767px) {
    .hero-slide.slide-1 {
        background-image: url('../img/main_slide/mm1.jpg');
    }

    .hero-slide.slide-2 {
        background-image: url('../img/main_slide/mm2.jpg');
    }

    .hero-slide.slide-3 {
        background-image: url('../img/main_slide/mm3.jpg');
    }
}

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

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

    to {
        transform: scale(1.1);
    }
}


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

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.1);
    font-size: 18px;
    font-weight: 700;
    color: #00D2FF;
    letter-spacing: 2px;
    backdrop-filter: blur(1px);
    margin-bottom: 20px;
}

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

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

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

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

    /* Enhanced Quote Form */
        .quote-form {
            background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2); padding: 25px; border-radius: 15px;
            display: inline-flex; gap: 10px; align-items: flex-end;
            box-shadow: 0 20px 50px rgba(0,0,0,0.2);
        }
        .q-field { text-align: left; }
        .q-label { display: block; font-size: 18px; color: rgba(255,255,255,0.7); margin-bottom: 5px; padding-left: 5px; }
        .q-input, .q-select {
            width: 180px; height: 50px; background: rgba(0,0,0,0.4); border: 1px solid rgba(255,255,255,0.15);
            color: #fff; padding: 0 15px; font-size: 18px; border-radius: 8px; outline: none; transition: 0.3s;
        }
        .q-input:focus, .q-select:focus { background: rgba(0,0,0,0.6); border-color: var(--color-primary); }
        .btn-submit {
            height: 50px; padding: 0 35px; background: var(--color-primary); color: #fff;
            font-weight: 700; border-radius: 8px; font-size: 18px; transition: 0.3s;
        }
        .btn-submit:hover { background: #123e80; transform: translateY(-2px); }


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

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

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

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

        br {
            display: none;
        }

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

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

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

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

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

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

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

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



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

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

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

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

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

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

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

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

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

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

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

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

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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 1024px) {

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



}

@media (max-width: 767px) {

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

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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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



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

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

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

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

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

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


}

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

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

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

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




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

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

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

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

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

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



.tech-bg-1 {
    background-image: url('/img/icon_01.png');
}
.tech-bg-2 {
    background-image: url('/img/icon_02.jpg');
}
.tech-bg-3 {
    background-image: url('/img/icon_03.png');
}
.tech-bg-4 {
    background-image: url('/img/icon_04.png');
}
.tech-overlay {
    position: absolute;
    z-index: 1;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.1) 100%);
    inset: 0;
}

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

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

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

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

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

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

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


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

    overflow: hidden;
    background: #fff;
}

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

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

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

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

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

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

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

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

.gal-info {
    padding: 24px;
}

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

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

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

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


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

    background: #f8fafc;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

}

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

/* 완료 */

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

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

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

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

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

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

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

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


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

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

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

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

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

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

.map-bg {
    display: none;
}

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

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

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

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

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

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

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

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

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


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

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

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



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

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

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

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

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

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

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

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

.foot-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.f-logo {
    font-size: 24px;
    font-weight: 800;
    color: #fff;
}

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

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


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

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

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

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

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

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

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

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

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

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

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

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

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




/* PC Quick Menu */
.quick-pc {
    display: flex;
    flex-direction: column;
    position: fixed;
    right: 0;
    bottom: 0;
    transform: translateY(-50%);
    z-index: 999;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
}

.q-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 60px;
    height: 60px;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    background: var(--color-dark);
    font-size: 24px;
    color: #fff;
    transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.q-btn:last-child {
    border-bottom: none;
}

.q-btn:hover {
    background: var(--color-primary);
    color: #fff;
}

.q-btn.mail {
    background: #1a50a1;
}

.q-btn.brochure {
    background: #0f276b;
}

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

.q-btn.kakao:hover {
    background: #f4dc00;
}

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

.q-btn.naver:hover {
    background: #02b350;
}

/* 퀵메뉴 고객센터 아코디언 */
.cs-group {
    position: relative;
    width: 60px;
    height: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cs-btn {
    justify-content: flex-start;
    padding-left: 18px;
    width: 60px;
    height: 60px;
    overflow: hidden;
    background: var(--color-primary);
    transition: width 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: absolute;
    right: 0;
    top: 0;
    z-index: 10;
    border-bottom: none;
}

.cs-btn:hover {
    width: 280px;
    background: #10488e;
}

.cs-btn i {
    min-width: 24px;
    display: block;
}

.cs-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 15px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s;
}

.cs-btn:hover .cs-info {
    opacity: 1;
    transition-delay: 0.1s;
}

.cs-info span {
    font-size: 13px;
    color: #00D2FF;
    line-height: 1.2;
}

.cs-info strong {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-top: 4px;
    letter-spacing: 0.5px;
}

/* Tooltip adjustment */
.q-tooltip {
    position: absolute;
    top: 50%;
    right: 80px;
    padding: 6px 12px;
    border-radius: 6px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    background: #1e293b;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
    transition: 0.3s;
    pointer-events: none;
    transform: translateY(-50%);
    opacity: 0;
}

.q-btn:hover .q-tooltip {
    right: 70px;
    opacity: 1;
}

.q-tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -5px;
    transform: translateY(-50%);
    border-width: 5px 0 5px 6px;
    border-style: solid;
    border-color: transparent transparent transparent #1e293b;
}

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

.quick-mo-right {
    position: fixed;
    bottom: 80px;
    right: 0px;
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap:0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    pointer-events: none;
    background: #0f276b;
    color: #fff;
}

.quick-mo.active .quick-mo-right {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.quick-mo-right a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 0px;
    font-size: 26px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.quick-mo-right .kakao-btn {
    background: #FEE500;
    color: #3C1E1E;
}

.quick-mo-right .naver-btn {
    background: #03C75A;
    color: #fff;
}

.quick-mo-bottom {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: #fff;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.05);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.quick-mo.active .quick-mo-bottom {
    transform: translateY(0);
}

.quick-mo-bottom ul {
    display: flex;
    height: 48px;
}

.quick-mo-bottom li {
    flex: 1;
}

.quick-mo-bottom a {
    display: flex;
    gap: 8px; /* 좌측 아이콘, 우측 텍스트 구조 */
    align-items: center;
    justify-content: center;
    height: 100%;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #fff;
}

.quick-mo-bottom i {
    font-size: 20px;
}

/* 진중하고 전문적인 톤 앤 매너 적용 */
.quick-mo-bottom .call-btn {
    background: #00488d; /* 차분한 블랙 */
}

.quick-mo-bottom .sms-btn {
    background: #1A2238; /* 전문성을 나타내는 딥네이비 */
}

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

    .quick-mo {
        display: block;
    }
}



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 1024px) {
    .process-wrap {
        flex-wrap: wrap;
        gap: 20px;
    }
    .process-step {
        flex: 0 0 calc(50% - 10px);
    }
    .process-wrap > .process-step:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .process-sec {
        padding: 60px 0;
    }
    .process-step {
        flex: 0 0 100%;
    }
    .process-card {
        padding: 30px 20px;
    }
}

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

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

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

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

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

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

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

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

.cl-gov .cl-badge { color: #233075; }
.cl-edu .cl-badge { color: #059669; }
.cl-corp .cl-badge { color: #1a50a1; }

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

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

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

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

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

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

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

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

.cl-gov .cl-wide-list li::before { background: #233075; }
.cl-edu .cl-wide-list li::before { background: #059669; }
.cl-corp .cl-wide-list li::before { background: #1a50a1; }

/* Responsive */
@media (max-width: 1024px) {
    .cl-row { flex-direction: column; }
    .cl-img-box { height: 200px; min-height: auto; flex: none; }
    .cl-text-box { padding: 30px; }
    .cl-wide-list { grid-template-columns: repeat(2, 1fr); }
    .cl-head h3 { font-size: 22px; }
    .cl-desc { font-size: 18px; }
}

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