﻿:root {
    /* 색상 팔레트 */
    --primary-color: #015152;
    --primary-dark: #013b3d;
    --sub-color: #EBE6DE;
    --accent-color: #AC8D7A;

    --primary-light: #4ba39e;

    --text-primary: #333;
    --text-secondary: #666;
    --text-light: #999;
    --text-lighter: #ccc;
    --text-lightest: #e5e5e5;

    --text-white: #fff;
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-dark: #222;
    
    /* 폰트 */
    --font-family: 'Noto Sans KR', 'Malgun Gothic', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', sans-serif;
    --font-size-xs: 12px;
    --font-size-sm: 14px;
    --font-size-base: 16px;
    --font-size-lg: 18px;
    --font-size-xl: 24px;
    --font-size-2xl: 1.8rem;
    --font-size-3xl: 2rem;
    --font-size-4xl: 3rem;
    --font-size-5xl: 4rem;
    --font-size-6xl: 5rem;
    --font-size-7xl: 6rem;
    --font-size-8xl: 8rem;
    
    /* 간격 */
    --spacing-xs: 5px;
    --spacing-sm: 10px;
    --spacing-md: 15px;
    --spacing-lg: 20px;
    --spacing-xl: 30px;
    --spacing-2xl: 40px;
    --spacing-3xl: 60px;
    --spacing-4xl: 80px;
    --spacing-5xl: 100px;
    --spacing-6xl: 120px;
    --spacing-7xl: 140px;
    --spacing-8xl: 160px;
    
    /* 그림자 */
    --shadow-sm: 0 5px 15px rgba(0,0,0,0.08);
    --shadow-md: 0 10px 30px rgba(0,0,0,0.1);
    
    /* 전환 효과 */
    --transition-fast: 0.3s;
    
    /* 컨테이너 */
    --container-max-width: 1200px;
    
    /* 테두리 반지름 */
    --border-radius: 8px;
    --border-radius-lg: 25px;
}

@font-face {
    font-family: 'GmarketSansMedium',"GmarketSansBold";
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansMedium.woff') format('woff');
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansBold.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

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

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-primary);
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

/* 헤더 & 메가메뉴 */
.header {
    background: transparent;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all var(--transition-fast);
    height: 90px;
    overflow: hidden;
    border-bottom: 0px solid transparent;
}

/* 데스크톱에서 모바일 메뉴 숨김 */
.mobile-menu-btn,
.mobile-menu,
.mobile-menu-overlay {
    display: none;
}

@media screen and (max-width: 768px) {
    /* 모바일에서 메가메뉴 숨기고 모바일 메뉴 표시 */
    .mega-menu-content {
        display: none;
    }
    
    .mobile-menu-btn,
    .mobile-menu,
    .mobile-menu-overlay {
        display: block;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
}


.header:hover {
    height: 270px;
}
.header.scrolled {
    background: #0000003c;
    backdrop-filter: blur(5px);

    border-bottom: 1px solid #ddd;
   
}


.header:hover {
    background:  var(--bg-white);
    border-bottom: 1px solid var(--bg-white);
}

.header .container {
    display: flex;
    justify-content: space-between;
   
    padding: var(--spacing-md) var(--spacing-lg);
    gap: var(--spacing-3xl);
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    height:  45px; /* 헤더 기본 높이와 동일 */
    margin-top: 10px;
}

.logo-image {
    height: 100%; /* 헤더 높이에서 패딩 제외 */
    width: auto;
    transition: all var(--transition-fast);
    filter: brightness(0) invert(1); /* 기본: 화이트 */
}

/* 투명 배경일 때 로고 스타일 (화이트 유지) */
.header:not(.scrolled):not(:hover) .logo-image {
    filter: brightness(0) invert(1); /* 화이트 */
}


.header:hover .logo-image {
    filter: none; /* 원래 색상 */
}

/* 기존 텍스트 로고 스타일 제거 */
.logo {
    font-size: var(--font-size-xl);
    font-weight: bold;
    color: var(--text-primary);
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.8);
    transition: all var(--transition-fast);
}

/* 투명 배경일 때 로고 스타일 */
.header:not(.scrolled):not(:hover) .logo {
    color: var(--text-white);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.phone-number {
    color: var(--text-primary);
    font-weight: 600;
    font-size: var(--font-size-xl);
    font-family:  serif;
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.8);
    transition: all var(--transition-fast);
    margin-top: 10px;
  


}

/* 투명 배경일 때 전화번호 스타일 */
.header:not(:hover) .phone-number {
    color: var(--text-white);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* 통합 메가메뉴 컨텐츠 (상시 표시) */
.mega-menu-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    flex: 1;
    margin: 0 var(--spacing-2xl);
    
}

