/* ==========================================================================
   CELLCORP Custom Styles
   Navy color overrides + CELLCORP-specific sections
   ========================================================================== */

/* -- Google & CDN Fonts -- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css');
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display&family=Montserrat:wght@300;400;500;600;700&family=Roboto:wght@100;300;400;500&family=Noto+Serif+KR:wght@400;600&display=swap');

/* ==========================================================================
   1. Color Overrides (Mazel gold #c7a674 → Navy #004B87)
   ========================================================================== */
.color,
.icon-color i,
.page-title-alt.color {
    color: #004B87 !important;
}

.btn-color,
.btn-color:hover,
.btn-color:focus {
    background: linear-gradient(135deg, #2b4c8a 0%, #004B87 100%) !important;
    border: none !important;
    color: #fff !important;
    box-shadow: 0 4px 15px rgba(26, 46, 84, 0.2);
    transition: all 0.3s ease;
}

.btn-color:hover {
    background: linear-gradient(135deg, #3a68ab 0%, #203a6c 100%) !important;
    box-shadow: 0 8px 25px rgba(26, 46, 84, 0.4);
    transform: translateY(-2px);
}

.pricing-box.highlight {
    border-color: #004B87 !important;
}

.pricing-price-lg.color {
    color: #004B87 !important;
}

.skillbar-bar-child {
    background-color: #004B87 !important;
}

/* ==========================================================================
   2. Typography & Base
   ========================================================================== */
body {
    font-family: 'Inter', 'Pretendard', sans-serif;
}

body[data-lang="kr"] {
    font-family: 'Pretendard', 'Inter', sans-serif;
}

.text-navy {
    color: #004B87;
}

.bg-navy {
    background-color: #004B87;
    background-image: url('data:image/svg+xml,%3Csvg width="20" height="20" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M0 0h20v20H0z" fill="none"/%3E%3Cpath d="M20 0L0 20M0 0l20 20" stroke="rgba(255,255,255,0.02)" stroke-width="1"/%3E%3C/svg%3E');
    color: #fff;
}

.font-thin {
    font-weight: 300;
    letter-spacing: -0.5px;
}

.font-light {
    font-weight: 300;
}

.font-serif {
    font-family: 'Roboto', 'Noto Serif KR', sans-serif !important;
}

.text-gold {
    color: #00B4D8 !important;
}

.page-title {
    font-family: 'Roboto', 'Noto Serif KR', sans-serif;
    font-weight: 300;
    letter-spacing: 3px;
    position: relative;
    padding-bottom: 20px;
}

.page-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: #00B4D8;
}

.page-title.text-navy {
    color: #004B87;
}

/* ==========================================================================
   3. Header / Navigation Overrides
   ========================================================================== */
.header {
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    position: fixed !important;
    height: 70px !important;
    transition: all 0.4s ease !important;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.header.header-prepare {
    background: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.header .logo,
.header-fixed .logo {
    margin: 0 !important;
    width: auto !important;
    transition: none !important;
}

.header .logo a,
.header-fixed .logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    height: 70px;
    width: auto !important;
    margin: 0 !important;
    transition: none !important;
}

.header .logo .logo-img,
.header-fixed .logo .logo-img {
    height: 68px;
    width: auto !important;
    display: block;
    transform: translate(-1px, 0);
    transition: none !important;
}

.header .nav-menu,
.header-fixed .nav-menu {
    margin-top: 10px;
}

.nav-menu ul.nav-menu-inner {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    font-size: 0;
}

.nav-menu ul.nav-menu-inner > li {
    display: flex !important;
    align-items: center;
    cursor: pointer;
}

.nav-menu ul.nav-menu-inner>li>a {
    padding: 26px 12px !important;
    cursor: pointer !important;
    font-size: 13px;
    line-height: 1;
    pointer-events: auto;
}

.nav-menu ul.nav-menu-inner > li.lang-toggle-wrap,
.nav-menu ul.nav-menu-inner > li > a.lang-toggle {
    cursor: default;
}

.nav-menu-inner li a {
    color: #333 !important;
    font-weight: 400 !important;
    letter-spacing: 1px;
}

.nav-menu-inner li a:hover,
.nav-menu-inner li a.active {
    color: #004B87 !important;
}

/* Language Toggle */
.lang-toggle {
    display: inline-flex;
    align-items: center;
    padding: 0 !important;
    cursor: default;
}

.lang-toggle .js-lang {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0;
    padding: 3px 8px;
    cursor: pointer;
    border-radius: 2px;
    transition: all 0.2s;
    color: #aaa;
}

.lang-toggle .js-lang.active {
    background: #004B87;
    color: #fff !important;
}

.lang-toggle .lang-sep {
    color: #ddd;
    padding: 0 2px;
    cursor: default;
}

/* ==========================================================================
   4. Hero / Intro Section (16:9 + 200px Banner)
   ========================================================================== */
.intro-section {
    position: relative;
    overflow: hidden;
    margin-top: 65px;
    /* fixed header compensation */
}

.hero-slide {
    position: relative;
    width: 100%;
    padding-top: calc(56.25% + 100px);
    /* 16:9 + 50px top/bottom */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

/* Slides 2,3: overlay.jpg texture layer */
.hero-slide-textured::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/cellcorp/overlay.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 1;
    z-index: 0;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        150deg,
        rgba(15, 27, 51, 0.88) 0%,
        rgba(18, 33, 58, 0.84) 15%,
        rgba(22, 40, 68, 0.79) 30%,
        rgba(26, 46, 78, 0.74) 45%,
        rgba(30, 52, 88, 0.70) 60%,
        rgba(33, 55, 95, 0.67) 75%,
        rgba(36, 59, 106, 0.65) 100%
    );
    z-index: 1;
}

/* Slide 4: vivid photo (50% overlay) */
.hero-overlay-vivid {
    background: linear-gradient(
        150deg,
        rgba(15, 27, 51, 0.55) 0%,
        rgba(22, 40, 68, 0.50) 35%,
        rgba(30, 52, 88, 0.50) 65%,
        rgba(36, 59, 106, 0.50) 100%
    ) !important;
}

.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    display: flex;
    align-items: center;
}

/* Large screens: unlock container width for 300% scaling */
@media (min-width: 1200px) {
    .hero-content .container {
        width: max(1170px, 85vw);
        max-width: none;
    }
}

