@charset "utf-8";

:root {
    --mc-navy: #063a78;
    --mc-blue: #0067b8;
    --mc-sky: #159bd7;
    --mc-aqua: #42b9e8;
    --mc-ink: #102235;
    --mc-muted: #667484;
    --mc-line: #e5eef6;
    --mc-soft: #f5f9fd;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: #ffffff;
    line-height: 1.4;
    color: var(--mc-ink);
    overflow-x: hidden;
}

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

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

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

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

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

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

.pc_br {
    display: inline;
}

.m_br {
    display: none;
}

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

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

/* =========================================
   Master Clean Renewed Main
========================================= */
.mc-home {
    background: #fff;
    color: var(--mc-ink);
}

.mc-hero {
    position: relative;
    min-height: 760px;
    overflow: hidden;
    background: #061a33;
}

.mc-hero-slides,
.mc-hero-bg,
.mc-hero-shade,
.mc-hero-grid {
    position: absolute;
    inset: 0;
}

.mc-hero-bg {
    opacity: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.02);
    transition: opacity 1.2s ease, transform 6s ease;
}

.mc-hero-bg.active {
    opacity: 1;
    transform: scale(1.06);
}

.mc-hero-shade {
    background: rgba(4, 18, 32, 0.75);
}

.mc-hero-grid {
    opacity: 0.32;
    background-image:
        linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
    background-size: 72px 72px;
}

.mc-hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 70px;
    align-items: center;
    min-height: 760px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 90px 24px 80px;
}

.mc-eyebrow,
.mc-section-head span,
.mc-trust-copy span,
.mc-cta-subtext {
    display: inline-block;
    color: var(--mc-sky);
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.8px;
}

.mc-hero-copy h1 {
    margin-top: 24px;
    color: #fff;
    font-size: 72px;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -1px;
}

.mc-hero-copy {
    display: none;
}

.mc-hero-copy.active {
    display: block;
    animation: mcHeroText 0.65s ease both;
}

@keyframes mcHeroText {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mc-hero-copy p {
    max-width: 650px;
    margin-top: 30px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 22px;
    line-height: 1.75;
    font-weight: 300;
}

.mc-hero-controls {
    position: absolute;
    left: 50%;
    bottom: 56px;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 8px;
    transform: translateX(-50%);
}

.mc-hero-controls button {
    display: block;
    width: 12px;
    height: 12px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transition: width 0.3s ease, background 0.3s ease, border-radius 0.3s ease;
    cursor: pointer;
}

.mc-hero-controls button.active {
    width: 36px;
    border-radius: 6px;
    background: var(--mc-aqua);
}

.mc-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 36px;
}

.mc-primary-btn,
.mc-secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    height: 52px;
    padding: 0 24px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 800;
}

.mc-primary-btn {
    background: linear-gradient(135deg, var(--mc-blue), var(--mc-sky));
    color: #fff;
}

.mc-secondary-btn {
    border: 1px solid rgba(255,255,255,0.38);
    color: #fff;
    background: rgba(255,255,255,0.08);
}

.mc-hero-panel {
    padding: 30px;
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 6px;
    background: rgba(4, 24, 45, 0.52);
    backdrop-filter: blur(10px);
}

.mc-hero-panel strong {
    display: block;
    color: #fff;
    font-size: 20px;
    margin-bottom: 18px;
}

.mc-hero-panel li {
    position: relative;
    padding: 13px 0 13px 28px;
    border-top: 1px solid rgba(255,255,255,0.14);
    color: rgba(255,255,255,0.86);
    font-size: 15px;
}

.mc-hero-panel li::before {
    position: absolute;
    left: 0;
    top: 13px;
    color: var(--mc-aqua);
    content: "✓";
}

.mc-scroll-mark {
    position: absolute;
    right: 42px;
    bottom: 70px;
    z-index: 3;
    writing-mode: vertical-rl;
    color: rgba(255,255,255,0.72);
    font-size: 11px;
    letter-spacing: 3px;
}

.mc-scroll-mark::after {
    display: block;
    width: 1px;
    height: 82px;
    margin: 14px auto 0;
    background: rgba(255,255,255,0.45);
    content: "";
}

.mc-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 110px 24px;
}

.mc-section-head {
    margin-bottom: 44px;
}

.mc-section-head h2,
.mc-trust-copy h2,
.mc-cta-content h2 {
    margin-top: 12px;
    color: var(--mc-ink);
    font-size: 42px;
    font-weight: 850;
    line-height: 1.22;
    letter-spacing: 0;
}

.mc-section-head p {
    max-width: 650px;
    margin-top: 16px;
    color: var(--mc-muted);
    font-size: 17px;
    line-height: 1.7;
}

.mc-service-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}

.mc-service-card {
    position: relative;
    display: block;
    max-height: 320px;
    overflow: hidden;
    border-radius: 16px;
    background: var(--mc-ink);
}

