:root {
    --primary-color: #0d1b2a;
    /* 신뢰감을 주는 깊은 네이비 */
    --accent-color: #1a73e8;
    /* 포인트 블루 */
    --text-color: #333333;
    /* 부드러운 검정 텍스트 */
    --text-colorb: #ffffff;
    --light-bg: #f4f7f9;
    /* 시원한 느낌의 아주 연한 블루 그레이 */
    --white: #ffffff;
    --dark-navy: #0b2545;
    /* 헤더 및 다크 섹션용 네이비 */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    /* 폰트를 Pretendard로 변경하여 가독성 극대화 */
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, Roboto, 'Helvetica Neue', 'Segoe UI', 'Apple SD Gothic Neo', 'Noto Sans KR', 'Malgun Gothic', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

    font-weight: 400;

    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;

    /* 단어 끊김 방지 */
    word-break: keep-all;
    overflow-wrap: break-word;
}

/* 공통 컨테이너 설정 */
.container {
    max-width: 1200px;
    margin: 0 auto;
    /* 양옆 패딩을 20px 정도로 넉넉히 주면 모바일에서 여백이 생깁니다. */
    padding: 0 40px;
    width: 100%;
    box-sizing: border-box;
    /* 패딩이 너비에 포함되도록 설정 (매우 중요) */
}

/* 섹션 안의 그리드나 레이아웃이 여백을 무시하지 못하게 방어 */
.network-grid,
.why-grid,
.case-grid,
.infra-grid {
    width: 100%;
    margin: 0 auto;
}

/* 섹션에 container가 같이 붙어있는 경우를 위한 수정 */
section.container {
    padding-left: 40px !important;
    padding-right: 40px !important;
}

/* 창 폭이 아주 좁은 모바일(480px 이하)에서는 여백을 조금 더 줄여도 됩니다 */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
}

/* Header */
/* Header 기본 상태: 주황색 배경 + 흰색 글씨 */
header {
    height: 60px;
    /* 80px에서 60px로 축소 */
    display: flex;
    align-items: center;

    /* 주황색 배경에 85% 불투명도 적용 */
    background-color: var(--dark-navy);
    opacity: 0.9;
    /* 뒷배경 블러 처리 */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.4s ease;
    border-bottom: none;
}