.menu-column {
    text-align: center;
}

.menu-column:hover .menu-title::after {
    width: 10px;
    height: 10px;

}
.menu-title::after {
   
    content: '';
    position: relative;
    display: flex;
    width: 0%;
    height: 0px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    margin-top: var(--spacing-md);
    transition: all var(--transition-fast);
    border-radius: 50%;
}


.menu-title {
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-top: 20px;
    
}

.menu-title .nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 600;
    font-size: var(--font-size-base);
    transition: all var(--transition-fast);
    display: block;
}

/* 투명 배경일 때 메인 네비게이션 링크 스타일 */
.header:not(:hover) .menu-title .nav-link {
    color: var(--text-white);
}

.menu-title .nav-link:hover {
    color: var(--primary-color);
}

.mega-menu-content ul {
    list-style: none;
    margin-top: var(--spacing-sm);
}

.mega-menu-content li {
    padding: 4px 0;
}

.mega-menu-content ul a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
    transition: all var(--transition-fast);
    display: block;
    padding: var(--spacing-xs) 0;
    font-weight: 500;
}

/* 투명 배경일 때 서브메뉴 링크 스타일 */
.header:not(.scrolled):not(:hover) .mega-menu-content ul a {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.mega-menu-content ul a:hover {
    color: var(--primary-color);
    
}


/* 탭 섹션 */
.tab-section {
    background: var(--bg-light);
    padding: 0;
}

.tab-nav {
    display: flex;
    justify-content: center;
    background: var(--primary-color);
  
    width: 100%;
    margin: -50px auto 0 auto;
    z-index: 10;
    position: relative;

}

.tab-btn {
    background: var(--primary-color);
    border: none;
    padding: var(--spacing-md) var(--spacing-4xl);
    font-size: var(--font-size-base);
    cursor: pointer;
    transition: all var(--transition-fast);
    text-decoration: none;
    color: var(--text-lightest);
}

.tab-btn.active {
    color: var(--text-white);
    background: var(--accent-color);
    font-weight: 600;
}

/* ABOUT US 섹션 */
.about-section {
    padding: var(--spacing-4xl) 0;
    background: var(--bg-white);
}

.about-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
}

.section-title {
    color: var(--primary-color);
    font-size: var(--font-size-sm);
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: var(--spacing-lg);
}

.about-title {
    font-size: var(--font-size-3xl);
    font-weight: 500;
    margin-bottom: var(--spacing-xl);
    line-height: 1.4;
}

.about-text {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xl);
}

.about-text p {
    margin-bottom: var(--spacing-sm);
}

.about-highlight {
    color: var(--text-primary);
}

.about-highlight strong {
    color: var(--primary-color);
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
}

/* INVESTMENT 섹션 */
.investment-section {
    padding: var(--spacing-4xl) 0;
    background: var(--bg-light);
    text-align: center;
}

.investment-title {
    font-size: var(--font-size-2xl);
    font-weight: 400;
    margin-bottom: var(--spacing-3xl);
    line-height: 1.4;
}

.investment-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-2xl);
    margin-top: var(--spacing-3xl);
}

.card {
    background: var(--bg-white);
    padding: var(--spacing-2xl) var(--spacing-lg);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-fast);
}

.card:hover {
    transform: translateY(-var(--spacing-sm));
}

.card-icon {
    margin-bottom: var(--spacing-lg);
}

.card-icon img {
    width: var(--spacing-3xl);
    height: var(--spacing-3xl);
}

.card h5 {
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-md);
    line-height: 1.4;
}

.card-number {
    color: var(--primary-color);
    font-weight: 500;
    font-size: var(--font-size-sm);
}

/* 푸터 */
.footer {
    background: var(--bg-dark);
    color: var(--bg-white);
    padding: var(--spacing-2xl) 0;
}

.footer .container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.footer-nav {
    display: flex;
    gap: var(--spacing-xl);
    white-space: nowrap;
}

.footer-nav a {
    color: var(--text-lighter);
    text-decoration: none;
    font-size: var(--font-size-sm);
    transition: color var(--transition-fast);
}

.footer-nav a:hover {
    color: var(--bg-white);
}

.footer-info {
    margin-top: var(--spacing-lg);
    white-space: nowrap;
}

.footer-info p {
    font-size: var(--font-size-xs);
    color: var(--text-light);
    margin-bottom: var(--spacing-xs);
}

.copyright::before {
    content: '';
    width: 90%;
    height: 1px;
    background: var(--text-light);
    margin:  auto var(--spacing-sm) 10px;
    opacity: 0.5;
    transition: width var(--transition-fast);
    top: 0;
}