.mc-service-card::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6, 31, 54, 0.6) 0%, rgba(5, 32, 58, 0.8) 100%);
    content: "";
    transition: opacity 0.4s ease;
}

.mc-service-card:hover::after {
    opacity: 0.78;
}

.mc-service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.mc-service-card:hover img {
    transform: scale(1.05);
}

.mc-service-card-content {
    position: absolute;
    left: 40px;
    top: auto;
    bottom: 106px;
    right: 40px;
    z-index: 2;
    color: #fff;
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}

.mc-service-card h3 {
    font-size: 28px;
    font-weight: 850;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
}

.mc-service-card p {
    color: rgba(255,255,255,0.9);
    font-size: 17px;
    line-height: 1.55;
}

.mc-service-arrow {
    position: absolute;
    left: 40px;
    bottom: 40px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    color: #fff;
    font-size: 24px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.mc-service-card:hover .mc-service-arrow {
    background: rgba(255, 255, 255, 0.35);
    transform: translateX(6px);
}

.mc-trust {
    position: relative;
    overflow: hidden;
    margin: 20px auto 0;
    padding: 95px 24px;
}

.mc-trust-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(4, 20, 45, 0.96), rgba(0, 60, 120, 0.85)),
        url("/img/page/bld07.jpg") center/cover no-repeat;
}

.mc-trust-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 70px;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
}

.mc-trust-copy h2,
.mc-trust-copy p {
    color: #fff;
}

.mc-trust-copy p {
    margin-top: 18px;
    color: rgba(255,255,255,0.82);
    font-size: 17px;
    line-height: 1.75;
}

.mc-trust-copy a {
    display: inline-flex;
    align-items: center;
    height: 46px;
    margin-top: 30px;
    padding: 0 18px;
    border: 1px solid rgba(255,255,255,0.45);
    color: #fff;
    font-size: 14px;
    font-weight: 800;
}

.mc-trust-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.mc-trust-data-card {
    position: relative;
    min-height: 170px;
    padding: 36px 30px;
    border-radius: 8px;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(12px);
    color: var(--mc-ink);
    border: 1px solid #ffffff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: transform 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
}

.mc-trust-data-card:hover {
    transform: translateY(-8px);
    background: #ffffff;
    box-shadow: 0 16px 40px rgba(0,0,0,0.2);
}

.mc-trust-data-card strong.mc-counter {
    display: flex;
    align-items: baseline;
    font-size: 44px;
    font-weight: 900;
    color: var(--mc-blue);
    margin-bottom: 4px;
    letter-spacing: -0.5px;
}

.mc-trust-data-card strong.mc-counter span {
    display: inline;
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
}

.mc-trust-data-card h3 {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: var(--mc-ink);
    margin-bottom: 6px;
    letter-spacing: -0.5px;
}

.mc-trust-data-card p {
    display: block;
    color: var(--mc-muted);
    font-size: 15px;
    font-weight: 500;
}

.mc-trust-data-card i {
    position: absolute;
    right: 24px;
    bottom: 24px;
    color: var(--mc-blue);
    opacity: 0.15;
    font-size: 64px;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.mc-trust-data-card:hover i {
    opacity: 0.8;
    transform: scale(1.05);
}

.mc-gallery {
    position: relative;
    overflow: hidden;
    padding-bottom: 100px;
}

.mc-gallery-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
}

.mc-gallery-head div {
    max-width: 720px;
}

.mc-gallery-more {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    min-width: 132px;
    height: 46px;
    border: 1px solid var(--mc-line);
    border-radius: 4px;
    background: #fff;
    color: var(--mc-ink);
    font-size: 14px;
    font-weight: 800;
    transition: border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.mc-gallery-more:hover {
    border-color: var(--mc-blue);
    color: var(--mc-blue);
    transform: translateY(-2px);
}

.mc-gallery-swiper {
    overflow: visible;
    padding: 4px 0 70px;
}

.mc-gallery-swiper .swiper-wrapper {
    align-items: stretch;
}

.mc-gallery-swiper .swiper-slide {
    height: auto;
}

.mc-gallery-card {
    display: block;
    height: 100%;
    overflow: hidden;
    border: 1px solid var(--mc-line);
    border-radius: 6px;
    background: #fff;
    transition: transform 0.25s ease;
}

.mc-gallery-card:hover {
    transform: translateY(-6px);
}

.mc-gallery-thumb {
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #edf3f7;
}

.mc-gallery-card img {
    display: block;
    transition: transform 0.45s ease;
}

.mc-gallery-card:hover img {
    transform: scale(1.04);
}

.mc-gallery-body {
    text-align: center;
    display: block;
    min-height: 138px;
    padding: 24px 24px 26px;
}

.mc-gallery-date {
    display: block;
    color: var(--mc-sky);
    font-size: 16px;
    font-weight: 850;
    letter-spacing: 0.2px;
}

.mc-gallery-card strong {
    display: block;
    margin-top: 9px;
    color: var(--mc-ink);
    font-size: 21px;
    font-weight: 850;
    line-height: 1.35;
}

.mc-gallery-link {
    display: inline-flex;
    gap: 6px;
    align-items: center;
    margin-top: 20px;
    color: #667789;
    font-size: 16px;
    font-weight: 750;
}

.mc-gallery-nav {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 2;
    display: flex;
    gap: 8px;
}

.mc-gallery-nav button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 1px solid var(--mc-line);
    border-radius: 4px;
    background: #fff;
    color: var(--mc-ink);
    font-size: 22px;
    cursor: pointer;
    transition: border-color 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.mc-gallery-nav button:hover {
    border-color: var(--mc-blue);
    background: var(--mc-blue);
    color: #fff;
}

.mc-quality-section {
    max-width: 1120px;
    margin: 0 auto;
    padding: 100px 24px 90px;
}

.mc-quality-head {
    max-width: 820px;
    margin: 0 auto 46px;
    text-align: center;
}

.mc-quality-head span {
    display: inline-block;
    color: var(--mc-sky);
    font-size: 13px;
    font-weight: 850;
    letter-spacing: 0.8px;
}

.mc-quality-head h2 {
    margin-top: 12px;
    color: var(--mc-ink);
    font-size: 42px;
    font-weight: 850;
    line-height: 1.25;
    letter-spacing: 0;
}

.mc-quality-head p {
    margin-top: 16px;
    color: var(--mc-muted);
    font-size: 17px;
    line-height: 1.7;
}

.mc-quality-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
}