.hero-text h2 {
    color: #fff;
    font-size: clamp(44px, 3.44vw, 132px);
    line-height: 1.25;
    margin-bottom: clamp(16px, 1.25vw, 48px);
    padding-left: clamp(35px, 2.73vw, 105px);
    font-family: 'Roboto', 'Noto Serif KR', sans-serif;
    font-weight: 100;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
}

.hero-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: clamp(16px, 1.25vw, 48px);
    line-height: clamp(26px, 2.03vw, 78px);
    padding-left: clamp(35px, 2.73vw, 105px);
    max-width: clamp(480px, 37.5vw, 1440px);
}

.hero-product {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

@keyframes heroFloat {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

.hero-product img {
    max-height: clamp(340px, 26.56vw, 1020px);
    max-width: 100%;
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.4));
    transition: filter 0.4s ease;
    animation: heroFloat 6s ease-in-out infinite;
}

.hero-product img:hover {
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.6));
}

/* Carousel Indicators */
#main-slider .carousel-indicators {
    bottom: 20px;
    z-index: 3;
    margin-bottom: 0;
}

#main-slider .carousel-indicators li {
    width: 12px;
    height: 12px;
    margin: 0 4px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    background: transparent;
    border-radius: 50%;
}

#main-slider .carousel-indicators li.active {
    background: #fff;
    border-color: #fff;
}

/* ==========================================================================
   5. Products Section
   ========================================================================== */
#products-section {
    padding: 70px 0;
}

#products-section h2 {
    color: #004B87;
}

.products-subtitle {
    text-align: center;
    color: #999;
    font-size: 16px;
    margin-bottom: 40px;
}

.filters-grid {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* ==========================================================================
   Olympic Rings Layout — 3 cards top + 2 cards offset bottom
   ========================================================================== */
.filters-grid--olympic {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    column-gap: 20px;
    row-gap: 24px;
}

.filters-grid--olympic .filters-grid__item--ring1 { grid-column: 1 / span 4; }
.filters-grid--olympic .filters-grid__item--ring2 { grid-column: 5 / span 4; }
.filters-grid--olympic .filters-grid__item--ring3 { grid-column: 9 / span 4; }
.filters-grid--olympic .filters-grid__item--ring4 { grid-column: 3 / span 4; }
.filters-grid--olympic .filters-grid__item--ring5 { grid-column: 7 / span 4; }

@media (max-width: 1024px) {
    .filters-grid--olympic { grid-template-columns: repeat(6, 1fr); column-gap: 16px; }
    .filters-grid--olympic .filters-grid__item--ring1 { grid-column: 1 / span 2; }
    .filters-grid--olympic .filters-grid__item--ring2 { grid-column: 3 / span 2; }
    .filters-grid--olympic .filters-grid__item--ring3 { grid-column: 5 / span 2; }
    .filters-grid--olympic .filters-grid__item--ring4 { grid-column: 2 / span 2; }
    .filters-grid--olympic .filters-grid__item--ring5 { grid-column: 4 / span 2; }
}

@media (max-width: 600px) {
    .filters-grid--olympic { grid-template-columns: 1fr; column-gap: 0; }
    .filters-grid--olympic .filters-grid__item--ring1,
    .filters-grid--olympic .filters-grid__item--ring2,
    .filters-grid--olympic .filters-grid__item--ring3,
    .filters-grid--olympic .filters-grid__item--ring4,
    .filters-grid--olympic .filters-grid__item--ring5 {
        grid-column: 1;
    }
}

.filters-grid__item {
    margin-bottom: 30px;
    text-align: center;
    height: 100%;
}

.filters-grid__item .divas {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px 24px 24px;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    height: 100%;
    box-shadow: 0 6px 20px rgba(15, 55, 106, 0.04);
    border: 1px solid #eef2f7;
    display: flex;
    flex-direction: column;
    position: relative;
}

.filters-grid__item .divas:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(15, 55, 106, 0.12), 0 10px 20px rgba(15, 55, 106, 0.06);
    border-color: #d8e3f0;
}

.filters-grid__item a {
    color: #0f376a;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.filters-grid__image {
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.filters-grid__image img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.filters-grid__item .divas:hover .filters-grid__image {
    transform: scale(1.05);
}

.filters-grid--title {
    display: block;
    font-size: 19px;
    font-weight: 600;
    text-transform: uppercase;
    color: #0f376a;
    letter-spacing: 1.5px;
    font-family: 'Roboto', 'Noto Serif KR', sans-serif;
    margin-bottom: 4px;
}

.filters-grid--title-kr {
    display: block;
    font-size: 13px;
    font-weight: 400;
    color: #6b7785;
    margin-bottom: 16px;
}

.filters-grid--spec {
    display: block;
    font-size: 12px;
    color: #4a5568;
    margin-top: auto;
    font-family: 'Inter', sans-serif;
    padding-top: 14px;
    border-top: 1px solid #eef2f7;
    width: 100%;
}

.filters-grid--indicator {
    position: absolute;
    bottom: 22px;
    right: 24px;
    font-size: 26px;
    color: #0f376a;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.3s;
    opacity: 0.4;
    line-height: 1;
}

.filters-grid__item .divas:hover .filters-grid--indicator {
    transform: translateX(6px);
    opacity: 1;
}

.filters-inner {
    display: none;
}

.filters-inner.active {
    display: block;
}

.filters-inner .filters-grid__item .filters-grid__image {
    height: 182px;
}

.filters-inner .filters-grid__item .filters-grid__image img {
    max-height: 156px;
}

.filters-inner--main-text {
    color: #606060;
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 30px;
}

.filter-back {
    display: inline-block;
    font-size: 36px;
    color: #004B87 !important;
    transform: rotate(180deg);
    cursor: pointer;
    margin-bottom: 10px;
}

.filter-item__title h2 {
    margin-bottom: 20px;
}

.filter-product-list {
    color: #999;
    font-size: 14px;
    margin-top: 8px;
}

/* ==========================================================================
   6. Work Process Section
   ========================================================================== */
#work-process {
    background-color: #162E4A;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(0, 180, 216, 0.05) 0%, transparent 60%),
        radial-gradient(circle at 80% 90%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    color: #fff;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

#work-process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/cellcorp/overlay.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transform: scaleX(-1);
    opacity: 0.5;
    mix-blend-mode: soft-light;
    z-index: 0;
    pointer-events: none;
}

#work-process h2 {
    color: #fff;
}

.process-subtitle {
    text-align: center;
    opacity: 0.7;
    font-size: 16px;
    margin-bottom: 50px;
}