/* 헤더에 마우스 호버 시: 하얀 배경 + 그림자 */
header:hover {
    background-color: var(--accent-color);
    opacity: 0.9;
    /* 흰색 반투명 */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

header .container {
    max-width: 95%;
    padding: 0 40px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* 로고 기본: 흰색 */
/* 로고 전체 컨테이너 */
.logo a {
    display: flex;
    flex-direction: column;
    /* 세로 정렬 */
    text-decoration: none;
    line-height: 1.1;
    /* 행간을 타이트하게 조절 */
}

/* 메인 로고 (WUXIN KOREA) */
.logo-main {
    font-size: 20px;
    font-weight: 400;
    color: var(--white);
    letter-spacing: -0.5px;
}

.logo-main span {
    color: var(--white);
    /* KOREA 부분 주황색 포인트 */
}

/* 하단 슬로건 (brand protect with wuxin) */
.logo-sub {
    font-size: 18px;
    /* 아주 작게 설정 */
    font-weight: 400;
    color: var(--white);
    /*opacity: 0.8; /* 약간 투명하게 처리해 메인 로고 방해 금지 */
    letter-spacing: 0.1px;
    margin-top: 1px;
}

.logo-sub .sub-wuxin {
    color: var(--accent-color) !important;
    font-weight: 400;
}

/* 헤더 호버 시 로고 색상 변경 */
header:hover .logo-main {
    color: var(--white) !important;
    /* KOREA 부분은 네이비 */
}

header:hover .logo-main span {
    color: var(--white) !important;
    /* WUXIN 부분은 다시 주황색 */
}

header:hover .logo-sub .sub-wuxin {
    color: var(--white) !important;
    /* WUXIN 부분은 다시 주황색 */
}

/* 메뉴 기본: 흰색 */
.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    white-space: nowrap
}

.nav-links li {
    margin-left: 25px;
    white-space: nowrap
}

.nav-links a {
    text-decoration: none;
    color: var(--white) !important;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

.nav-links li a:hover {
    color: var(--dark-navy);
}

/* [핵심] 선택된 페이지 스타일: 블랙 처리 */
/* 주황색 배경(Hero) 위에 있을 때와 흰색 배경 위에 있을 때를 모두 고려한 설정입니다. */
.nav-links li a.active {
    color: var(--accent-color) !important;
    /* 완전한 블랙 */
    font-weight: 400;
    /* 글자를 더 두껍게 해서 강조 */
}

/* 헤더 호버 시 메뉴 글씨 검정색(네이비)으로 */
header:hover .nav-links a {
    color: var(--white) !important;
}

/* 개별 메뉴 호버 시: 다시 주황색으로 강조 */
header:hover .nav-links a:hover {
    color: var(--dark-navy) !important;
}



/* Hero Section */
.hero {
    display: flex;
    background-color: var(--dark-navy);
    flex-direction: column;
    /* 자식 요소들을 세로로 쌓음 (배너 -> 그리드 순서) */
    align-items: center;
    /* 전체 중앙 정렬 */
    width: 100%;
    padding: 100px 0 100px;
}

/* 2. 상단 배너 스타일 */
.hero-banner-static {
    width: 100%;
    /* 화면 전체 너비 사용 */
    text-align: center;
    /* 텍스트 가운데 정렬 */
    padding: 20px 0;
    margin-bottom: 10px;
    /* 아래 내용과의 간격 */

}

/* 3. 본문 내용 (글자 + 수치 박스) */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* 여기서 다시 양옆으로 나눔 */
    gap: 60px;
    align-items: center;
    width: 100%;
}


.banner-text {
    /* [핵심] 얇고 좁은 폰트 설정 */
    font-family: 'Pretendard', sans-serif;
    font-weight: 400;
    /* 가장 얇은 두께 */
    font-size: 48px;
    color: var(--white);
    opacity: 1;
    /* 너무 튀지 않게 투명도 조절 */
    text-transform: uppercase;

    /* 자간을 넓게 주면 Condensed 스타일이 훨씬 돋보입니다 */
    letter-spacing: 0.1em;

    /* 브라우저가 지원하는 경우 자폭을 더 좁게 강제 */
    font-stretch: condensed;
    display: inline-block;
}

/* 모바일에서는 자간을 조금 줄여서 한 줄에 나오게 조절 */
@media (max-width: 768px) {
    .banner-text {
        font-size: 12px;
        letter-spacing: 2px;
    }
}

/* 하단 텍스트 콘텐츠 위치 고정 */
.hero-content {
    position: relative;
    z-index: 2;
    margin-top: 0px;
    /* 전광판과 겹치지 않게 여백 추가 */
}

.hero-subtitle {
    font-size: 38px;
    font-weight: 400;
    text-align: center;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-description {
    font-size: 20px;
    font-weight: 300;
    text-align: center;
    color: var(--white);
    line-height: 1.6;
}

/* 버튼 컨테이너 */
.hero-btns {
    display: flex;
    gap: 40px;
    /* 간격을 조금 더 넓혀 시원하게 배치 */
    justify-content: center;
    margin-top: 50px;
    margin-bottom: 0px;
}

/* 두 버튼 공통 스타일: 진한 네이비(검정색 계열) */
.btn-coming,
.btn-consult {
    display: inline-block;
    /* 패딩 조절: (상하 12px, 좌우 30px)로 줄여서 높이를 낮췄습니다 */
    padding: 12px 30px;

    background: var(--accent-color);
    color: var(--white);

    /* 글자 크기 조절: 16px -> 14px로 축소하여 세련미를 더했습니다 */
    font-size: 16px;

    font-weight: 400;
    border-radius: 50px;
    text-decoration: none;
    /*border: 2px solid var(--primary-color);*/
    transition: all 0.3s ease;
    cursor: pointer;
}

/* 호버 시 효과: 흰색 배경으로 반전 */
.btn-coming:hover,
.btn-consult:hover {
    background: var(--white);
    color: var(--dark-navy);
    border-color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}


/* Hero Grid 레이아웃 조정 */
.hero-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 모든 자식 요소를 가로 중앙 정렬 */
    text-align: center;
    /* 텍스트 중앙 정렬 */
    gap: 50px;
    /* 텍스트와 수치 사이 간격 */
    width: 100%;

}


.hero-content {
    max-width: 800px;
    /* 텍스트가 너무 퍼지지 않게 조절 */
}

/* 수치 컨테이너 스타일 */
.hero-stats-container {
    width: 100%;
    max-width: 1200px;
    /* 컨테이너가 너무 좁으면 4개가 안 들어갑니다 */
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* 4개를 나란히 */
    gap: 15px;
    width: 100%;
}

.stat-box {
    background: rgba(255, 255, 255, 0.08);
    /* 세련된 반투명 유리 효과 */
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 25px 15px;
    border-radius: 12px;
    text-align: center;
    backdrop-filter: blur(5px);
    /* 배경 흐림 효과 */
    transition: all 0.3s ease;
    min-width: 0;
}

.stat-box:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-5px);
    border-color: var(--accent-color);
}

.stat-box.full {
    width: 100%;
}

.stat-num {
    font-size: clamp(24px, 2.5vw, 32px);
    font-weight: 400;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 8px;
    letter-spacing: -1px;
    white-space: nowrap;
}

.stat-num .unit {
    font-size: 18px;
    font-weight: 400;
    opacity: 0.7;
    margin-left: 1px;
}

.stat-box p {
    font-size: 15px;
    color: var(--white);
    opacity: 1.0;
    font-weight: 400;
}

/* 모바일 대응 */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        /* 세로로 쌓기 */
        text-align: center;
    }

    .hero-stats-container {
        max-width: 500px;
        margin: 0 auto;
    }
}

.counter {
    /* 숫자의 폭을 일정하게 유지하여 카운팅 시 떨림 방지 */
    font-variant-numeric: tabular-nums;
    display: inline-block;
    min-width: 1.2em;
    /* 숫자가 들어갈 최소 공간 확보 */
}

.stat-num {
    font-family: 'Pretendard', sans-serif;
    /* 숫자가 예쁜 폰트 권장 */
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 2px;
}







/* SECTION 1: Services Intro ----------------------------------------------------*/
.services-intro {
    padding: 60px 0 100px;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.sub-title {
    display: block;
    color: var(--accent-color);
    /* 주황색 포인트 */
    font-weight: 400;
    font-size: 22px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: 45px;
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: 20px;
}

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

/* Service Grid Layout (3줄 2열 또는 2줄 3열) */
.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 한 줄에 3개씩 */
    gap: 30px;
}