.copyright {
    font-size: var(--font-size-base);
    color: var(--text-light);
    justify-content: center;
    flex-direction: column;
    align-items: center;
    display: flex;
    margin-top: var(--spacing-lg);
    width: 100%;
    padding: var(--spacing-sm) 0;

}

/* 검색엔진 제외 요소 */
.footer[data-nosnippet] {
    /* 추가적인 검색엔진 제외 처리 */
}
.footer-privacy {
    font-size: var(--font-size-sm);
    color: var(--text-lightest);
}
.footer-privacy p {
    margin-bottom: var(--spacing-xs);
    font-size: var(--font-size-xs);
}

.footer-logo img {
    width: 100%; /* 로고 크기 조정 */
    height: auto;
    margin-top: var(--spacing-md);
}

/* 네이버, 다음 검색엔진 제외 처리 */
.footer[data-naver-noindex],
.footer[data-daum-noindex] {
    visibility: visible !important;
    display: block !important;
}

/* 검색엔진 크롤러를 위한 숨김 처리 */
.footer::before {
    content: "<!--NAVER_EXCLUDE_START--><!--DAUM_EXCLUDE_START-->";
    display: none;
    visibility: hidden;
    position: absolute;
    left: -9999px;
    font-size: 0;
    line-height: 0;
}

.footer::after {
    content: "<!--NAVER_EXCLUDE_END--><!--DAUM_EXCLUDE_END-->";
    display: none;
    visibility: hidden;
    position: absolute;
    left: -9999px;
    font-size: 0;
    line-height: 0;
}

/* SEO 최적화를 위한 푸터 스타일 */
.footer[role="contentinfo"] {
    /* 푸터가 보조 정보임을 명시 */
}

/* 서브페이지 레이아웃 */
.sub-header {
    padding: 150px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    position: relative;
    overflow: hidden;
}


.sub-header::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background-image: url('../images/top_visual.jpg');
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    animation: zoomInOut 20s ease-in-out infinite;
    z-index: -1;
}

@keyframes zoomInOut {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* 페이지 진입 애니메이션 */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}




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

.sub-header .container {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

/* 브래드크럼 네비게이션 */
.breadcrumb {
    color: rgba(255, 255, 255, 0.8);
    font-size: var(--font-size-sm);
    margin-bottom: var(--spacing-md);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.2s;
}

.breadcrumb .arr {
    margin: 0 var(--spacing-xs);
    opacity: 0.6;
}

.sub-header .tab-nav {
    margin-top: var(--spacing-lg);
}

.sub-header{
    color: rgba(255, 255, 255, 0.8);
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

.sub-header .tab-btn:hover {
    color: var(--text-white);
}

.sub-header .tab-btn.active {
    color: var(--text-white);
}

.info-subtitle {
    color: var(--text-light);
    font-size: var(--font-size-lg);
    font-weight: 300;
    text-align: center;
    letter-spacing: 1px;
    margin: 20px 0 20px 0;
}
.info-maintitle {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    letter-spacing: -1px;
    line-height: 1.2; /* 행간 조절 */
    margin: 20px 0 20px 0;
}

.sub-header p {
    color: var(--text-white);
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-lg);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.6s;
}
.sub-title {
    font-size: var(--font-size-5xl);
    margin-bottom: var(--spacing-lg);
    color: var(--text-white);
    font-family: "Cormorant Garamond", serif;

    text-align: center;
    opacity: 0;
    transform-origin: center;
    animation: titleRevealCenter 2s ease-in-out forwards;
    animation-delay: 0.6s;
    will-change: opacity, transform, letter-spacing, clip-path;

    display: inline-block;
}

@keyframes titleRevealCenter {
    0% {
        opacity: 0;
        transform: translateY(30px) scaleX(1);
        letter-spacing: 0.02em;
    }
    100% {
        opacity: 1;
        transform: translateY(0) scaleX(1);
        letter-spacing: 0.3em; /* 자간 증가 */
 
    }
}

.sub-content {
    padding: var(--spacing-2xl) 0;
    background-color: var(--bg-white);
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-3xl);
}

.content-item {
    background: var(--bg-white);
    padding: var(--spacing-2xl);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

/* =================================================================
   사업개요 및 정보 섹션 스타일 (재사용 가능)
   ================================================================= */

/* 조감도 비주얼 섹션 */
.overview-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-4xl);
    align-items: center;
    margin-bottom: var(--spacing-4xl);
    padding: var(--spacing-4xl) 0;
    border-bottom: 1px solid #eee;
}

.overview-image {
    position: relative;
    overflow: hidden;
}

.overview-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform var(--transition-fast) ease;
}


.overview-info h3 {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: var(--spacing-lg);
}

.overview-info p {
    font-size: var(--font-size-lg);
    line-height: 1.6;
    color: var(--text-secondary);
}

/* 정보 그리드 섹션 */
.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-3xl);
}