.process-steps {
    margin-bottom: 50px;
}

.process-card {
    padding: 0 40px 20px;
    text-align: left;
}

@media (min-width: 992px) {
    .process-card-middle {
        border-left: 1px solid rgba(0, 180, 216, 0.2);
        border-right: 1px solid rgba(0, 180, 216, 0.2);
    }
}

.process-image {
    border-radius: 50%;
    background-color: #ffffff;
    width: 200px;
    height: 200px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease, border-color 0.4s ease;
    border: 3px solid rgba(0, 180, 216, 0.15);
}

.process-card:hover .process-image {
    transform: scale(1.05) translateY(-5px);
    border-color: rgba(0, 180, 216, 0.8);
}

.process-number {
    font-size: 72px;
    font-weight: 400;
    color: #004B87;
    font-family: 'DM Serif Display', serif;
}

.process-step {
    display: block;
    opacity: 0.8;
    color: #00B4D8;
    font-size: 14px;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

#work-process h4 {
    font-family: 'Roboto', 'Noto Serif KR', sans-serif;
    font-size: 26px;
    font-weight: 500;
    line-height: 32px;
    margin-top: 5px;
    margin-bottom: 14px;
    color: #fff;
}

#work-process p {
    line-height: 28px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.process-flow {
    text-align: center;
    padding: 30px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.process-flow h4 {
    margin-bottom: 15px;
    opacity: 0.9;
}

.process-flow-steps {
    font-size: 15px;
    opacity: 0.8;
    line-height: 32px;
    color: #fff;
}

@media (max-width: 991px) {
    .process-card {
        margin-bottom: 40px;
    }
}

/* ==========================================================================
   7. Performance / Counter Section
   ========================================================================== */
#performance-section {
    padding: 110px 0;
    background: #fff;
}

#performance-section h2 {
    color: #004B87;
}

.perf-subtitle {
    text-align: center;
    color: #999;
    font-size: 16px;
    margin-top: -20px;
    margin-bottom: 40px;
}

.perf-stats {
    margin-bottom: 75px;
}

.perf-stat-item {
    text-align: center;
    margin-bottom: 45px;
}

.perf-stat-number {
    font-size: 64px;
    font-weight: 400;
    color: #004B87;
    line-height: 1;
    font-family: 'DM Serif Display', serif;
}

.perf-stat-unit {
    font-size: 20px;
    font-weight: 300;
    color: #004B87;
}

.perf-stat-label {
    font-size: 15px;
    color: #999;
    margin-top: 8px;
    font-weight: 300;
}

.perf-stat-detail {
    font-size: 12px;
    color: #bbb;
    margin-top: 4px;
}

.perf-certs {
    padding: 65px 0;
    border-top: 1px solid #eee;
}

.perf-certs h3 {
    color: #004B87;
    margin-bottom: 45px;
    font-family: 'Roboto', 'Noto Serif KR', sans-serif;
    font-size: 28px;
    font-weight: 600;
}

.cert-item {
    text-align: center;
    margin-bottom: 20px;
}

.cert-badge {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #F0F2F7;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cert-badge-text {
    font-size: 11px;
    font-weight: 500;
    color: #004B87;
}

.cert-name {
    font-size: 14px;
    font-weight: 400;
    color: #333;
}

.cert-desc {
    font-size: 12px;
    color: #999;
}

.perf-awards {
    padding: 65px 0;
    border-top: 1px solid #eee;
}

.perf-awards h3 {
    color: #004B87;
    margin-bottom: 12px;
    font-family: 'Roboto', 'Noto Serif KR', sans-serif;
    font-size: 28px;
    font-weight: 600;
}

.perf-awards p {
    color: #999;
    font-size: 15px;
    line-height: 28px;
    text-align: center;
    margin-bottom: 0;
}

.award-grid {
    margin-top: 36px;
}

.award-card-item {
    margin-bottom: 12px;
}

.award-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 22px;
    background: #f8fafc;
    border-left: 3px solid #004B87;
    border-radius: 0 6px 6px 0;
}

.award-year-badge {
    flex-shrink: 0;
    font-size: 11px;
    font-weight: 700;
    color: #004B87;
    background: rgba(0, 75, 135, 0.08);
    padding: 3px 8px;
    border-radius: 4px;
    letter-spacing: 0.5px;
    margin-top: 2px;
    white-space: nowrap;
}

.award-title {
    font-size: 14px;
    color: #444;
    line-height: 1.6;
}

.perf-quality {
    padding: 65px 0;
    border-top: 1px solid #eee;
}

.perf-quality h3 {
    color: #004B87;
    margin-bottom: 40px;
    font-family: 'Roboto', 'Noto Serif KR', sans-serif;
    font-size: 28px;
    font-weight: 600;
}

.quality-grid {
    margin-top: 20px;
}

.quality-item {
    text-align: center;
    margin-bottom: 25px;
}

.quality-number {
    font-size: 42px;
    font-weight: 400;
    color: #004B87;
    font-family: 'DM Serif Display', serif;
}

.quality-label {
    font-size: 13px;
    color: #999;
}

/* ==========================================================================
   8. About Section
   ========================================================================== */
#about-section {
    padding: 80px 0;
    background: #F0F2F7;
}

#about-section h2 {
    color: #004B87;
}

.about-history {
    margin-bottom: 50px;
}

.about-history p {
    color: #606060;
    font-size: 16px;
    line-height: 30px;
}

.timeline {
    position: relative;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #C8D0DE;
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.timeline-item::after {
    content: '';
    display: table;
    clear: both;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 8px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #004B87;
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-content {
    width: 44%;
    padding: 25px 30px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.timeline-content.left {
    float: left;
    text-align: right;
}

.timeline-content.right {
    float: right;
    text-align: left;
}

.timeline-year {
    font-size: 26px;
    font-weight: 600;
    color: #004B87;
    font-family: 'Roboto', sans-serif;
    margin-bottom: 6px;
}

.timeline-text {
    font-size: 14px;
    color: #606060;
    line-height: 22px;
}

.about-vision {
    padding: 50px 0 0;
}

.about-vision h3 {
    color: #004B87;
    margin-bottom: 25px;
}

.vision-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    margin-bottom: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    height: 100%;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.vision-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 180, 216, 0.2);
    border-color: rgba(0, 180, 216, 0.5);
}

.vision-icon {
    font-size: 42px;
    color: #3A6B9F;
    margin-bottom: 15px;
}

.vision-card h4 {
    color: #004B87;
    font-family: 'Roboto', 'Noto Serif KR', sans-serif;
    font-weight: 600;
    font-size: 22px;
    margin-bottom: 12px;
}

.vision-card p {
    color: #606060;
    font-size: 14px;
    line-height: 24px;
}

/* ==========================================================================
   8-1. Global Network Section
   ========================================================================== */
#global-section {
    padding: 80px 0;
    background: #fff;
}