.service-item {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--accent-color);
}

.item-number {
    font-size: 30px;
    font-weight: 400;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.service-item h3 {
    font-size: 20px;
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: 10px;
    line-height: 1.3;
}

.service-item p {
    font-size: 15px;
    color: #888;
    font-weight: 400;
}

/* 모바일 대응 */
@media (max-width: 992px) {
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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



/* SECTION 2: China Network -------------------------------------------- */
.china-network {
    padding: 60px 0 100px;
    border-top: 1px solid #f0f0f0;
    background: var(--white);
    color: var(--text-color);
    overflow: hidden;
    line-height: 1.5;
    margin-bottom: 10px;
}

.network-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;

    margin-bottom: 10px;
}

.network-content h2 {
    font-size: 45px;
    font-weight: 400;
    color: var(--primary-color);
    /* 네이비색 글자 */
    margin-bottom: 10px;
}

.network-content p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color);
    /* 회색조 글자 */
    font-weight: 400;

    margin-bottom: 20px;
}

/* 조사 가능 지역 태그 스타일 */
.location-box h3 {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 20px;
    color: var(--accent-color);
    /* 주황색 포인트 */

    margin-bottom: 15px;
}

.location-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.location-tags span {
    background: var(--white);
    padding: 10px 25px;
    border-radius: 50px;
    min-width: 180px;
    font-size: 16px;
    font-weight: 400;
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    text-align: center;
    transition: 0.3s;
}

.location-tags span:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--white);
}

.location-tags .plus-more {
    border: 1px solid var(--accent-color);
    text-align: center;
    min-width: 180px;
    background: none;
    color: var(--accent-color);
}

/* 지도 비주얼 (추상화된 디자인) */
.network-visual {
    position: relative;
    height: 400px;
    border-radius: 12px;
    border: none;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.map-placeholder {
    width: 100%;
    height: 100%;
    position: relative;
}

.dot {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--accent-color);
    border-radius: 50%;
    /*box-shadow: 0 0 15px var(--accent-color);*/
}

.dot span {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 13px;
    white-space: nowrap;
    font-weight: 400;
}

/* 점들의 임의 위치 배치 */
.dot.sh {
    top: 20%;
    right: 20%;
}

.dot.yw {
    top: 40%;
    right: 25%;
}

.dot.fj {
    top: 60%;
    right: 30%;
}

.dot.sz {
    bottom: 20%;
    right: 35%;
}

.dot.gzh {
    bottom: 15%;
    right: 45%;
}



/* SECTION 3: Why WUXIN Korea ----------------------------------------------------*/
.why-wuxin {
    padding: 60px 0 100px;
    background: var(--white);
    border-top: 1px solid #f0f0f0;
}

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

.why-item {
    padding: 40px 30px;
    background: var(--white);
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
}

/* 아이콘/이모지 스타일 */
.why-icon {
    font-size: 32px;
    margin-bottom: 15px;
}

/* 제목 행간 및 간격 (요청하신 대로 타이트하게) */
.why-item h3 {
    font-size: 22px;
    font-weight: 400;
    color: var(--primary-color);
    line-height: 1.2;
    /* 행간 축소 */
    margin-bottom: 10px;
    /* 제목 아래 간격 축소 */
}

.why-item p {
    font-size: 16px;
    color: #666;
    line-height: 1.5;
    font-weight: 400;
}

/* 플랫폼 태그 스타일 (도시 태그와 유사하게 강조) */
.platform-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.platform-tags span {
    background: #f8f9fb;
    color: var(--primary-color);
    border: 1.5px solid #ddd;

    min-width: 90px;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 400;
    text-align: center;
    transition: 0.3s;
}

.platform-tags span:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

/* 모바일 대응 */
@media (max-width: 992px) {
    .why-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-item {
        padding: 40px 30px;
        background: var(--white);
        border-radius: 16px;
        border: 1px solid rgba(0, 0, 0, 0.03);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
        transition: all 0.4s ease;
    }

    .platform-tags {
        justify-content: center;
    }
}


/* SECTION 4: Industries ----------------------------------------------------*/
.industries {
    padding: 60px 0 100px;
    background: var(--white);
    border-top: 1px solid #f0f0f0;
}

/* 산업군 리스트 레이아웃 (5개이므로 유연하게 배치) */
.industry-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    /* 5컬럼 구성 */
    gap: 20px;
}

.industry-card {
    padding: 30px 20px;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.4s ease;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.03);
}

.industry-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.07);
}

/* 산업군 제목 행간 및 간격 축소 */
.industry-card h3 {
    font-size: 18px;
    font-weight: 400;
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 8px;
}

.industry-card p {
    font-size: 14px;
    color: #888;
    font-weight: 400;
}

/* 섹션 3에서 만든 accent-line 재사용 및 크기 조절 */
.industry-card .accent-line {
    width: 20px;
    height: 3px;
    margin-bottom: 15px;
}

/* 모바일/태블릿 대응 */
@media (max-width: 1200px) {
    .industry-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

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


/* SECTION 5: Case Studies ----------------------------------------------------*/
.case-studies {
    padding: 60px 0 120px;
    background: var(--white);
    border-top: 1px solid #f0f0f0;
}

.case-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3열 구성 */
    gap: 30px;
}