.info-section {
    background: var(--bg-white);
    padding: var(--spacing-xl);
    transition: transform var(--transition-fast) ease, box-shadow var(--transition-fast) ease;
}


.info-title {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
    padding-bottom: var(--spacing-md);
    border-bottom: 2px solid var(--primary-color);
}

.info-title-sub {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    opacity: 0.6;
    margin-left: var(--spacing-xs);
    font-weight: 500;
}

.info-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md) 0;
    border-bottom: 1px solid #f5f5f5;
}

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

.info-label {
    font-size: var(--font-size-base);
    font-weight: 300;
    color: var(--text-primary);
    min-width: 120px;
}

.info-value {
    font-size: var(--font-size-base);
    color: var(--text-secondary);
    text-align: right;
    font-weight: 500;
}
.info-value img {
    max-height: 30px;
    margin-left: var(--spacing-xs);
    vertical-align: middle;
}



/* =================================================================
   추가 정보 컴포넌트 (다른 페이지에서도 사용 가능)
   ================================================================= */

/* 정보 카드 스타일 */
.info-card {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-fast) ease;
}

.info-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.info-card h4 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.info-card p {
    color: var(--text-secondary);
    line-height: 1.5;
}

/* 통계 숫자 강조 스타일 */
.stat-highlight {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--primary-color);
}

/* 배지 스타일 */
.info-badge {
    display: inline-block;
    background: var(--primary-color);
    color: var(--text-white);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--border-radius);
    font-size: var(--font-size-sm);
    font-weight: 600;
    margin-left: var(--spacing-sm);
}

/* =================================================================
   입지환경 돋보기 이미지 뷰어 스타일
   ================================================================= */

.environment-viewer {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-4xl);
    align-items: flex-start;
    padding: var(--spacing-xl) 0;
}

.environment-container {
    position: relative;
    background: var(--bg-white);
    padding: var(--spacing-lg);
 
}

.environment-container img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.magnifier {
    position: absolute;
    display: none;
    width: 200px;
    height: 200px;
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    background-repeat: no-repeat;
    box-shadow: 0 0 20px rgba(0,73,55,0.4), inset 0 0 20px rgba(255,255,255,0.3);
    pointer-events: none;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.environment-info {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-3xl);
    box-shadow: var(--shadow-sm);
    height: fit-content;
    position: sticky;
    top: var(--spacing-xl);
}

.environment-info h3 {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: var(--spacing-lg);
}

.environment-info p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xl);
    line-height: 1.6;
}

.zoom-controls {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.zoom-btn {
    background: var(--primary-color);
    color: var(--text-white);
    border: none;
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: var(--border-radius);
    font-size: var(--font-size-sm);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast) ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
}

.zoom-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.zoom-btn:active {
    transform: translateY(0);
}

.zoom-btn i {
    font-size: var(--font-size-sm);
}

/* 정보 그리드 수정 */
.environment-info-grid {
    margin-top: var(--spacing-4xl);
}



/* 돋보기 표시등 */
.magnifier-indicator {
    position: absolute;
    top: var(--spacing-lg);
    right: var(--spacing-lg);
    background: rgba(0,73,55,0.9);
    color: var(--text-white);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--border-radius);
    font-size: var(--font-size-xs);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    opacity: 0.8;
}

.magnifier-indicator i {
    font-size: var(--font-size-xs);
}


/* === 오시는길 페이지 스타일 === */
.location-maps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

.map-container {
    background: #fff;

    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.map-image {
    width: 100%;
    margin-bottom: 1.5rem;
    overflow: hidden;
    background: #f8f9fa;
}

.map-image img {
    width: 100%;
    height: auto;
    display: block;
    border: 2px solid #ddd;
}

.map-info h3 {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: #2c3e50;
    text-align: right;
    padding-right: 10px;

    border-right: 2px solid var(--primary-color);
}

.map-info .address {
    font-size: var(--font-size-md);
    color: #34495e;
    text-align: left;
    font-weight: 500;
}


.map-info-details {
    display: grid;
    grid-template-columns:  1fr 2fr;
    gap: 1rem;
}
.map-info span {
    color: var(--text-white);
    font-weight: 600;
    background: var(--primary-color);
    font-size: var(--font-size-sm);
    padding: 0.5rem;
    border-radius: 50px;
}


.map-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

.map-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.basic-btn {
    background: var(--primary-color);
    color: var(--text-white);
}

.basic-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.basic-white-btn {
    background: var(--bg-white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}
.basic-white-btn:hover {
    background: var(--primary-color);
    color: var(--text-white);
    transform: translateY(-2px);
}



.location-info-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

/* === 프리미엄 페이지 스타일 === */
.premium-header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 2rem 0;
}

.premium-main-title {
    font-size: var(--font-size-2xl);
    font-weight: 300;
    color: var(--text-secondary);
    font-family: 'GmarketSansBold';
    line-height: 1;
}

.premium-sub-title {
    font-size: var(--font-size-5xl);
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: -2px;
    font-family: 'GmarketSansBold';
    line-height: 1;
}

.premium-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.premium-item {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);

    transform: translateY(60px);
    position: relative;
    
}