.mc-quality-card {
    position: relative;
    min-height: 250px;
    overflow: hidden;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
}

.mc-quality-card::before {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(5, 14, 34, 0.9) 0%, rgba(10, 24, 48, 0.8) 100%);
    content: "";
}

.mc-quality-card.quality-1 {
    background-image: url("/img/generated/index/card-office.jpg");
}

.mc-quality-card.quality-2 {
    background-image: url("/img/generated/index/card-building.jpg");
}

.mc-quality-card.quality-3 {
    background-image: url("/img/generated/index/gallery-wax.jpg");
}

.mc-quality-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 250px;
    max-width: 820px;
    margin: 0 auto;
    padding: 42px 54px;
    gap: 20px;
}

.mc-qc-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--mc-blue);
    box-shadow: 0 8px 24px rgba(0, 103, 184, 0.4);
    font-size: 34px;
    flex-shrink: 0;
    color: #fff;
}

.mc-qc-text {
    flex: 1;
    text-align: center;
}

.mc-qc-text h3 {
    color: #fff;
    font-size: 28px;
    font-weight: 850;
    line-height: 1.3;
    letter-spacing: -0.5px;
}


.mc-qc-text p {
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 18px;
    line-height: 1.6;
    word-break: keep-all;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.mc-cta-banner {
    position: relative;
    overflow: hidden;
    padding: 120px 20px;
    color: #fff;
 background-image: url("/img/md_bg.jpg");
 background-size: cover;
 background-position: center;
}

.mc-cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 12, 21, 0.8);
}

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


.mc-cta-content h2 span {
    font-size: 38px;
    font-weight: 550;
}


.mc-cta-subtext {
    display: inline-block;
    margin-bottom: 24px;
    padding: 8px 18px;
    background: var(--mc-blue);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
}

.mc-cta-content h2 {
    max-width: 860px;
    color: #fff;
    font-size: 48px;
    font-weight: 900;
    line-height: 1.35;
    letter-spacing: -1px;
}

.mc-cta-phone {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-top: 40px;
}

.mc-cta-phone-label {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 22px;
    font-weight: 500;
}

.mc-cta-phone-label i {
    font-size: 20px;
    color: var(--mc-aqua);
}

.mc-cta-phone-num {
    font-size: 46px;
    font-weight: 900;
    color: var(--mc-aqua);
    letter-spacing: 0.5px;
}

.mc-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 40px;
}