.case-card {
    padding: 40px 30px;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.03);
    border-radius: 16px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.case-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--accent-color);
}

/* 케이스 제목 행간 및 간격 */
.case-card h3 {
    font-size: 22px;
    font-weight: 400;
    color: var(--white);
    line-height: 1.2;
    /* 행간 타이트하게 */
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.case-card p {
    font-size: 16px;
    color: var(--white);
    line-height: 1.5;
    font-weight: 400;
}

/* 포인트 라인 (통일감 유지) */
.case-card .accent-line {
    width: 40px;
    height: 4px;
    margin-bottom: 25px;
}

/* 모바일 대응 */
@media (max-width: 992px) {
    .case-grid {
        grid-template-columns: 1fr;
    }
}

/* CTA Section - 주황색 배경으로 시선 집중 ----------------------------------------------------*/
.cta-section {
    padding: 30px 0;
    background: var(--accent-color);
    text-align: center;
    color: var(--white);
}

.cta-title {
    font-size: 40px;
    font-weight: 400;
    line-height: 1.1;
    /* 아주 타이트한 행간 */
    letter-spacing: -1.5px;
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 20px;
    color: var(--dark-navy);
    /* 네이비 포인트 */
}

.cta-description {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
    font-weight: 400;
    opacity: 0.9;
}

/* CTA 버튼 - 검정색(네이비)으로 통일 */
.btn-cta {
    display: inline-block;
    padding: 18px 50px;
    background: var(--dark-navy);
    color: var(--white);
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 0px solid var(--primary-color);
}

.btn-cta:hover {
    background: var(--white);
    color: var(--dark-navy);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* B2B 카피 구조 보정 (전체 섹션 공통) */
.section-header h2 {
    line-height: 1.2;
    /* 행간 타이트하게 고정 */
    letter-spacing: -1px;
}

.section-header p {
    line-height: 1.5;
    margin-top: 15px;
    font-weight: 400;
    /* 조금 더 선명하게 */
}

/* Footer 스타일 ------------------------------------------------------------------*/
footer {
    padding: 40px 0 50px;
    background: var(--dark-navy);
    /* 진한 네이비 */
    color: var(--white);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
    display: flex;
    /* grid보다 flex가 배치 조절이 더 직관적일 수 있습니다 */
    justify-content: space-between;
    /* 양 끝으로 밀어내기 */
    align-items: flex-start;
    padding: 60px 20px;
    gap: 40px;
}

.footer-info {
    flex: 1;
    max-width: 450px;
}


.company-name {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 15px;
}

.address-box p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    /* 주소 등 정보는 가독성을 위해 살짝 여유 있게 */
    margin-bottom: 5px;
}

.copyright {
    margin-top: 30px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

/* 하단 메뉴 링크 */
.footer-links {
    display: flex;
    gap: 60px;
}

.link-group h4 {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 20px;
    color: var(--accent-color);
    letter-spacing: 1px;
}

.link-group a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 12px;
    transition: 0.3s;
}

.link-group a:hover {
    color: var(--white);
}

/* 모바일 대응 */
@media (max-width: 768px) {
    .footer-grid {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
        gap: 40px;
    }
}

/* Contact Page Specific -------------------------------------------------------------------------------*/
.contact-hero {
    padding: 150px 0 60px;
    background: var(--dark-navy);
    color: var(--white);
    text-align: center;
}

.contact-hero h1 {
    font-size: 42px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 10px;
    letter-spacing: -1.5px;
}

.contact-hero p {
    font-size: 18px;
    font-weight: 400;
    opacity: 0.9;
}

.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    /* 폼 영역을 더 넓게 */
    gap: 100px;
}

/* 왼쪽 정보 스타일 */
.info-item {
    margin-bottom: 40px;
}

.info-label {
    display: block;
    font-size: 13px;
    font-weight: 400;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}

.info-item h3 {
    font-size: 28px;
    font-weight: 400;
    color: var(--primary-color);
    line-height: 1.2;
}

.info-item p {
    font-size: 18px;
    font-weight: 400;
    color: #555;
    line-height: 1.5;
}

.info-desc {
    margin-top: 30px;
    font-size: 15px;
    color: #888;
    line-height: 1.6;
}

/* 상담 폼 스타일 */
.contact-form-container {
    background: #f9f9fb;
    padding: 50px;
    border-radius: 12px;
    border: 1px solid #eee;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-family: inherit;
    font-size: 15px;
    transition: 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background: #fff;
}

/* 제출 버튼 */
.btn-submit {
    width: 100%;
    padding: 18px;
    background: var(--dark-navy);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    transition: 0.3s;
}

.btn-submit:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 107, 0, 0.2);
}

/* 모바일 대응 */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .contact-form-container {
        padding: 30px;
    }
}

/* China Expert Styles ----------------------------------------------------------------------------------------*/

.about-hero {
    padding: 160px 0 100px;
    background: var(--dark-navy);
    color: var(--white);
    text-align: center;
}

.about-hero h1 {
    font-size: 48px;
    line-height: 1.1;
    font-weight: 400;
    margin-bottom: 25px;
    letter-spacing: -1.5px;
}

.about-hero p {
    font-size: 18px;
    line-height: 1.6;
    opacity: 0.9;
}