#global-section h2 {
    color: #004B87;
}

.global-subtitle {
    text-align: center;
    color: #999;
    font-size: 16px;
    margin-top: -20px;
    margin-bottom: 40px;
}

/* Location Cards */
.global-locations {
    margin-bottom: 50px;
}

.global-location-card {
    margin-bottom: 20px;
}

.global-card {
    background: #F0F2F7;
    border-radius: 16px;
    padding: 35px 30px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.global-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(26, 46, 84, 0.1);
}

.global-card-indonesia {
    background: linear-gradient(135deg, #f8f9fc 0%, #edf1f8 100%);
    border: 2px solid rgba(26, 46, 84, 0.08);
}

.global-card-flag {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 52px;
    height: 39px;
    border-radius: 3px;
    background-color: #fff;
    background-image: url('../images/flags/kr.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.08);
    overflow: hidden;
    text-indent: -9999px;
    font-size: 0;
    color: transparent;
}

.global-card-flag-id {
    background-image: url('../images/flags/id.svg');
}

.global-card h3 {
    font-family: 'Roboto', 'Noto Serif KR', sans-serif;
    font-size: 24px;
    font-weight: 100;
    letter-spacing: -0.5px;
    color: #004B87;
    margin-top: 0;
    margin-bottom: 20px;
    padding-right: 50px;
}

.global-card-info {
    font-size: 14px;
    line-height: 20px;
}

.global-info-row {
    display: flex;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.global-info-row:last-child {
    border-bottom: none;
}

.global-info-label {
    flex: 0 0 100px;
    color: #999;
    font-weight: 400;
    font-size: 13px;
}

/* Gallery */
.global-gallery {
    padding: 40px 0;
    border-top: 1px solid #eee;
}

.global-gallery h3 {
    color: #004B87;
    margin-bottom: 25px;
}

.global-gallery a.image-zoom {
    display: block;
    cursor: zoom-in;
    position: relative;
}

.global-gallery a.image-zoom::after {
    content: "\f00e";
    font-family: FontAwesome;
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    color: #fff;
    background: rgba(0, 75, 135, 0.75);
    border-radius: 50%;
    font-size: 14px;
    opacity: 0;
    transform: scale(0.8);
    transition: opacity .25s ease, transform .25s ease;
    pointer-events: none;
}

.global-gallery a.image-zoom:hover::after {
    opacity: 1;
    transform: scale(1);
}

.global-gallery-main {
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.global-gallery-main img {
    width: 100%;
    display: block;
}

.global-gallery-panorama {
    margin-top: 20px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.global-gallery-panorama img {
    width: 100%;
    height: auto;
    display: block;
}

.global-gallery-side {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.global-gallery-side img {
    width: 100%;
    display: block;
}

.global-factory-facts {
    padding: 5px 0;
}

.global-fact {
    padding: 10px 15px;
    font-size: 13px;
    color: #606060;
    line-height: 20px;
    border-left: 3px solid #004B87;
    margin-bottom: 10px;
    background: #F0F2F7;
    border-radius: 0 8px 8px 0;
}

/* Indonesia Milestones */
.global-timeline {
    padding: 40px 0;
    border-top: 1px solid #eee;
}

.global-timeline h3 {
    color: #004B87;
    margin-bottom: 25px;
}

.global-milestone-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.global-milestone {
    background: #F0F2F7;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

.global-milestone:hover {
    transform: translateY(-3px);
}

.global-milestone-highlight {
    background: #004B87;
    color: #fff;
}

.global-milestone-date {
    display: block;
    font-size: 18px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    color: #004B87;
    margin-bottom: 6px;
}

.global-milestone-highlight .global-milestone-date {
    color: #fff;
}

.global-milestone-text {
    display: block;
    font-size: 13px;
    color: #606060;
    line-height: 18px;
}

.global-milestone-highlight .global-milestone-text {
    color: rgba(255, 255, 255, 0.8);
}

/* Hero Indonesia overlay (kept for backward compat) */
.hero-overlay-indonesia {
    background: linear-gradient(135deg, rgba(0, 75, 135, 0.7) 0%, rgba(0, 60, 110, 0.5) 50%, rgba(0, 90, 155, 0.4) 100%) !important;
}

/* Slide 4: Global factory — white heading */
.hero-slide-global .hero-text-center h2 {
    color: #ffffff;
    -webkit-text-fill-color: #ffffff;
    text-shadow:
        0 0 12px rgba(0, 0, 0, 0.95),
        0 2px 6px rgba(0, 0, 0, 0.85),
        0 0 30px rgba(10, 30, 80, 0.6);
}

.hero-slide-global .hero-text-center p {
    color: rgba(255, 255, 255, 0.95);
    text-shadow:
        0 1px 6px rgba(0, 0, 0, 0.95),
        0 0 20px rgba(0, 0, 0, 0.85),
        0 2px 3px rgba(0, 0, 0, 1);
}

.hero-text-center {
    text-align: center;
}

.hero-col-text-full {
    flex: 0 0 100%;
    max-width: 100%;
}

.hero-text-center h2 {
    padding-left: 0 !important;
}

.hero-text-center p {
    padding-left: 0 !important;
    max-width: 700px;
    margin: 0 auto;
}

/* Timeline dot highlight */
.timeline-dot-highlight {
    background: #3a68ab;
    box-shadow: 0 0 0 4px rgba(58, 104, 171, 0.3);
}

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

    .global-card {
        padding: 25px 20px;
    }

    .global-info-label {
        flex: 0 0 80px;
    }

    #global-section {
        padding: 50px 0;
    }

    .hero-text-center p {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .global-milestone-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   9. Contact Section
   ========================================================================== */
#contact-us .contact-form-cellcorp input,
#contact-us .contact-form-cellcorp textarea {
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 12px 20px;
    width: 100%;
    border-radius: 2px;
    outline: none;
    font-family: 'Roboto', 'Noto Sans KR', sans-serif;
    font-size: 14px;
}

#contact-us .contact-form-cellcorp input::placeholder,
#contact-us .contact-form-cellcorp textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

#contact-us .contact-form-cellcorp input:focus,
#contact-us .contact-form-cellcorp textarea:focus {
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.15);
}

#contact-us .contact-form-cellcorp input {
    height: 50px;
}

#contact-us .contact-form-cellcorp textarea {
    resize: none;
    height: 158px;
}

#contact-us .form-field-wrapper {
    margin-bottom: 15px;
}

.btn-submit-cellcorp {
    background: linear-gradient(135deg, #ffffff 0%, #f0f2f7 100%);
    color: #004B87;
    border: none;
    padding: 14px 45px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-submit-cellcorp:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
    background: #ffffff;
}

.btn-submit-cellcorp:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.contact-label-cellcorp {
    outline: none;
    color: #fff;
    height: 50px;
    line-height: 36px;
    cursor: pointer;
    background-color: transparent;
    font-weight: 300;
    font-size: 14px;
    padding: 7px 24px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    display: inline-block;
    transition: all 0.2s ease-out;
}

.contact-label-cellcorp:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.contact-label-cellcorp input[type="file"] {
    display: none;
}

#cf-result {
    display: none;
    padding: 15px;
    border-radius: 4px;
    text-align: center;
    margin-top: 10px;
    font-size: 15px;
}

/* ==========================================================================
   10. Map & Footer
   ========================================================================== */
.map-section {
    width: 100%;
    height: 450px;
    background: #e9e9e9;
    position: relative;
    overflow: hidden;
    display: flex;
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.map-toggle-panel {
    flex: 0 0 240px;
    background: #004B87;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    z-index: 2;
}

.map-frame-wrap {
    flex: 1 1 auto;
    position: relative;
    min-width: 0;
}

.map-flag-btn {
    flex: 1 1 0;
    width: 100%;
    padding: 20px 18px;
    background: #004B87;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    text-align: left;
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
    color: #fff;
    font-family: inherit;
    outline: none;
}

.map-flag-btn .map-flag-text small {
    color: rgba(255, 255, 255, 0.72);
}

.map-flag-btn:last-child {
    border-bottom: 0;
}

.map-flag-btn:hover {
    background: #0a5aa0;
}

.map-flag-btn:focus-visible {
    box-shadow: inset 0 0 0 2px #fff;
}

.map-flag-btn.active {
    background: #fff;
    color: #0f376a;
    box-shadow: inset 4px 0 0 #0f376a;
}

.map-flag-btn.active .map-flag-text strong {
    font-weight: 700;
}

.map-flag-btn.active .map-flag-text small {
    color: #6b7785;
}

.map-flag-icon {
    flex: 0 0 auto;
    width: 40px;
    height: 30px;
    border-radius: 3px;
    background-color: #fff;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.map-flag-icon-kr {
    background-image: url('../images/flags/kr.svg');
}

.map-flag-icon-id {
    background-image: url('../images/flags/id.svg');
}

.map-flag-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
    min-width: 0;
}

.map-flag-text strong {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.map-flag-text small {
    font-size: 11px;
    margin-top: 3px;
    font-weight: 400;
    color: #6b7585;
}

.map-flag-btn.active .map-flag-text small {
    color: rgba(255, 255, 255, 0.78);
}

#footer.cellcorp-footer {
    background-color: #162E4A;
    background-image:
        radial-gradient(circle at 80% 20%, rgba(0, 180, 216, 0.05) 0%, transparent 60%),
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    color: #fff;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

#footer.cellcorp-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/cellcorp/overlay.jpg');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    opacity: 0.15;
    mix-blend-mode: soft-light;
    z-index: 0;
    pointer-events: none;
}

#footer.cellcorp-footer .footer-contact {
    padding: 60px 0 30px;
}