.mc-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    height: 60px;
    padding: 0 28px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 800;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.mc-cta-btn.mc-cta-primary {
    background: #fff;
    color: var(--mc-ink);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.mc-cta-btn.mc-cta-secondary {
    border: 1px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(4px);
    color: #fff;
}

.mc-cta-btn.mc-cta-kakao {
    background: #FEE500;
    color: #3A1D1D;
    box-shadow: 0 10px 20px rgba(254, 229, 0, 0.15);
}

.mc-cta-btn i {
    font-size: 22px;
}

.mc-cta-primary i {
    margin-left: 8px;
}

.mc-cta-secondary i,
.mc-cta-kakao i {
    margin-right: 8px;
}

@media (max-width: 1024px) {
    .mc-hero,
    .mc-hero-inner {
        min-height: 680px;
    }

    .mc-hero-inner,
    .mc-trust-inner {
        grid-template-columns: 1fr;
    }

    .mc-hero-panel {
        max-width: 520px;
    }

    .mc-service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mc-service-card,
    .mc-service-card.is-tall {
        min-height: 320px;
    }

}

@media (max-width: 768px) {
    .mc-hero,
    .mc-hero-inner {
        min-height: 640px;
    }

    .mc-hero-inner {
        gap: 28px;
        padding: 74px 18px 54px;
    }

    .mc-hero-copy h1 {
        font-size: 38px;
    }

    .mc-hero-copy p {
        font-size: 17px;
    }

    .mc-hero-panel,
    .mc-scroll-mark {
        display: none;
    }

    .mc-hero-controls {
        bottom: 28px;
    }

    .mc-hero-controls button {
        width: 10px;
        height: 10px;
    }

    .mc-hero-controls button.active {
        width: 32px;
    }

    .mc-section {
        padding: 72px 18px;
    }

    .mc-section-head h2,
    .mc-trust-copy h2,
    .mc-quality-head h2,
    .mc-cta-content h2 {
        font-size: 30px;
    }

    .mc-service-grid,
    .mc-trust-cards {
        grid-template-columns: 1fr;
    }

    .mc-gallery-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .mc-gallery-more {
        width: 100%;
        max-width: 180px;
    }

    .mc-service-card,
    .mc-service-card.is-tall {
        min-height: 280px;
    }

    .mc-service-card-content {
        left: 24px;
        right: 24px;
        bottom: 86px;
    }

    .mc-service-card h3 {
        font-size: 24px;
    }

    .mc-service-card p {
        font-size: 16px;
    }

    .mc-service-arrow {
        left: 24px;
        bottom: 24px;
    }

    .mc-trust {
        padding: 70px 18px;
    }

    .mc-quality-section {
        padding: 70px 18px 64px;
    }

    .mc-quality-head {
        margin-bottom: 34px;
    }

    .mc-quality-card,
    .mc-quality-content {
        min-height: 230px;
    }

    .mc-quality-content {
        flex-direction: column;
        align-items: center;
        padding: 32px 24px;
        gap: 18px;
    }

    .mc-quality-content h3 {
        font-size: 22px;
    }

    .mc-cta-banner {
        padding: 80px 15px;
    }

    .mc-cta-content h2 {
        font-size: 32px;
    }

    .mc-cta-phone {
        margin-top: 28px;
    }

    .mc-cta-phone-num {
        font-size: 34px;
    }

    .mc-cta-subtext {
        font-size: 18px;
    }

    .mc-cta-phone {
        font-size: 34px;
    }

    .mc-cta-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 350px;
    }

    .mc-cta-btn {
        width: 100%;
    }
}


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

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

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

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

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

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