/* ABOUT - Company Intro */
.company-intro {
    padding: 80px 0 60px;
    text-align: center;
}

.intro-content h2 {
    font-size: 32px;
    font-weight: 400;
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.main-text {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
    font-weight: 400;
    margin-bottom: 50px;
}

/* 핵심 인프라 그리드 (3개 나란히) */
.core-infra-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.infra-card {
    background: #f9f9fb;
    padding: 35px 20px;
    border-radius: 4px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.infra-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
}

.infra-card h3 {
    font-size: 19px;
    font-weight: 400;
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 10px;
}

.infra-card p {
    font-size: 15px;
    color: var(--accent-color);
    font-weight: 400;
}

.infra-card .accent-line {
    width: 25px;
    height: 3px;
    margin: 0 auto 15px;
    /* 가운데 정렬 */
}

/* 모바일 대응 */
@media (max-width: 768px) {
    .core-infra-grid {
        grid-template-columns: 1fr;
    }
}

/* Stats Section */
.stats-section {
    background: #f9f9fb;
    padding: 80px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

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

.stat-item {
    padding: 40px 20px;
}

.stat-number {
    font-size: 50px;
    font-weight: 400;
    color: var(--accent-color);
    line-height: 1.1;
    margin-bottom: 15px;
}

.stat-item p {
    font-size: 15px;
    line-height: 1.5;
    font-weight: 400;
    color: var(--primary-color);
}

/* Core Service Cards */
.core-services {
    padding: 100px 0;
}

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

.core-card {
    background: var(--white);
    border: 1px solid #f0f0f0;
    padding: 40px 30px;
    border-radius: 4px;
    transition: 0.3s;
}

.core-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-10px);
}

.core-card h3 {
    font-size: 22px;
    font-weight: 400;
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 20px;
}

.core-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}


.network-hero {
    padding: 100px 0 80px;
    background: var(--dark-navy);
    color: var(--white);
    text-align: center;
}

.network-hero h1 {
    font-size: 48px;
    font-weight: 400;
    line-height: 1.1;
    margin-top: 15px;
    margin-bottom: 20px;
}

/* Infrastructure Grid */
.infra-section {
    padding: 100px 0;
}

.infra-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 50px;
}

.infra-item h3 {
    font-size: 24px;
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.infra-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    font-weight: 400;
}

/* Response Section (Dark Background) */
.response-section {
    background: var(--dark-navy);
    color: var(--white);
    padding: 80px 0;
}