#footer.cellcorp-footer h3 {
    color: #fff;
    margin-top: 0;
    margin-bottom: 25px;
}

.contact-block {
    float: left;
    margin-right: 15px;
    padding-right: 80px;
    margin-bottom: 20px;
    line-height: 24px;
    font-size: 16px;
}

.contact-block:last-child {
    margin-right: 0;
}

.contact-block-stack .contact-sub + .contact-sub {
    margin-top: 18px;
}

.contact-block strong {
    font-weight: 400;
    display: block;
    margin-bottom: 5px;
}

.contact-block a {
    color: #fff;
    text-decoration: underline;
}

.contact-block a:hover {
    opacity: 0.8;
}

#footer.cellcorp-footer .copyright {
    text-align: right;
    margin-top: 30px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

/* ==========================================================================
   11. Mobile Menu Override
   ========================================================================== */
.nav-menu-icon {
    position: absolute;
    right: 15px;
    top: 13px;
}

.nav-menu-icon a {
    color: #004B87 !important;
    font-size: 22px !important;
    padding: 0 !important;
    display: block;
}

.nav-menu-icon.active a {
    color: #004B87 !important;
}

@media all and (max-width: 1024px) {
    .nav-menu {
        background: #004B87 !important;
    }

    .nav-menu ul.nav-menu-inner li a {
        color: #fff !important;
        border-top-color: rgba(255, 255, 255, 0.15) !important;
    }

    .nav-menu ul.nav-menu-inner li a:hover {
        color: #ccc !important;
    }

    .lang-toggle .js-lang {
        color: rgba(255, 255, 255, 0.6);
    }

    .lang-toggle .js-lang.active {
        background: #fff;
        color: #004B87 !important;
    }

    .lang-toggle .lang-sep {
        color: rgba(255, 255, 255, 0.3);
    }
}

/* ==========================================================================
   12. Mobile Responsive
   ========================================================================== */
@media (max-width: 991px) {
    .process-card {
        margin-bottom: 40px;
    }

    .hero-text h2 {
        font-size: clamp(34px, 3.44vw, 132px);
    }

    .hero-text p {
        font-size: clamp(14px, 1.25vw, 48px);
        line-height: clamp(24px, 2.03vw, 78px);
    }

    .hero-product img {
        max-height: clamp(260px, 26.56vw, 1020px);
    }
}