.premium-item .item-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.premium-item .item-image::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    backdrop-filter: blur(10px);
}

.premium-item .item-image .icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.5rem;
    color: white;
    z-index: 2;
}

.premium-item .item-content {
    padding: 2rem;
}

.premium-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    text-align: center;
}

.premium-item p {
    color: #7f8c8d;
    line-height: 1.6;
    text-align: center;
    font-size: 0.95rem;
}

/* 각 아이템별 고유 그라디언트 */
.premium-item:nth-child(1) .item-image {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.premium-item:nth-child(2) .item-image {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.premium-item:nth-child(3) .item-image {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.premium-item:nth-child(4) .item-image {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.premium-item:nth-child(5) .item-image {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.premium-item:nth-child(6) .item-image {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

/* 애니메이션 지연 효과 */
.premium-item:nth-child(1) { animation-delay: 0.1s; }
.premium-item:nth-child(2) { animation-delay: 0.2s; }
.premium-item:nth-child(3) { animation-delay: 0.3s; }
.premium-item:nth-child(4) { animation-delay: 0.4s; }
.premium-item:nth-child(5) { animation-delay: 0.5s; }
.premium-item:nth-child(6) { animation-delay: 0.6s; }


/* =================================================================
   부드럽게 떠오르는 이미지 섹션 (재사용 가능한 컴포넌트)
   ================================================================= */

.floating-image-section {
    padding: var(--spacing-4xl) 0;
    background: var(--bg-white);
    overflow: hidden;
}

.floating-image-section .container {
    padding: 0;
}

.floating-image-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    position: relative;
}

.floating-image {
    max-width: 100%;
    height: auto;
    opacity: 0;
    transform: translateY(100px) scale(1);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.floating-image.animate {
    opacity: 1;
    transform: translateY(0) scale(1);
}



/* 배경 장식 요소 */
.floating-image-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(1, 81, 82, 0.03) 0%, transparent 70%);
    z-index: -1;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 1s ease;
}

.floating-image-section.animate .floating-image-container::before {
    opacity: 1;
}

/* =================================================================
   안내문구 섹션 (재사용 가능한 컴포넌트)
   ================================================================= */

.notice-section {
    background: var(--bg-white);
    padding: var(--spacing-3xl) 0;
    position: relative;
    overflow: hidden;
}

.notice-container {
    display: flex;
    max-width: var(--container-max-width);
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.notice-content {
    background: var(--bg-light);
    padding: var(--spacing-lg) var(--spacing-2xl);
    border: 1px solid rgba(1, 81, 82, 0.1);
    position: relative;
    opacity: 1;
    width: 100%;

}





.notice-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
    width: 100%;
}


.notice-title {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
    font-family: 'GmarketSansBold';
}

.notice-list {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 95%;
}

.notice-item {
    display: flex;
    align-items: flex-start;
    transition: all 0.3s ease;
    position: relative;
    margin-bottom: var(--spacing-xs);
}



.notice-item::before {
    content: '※';
    color: var(--text-light);
    font-weight: 700;
    font-size: var(--font-size-xs);
    min-width: 20px;
}

.notice-text {
    flex: 1;
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: var(--font-size-xs);
}

.notice-highlight {
    color: var(--primary-color);
    font-weight: 600;
}

.notice-footer {
    margin-top: var(--spacing-xl);
    padding-top: var(--spacing-lg);
    border-top: 1px solid #f0f0f0;
    text-align: center;
}

.notice-footer-text {
    color: var(--text-light);
    font-size: var(--font-size-xs);
    font-style: italic;
}

.notice-icon {
    width: 80px;
    height: 80px;
    background: var(--text-lightest);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: var(--font-size-4xl);
}

/* =================================================================
   재사용 가능한 탭 컴포넌트 스타일
   ================================================================= */
.form-section {
    padding: 80px 0;
    background: var(--bg-white);
}
.thank-you-section {
    padding: 120px 0;
    background: var(--bg-white);
    text-align: center;
}

.content-tab-section {
    background: var(--bg-white);
    padding: var(--spacing-4xl) 0;
}

.content-tab-nav {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: var(--spacing-4xl);
    background: #F3F2F1;
    overflow: hidden;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.content-tab-btn {
    background: transparent;
    border: none;
    padding: var(--spacing-lg) 0;
    font-size: var(--font-size-base);
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all var(--transition-fast) cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    border-right: 1px solid #e0e0e0;
}
.content-tab-btn:first-child {
    border-left: 1px solid #e0e0e0;
}

.content-tab-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s ease;
}



.content-tab-btn.active {
    background: var(--primary-color);
    color: var(--text-white);
}



.content-tab-content {
    position: relative;
    min-height: 600px;
}

.content-tab-pane {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.content-tab-pane.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUp 0.6s ease-out forwards;
}

/* 탭 컨텐츠 내부의 floating-image-section 스타일 조정 */
.content-tab-pane .floating-image-section {
    padding: 0;
    margin-bottom: 0;
}

.content-tab-pane .floating-image-container {
    min-height: 400px;
}

/* 하위 탭 (기본형/확장형) 스타일 */
.sub-tab-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
    background: #f8f9fa;

    padding: 8px;
}

.sub-tab-btn {
    background: transparent;
    border: none;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;

    position: relative;
    overflow: hidden;
    flex: 1;
    text-align: center;
}

.sub-tab-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}



.sub-tab-btn.active {
    background: var(--primary-color);
    color: white;
}

.sub-tab-btn.active::before {
    opacity: 1;
}

.sub-tab-content {
    position: relative;
    min-height: 400px;
}

.sub-tab-pane {
    display: none;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.3s ease;
}

.sub-tab-pane.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUp 0.4s ease-out forwards;
}




/* 탭 인디케이터 (선택사항) */
.content-tab-nav::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    height: 3px;
    background: var(--primary-color);
    transition: all var(--transition-fast) cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 2px;

}