.response-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.response-text h2 {
    font-size: 32px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.response-stats {
    display: flex;
    gap: 30px;
}

.r-stat {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 8px;
    min-width: 140px;
}

.r-stat strong {
    display: block;
    font-size: 40px;
    font-weight: 400;
    color: var(--white);
}

.r-stat span {
    font-size: 13px;
    color: #999;
    font-weight: 400;
}

/* Elite Technology*/
.elite-tech {
    padding: 100px 0;
}

.tech-intro {
    text-align: center;
    margin-bottom: 60px;
}

.tech-intro h2 {
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 20px;
    color: var(--primary-color);
}

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

.tech-card {
    padding: 40px 30px;
    border: 1px solid #f0f0f0;
    border-radius: 4px;
}

.tech-card h3 {
    font-size: 20px;
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1.2;
}

/* Experience Highlight Bar */
.experience-bar {
    display: flex;
    justify-content: space-around;
    margin-top: 60px;
    background: var(--white);
    border: 1px solid var(--accent-color);
    padding: 30px;
    border-radius: 4px;
}

.exp-item {
    font-size: 18px;
    font-weight: 400;
    color: var(--primary-color);
}

.exp-item strong {
    color: var(--accent-color);
    font-size: 24px;
    margin-right: 10px;
}

/* 모바일 대응 */
@media (max-width: 992px) {

    .infra-grid,
    .tech-grid,
    .response-flex {
        grid-template-columns: 1fr;
        flex-direction: column;
    }

    .response-stats {
        width: 100%;
    }
}

/* Solutions Page Styles ---------------------------------------------------------------*/
.services-hero {
    padding: 160px 0 80px;
    background: var(--dark-navy);
    color: var(--white);
    text-align: center;
}

.services-hero h1 {
    font-size: 48px;
    font-weight: 400;
    margin-top: 15px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.services-body {
    padding: 80px 0;
}

.service-category {
    margin-bottom: 80px;
}

.category-header {
    margin-bottom: 40px;
}

.category-header h2 {
    font-size: 32px;
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: 10px;
    letter-spacing: -1px;
}

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

.detail-item {
    background: #f9f9fb;
    padding: 35px;
    border-radius: 8px;
    border: 1px solid #eee;
    transition: 0.3s;
}

.detail-item:hover {
    background: #fff;
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.detail-item h3 {
    font-size: 20px;
    font-weight: 400;
    color: var(--primary-color);
    line-height: 1.2;
    /* 타이트한 행간 */
    margin-bottom: 5px;
}

.kor-sub {
    font-size: 14px;
    font-weight: 400;
    color: var(--accent-color);
    margin-bottom: 15px;
}

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

/* 2개짜리 그리드 처리 (카테고리 2, 3용) */
.service-category:nth-child(n+2) .service-detail-grid {
    grid-template-columns: repeat(2, 1fr);
}

/* 모바일 대응 */
@media (max-width: 992px) {

    .service-detail-grid,
    .service-category:nth-child(n+2) .service-detail-grid {
        grid-template-columns: 1fr;
    }
}

/* TECHNOLOGY Page Specific-------------------------------------------------------- */
.tech-hero {
    padding: 160px 0 80px;
    background: var(--dark-navy);
    color: var(--white);
    text-align: center;
}

.tech-hero h1 {
    font-size: 48px;
    font-weight: 400;
    line-height: 1.1;
    /* 매우 타이트한 행간 */
    margin-top: 15px;
    margin-bottom: 20px;
}

.tech-hero p {
    font-size: 18px;
    font-weight: 400;
    opacity: 0.9;
    margin-top: 15px;
}

.tech-grid-section {
    padding: 80px 0;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 2x2 그리드 */
    gap: 40px;
    margin-top: 50px;
}

.tech-item {
    background: #f9f9fb;
    padding: 40px;
    border-radius: 8px;
    border: 1px solid #eee;
    transition: 0.3s;
}

.tech-item:hover {
    background: #fff;
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.tech-titles {
    margin-bottom: 15px;
}

.tech-item h3 {
    font-size: 24px;
    font-weight: 400;
    color: var(--primary-color);
    line-height: 1.2;
    /* 타이트한 행간 */
    margin-bottom: 5px;
}

.kor-sub {
    font-size: 15px;
    font-weight: 400;
    color: var(--accent-color);
    /* 주황색 포인트 */
}

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

/* 모바일 대응 */
@media (max-width: 992px) {
    .tech-grid {
        grid-template-columns: 1fr;
    }
}


/* Case Studies Page ------------------------------------------------------------------*/
.case-hero {
    padding: 160px 0 80px;
    background: var(--dark-navy);
    color: var(--white);
    text-align: center;
}

.case-hero h1 {
    font-size: 48px;
    font-weight: 400;
    line-height: 1.1;
    margin-top: 15px;
    margin-bottom: 20px;
}

.case-list-section {
    padding: 100px 0;
}

.case-detail-card {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    margin-bottom: 120px;
    align-items: center;
}

/* 이미지가 반대로 배치되는 스타일 */
.case-detail-card.reverse {
    grid-template-columns: 1.2fr 1fr;
}

.case-detail-card.reverse .case-image-placeholder {
    order: 2;
}

.case-image-placeholder {
    height: 400px;
    background: #f4f4f4;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 400;
    color: #ccc;
    font-size: 20px;
    border: 1px solid #eee;
    overflow: hidden;
}

.case-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.case-content h2 {
    font-size: 32px;
    font-weight: 400;
    color: var(--primary-color);
    margin: 15px 0 20px;
    line-height: 1.2;
}

.case-summary {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Problem-Solution-Outcome 구조 */
.case-process {
    display: grid;
    gap: 25px;
    border-top: 1px solid var(--accent-color);
    padding-top: 30px;
}

.process-item strong {
    display: block;
    font-size: 14px;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.process-item p {
    font-size: 16px;
    color: #333;
    font-weight: 400;
    line-height: 1.5;
}

/* 모바일 대응 */
@media (max-width: 992px) {

    .case-detail-card,
    .case-detail-card.reverse {
        grid-template-columns: 1fr;
    }

    .case-detail-card.reverse .case-image-placeholder {
        order: 0;
    }
}

/* Insights Page Style --------------------------------------------------------*/
.insights-hero {
    padding: 160px 0 80px;
    background: var(--dark-navy);
    color: var(--white);
    text-align: center;
}

.insights-hero h1 {
    font-size: 48px;
    font-weight: 400;
    line-height: 1.1;
    margin-top: 15px;
    margin-bottom: 20px;
}

.insights-section {
    padding: 80px 0;
}

.insights-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.insight-card {
    background: #fff;
    padding: 40px;
    border: 1px solid #eee;
    border-radius: 4px;
    transition: 0.3s;
}

.insight-card:hover {
    border-color: var(--accent-color);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.card-tag {
    font-size: 13px;
    font-weight: 400;
    color: var(--accent-color);
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.insight-card h2 {
    font-size: 28px;
    font-weight: 400;
    color: var(--primary-color);
    line-height: 1.2;
    margin: 15px 0;
}

.insight-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
    font-weight: 400;
}

.insight-list {
    list-style: none;
    border-top: 1px solid #f0f0f0;
    padding-top: 20px;
}

.insight-list li {
    margin-bottom: 15px;
}

.insight-list li a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 400;
    font-size: 16px;
    transition: 0.2s;
}

.insight-list li a:hover {
    color: var(--accent-color);
    padding-left: 5px;
    /* 살짝 움직이는 효과 */
}

.insights-cta {
    background: #f9f9fb;
    padding: 80px 0;
    text-align: center;
}

.insights-cta h3 {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 10px;
}

.insights-cta p {
    margin-bottom: 20px;
}







/* 화면 너비가 768px 이하(태블릿/모바일)일 때 적용 */
@media (max-width: 900px) {
    .nav-links {
        display: none;
        /* 메뉴를 화면에서 완전히 제거 */
    }

    /* 메뉴가 사라진 자리에 로고만 중앙에 오게 하고 싶다면 추가 */
    nav {
        justify-content: center;
    }
}



/* --- 메뉴 토글용 체크박스는 숨김 --- */
#menu-toggle {
    display: none;
}

/* --- PC용 햄버거 아이콘 숨김 --- */
.menu-icon {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.menu-icon span {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    /* 주황색 배경 위면 흰색 */
    transition: 0.3s;
}

/* --- 모바일 반응형 (1024px 이하) --- */
@media (max-width: 1024px) {
    .menu-icon {
        display: flex;
        /* 햄버거 아이콘 등장 */
        z-index: 1001;
    }

    .nav-links {
        display: none;
        /* 기본 메뉴 숨김 */
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background: var(--primary-color);
        /* 전체 화면 배경 */
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        z-index: 1000;
    }

    /* 체크박스가 체크되면 메뉴 등장 */
    #menu-toggle:checked~.nav-links {
        display: flex;
    }

    /* 메뉴가 열렸을 때 햄버거 아이콘 X자로 변형 (선택사항) */
    #menu-toggle:checked+.menu-icon span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }

    #menu-toggle:checked+.menu-icon span:nth-child(2) {
        opacity: 0;
    }

    #menu-toggle:checked+.menu-icon span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -7px);
    }

    .nav-links li {
        margin-left: 0;
        /* PC용 여백 제거 */
    }

    .nav-links li a {
        font-size: 24px;
        /* 모바일에서 크게 보이게 */
        color: var(--white) !important;
    }
}



/* --- 드롭다운 부모 설정 ---------------------------------------------------------------------- */
.dropdown {
    position: relative;
    /* 하부 메뉴의 기준점 */
    display: inline-block;
}

/* --- 하부 메뉴 박스 (기본 숨김) --- */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--accent-color);
    /* 깔끔한 화이트 배경 */
    min-width: 160px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
    /* 부드러운 그림자 */
    border-radius: 0px;
    top: 100%;
    /* ABOUT 메뉴 바로 아래 */
    left: 0;
    padding: 10px 0;
    list-style: none;
    z-index: 1000;
}

/* --- 하부 메뉴 내 링크 스타일 --- */
.dropdown-content li {
    margin-left: 0 !important;
    /* PC용 왼쪽 여백 제거 */
    width: 100%;
}

.dropdown-content li a {
    color: #333333 !important;
    /* 네이비 배경이어도 여기선 블랙/그레이 */
    padding: 12px 20px;
    font-size: 13px;
    font-weight: 400;
    display: block;
    white-space: nowrap;
    /* 글자 쪼개짐 방지 */
    transition: background 0.2s;
}

/* --- 하부 메뉴 호버 효과 --- */
.dropdown-content li a:hover {
    background-color: none;
    color: var(--accent-color) !important;
    /* 호버 시 주황색 포인트 */
}

/* --- [핵심] 마우스 올리면 나타나게 함 --- */
.dropdown:hover .dropdown-content {
    display: block;
}

/* --- 화살표 스타일 --- */
.dropbtn {
    cursor: pointer;
}

/* 모든 헤딩 및 강조 태그의 기본 볼드 처리 해제 */
h1,
h2,
h3,
h4,
h5,
h6,
strong,
b {
    font-weight: 400 !important;
}


/* =========================================================================
   BJ Fogg Behavior Model Additions (Social Proof, Pulse CTA, Modal)
   ========================================================================= */

/* 1. Trigger: Pulse Animation CTA Button */
.btn-trigger-pulse {
    background-color: #FF5722 !important;
    /* 강렬한 오렌지색 대비 */
    color: #ffffff !important;
    border: none !important;
    font-size: 18px !important;
    padding: 15px 40px !important;
    border-radius: 50px !important;
    cursor: pointer;
    box-shadow: 0 0 0 0 rgba(255, 87, 34, 0.7);
    animation: pulse 2s infinite;
    transition: all 0.3s ease;
    font-weight: 700 !important;
}

.btn-trigger-pulse:hover {
    background-color: #E64A19 !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 87, 34, 0.3);
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 87, 34, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 15px rgba(255, 87, 34, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 87, 34, 0);
    }
}