/* --- CONSOLIDATED DAOCLEAN STYLES --- */

            .dao-adv-wrap {
                position: relative;
                width: 100%;
                background: url('/img/gallery/10.jpeg') no-repeat center center / cover;
                font-family: 'Pretendard', sans-serif;
            }
            .dao-adv-overlay {
                position: absolute;
                top: 0; right: 0; bottom: 0; left: 0;
                background: rgba(13, 123, 193, 0.92); /* Deep blue overlay matching the image */
            }
            .dao-adv-inner {
                position: relative;
                z-index: 2;
                max-width: 1200px;
                margin: 0 auto;
                padding: 100px 20px;
            }
            .dao-adv-grid {
                display: grid;
                grid-template-columns: repeat(3, 1fr);
            }
            .dao-adv-item {
                padding: 55px 30px;
                color: #fff;
                text-align: center;
                border-right: 1px solid rgba(255,255,255,0.15);
                border-bottom: 1px solid rgba(255,255,255,0.15);
            }
            /* Remove borders on outer edges */
            .dao-adv-item:nth-child(3n) {
                border-right: none;
            }
            .dao-adv-item:nth-child(n+4) {
                border-bottom: none;
            }
            .dao-adv-icon {
                display: inline-flex;
                align-items: center;
                justify-content: center;
                width: 75px; height: 75px;
                font-size: 38px;
                margin-bottom: 25px;
            }
            .dao-adv-icon i {
                color: #fff;
            }
            .dao-adv-icon.circled {
                border: 2px solid rgba(255,255,255,1);
                border-radius: 50%;
            }
            .dao-adv-title {
                font-size: 20px;
                font-weight: 700;
                letter-spacing: -0.5px;
                margin-bottom: 5px;
            }
            .dao-adv-desc {
                font-size: 18px;
                line-height: 1.6;
                color: rgba(255,255,255,0.85);
                word-break: keep-all;
            }

            @media (max-width: 991px) {
                .dao-adv-grid { grid-template-columns: repeat(2, 1fr); }
                .dao-adv-item:nth-child(3n) { border-right: 1px solid rgba(255,255,255,0.15); }
                .dao-adv-item:nth-child(2n) { border-right: none; }
                .dao-adv-item:nth-child(n+4) { border-bottom: 1px solid rgba(255,255,255,0.15); }
                .dao-adv-item:nth-last-child(-n+2) { border-bottom: none; }
            }
            @media (max-width: 600px) {
                .dao-adv-grid { grid-template-columns: 1fr; }
                .dao-adv-item { padding: 40px 20px; border-right: none !important; border-bottom: 1px solid rgba(255,255,255,0.15) !important;}
                .dao-adv-item:last-child { border-bottom: none !important; }
            }


            .dao-reviews {
                max-width: 1200px;
                margin: 0 auto;
                padding: 80px 0;
                background: #fff;
            }
            .dao-reviews-header {
                text-align: center;
                margin-bottom: 50px;
            }
            .dao-reviews-badge {
                display: inline-block;
                padding: 6px 18px;
                border-radius: 20px;
                background: #eaf4ff;
                font-size: 14px;
                font-weight: 800;
                color: #007bd7;
                letter-spacing: 0.5px;
                margin-bottom: 15px;
            }
            .dao-reviews-title {
                font-size: 28px;
                font-weight: 700;
                color: #222;
                margin-bottom: 15px;
            }
            .dao-reviews-desc {
                font-size: 18px;
                color: #555;
            }

            .dao-reviews-grid {
                display: grid;
                gap: 24px;
                padding: 0 20px;
                grid-template-columns: repeat(2, 1fr);
            }

            .dao-review-card {
                display: flex;
                gap: 24px;
                padding: 30px;
                border: 1px solid rgba(0,0,0,0.02);
                border-radius: 16px;
                background: #f8fafd;
                transition: transform 0.3s;
                box-sizing: border-box;
            }
            .dao-review-card:hover {
                box-shadow: 0 10px 30px rgba(0,0,0,0.04);
                transform: translateY(-3px);
            }
            .dao-review-thumb {
                flex-shrink: 0;
                width: 120px;
                height: 120px;
                border-radius: 12px;
                background: #eaeaea;
                object-fit: cover;
            }
            .dao-review-content {
                display: flex;
                justify-content: center;
                flex-direction: column;
            }
            .dao-review-stars {
                font-size: 18px;
                color: #ffc107;
                letter-spacing: 2px;
                margin-bottom: 8px;
            }
            .dao-review-ctitle {
                font-size: 18px;
                font-weight: 700;
                color: #222;
                margin-bottom: 10px;
            }
            .dao-review-body {
                font-size: 18px;
                line-height: 1.6;
                color: #555;
                word-break: keep-all;
                margin-bottom: 15px;
            }
            .dao-review-author {
                font-size: 14px;
                color: #999;
            }

            @media (max-width: 991px) {
                .dao-reviews-grid { grid-template-columns: 1fr; }
            }
            @media (max-width: 480px) {
                .dao-review-card {
                    gap: 18px;
                    align-items: flex-start;
                    flex-direction: column;
                    padding: 24px;
                }
                .dao-review-thumb {
                    width: 100%;
                    height: 200px;
                }
                .dao-reviews-title { font-size: 28px; }
            }


            .dao-faq-wrap {
                max-width: 900px;
                margin: 0 auto;
                padding: 80px 0;
                background: #fff;
                font-family: 'Pretendard', sans-serif;
            }
            .dao-faq-header {
                text-align: center;
                margin-bottom: 40px;
            }
            .dao-faq-badge {
                display: inline-block;
                background: #eaf4ff;
                color: #007bd7;
                font-size: 14px;
                font-weight: 800;
                padding: 6px 18px;
                border-radius: 20px;
                margin-bottom: 15px;
                letter-spacing: 0.5px;
            }
            .dao-faq-title {
                font-size: 28px;
                font-weight: 700;
                color: #222;
                margin-bottom: 15px;
            }

            .dao-faq-header.text-white .dao-faq-badge {
                background: rgba(255,255,255,0.15);
                color: #fff;
            }
            .dao-faq-header.text-white .dao-faq-title {
                color: #fff;
            }

            .dao-faq-list {
                display: flex;
                gap: 15px;
                flex-direction: column;
                padding: 0 20px;
            }
            .dao-faq-item {
                border: 1px solid #eaeaea;
                border-radius: 8px;
                overflow: hidden;
                background: #fff;
            }
            .dao-faq-q {
                display: flex;
                align-items: center;
                justify-content: space-between;
                padding: 24px 30px;
                font-size: 18px;
                font-weight: 600;
                color: #222;
                transition: all 0.3s;
                cursor: pointer;
            }
            .dao-faq-q:hover {
                background: #fafafa;
            }
            .dao-faq-q i {
                font-size: 24px;
                color: #222;
                transition: transform 0.3s;
            }
            .dao-faq-item.active .dao-faq-q i {
                transform: rotate(180deg);
            }
            .dao-faq-a {
                display: none;
                padding: 0 30px 24px 30px;
                font-size: 18px;
                line-height: 1.6;
                color: #555;
                border-top: 1px dashed #eaeaea;
                margin-top: 10px;
                padding-top: 20px;
            }