/* =================================================================
   폼 체크박스 그룹 스타일
   ================================================================= */

.checkbox-row {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    margin-top: var(--spacing-xs);
}

.checkbox-row .checkbox-group {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    margin-bottom: 0;
}

.checkbox-row .checkbox-group input[type="checkbox"] {
    width: 22px;
    height: 22px;
    margin: 0;
    accent-color: var(--primary-color);
    padding: 0;
}

.checkbox-row .checkbox-group label {
    margin: 0;
    font-weight: 400;
    cursor: pointer;
    user-select: none;
}

.checkbox-row .checkbox-group input[type="checkbox"]:checked + label {
    color: var(--primary-color);
    font-weight: 600;
}


.privacy-notice {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    font-size: 12px;
    color: #666;
    height: 100px;
    overflow-y: auto;
    border: 1px solid #ddd;
}

.privacy-notice::-webkit-scrollbar {
    width: 6px;
}

.privacy-notice::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.privacy-notice::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 3px;
}

.privacy-notice::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* =================================================================
   모바일 반응형 디자인 (360px 기준)
   ================================================================= */

/* 모바일 기본 레이아웃 */
@media screen and (max-width: 768px) {

    .info-maintitle {
        font-size: var(--font-size-xl);
    }
    .info-subtitle {
        margin-top: 30px;
        font-size: var(--font-size-md);
    }

    .thank-you-section {
    padding: 20px 0;

}

    .header.scrolled, 
    .header:hover {
        background-color: var(--bg-white); 
        
        border-bottom: none;
    }
    .sub-content {
        padding: var(--spacing-lg) 0;
    }
    
    .header:not(.scrolled):not(:hover) .logo-image {
        filter: none;
    }
    
    .header .phone-number {
        display: none;
    }

    /* 컨테이너 */
    .container {
        padding: 0 15px;
        max-width: 100%;
    }

    /* 헤더 */
    .header {
        height: 60px;
        overflow: visible;
        background: var(--bg-white);
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        transition: transform 0.3s ease;
    }

    .header:hover {
        height: 60px;
    }

    .header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 100%;
        padding: 0 20px;
    }

    .logo-image {
        height: 35px;
        width: auto;
        filter: none;
    }
    .logo-link {
        margin-top: 0;
    }

    .phone-number {
        font-size: 14px;
        color: var(--primary-color);
        font-weight: 600;
    }

    /* 메가메뉴 숨김 */
    .mega-menu-content {
        display: none;
    }

    /* 모바일 메뉴 요소들 표시 */
    .mobile-menu-btn,
    .mobile-menu,
    .mobile-menu-overlay {
        display: block;
    }

    .mobile-menu-btn {
        display: flex;
    }

    /* 모바일 햄버거 메뉴 버튼 */
    .mobile-menu-btn {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        width: 40px;
        height: 40px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 8px;
        margin: -8px;
        z-index: 2001;
        transition: all 0.3s ease;
        border-radius: 4px;
        position: relative;
    }

    .mobile-menu-btn:hover {
        background: rgba(255, 255, 255, 0.1);
    }

    .mobile-menu-btn:active {
        transform: scale(0.95);
    }

    .mobile-menu-btn span {
        width: 100%;
        height: 3px;
        margin: 2px 0;
        background: var(--primary-color);
        transition: all 0.3s ease;
        transform-origin: center;
        border-radius: 1px;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
        background: var(--accent-color);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
        background: var(--accent-color);
    }

    /* 모바일 메뉴 오버레이 */
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.6);
        z-index: 10001;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
        backdrop-filter: blur(2px);
    }

    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    /* 모바일 메뉴 */
    .mobile-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100%;
        background: var(--bg-white);
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.15);
        z-index: 10001;
        transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        overflow-y: auto;
        display: flex;
        flex-direction: column;
    }

    .mobile-menu.active {
        right: 0;
    }

    /* 모바일 메뉴 헤더 */
    .mobile-menu-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        border-bottom: 1px solid #eee;
        background: var(--primary-color);
    }

    .mobile-logo {
        height: 45px;
        filter: brightness(0) invert(1);
    }

    .mobile-menu-close {
        background: transparent;
        border: none;
        color: white;
        font-size: 20px;
        cursor: pointer;
        padding: 5px;
    }

    /* 모바일 메뉴 컨텐츠 */
    .mobile-menu-content {
        flex: 1;
        padding: 20px 0;
    }

    .mobile-menu-item {
        border-bottom: 1px solid #f0f0f0;
    }

    .mobile-main-link {
        display: block;
        padding: 15px 20px;
        font-size: 16px;
        font-weight: 600;
        color: var(--text-primary);
        text-decoration: none;
        transition: background 0.3s ease;
        position: relative;
    }

    .mobile-main-link:hover {
        background: var(--bg-light);
        color: var(--primary-color);
    }

    .mobile-main-link::after {
        content: '\f105';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        color: #ccc;
    }

    .mobile-sub-menu {
        background: #f8f9fa;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .mobile-menu-item.active .mobile-sub-menu {
        max-height: 300px;
    }

    .mobile-sub-menu li {
        list-style: none;
    }

    .mobile-sub-menu a {
        display: block;
        padding: 12px 20px 12px 40px;
        font-size: 14px;
        color: var(--text-secondary);
        text-decoration: none;
        transition: all 0.3s ease;
        position: relative;
    }

    .mobile-sub-menu a:hover {
        background: white;
        color: var(--primary-color);
        padding-left: 45px;
    }

    .mobile-sub-menu a::before {
        content: '•';
        position: absolute;
        left: 30px;
        color: var(--primary-color);
    }

    /* 모바일 메뉴 푸터 */
    .mobile-menu-footer {
        padding: 20px;
        border-top: 1px solid #eee;
        background: #f8f9fa;
    }

    .mobile-contact {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 16px;
        font-weight: 600;
        color: var(--primary-color);
    }

    .mobile-contact i {
        font-size: 18px;
    }

 

    /* 서브 헤더 */
    .sub-header {
        padding: 60px 0 40px;
        min-height: auto;
    }

    .sub-header .container {
        text-align: center;
        padding: 0 15px;
        margin: 30px auto;
    }

    .breadcrumb {
        font-size: 12px;
        margin-bottom: 15px;
    }

    .sub-title {
        font-size: 24px;
        margin: 8px 0;
    }

    .sub-header p {
        font-size: 14px;
        margin: 0;
    }

    /* 탭 네비게이션 */
    .tab-nav {
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: none;
        display: flex;
        flex-wrap: wrap;
        white-space: nowrap;
        gap: 0;
        margin : 0;
    }
    .tab-btn.active {
        margin-bottom: 0px;
    }

    .tab-nav::-webkit-scrollbar {
        display: none;
    }



    .tab-btn {
        flex: 0 0 auto;
        padding: 12px 16px;
        font-size: 13px;
        text-align: center;
    }

    .tab-btn:last-child {
        border-right: none;
    }

    /* 컨텐츠 탭 */
    .content-tab-nav {
        flex-direction: column;
        gap: 0;
        margin-bottom: 30px;
    }

    .content-tab-btn {
        padding: 15px 20px;
        font-size: 14px;
        border-bottom: 1px solid #ddd;
        text-align: left;
    }

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

    /* 하위 탭 모바일 스타일 */
    .sub-tab-nav {
        gap: 5px;
        padding: 6px;
        margin-bottom: 20px;
    }

    .sub-tab-btn {
        padding: 10px 16px;
        font-size: 13px;
        border-radius: 4px;
    }

    .sub-tab-content {
        min-height: 250px;
    }

    /* 플로팅 이미지 섹션 */
    .floating-image-section {
        padding: 10px 0;
    }

    .floating-image-container {
        min-height: 250px;
    }

    .floating-image {
        max-width: 100%;
        height: auto;
    }

    /* 안내문구 섹션 */
    .notice-header {
       
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-bottom: 20px;
    }

    .notice-section {
        padding: 30px 0;
    }

    .notice-container {
        padding: 20px 15px;
    }

    .notice-content {
        font-size: 13px;
        line-height: 1.6;
        padding: 15px;
    }
    .notice-icon {
        display: none;
    }

    .notice-list {
        padding-left: 0px;
    }

    .notice-item {
        margin-bottom: 8px;
        font-size: 12px;
    }

    /* 푸터 */
    .footer {
        padding: 30px 0 150px;
        text-align: center;
    }

    .footer .container {
        display: flex;
        flex-direction: column;
        gap: 20px;
        padding: 0 15px;
    }

    .footer-logo {
        order: 1;
    }

    .footer-logo img {
        width: 150px;
    }

    .footer-nav {
        order: 2;
        flex-wrap: wrap;
        gap: 0px;
        justify-content: center;
    }

    .footer-nav a {
        font-size: 13px;
        padding: 8px 12px;
    }

    .footer-info {
        order: 4;
        text-align: center;
    }

    .footer-info p {
        font-size: 11px;
        margin-bottom: 5px;
    }

    .footer-privacy {
        order: 3;
    }

    .footer-privacy p {
        font-size: 10px;
        margin-bottom: 5px;
    }

    .copyright {
        font-size: 10px;
        margin-top: 15px;
        padding-top: 15px;
    }

    /* 폼 스타일 */
    .form-section {
        padding: 30px 0;
    }

    .form-container {
        padding: 20px 15px;
    }

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

    .form-group label {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 14px;
        padding: 12px 15px;
    }

    .checkbox-row {
        gap: 10px;
    }

    .checkbox-row .checkbox-group {
        gap: 8px;
    }

    .checkbox-row .checkbox-group label {
        font-size: 13px;
    }

    /* 버튼 */
    .btn {
        font-size: 14px;
        padding: 12px 20px;
        min-width: auto;
    }

    .btn-primary {
        width: 100%;
        margin-top: 20px;
    }

    /* 정보 그리드 */
    .info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .info-section {
        padding: 20px 15px;
    }

    .info-section h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .info-section p,
    .info-section li {
        font-size: 13px;
    }

    /* 지도 섹션 */
    .location-maps {
        flex-direction: column;
        gap: 30px;
    }

    .map-container {
        flex-direction: column;
    }

    .map-image {
        margin-bottom: 15px;
    }

    .map-image img {
        width: 100%;
        height: auto;
    }

    .map-info {
        text-align: center;
    }

    .map-info h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .map-info p {
        font-size: 13px;
        margin-bottom: 5px;
    }

    .environment-container {

        padding: 0;
    }
    .sub-content .container {
        padding: 0px;
    }
    .magnifier-indicator {
        display: none;
    }
    .info-title {
        font-size: 18px;
        margin-bottom: 15px;
    }
    .info-content {
        font-size: 14px;
    }
    .info-label {
        font-size: 14px;
    }
    .info-value {
        font-size: 14px;
    }
}