/* 2. Social Proof Section */
.social-proof-section {
    background-color: #f4f7f9;
    padding: 40px 0;
    text-align: center;
    border-bottom: 1px solid #e1e8ed;
}

.proof-title {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
    font-weight: 400;
}

.proof-title span {
    color: var(--accent-color);
    font-weight: 700 !important;
    font-size: 18px;
}

.logo-band {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    opacity: 0.6;
}

.proof-logo {
    background-color: #ddd;
    color: #fff;
    padding: 10px 25px;
    border-radius: 8px;
    font-weight: 700 !important;
    font-size: 14px;
    letter-spacing: 1px;
}

/* 3. Quick Start Modal (Ability) */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(11, 37, 69, 0.8);
    backdrop-filter: blur(5px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-container {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    width: 90%;
    max-width: 450px;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.modal-overlay.active .modal-container {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    line-height: 1;
}

.modal-header {
    text-align: center;
    margin-bottom: 30px;
}

.modal-header h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.modal-header p {
    color: #666;
    font-size: 14px;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 13px;
    color: #555;
    margin-bottom: 8px;
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent-color);
}

.btn-submit {
    width: 100%;
    background: var(--accent-color);
    color: #fff;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 10px;
}

.btn-submit:hover {
    background: #0b4a9e;
    /* Darker blue */
}

.why-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border-color: var(--accent-color);
}