@media (max-width: 767px) {
    .header-inner {
        position: relative;
    }

    .hero-slide {
        padding-top: 120%;
    }

    .hero-content {
        align-items: center;
        padding-bottom: 20px;
    }

    .hero-content .row {
        flex-direction: column;
        align-items: center;
    }

    .hero-col-img {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        transform: none;
        width: 100%;
        max-width: 100%;
        flex: none;
        z-index: 1;
        opacity: 1;
        pointer-events: none;
        text-align: center;
        margin-bottom: -20px;
    }

    .hero-product {
        padding: 0;
        justify-content: center;
        align-items: center;
    }

    .hero-product img {
        max-height: none !important;
        max-width: none !important;
        width: 84vw;
        transform: none !important;
        filter: none;
    }

    .hero-col-text {
        position: relative;
        flex: 0 0 100%;
        max-width: 100%;
        z-index: 2;
        padding: 0 20px;
    }

    .hero-text h2 {
        font-size: 26px;
        line-height: 1.35;
        margin-bottom: 12px;
        padding-left: 0;
        word-break: keep-all;
        text-shadow:
            0 0 8px rgba(0, 0, 0, 0.6),
            0 2px 4px rgba(0, 0, 0, 0.4);
        -webkit-text-stroke: 0.3px rgba(255, 255, 255, 0.15);
    }

    .hero-text p {
        display: block !important;
        font-size: 13px;
        line-height: 20px;
        padding-left: 0;
        max-width: 100%;
        text-shadow:
            0 0 6px rgba(0, 0, 0, 0.6),
            0 1px 3px rgba(0, 0, 0, 0.4);
        color: rgba(255, 255, 255, 0.95);
    }

    #products-section {
        padding: 40px 0;
    }

    #work-process .section-padding {
        padding: 50px 0;
    }

    #performance-section {
        padding: 70px 0;
    }

    #about-section {
        padding: 50px 0;
    }

    .perf-stat-number {
        font-size: 48px;
    }

    .perf-subtitle {
        margin-top: -10px;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-dot {
        left: 20px;
    }

    .timeline-content {
        width: calc(100% - 50px);
        float: right !important;
        text-align: left !important;
    }

    .timeline-content {
        padding: 15px;
    }

    .about-vision .col-md-4 {
        padding-bottom: 20px;
    }

    .about-vision .col-md-4:last-child {
        padding-bottom: 0;
    }

    .vision-card {
        height: auto;
        margin-bottom: 0;
        padding: 25px 20px;
    }

    .contact-block {
        float: none;
        padding-right: 0;
        margin-bottom: 30px;
    }

    #footer.cellcorp-footer .copyright {
        text-align: center;
    }

    .map-section {
        height: auto;
        flex-direction: column;
    }

    .map-toggle-panel {
        flex: 0 0 auto;
        flex-direction: row;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .map-flag-btn {
        padding: 12px 12px;
        gap: 10px;
        border-bottom: 0;
        border-right: 1px solid rgba(255, 255, 255, 0.12);
    }

    .map-flag-btn:last-child {
        border-right: 0;
    }

    .map-flag-btn.active {
        box-shadow: inset 0 4px 0 #0f376a;
    }

    .map-flag-icon {
        width: 32px;
        height: 24px;
    }

    .map-flag-text strong {
        font-size: 13px;
    }

    .map-flag-text small {
        font-size: 10px;
    }

    .map-frame-wrap {
        height: 300px;
    }

    .filters-grid__image {
        height: 182px;
    }

    .filters-grid__image img {
        max-height: 156px;
    }
}

@media (max-width: 480px) {
    .hero-slide {
        padding-top: 140%;
    }

    .hero-text h2 {
        font-size: 22px;
    }

    .hero-text p {
        font-size: 12px;
        line-height: 18px;
    }

    .perf-stat-number {
        font-size: 40px;
    }

    .filters-grid__item .divas {
        padding: 20px 15px 15px;
    }

    .filters-grid--title {
        font-size: 15px;
    }

    .award-card {
        padding: 14px 16px;
        gap: 12px;
    }

    .award-title {
        font-size: 13px;
    }
}

/* ==========================================================================
   Filter Grid Image Badges (TJNS / option indicators)
   ========================================================================== */
.filters-grid__image {
    position: relative;
}

.filters-grid__badges {
    position: absolute;
    right: 14px;
    bottom: 14px;
    display: inline-flex;
    gap: 8px;
    z-index: 2;
    pointer-events: none;
}

.filters-grid__badge {
    width: 51px;
    height: 51px;
    background: #fff;
    border: 1px solid rgba(15, 55, 106, 0.18);
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(15, 55, 106, 0.18);
    position: relative;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.filters-grid__badge::before {
    content: '';
    position: absolute;
    inset: 11px;
    background-color: #0f376a;
    -webkit-mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-position: center;
    mask-repeat: no-repeat;
    mask-size: contain;
}

.filters-grid__badge--flavor::before {
    -webkit-mask-image: url('../images/icons/flavor-drop.png');
    mask-image: url('../images/icons/flavor-drop.png');
}

.filters-grid__badge--menthol::before {
    -webkit-mask-image: url('../images/icons/menthol-snowflake.png');
    mask-image: url('../images/icons/menthol-snowflake.png');
}

.filters-grid__item:hover .filters-grid__badge {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(15, 55, 106, 0.28);
}

@media (max-width: 768px) {
    .filters-grid__badges { right: 10px; bottom: 10px; gap: 6px; }
    .filters-grid__badge { width: 42px; height: 42px; }
    .filters-grid__badge::before { inset: 9px; }
}

/* ==========================================================================
   Filter Detail Modal (#filterModal)
   ========================================================================== */
.filter-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    visibility: hidden;
    pointer-events: none;
    transition: visibility 0s linear 0.6s;
}

.filter-modal.is-open {
    visibility: visible;
    pointer-events: auto;
    transition: visibility 0s linear 0s;
}

/* Blur layer — instant on open, smooth fade on close */
.filter-modal::before {
    content: '';
    position: absolute;
    inset: 0;
    backdrop-filter: blur(8px) saturate(140%);
    -webkit-backdrop-filter: blur(8px) saturate(140%);
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
    pointer-events: none;
}

.filter-modal.is-open::before {
    opacity: 1;
    transition: opacity 0s;
}

.fm-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 22, 44, 0.55);
    opacity: 0;
    transition: opacity 0.55s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.filter-modal.is-open .fm-backdrop {
    opacity: 1;
}

.fm-dialog {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 760px;
    max-height: calc(100vh - 48px);
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 30px 80px rgba(8, 22, 44, 0.25), 0 8px 24px rgba(8, 22, 44, 0.12);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(32px) scale(0.96);
    transition: opacity 0.6s cubic-bezier(0.16, 0.84, 0.3, 1),
                transform 0.6s cubic-bezier(0.16, 0.84, 0.3, 1);
}