/* --- FIXED BOARD & WRAP CSS --- */
#wrap { padding-top: 0 !important; margin-top: 0 !important; }
.dao-board-wrap {
    display: grid;
    gap: 15px;
    max-width: 1200px;
    margin: 50px auto 100px auto;
    padding: 0 20px;
    grid-template-columns: 1.5fr 1fr;
}
.dao-board-iframe {
    padding: 25px;
    border: 1px solid #eaeaea;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
    background: #fff;
}
.dao-board-title {
    font-size: 18px; font-weight: 800; color: #222; letter-spacing: -0.5px; margin-bottom: 15px;
}
.dao-board-title span { font-size: 16px; font-weight: 600; color: #aaa; margin-left: 2px; }

.dao-board-center {
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 30px;
    border: 1px solid #eaeaea;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
    background: #fff;
}
.dao-board-cs, .dao-board-rsvp {
    display: flex;
    gap: 20px;
    align-items: center;
}

.dao-bg-blue-rsvp {
    background: #01419a;
    padding: 20px 25px;
    border-radius: 12px;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
    box-sizing: border-box;
    width: 100%;
}
.dao-bg-blue-rsvp:hover {
    background: #003380;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(1, 65, 154, 0.2);
}
.dao-bg-blue-rsvp .dao-icon {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}
.dao-bg-blue-rsvp .dao-txt h4 {
    color: #fff;
}
.dao-bg-blue-rsvp .dao-txt h4 span {
    color: rgba(255, 255, 255, 0.6);
}
.dao-bg-blue-rsvp .dao-txt p {
    color: rgba(255, 255, 255, 0.85);
}

.dao-board-divider {
    height: 1px; margin: 25px 0; background: #eaeaea;
}
.dao-icon {
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    width: 70px; height: 70px; border-radius: 50%; font-size: 32px;
    color: #fff;
}
.dao-icon.bg-blue { background: #328acc; }
.dao-icon.bg-darkblue { background: #1a4f89; }
.dao-txt h4 { font-size: 18px; font-weight: 700; color: #222; letter-spacing:-0.5px; margin-bottom: 8px;}
.dao-txt h4 span { font-size: 16px; font-weight: 400; color: #bbb; margin-left: 5px; }
.dao-txt h2 { margin:0; font-size: 32px; font-weight: 800; color: #0060ad; letter-spacing: -0.5px;}
.dao-txt h2 a { color: #0060ad; text-decoration: none; }
.dao-txt p { margin:0; font-size: 15px; line-height: 1.5; color: #555;}
.dao-txt p a { color: #333; text-decoration: none; font-size: 20px; font-weight: 700; display: inline-flex; align-items: center; gap: 4px; margin-top: 6px; }
.dao-txt p a i { color: #008fdc; font-size: 18px; }
.dao-txt a { display: block; text-decoration: none; }

.dao-board-sns {
    display: flex;
    gap: 0px;
    flex-direction: column;
}
.sns-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    flex-direction: column; font-size: 15px; font-weight: 700;
    color: #111;
    text-decoration: none;
    transition: opacity 0.2s;
}
.sns-btn.kakao { background: #fae100; }
.sns-btn.blog { background: #2db400; }
.sns-btn:hover { opacity: 0.9; }

/* --- Customer Center Cards --- */
.dao-cs-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 15px 0;
}
.dao-cs-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 25px 15px;
    border-radius: 12px;
    background: #f4f8ff;
    text-decoration: none;
    transition: 0.3s;
    text-align: center;
}
.dao-cs-card:hover {
    background: #e8f0ff;
    transform: translateY(-2px);
}
.dao-cs-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #01419a;
    color: #fff;
    font-size: 22px;
}
.dao-cs-icon.direct {
    background: #222;
}
.dao-cs-label {
    font-size: 13px;
    font-weight: 600;
    color: #888;
}
.dao-cs-number {
    font-size: 22px;
    font-weight: 800;
    color: #111;
    letter-spacing: -0.5px;
}
.dao-cs-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 16px;
    border-radius: 8px;
    background: #01419a;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
    box-sizing: border-box;
}
.dao-cs-cta:hover {
    background: #002e70;
}
.dao-cs-cta i {
    font-size: 20px;
}

@media (max-width: 900px) {
    .dao-board-wrap { grid-template-columns: 1fr; }
    .dao-board-sns { flex-direction: row; height: 120px; }
}

@media (max-width: 768px) {
    .dao-board-wrap {
        margin: 30px auto 60px auto;
        padding: 0 15px;
        gap: 10px;
    }
    .dao-board-iframe { padding: 20px 15px; }
    .dao-board-center { padding: 20px 15px; }
    .dao-icon { width: 55px; height: 55px; font-size: 26px; }
    .dao-txt h2 { font-size: 26px; }
    .dao-txt h4 { font-size: 16px; }
    .dao-txt p { font-size: 13px; }
    .dao-board-cs, .dao-board-rsvp { gap: 15px; }
    .dao-board-sns { height: 100px; }
    .sns-btn { font-size: 13px; }

    /* FAQ 모바일 */
    .dao-faq-wrap { padding: 50px 0; }
    .dao-faq-list { padding: 0 10px; }
    .dao-faq-q { padding: 18px 15px; font-size: 16px; }
    .dao-faq-q i { font-size: 20px; }
    .dao-faq-a { padding: 0 15px 18px 15px; font-size: 16px; }
    .dao-faq-title { font-size: 22px; }
    .dao-faq-header { margin-bottom: 25px; }

    /* 리뷰 모바일 */
    .dao-reviews { padding: 50px 0; }
    .dao-reviews-title { font-size: 22px; }
    .dao-reviews-desc { font-size: 16px; }
    .dao-review-card { padding: 20px; gap: 15px; }
    .dao-review-body { font-size: 16px; }
    .dao-review-ctitle { font-size: 16px; }

    /* 강점 모바일 */
    .dao-adv-inner { padding: 60px 15px; }
    .dao-adv-item { padding: 35px 15px; }
    .dao-adv-icon { width: 60px; height: 60px; font-size: 30px; }
    .dao-adv-title { font-size: 18px; }
    .dao-adv-desc { font-size: 16px; }

}


/* --- MIGRATED STYLES (skin1 layout.css 제거로 인한 이관) --- */
.service-focus {
    padding: 70px 20px 20px;
    background: #fff;
}

.service-focus-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-focus-item {
    min-height: 150px;
    padding: 28px 30px;
    border: 1px solid #e4eef7;
    border-radius: 8px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    text-align: left;
    box-shadow: 0 10px 28px rgba(15, 45, 74, 0.06);
}

.service-focus-item h3 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: #111;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 0;
}

.service-focus-item h3::before {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #e9f6ff;
    color: #007bd7;
    font-size: 16px;
    font-weight: 900;
    content: "✓";
}

.service-focus-item p {
    margin-top: 6px;
    color: #333;
    font-size: 19px;
    font-weight: 500;
    line-height: 1.45;
    word-break: keep-all;
}

.work {
    position: relative; width: 100%; max-width: 1200px;
    height: auto; margin: 0 auto; padding: 90px 0; text-align: center;
}
.work > h2 { padding: 0 0 10px 0; font-size: 28px; font-weight: 700; color: #222; }
.work > h2 span { color: #007bd7; }
.work > h3 { padding: 0 0 40px 0; font-size: 16px; font-weight: 400; color: #555; }
.work ul { display: flex; justify-content: space-between; flex-wrap: wrap; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.work ul li {
    width: 32%; padding: 1%; border: 1px solid #eee; border-radius: 12px; overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s; margin-bottom: 30px;
    box-sizing: border-box;
}
.work ul li:hover { box-shadow: 0 10px 30px rgba(0,0,0,0.06); transform: translateY(-5px); }
.work ul li .img { width: 100%; height: 200px; overflow: hidden; border-radius: 8px; }
.work ul li img { width: 100%; height: 100%; object-fit: cover; border-radius: 8px; }
.work ul li .txt { width: auto; padding: 15px 0 0 4%; color: #000; text-align: left; }
.work ul li h2 { font-size: 24px; font-weight: 650; }
.work ul li h2 span { color: #007bd7; }
.work ul li h3 { padding: 5px 0 25px 0; font-size: 18px; font-weight: 350; line-height: 1.4; white-space: pre-line; }

@media (max-width: 1024px) {
    .service-focus-inner { grid-template-columns: 1fr; }
    .work ul li { width: 48%; }
}
@media (max-width: 768px) {
    .service-focus { padding: 45px 14px 5px; }
    .service-focus-inner { gap: 12px; }
    .service-focus-item {
        min-height: auto;
        padding: 22px 20px;
    }
    .service-focus-item h3 { font-size: 20px; }
    .service-focus-item p { font-size: 16px; }
    .work { padding: 60px 0; }
    .work > h2 { font-size: 22px; }
    .work > h3 { padding: 0 0 25px 0; font-size: 16px; }
    .work ul { padding: 0 10px; }
    .work ul li { width: 100%; margin-bottom: 20px; }
    .work ul li .img { height: 180px; }
    .work ul li h2 { font-size: 20px; }
    .work ul li h3 { font-size: 15px; }
}

#gallery {
    position: relative; width: 100%; max-width: 1200px;
    height: auto; margin: 0 auto; padding: 100px 0; overflow: hidden; text-align: center;
}
#gallery h2 { padding: 0 0 0px 0; font-size: 28px; font-weight: 700; color: #222; }
#gallery h2 span { color: #007bd7; }
@media (max-width: 768px) {
    #gallery { padding: 60px 0; }
    #gallery h2 { font-size: 22px; }
}

#brand {
    position: relative; width: 100%; max-width: 1200px;
    height: auto; margin: 0 auto; padding: 60px 20px; text-align: center; box-sizing: border-box;
}
#brand ul { display: flex; gap: 15px; align-items: center; justify-content: space-between; flex-wrap: wrap; width: 100%; margin: 0 auto; }
#brand ul li { flex: 1; min-width: 120px; padding: 10px; overflow: hidden; background: #fff; text-align: center; box-sizing: border-box; }
#brand ul li img { width: 100%; max-height: 60px; transition: 0.3s; object-fit: contain; }
#brand ul li img:hover { transform: scale(1.05); }
@media (max-width: 768px) {
    #brand { padding: 40px 15px; }
    #brand ul li { min-width: 80px; }
}

.clear { display: block; clear: both; }

/* --- RESERVATION ROLLING LIST --- */
.dao-res-viewport {
    position: relative;
    height: 300px;
    overflow: hidden;
}
.dao-res-viewport::after {
    position: absolute; right: 0; bottom: 0; left: 0; z-index: 1;
    height: 40px; background: linear-gradient(transparent, #fff);
    content: ''; pointer-events: none;
}
.dao-res-track { animation: dao-res-roll 18s linear infinite; }
.dao-res-viewport:hover .dao-res-track { animation-play-state: paused; }

.dao-res-item {
    display: flex; gap: 10px; align-items: center;
    padding: 11px 0;
    font-size: 18px; color: #555;
    border-bottom: 1px solid #f0f0f0;
}
.dao-res-item:last-child { border-bottom: none; }

.dao-res-tag {
    display: inline-block; flex-shrink: 0;
    padding: 3px 10px; border-radius: 4px;
    background: #eaf4ff; font-size: 14px; font-weight: 700;
    color: #0060ad; white-space: nowrap;
}

.dao-res-msg {
    flex: 1; min-width: 0;
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}

.dao-res-status {
    flex-shrink: 0;
    font-size: 14px; font-weight: 600;
    color: #22ab3c; white-space: nowrap;
    margin-left: auto;
}

@keyframes dao-res-roll {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

/* 예약현황 모바일 */
@media (max-width: 768px) {
    .dao-res-viewport { height: 160px; }
    .dao-res-item { font-size: 13px; padding: 10px 0; gap: 4px; flex-wrap: wrap; }
    .dao-res-tag { font-size: 11px; padding: 2px 6px; width: auto; }
    .dao-res-msg { flex: 1; min-width: 0; font-size: 12px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .dao-res-status { flex-shrink: 0; font-size: 11px; }
}





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

.process-list {
    display: grid;
    gap: 0px;
    position: relative;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    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;
    }
}


/* =========================================
   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 5px 20px rgba(0, 0, 0, 0.03);
    overflow: hidden;
    background: #ffffff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.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("/img/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;
    width: max-content;
    animation: scroll 40s linear infinite;

}

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

.marquee-reverse {
    animation-direction: reverse;
    margin-top: 20px;
}

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

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

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

/* =========================================
   Responsive Opt For Review & Track Record
========================================= */
@media (max-width: 1024px) {
    .review-card { min-height: auto; }
    .review-customer-img { height: 180px; }
    .review-content { padding: 25px 20px 30px; }
    .review-txt { font-size: 16px; margin-bottom: 25px; }
}

@media (max-width: 768px) {
    .review-card { border-radius: 12px; }
    .review-customer-img { height: 160px; }
    .review-content { padding: 20px 15px 25px; }
    .review-txt { font-size: 15px; line-height: 1.5; margin-bottom: 20px; }
    .star-rating { font-size: 14px; margin-bottom: 10px; }

    .track-record { padding: 70px 0; }
    .track-title { font-size: 20px; margin-bottom: 30px; }
    .track-item { width: 120px; height: 55px; padding: 10px; margin-right: 20px; border-radius: 8px; }
}

/* =========================================
   Customer Center Inline Refactoring
======================================== */
.dao-board-cs.cs-list-type {
    align-items: flex-start;
    padding-left: 10px;
}
.cs-list-type .dao-txt {
    width: 100%;
}
.cs-list-type .dao-txt h4 {
    margin-bottom: 20px;
}
.cs-contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}
.cs-contact-item.mt-0 {
    margin-bottom: 0;
}
.cs-contact-item h2, .cs-contact-item p {
    margin: 0 !important;
}
.cs-contact-item .cs-icon {
    width: 46px !important;
    height: 46px !important;
    font-size: 20px !important;
}
.cs-contact-item .cs-icon.dblue {
    background: #01419a !important;
    font-size: 22px !important;
}
.cs-contact-item p a.cs-mobile-number {
    font-size: 32px;
    font-weight: 800;
    color: #0060ad;
    line-height: 1;
    letter-spacing: -0.5px;
    text-decoration: none;
    display: inline-block;
}
@media (max-width: 768px) {
    .cs-contact-item p a.cs-mobile-number {
        font-size: 26px;
    }
}