/* B=MAP Custom Structure Styles */

.nav-cta-btn {
    background: #FF5722 !important;
    color: #fff !important;
    padding: 8px 20px !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    border: none;
    transition: all 0.3s;
}

.nav-cta-btn:hover {
    background: #E64A19 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 87, 34, 0.3);
}

.bmap-hero {
    padding: 180px 0 100px;
}

.hero-headline {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--white);
}

.hero-subheadline {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    line-height: 1.6;
}

.statbar-section {
    background: var(--dark-navy);
    padding-bottom: 60px;
}

.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 100px 0;
    align-items: center;
}

.expert-list {
    list-style: none;
    margin-top: 30px;
}

.expert-list li {
    font-size: 16px;
    color: #444;
    margin-bottom: 15px;
    font-weight: 500;
}

.cta-form-section {
    background: var(--dark-navy);
    padding: 100px 0;
    text-align: center;
}

.cta-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.cta-form-wrapper p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.inline-cta-form {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: stretch;
}

.inline-cta-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
}

.btn-submit-large {
    background: #FF5722;
    color: #fff;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
    white-space: nowrap;
}

.btn-submit-large:hover {
    background: #E64A19;
}

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

    .inline-cta-form {
        flex-direction: column;
    }

    .hero-headline {
        font-size: 32px;
    }
}

/* =========================================================================
   Unified Card & Item Styles (Cross-Page Consistency)
   ========================================================================= */
.core-card,
.detail-item,
.exp-item,
.infra-card,
.infra-item,
.insight-card,
.stat-item,
.tech-card,
.tech-item {
    background: var(--white) !important;
    border-radius: 16px !important;
    transition: all 0.4s ease !important;
    border: 1px solid rgba(0, 0, 0, 0.03) !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04) !important;
}

.core-card:hover,
.detail-item:hover,
.exp-item:hover,
.infra-card:hover,
.infra-item:hover,
.insight-card:hover,
.stat-item:hover,
.tech-card:hover,
.tech-item:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08) !important;
    border-color: var(--accent-color) !important;
}
/* =========================================================================
   Admin Panel Styles
   ========================================================================= */

.admin-login-body {
    background-color: var(--light-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.admin-login-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: center;
    width: 100%;
    max-width: 400px;
}

.admin-login-card h2 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.admin-login-card p {
    color: var(--text-color);
    margin-bottom: 30px;
    font-size: 14px;
}

.admin-login-card input {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    box-sizing: border-box;
}

.admin-login-card button {
    width: 100%;
    padding: 15px;
    background-color: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.admin-login-card button:hover {
    background-color: #0b4a9e;
}

/* Admin Dashboard */
.admin-dashboard-body {
    background-color: var(--light-bg);
}

.admin-header {
    position: static !important;
    height: auto !important;
    background-color: var(--dark-navy) !important;
    padding: 20px 40px !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--white);
    opacity: 1 !important;
}

.admin-header:hover {
    background-color: var(--dark-navy) !important;
    box-shadow: none !important;
}

.admin-header .logo-main {
    font-size: 24px;
}

.admin-header button {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.5);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.3s;
}

.admin-header button:hover {
    background: var(--white);
    color: var(--dark-navy);
}

.admin-container {
    padding: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.dashboard-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.dashboard-controls h2 {
    color: var(--primary-color);
}

.btn-download {
    background-color: #28a745;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    transition: 0.3s;
}

.btn-download:hover {
    background-color: #218838;
}

.table-container {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    overflow: hidden;
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.admin-table th, .admin-table td {
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
}

.admin-table th {
    background-color: #f8f9fb;
    color: var(--primary-color);
    font-weight: 700;
}

.admin-table tr:hover {
    background-color: #fcfcfc;
}

.empty-state {
    text-align: center;
    padding: 50px;
    color: #888;
}

/* =========================================================================
   Admin Reply Modal & Badges
   ========================================================================= */

.status-badge {
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
}

.status-badge.pending {
    background-color: #ffeeba;
    color: #856404;
}

.status-badge.replied {
    background-color: #d4edda;
    color: #155724;
}

.btn-reply {
    background-color: var(--accent-color);
    color: white;
    padding: 6px 12px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    transition: 0.3s;
}

.btn-reply:hover {
    background-color: #0b4a9e;
}

.btn-reply:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

/* Reply Modal */
.reply-modal-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.reply-modal-overlay.active {
    display: flex;
}

.reply-modal-container {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.reply-modal-container h3 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.reply-form-group {
    margin-bottom: 15px;
}

.reply-form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 700;
    font-size: 14px;
    color: var(--text-color);
}

.reply-form-group input, 
.reply-form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-sizing: border-box;
    font-family: inherit;
}

.reply-form-group textarea {
    height: 150px;
    resize: vertical;
}

.reply-modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 20px;
}

.btn-cancel {
    background-color: #f8f9fb;
    border: 1px solid #ddd;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
}

.btn-cancel:hover {
    background-color: #eee;
}

.btn-send {
    background-color: var(--accent-color);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
}

.btn-send:hover {
    background-color: #0b4a9e;
}

/* =========================================================================
   About Us - Core Value Cards
   ========================================================================= */
.core-value-card {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    transition: all 0.4s ease;
    cursor: default;
}

.core-value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}