.filter-modal.is-open .fm-dialog {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.fm-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border: none;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 26px;
    line-height: 1;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s, transform 0.3s;
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.fm-close:hover { background: #fff; color: #0f376a; transform: rotate(90deg); }

.fm-header {
    display: flex;
    gap: 28px;
    padding: 36px 36px 28px;
    background: linear-gradient(135deg, #0f376a 0%, #1a4d8a 50%, #0c2b54 100%);
    color: #fff;
    align-items: center;
    position: relative;
}

.fm-header::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at top right, rgba(255,255,255,0.1), transparent 60%);
    pointer-events: none;
}

.fm-image {
    flex: 0 0 180px;
    width: 180px;
    height: 130px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255,255,255,0.4);
    position: relative;
    z-index: 1;
}

.fm-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.3));
}

.fm-heading { flex: 1; min-width: 0; position: relative; z-index: 1; }

.fm-title {
    margin: 0 0 8px;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #fff;
    line-height: 1.2;
}

.fm-sub {
    margin: 0 0 16px;
    font-size: 15px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.3px;
}

.fm-length {
    display: inline-flex;
    align-items: baseline;
    gap: 12px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    backdrop-filter: blur(4px);
}

.fm-length-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: rgba(255, 255, 255, 0.75);
}

.fm-length-value {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.3px;
}

.fm-body {
    padding: 28px 36px 36px;
    overflow-y: auto;
    background: #fff;
}

.fm-note {
    margin: 0 0 24px;
    padding: 16px 20px;
    font-size: 14px;
    line-height: 1.6;
    color: #4a5568;
    background: #f5f8fc;
    border-left: 4px solid #0f376a;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(15, 55, 106, 0.04);
}

.fm-group-title {
    margin: 24px 0 16px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #0f376a;
    padding-bottom: 8px;
    border-bottom: 2px solid #e3ebf5;
    display: flex;
    align-items: center;
}

.fm-group-title::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 16px;
    background: #00B4D8;
    margin-right: 8px;
    border-radius: 2px;
}

.fm-group-title:first-child { margin-top: 0; }

.fm-spec-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 6px;
    margin-bottom: 16px;
    font-size: 14px;
}

.fm-spec-table thead th {
    padding: 8px 14px;
    text-align: left;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #6b7785;
    border-bottom: none;
}

.fm-spec-table tbody tr {
    transition: all 0.2s ease;
}

.fm-spec-table tbody td {
    padding: 14px 16px;
    color: #2a3b54;
    background: #ffffff;
    border-top: 1px solid #eef2f7;
    border-bottom: 1px solid #eef2f7;
}

.fm-spec-table tbody td:first-child {
    font-weight: 600;
    color: #0f376a;
    border-left: 1px solid #eef2f7;
    border-radius: 8px 0 0 8px;
}

.fm-avail {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.fm-avail-flag {
    display: inline-block;
    width: 22px;
    height: 16px;
    border-radius: 2px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0 1px 2px rgba(15, 55, 106, 0.18);
    border: 1px solid rgba(15, 55, 106, 0.1);
}

.fm-avail-flag--kr { background-image: url('../images/flags/kr.svg'); }
.fm-avail-flag--id { background-image: url('../images/flags/id.svg'); }

.fm-avail-flag--empty {
    background: transparent;
    box-shadow: none;
    border-color: transparent;
    visibility: hidden;
}

/* 3-column variant: Type | Diameter | Available in */
.fm-spec-table--3col {
    table-layout: fixed;
}

.fm-spec-table--3col thead th,
.fm-spec-table--3col tbody td {
    white-space: nowrap;
}

.fm-spec-table--3col thead th:nth-child(1),
.fm-spec-table--3col tbody td:nth-child(1) {
    width: 38%;
    padding-left: 28px;
}

.fm-spec-table--3col thead th:nth-child(2),
.fm-spec-table--3col tbody td:nth-child(2) {
    width: 38%;
    font-family: 'Inter', 'SF Mono', Menlo, monospace;
    color: #4a5568;
    letter-spacing: 0.3px;
    border-radius: 0;
}

.fm-spec-table--3col thead th:nth-child(3),
.fm-spec-table--3col tbody td:nth-child(3) {
    width: 24%;
    padding-right: 28px;
    text-align: left;
}

.fm-spec-table--3col tbody td:last-child {
    font-family: inherit;
    color: inherit;
    letter-spacing: normal;
}

@media (max-width: 768px) {
    .fm-avail-flag { width: 18px; height: 13.5px; }
    .fm-spec-table--3col { table-layout: auto; }
    .fm-spec-table--3col thead th,
    .fm-spec-table--3col tbody td { white-space: normal; }
    .fm-spec-table--3col thead th:nth-child(1),
    .fm-spec-table--3col tbody td:nth-child(1) { padding-left: 14px; }
    .fm-spec-table--3col thead th:nth-child(3),
    .fm-spec-table--3col tbody td:nth-child(3) { padding-right: 14px; }
    .fm-spec-table--3col tbody td:nth-child(2) { font-size: 12px; }
}

.fm-spec-table tbody td:last-child {
    font-family: 'Inter', 'SF Mono', Menlo, monospace;
    color: #4a5568;
    letter-spacing: 0.3px;
    border-right: 1px solid #eef2f7;
    border-radius: 0 8px 8px 0;
}

.fm-spec-table tbody tr:hover td { 
    background: #f8fafc;
    border-color: #d8e3f0;
    box-shadow: 0 4px 12px rgba(15, 55, 106, 0.05);
    transform: scale(1.005);
}

.fm-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin: 8px 0 24px;
}

.fm-options-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #6b7785;
    margin-right: 6px;
}