/* 360px 기준 초소형 모바일 */
@media screen and (max-width: 390px) {
    .info-maintitle {
        font-size: var(--font-size-base);
    }
    .info-subtitle {
        font-size: var(--font-size-xs);
        
    }

    
    .sub-content {
        padding: 0 5px;
    }
    .container {
        padding: 0 10px;
    }

    .header .container {
        padding: 0 20px;
    }

    .sub-header .container {
        padding: 0 10px;
    }

    .sub-title {
        font-size: 30px;
        
    }

    .tab-btn {
        min-width: 80px;
        padding: 10px 12px;
        font-size: 12px;
    }

    .content-tab-btn {
        padding: 12px 15px;
        font-size: 13px;
    }

    .floating-image-container {
        min-height: 200px;
    }

    .notice-container {
        padding: 15px 10px;
    }

    .footer .container {
        padding: 0 10px;
    }

    .footer-nav a {
        font-size: 12px;
        padding: 6px 10px;
    }

    .form-container {
        padding: 15px 10px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 13px;
    }

    .btn {
        font-size: 13px;
        padding: 10px 15px;
    }

    .info-section {
        padding: 15px 10px;
    }

    .info-section h3 {
        font-size: 16px;
    }
        .info-title {
        font-size: 18px;
        margin-bottom: 15px;
    }
    .info-content {
        font-size: 13px;
    }
    .info-label {
        font-size: 13px;
    }
    .info-value {
        font-size: 13px;
    }
    
    /* 작은 화면에서 모바일 메뉴 너비 조정 */
    .mobile-menu {
        width: 85vw;
        max-width: 280px;
    }
}