.fm-chip {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    background: linear-gradient(135deg, #eef4fb 0%, #f5f8fc 100%);
    color: #0f376a;
    border: 1px solid rgba(15, 55, 106, 0.1);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
    transition: all 0.2s ease;
}

.fm-chip::before {
    content: '\f00c';
    font-family: 'FontAwesome';
    margin-right: 6px;
    color: #00B4D8;
    font-size: 10px;
}

.fm-chip:hover {
    background: #fff;
    box-shadow: 0 4px 8px rgba(15, 55, 106, 0.08);
    transform: translateY(-1px);
}

body.fm-open { overflow: hidden; }

@media (max-width: 768px) {
    .filter-modal { padding: 12px; }
    .fm-dialog { max-height: calc(100vh - 24px); border-radius: 14px; }
    .fm-header { flex-direction: column; align-items: flex-start; padding: 32px 24px 24px; gap: 20px; }
    .fm-image { width: 100%; height: 140px; flex-basis: auto; }
    .fm-title { font-size: 24px; }
    .fm-body { padding: 24px; }
    .fm-spec-table tbody td { padding: 12px; font-size: 13px; }
    .fm-spec-table tbody td:last-child { font-size: 12px; }
}

/* ==========================================================================
   PRINT STYLES — A4 optimized (Cmd+P / Ctrl+P)
   ========================================================================== */
@media print {
    @page { size: A4 portrait; margin: 12mm 10mm; }

    * {
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }

    /* CRITICAL: WOW.js sets inline visibility:hidden — force override */
    .wow, .wow *,
    [style*="visibility: hidden"],
    [style*="visibility:hidden"],
    .animated, .fadeInUp, .fadeInLeft, .fadeInRight {
        visibility: visible !important;
        opacity: 1 !important;
        animation: none !important;
        -webkit-animation: none !important;
        transform: none !important;
    }

    body { font-size: 10pt; line-height: 1.5; color: #222; background: #fff; }

    /* --- Hide non-print elements --- */
    #preloader, .header, .carousel-indicators, .map-section,
    #contact-us, .lang-toggle, .filters-inner, .filters-grid--indicator,
    .js-filterBack, .filter-back, .nav-menu-icon { display: none !important; }

    /* --- Hero: first slide only, compact --- */
    .intro-section, #main-slider,
    .carousel-inner, .carousel-item.active { height: auto !important; min-height: 0 !important; }
    .carousel-item { display: none !important; }
    .carousel-item.active { display: block !important; }

    .hero-slide {
        position: relative !important;
        min-height: 0 !important;
        height: auto !important;
        padding: 25px 0 !important;
        padding-top: 25px !important;
        background: #f0f4f8 !important;
        background-image: none !important;
    }
    .hero-slide-textured::after,
    .hero-overlay { display: none !important; }
    .hero-content { position: relative !important; }
    .hero-text h2 { color: #004B87 !important; font-size: 20pt !important; -webkit-text-fill-color: #004B87 !important; }
    .hero-text p { color: #333 !important; font-size: 9pt !important; }
    .hero-product img { max-height: 120px; }
    .hero-col-img, .hero-col-text { position: relative !important; }

    /* --- Sections --- */
    .section-padding { padding: 15px 0 !important; }
    .page-title { font-size: 15pt !important; margin-bottom: 8px !important; }
    .page-title::after { display: none; }

    /* --- Products --- */
    #products-home .filters-grid__item { width: 33.333% !important; flex: 0 0 33.333% !important; max-width: 33.333% !important; }
    .filters-grid__item .divas { padding: 8px !important; border: 1px solid #ddd !important; }
    .filters-grid__image img { max-height: 70px; }
    .filters-grid--title { font-size: 8pt !important; }
    .products-subtitle { font-size: 9pt !important; }

    /* --- Process --- */
    #work-process { background: #fff !important; color: #333 !important; }
    #work-process .page-title { color: #004B87 !important; }
    #work-process .process-subtitle { color: #555 !important; }
    .process-card { border: 1px solid #ddd !important; background: #fff !important; break-inside: avoid; color: #333 !important; }
    .process-card h4 { color: #004B87 !important; visibility: visible !important; opacity: 1 !important; }
    .process-card p { color: #333 !important; visibility: visible !important; opacity: 1 !important; }
    .process-card .process-step { color: #00B4D8 !important; }
    .process-image { width: 40px !important; height: 40px !important; }
    .process-number { font-size: 12pt !important; }
    .process-subtitle { font-size: 9pt !important; }
    .process-flow { margin-top: 10px !important; background: #f0f4f8 !important; color: #333 !important; }
    .process-flow h4 { color: #004B87 !important; }
    .process-flow-steps { color: #333 !important; }

    /* --- Performance --- */
    #performance-section { page-break-before: always; }
    .perf-stat-number { font-size: 24pt !important; color: #004B87 !important; }
    .perf-stat-item { border: 1px solid #eee !important; padding: 8px !important; }
    .cert-item { break-inside: avoid; }
    .cert-badge { border: 2px solid #004B87 !important; background: #fff !important; }
    .cert-badge-text { color: #004B87 !important; }
    .award-card { border: 1px solid #ddd !important; background: #fff !important; break-inside: avoid; }
    .award-year-badge { background: #004B87 !important; color: #fff !important; }
    .quality-number { color: #004B87 !important; }

    /* --- About / Timeline --- */
    .timeline::before { background: #004B87 !important; }
    .timeline-dot { border-color: #004B87 !important; background: #fff !important; }
    .timeline-dot-highlight { background: #004B87 !important; }
    .timeline-content { border: 1px solid #ddd !important; background: #fff !important; break-inside: avoid; }
    .timeline-year { color: #004B87 !important; }
    .vision-card { border: 1px solid #ddd !important; background: #fff !important; break-inside: avoid; }
    .vision-icon i { color: #004B87 !important; }

    /* --- Global --- */
    #global-section { page-break-before: always; }
    .global-card { border: 1px solid #ddd !important; background: #fff !important; break-inside: avoid; }
    .global-card-indonesia { border-color: #c0392b !important; }
    .global-card-flag { background-image: url('../images/flags/kr.svg') !important; background-size: cover !important; background-position: center !important; color: transparent !important; }
    .global-card-flag-id { background-image: url('../images/flags/id.svg') !important; }
    .global-gallery-main img, .global-gallery-side img, .global-gallery-panorama img { max-height: 180px; object-fit: cover; }
    .global-factory-facts { font-size: 8pt; }
    .global-milestone { border: 1px solid #ddd !important; background: #fff !important; }
    .global-milestone-highlight { background: #004B87 !important; color: #fff !important; }

    /* --- Footer --- */
    .cellcorp-footer { background: #fff !important; color: #333 !important; border-top: 2px solid #004B87; padding: 10px 0 !important; }
    .cellcorp-footer h3 { color: #004B87 !important; }
    .cellcorp-footer .contact-block strong { color: #004B87 !important; }
    .cellcorp-footer a { color: #004B87 !important; }

    /* --- General --- */
    a[href]::after { content: none !important; }
    img { max-width: 100% !important; break-inside: avoid; }
    h2, h3, h4 { break-after: avoid; }
}