/* ============================================
   두산위브더제니스 센트럴 천안 - Main Stylesheet
   ============================================ */

/* ============================================
   1. CSS Variables & Custom Properties
   ============================================ */
:root {
    /* Colors */
    --color-primary: #06033C;
    --color-primary-dark: #03003C;
    --color-secondary: #CDAA7E;
    --color-accent: #0510A1;
    --color-white: #ffffff;
    --color-black: #000000;
    --color-gray-100: #F4F4F4;
    --color-gray-200: #E5E5E5;
    --color-gray-300: #AAAAAA;
    --color-gray-400: #7E7E7E;
    --color-gray-500: #535353;
    --color-gray-600: #3C3C3C;
    --color-gray-700: #272727;
    --color-gray-800: #191919;
    --color-gray-900: #151515;

    /* Typography */
    --font-primary: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-english: 'Futura PT', 'Arial', sans-serif;
    --font-serif: 'Nanum Myeongjo', serif;

    /* Spacing */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 40px;
    --spacing-xl: 60px;
    --spacing-xxl: 100px;

    /* Layout */
    --max-width: 1740px;
    --header-height: 134px;

    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-normal: 0.5s ease;
    --transition-slow: 1s ease;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 14px;
    --radius-full: 50%;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
    --shadow-circle: -30px 50px 50px rgba(0,0,0,0.06);
}

/* Custom property for conic gradient angle animation */
@property --angle {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
}

/* ============================================
   2. Reset & Base Styles
   ============================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-primary);
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-gray-700);
    background: var(--color-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow: hidden;
    height: 100%;
}

html.fp-enabled,
html.fp-enabled body {
    overflow: hidden;
    height: 100%;
}

body.sub-page {
    overflow: auto;
    overflow-x: hidden;
    height: auto;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

ul, ol {
    list-style: none;
}

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

address {
    font-style: normal;
}

/* Skip Navigation */
.skip-nav {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 12px 24px;
    z-index: 10000;
    transition: top var(--transition-fast);
}

.skip-nav:focus {
    top: 0;
}

/* ============================================
   3. Typography
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
}

.section-title {
    font-size: clamp(46px, 5vw, 71px);
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--color-secondary);
    text-align: center;
    margin-bottom: 10px;
    overflow: hidden;
}

.section-title .char {
    display: inline-block;
    transform: translateY(100%);
    transition: transform 1s ease;
}

.fp-active .section-title .char,
.active .section-title .char {
    transform: translateY(0);
}

/* ============================================
   4. Header
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.16);
    transition: background var(--transition-normal),
                border-color var(--transition-normal),
                opacity 1s ease;
}

.header.fill,
.header.on {
    background: var(--color-white);
    border-color: rgba(0,0,0,0.1);
}

.header.hide {
    opacity: 0 !important;
    pointer-events: none;
}

.header::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 0;
    left: 0;
    top: calc(100% + 1px);
    background: var(--color-white);
    transition: height var(--transition-normal), opacity var(--transition-normal);
    opacity: 0;
    z-index: -1;
}

.header.on::after {
    height: 270px;
    opacity: 1;
}

.header-top {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 84px;
    border-bottom: 1px solid rgba(0,0,0,0.16);
    transition: border-color var(--transition-normal);
}

.header.on .header-top {
    border-color: rgba(0,0,0,0.1);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    min-width: 1400px;
    max-width: 1600px;
    height: 100%;
    position: relative;
}

.header-open {
    font-size: 30px;
    letter-spacing: -0.06em;
    color: var(--color-primary);
    font-weight: 700;
    transition: color var(--transition-normal);
}

.header.white .header-open {
    color: var(--color-white);
}

.main-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.main-logo a {
    display: flex;
    align-items: center;
    height: 100%;
}

.main-logo .logo-text {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-primary);
    white-space: nowrap;
    letter-spacing: -0.02em;
    transition: color var(--transition-normal);
}

.header.white .main-logo .logo-text {
    color: var(--color-white);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 21px;
}

/* PC에서 모바일 요소 숨김 */
.hamburger {
    display: none;
}

.mobile-nav {
    display: none;
}

.mobile-nav-overlay {
    display: none;
}

.applyhome {
    display: flex;
    align-items: center;
    padding: 6px 14px;
    background: var(--color-secondary);
    border-radius: 20px;
    margin-right: 23px;
    position: relative;
    transition: background var(--transition-normal);
}

.applyhome span {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-white);
}

.applyhome::after {
    content: '';
    position: absolute;
    width: 1px;
    height: 16px;
    background: #969696;
    right: -22px;
    transition: background var(--transition-normal);
}

.header-customer {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-primary-dark);
    font-size: 15px;
    font-weight: 700;
    transition: color var(--transition-normal);
}

.header.white .header-customer {
    color: var(--color-white);
}

.customer-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.customer-icon::before {
    content: '\2605';
    font-size: 16px;
    color: var(--color-secondary);
    transition: color var(--transition-normal);
}

.header.white .customer-icon::before {
    color: var(--color-white);
}

.header-tel {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 21px;
    font-weight: 500;
    color: var(--color-gray-600);
    transition: color var(--transition-normal);
}

.header.white .header-tel {
    color: var(--color-white);
}

.tel-icon {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tel-icon::before {
    content: '\260E';
    font-size: 18px;
}

.header-tel small {
    font-size: 18px;
}

/* Navigation */
.header-nav {
    display: flex;
    justify-content: center;
    width: 100%;
    height: 50px;
    letter-spacing: -0.04em;
    position: relative;
}

.nav-list {
    display: flex;
    margin: 0 auto;
    height: 100%;
}

.nav-item {
    display: flex;
    justify-content: center;
    height: 100%;
    position: relative;
}

.nav-item > a {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 33px;
    font-size: 17px;
    font-weight: 500;
    color: var(--color-gray-600);
    position: relative;
    transition: color var(--transition-normal), font-weight var(--transition-fast);
}

.nav-item:hover > a {
    font-weight: 700;
    color: var(--color-primary-dark);
}

.nav-item > a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: var(--color-accent);
    transition: width var(--transition-normal), left var(--transition-normal);
}

.nav-item:hover > a::after {
    width: 100%;
    left: 0;
}

.header.white .nav-item > a {
    color: var(--color-white);
}

/* Sub Navigation */
.nav-sub {
    position: absolute;
    top: 100%;
    padding: 10px 0;
    transform: translateY(50px);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--transition-normal), opacity var(--transition-normal);
}

.header.on .nav-sub {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}

.nav-sub li a {
    display: block;
    padding: 5px 0;
    font-size: 16px;
    color: var(--color-gray-600);
    text-align: center;
    white-space: nowrap;
}

.nav-sub li a:hover {
    font-weight: 700;
}

/* Visit Counter */
.visit-counter {
    position: absolute;
    right: 0;
    width: 100%;
    max-width: 1600px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: flex-end;
    height: 100%;
    pointer-events: none;
}

.visit-inner {
    position: absolute;
    top: 0;
    padding: 12px 13px 11px;
    background: var(--color-white);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    font-size: 15px;
    font-weight: 700;
    color: var(--color-primary);
}

.visit-inner strong {
    margin: 0 5px;
}

/* ============================================
   5. Scroll Indicator
   ============================================ */
.scroll-indicator {
    position: fixed;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    z-index: 10;
    opacity: 1;
    transition: opacity var(--transition-normal);
}

.scroll-indicator.hide {
    opacity: 0 !important;
}

.scroll-progress {
    width: 1px;
    height: 100px;
    background: rgba(0,0,0,0.2);
    position: relative;
}

.scroll-progress::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 0;
    background: var(--color-white);
    animation: scrollAnim 2s infinite;
    transition: background var(--transition-normal);
}

.scroll-indicator.dark .scroll-progress {
    background: rgba(0,0,0,0.3);
}

.scroll-indicator.dark .scroll-progress::after {
    background: var(--color-gray-800);
}

@keyframes scrollAnim {
    0% { height: 0; }
    100% { height: 100%; }
}

.scroll-text {
    writing-mode: vertical-lr;
    font-size: 14px;
    font-weight: 700;
    color: var(--color-white);
    transition: color var(--transition-normal);
}

.scroll-indicator.dark .scroll-text {
    color: var(--color-gray-800);
}

/* ============================================
   6. Fullpage Sections
   ============================================ */
.section {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

/* ============================================
   7. Section: Visual / Intro
   ============================================ */
.section-visual {
    background: var(--color-black);
}

.intro-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.intro-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.intro-bg video,
.intro-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.intro-bg-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intro-bg-light {
    position: absolute;
    width: 100%;
    height: 100%;
    mix-blend-mode: color-dodge;
    z-index: 1;
    background: url('../images/intro/intro-bg-light.png') no-repeat center / cover;
}

.intro-content {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.intro-content * {
    pointer-events: auto;
}

/* Phase 1 숨김 - 인트로 애니메이션 단순화 */
.intro-phase-1 {
    display: none;
}

.intro-text-1,
.intro-text-2 {
    display: none;
}

.intro-light {
    display: none;
}

.intro-phase-2 {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.intro-phase-2 .visual-slider {
    position: absolute;
    width: 100%;
    height: 100%;
}

.visual-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.25);
    transition: transform 3s ease;
}

.swiper-slide-active .visual-bg-img {
    transform: scale(1);
}

.intro-title-box {
    position: absolute;
    top: 35%;
    left: 50%;
    color: #000;
    letter-spacing: -0.033em;
    transform: translateX(-50%) translateY(-50%);
    white-space: nowrap;
    z-index: 10;
}

.intro-title-box > p {
    transition: color 1s;
}

.intro-title-1 {
    display: flex;
    align-items: flex-end;
    gap: 24px;
    font-size: 30px;
    font-family: var(--font-serif);
    font-weight: 400;
}

.bubble-text {
    display: inline-block;
    padding: 4px 12px;
    background: var(--color-secondary);
    border-radius: 20px;
    font-size: 14px;
    color: var(--color-white);
}

.intro-title-2 {
    font-size: 58px;
    font-family: var(--font-serif);
    font-weight: 700;
    color: #03003C;
}

.intro-title-3 {
    font-size: 30px;
    font-family: var(--font-serif);
    font-weight: 400;
    position: relative;
}

.intro-title-3 span {
    position: absolute;
    right: 0;
    transform: translateX(0);
}

/* Skip 버튼 숨김 - 인트로 애니메이션 제거로 불필요 */
.intro-skip-btn {
    display: none;
}

.intro-skip-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.intro-skip-btn::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    border: 2px dashed var(--color-secondary);
    border-radius: 50%;
    animation: rotateText 6s infinite linear;
}

@keyframes rotateText {
    0% { transform: rotate(0); }
    100% { transform: rotate(360deg); }
}

/* Visual Controls */
.visual-controls {
    position: absolute;
    left: 100px;
    bottom: 80px;
    z-index: 10;
    opacity: 0;
    pointer-events: none;
    transform: translateY(50px);
    transition: opacity 1s ease, transform 1s ease;
}

.visual-controls.on {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

.visual-btn-box {
    display: flex;
    gap: 11px;
}

.visual-btn {
    width: 174px;
    height: 105px;
    filter: grayscale(1);
    border: 1px solid transparent;
    cursor: pointer;
    transition: border-color var(--transition-fast), filter var(--transition-fast);
    overflow: hidden;
}

.visual-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.visual-btn.active,
.visual-btn:hover {
    filter: grayscale(0);
    border-color: var(--color-white);
}

/* Visual Badge */
.visual-badge {
    position: absolute;
    right: 100px;
    bottom: 80px;
    width: 130px;
    height: 130px;
    background: var(--color-white);
    border-radius: var(--radius-full);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 28px;
    line-height: 1.1;
    z-index: 10;
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 1s ease, transform 1s ease;
    pointer-events: none;
}

.visual-badge p {
    margin: 0;
}

.visual-badge.on {
    opacity: 1;
    transform: translateX(0);
}

.visual-badge::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -80px;
    margin-left: -80px;
    width: 160px;
    height: 160px;
    border: 2px dashed var(--color-secondary);
    border-radius: 50%;
    animation: rotateBadge 7s infinite linear;
}

@keyframes rotateBadge {
    0% { transform: rotate(0); }
    100% { transform: rotate(360deg); }
}

/* ============================================
   8. Section: Schedule
   ============================================ */
.main-section-schedule {
    background: var(--color-primary-dark);
}

.main-section-schedule .fp-tableCell {
    display: flex;
    align-items: center;
    justify-content: center;
}

.schedule-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.schedule-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.schedule-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    height: 100%;
    width: 100%;
    max-width: 1321px;
    padding-top: 100px;
}

.schedule-title {
    color: #CDAA7E;
    font-size: 71px;
    font-weight: 600;
    font-family: var(--font-english);
    margin-bottom: 10px;
    overflow: hidden;
}

.schedule-desc {
    font-size: 16px;
    letter-spacing: -0.04em;
    color: #fff;
    margin-bottom: 35px;
}

.schedule-table-box {
    width: 100%;
    position: relative;
}

.schedule-rotate-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 86px;
    height: 86px;
    border-radius: 50%;
    background: #fff;
    color: #03003C;
    position: absolute;
    font-weight: 700;
    font-size: 15px;
    right: 0;
    top: 0;
    transform: translateX(50%) translateY(-50%);
    z-index: 1;
    line-height: 1.4;
    text-align: center;
}

.schedule-rotate-btn::after {
    position: absolute;
    content: '';
    width: 110px;
    height: 110px;
    border: 2px dashed #CDAA7E;
    border-radius: 50%;
    animation: rotate-text 6s infinite linear;
}

@keyframes rotate-text {
    0% { transform: rotate(0); }
    100% { transform: rotate(360deg); }
}

.schedule-table {
    display: grid;
    grid-template-columns: repeat(15, 1fr);
    gap: 0;
    width: 100%;
    position: relative;
}

.schedule-table > li {
    grid-column: span 3;
    height: 231px;
    padding-top: 57px;
    color: #909090;
    transition: color 0.3s, background 0.3s;
    position: relative;
}

.schedule-table > li:nth-child(1)::before,
.schedule-table > li:nth-child(2)::before,
.schedule-table > li:nth-child(3)::before,
.schedule-table > li:nth-child(4)::before,
.schedule-table > li:nth-child(6)::before,
.schedule-table > li:nth-child(7)::before {
    position: absolute;
    content: '';
    height: 100%;
    width: 1px;
    background: rgba(255,255,255,0.23);
    right: 0;
    top: 0;
}

.schedule-table > li:nth-child(1)::after,
.schedule-table > li:nth-child(2)::after,
.schedule-table > li:nth-child(3)::after,
.schedule-table > li:nth-child(4)::after,
.schedule-table > li:nth-child(5)::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,0.23);
    right: 0;
    bottom: 0;
}

.schedule-table::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,0.23);
    left: 0;
    bottom: 0;
}

.schedule-table::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,0.23);
    left: 0;
    top: 0;
}

.schedule-table > li:hover {
    color: #CDAA7E;
    background: #03003C;
}

.schedule-table > li.wide {
    grid-column: span 5;
}

.schedule-table .day {
    font-size: 37px;
    font-family: var(--font-english);
    margin-bottom: 12px;
}

.schedule-table .day > small {
    font-size: 22px;
}

.schedule-table .con {
    font-size: 19px;
    letter-spacing: -0.04em;
}

.schedule-table .point {
    font-size: 32px;
    letter-spacing: -0.04em;
    font-family: var(--font-english);
    font-weight: 700;
    line-height: 1em;
}

.round {
    position: absolute;
    bottom: 0;
    right: 0;
    transform: translateX(50%);
    transform-origin: center bottom;
    z-index: 1;
}

.schedule-btn-box {
    display: flex;
    gap: 19px;
    align-self: flex-end;
    margin-top: 27px;
}

.schedule-btn-box > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 213px;
    height: 65px;
    border: 1px solid #fff;
    border-radius: 100px;
    padding: 0 25px;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    transition: background 0.5s, color 0.5s;
}

.schedule-btn-box > a > img {
    filter: brightness(10);
}

.schedule-btn-box > a:hover {
    background: #fff;
    color: #000;
    border-color: #D3CBC6;
}

.schedule-btn-box > a:hover > img {
    filter: brightness(1);
}


/* ============================================
   9. Section: Education
   ============================================ */
.section-education {
    background: var(--color-gray-100);
}

.education-slider {
    width: 100%;
    height: 100%;
}

.education-slider .swiper-slide {
    width: 100%;
    height: 100%;
}

.education-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.education-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.25);
    transition: transform 3s ease;
}

.swiper-slide-active .education-bg img {
    transform: scale(1);
}

.education-inner {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    height: 100%;
    padding-top: 120px;
}

.education-left {
    flex-shrink: 0;
    width: 35%;
}

.education-title {
    font-size: 48px;
    font-weight: 600;
    color: var(--color-primary-dark);
    margin-bottom: 30px;
    transform: translateX(-100px);
    opacity: 0;
    transition: transform 1s ease, opacity 1s ease;
}

.swiper-slide-active .education-title {
    transform: translateX(0);
    opacity: 1;
    transition-delay: 0.4s;
}

.education-subtitle {
    font-size: 27px;
    letter-spacing: -0.033em;
    font-weight: 500;
    margin-bottom: 40px;
    transform: translateX(-100px);
    opacity: 0;
    transition: transform 1s ease, opacity 1s ease;
}

.swiper-slide-active .education-subtitle {
    transform: translateX(0);
    opacity: 1;
    transition-delay: 0.5s;
}

.education-subtitle b {
    color: var(--color-primary-dark);
    font-weight: 700;
}

.education-logo {
    margin-bottom: 20px;
    transform: translateX(-100px);
    opacity: 0;
    transition: transform 1s ease, opacity 1s ease;
}

.swiper-slide-active .education-logo {
    transform: translateX(0);
    opacity: 1;
    transition-delay: 0.6s;
}

.education-logo-desc {
    font-size: 22px;
    letter-spacing: -0.033em;
    font-weight: 300;
    margin-bottom: 29px;
    transform: translateX(-100px);
    opacity: 0;
    transition: transform 1s ease, opacity 1s ease;
}

.swiper-slide-active .education-logo-desc {
    transform: translateX(0);
    opacity: 1;
    transition-delay: 0.7s;
}

.education-logo-desc b {
    font-weight: 700;
}

.education-medal-box {
    display: flex;
    gap: 18px;
    align-items: center;
    margin-bottom: 23px;
    transform: translateX(-100px);
    opacity: 0;
    transition: transform 1s ease, opacity 1s ease;
}

.swiper-slide-active .education-medal-box {
    transform: translateX(0);
    opacity: 1;
    transition-delay: 0.8s;
}

.medal-desc {
    font-size: 15px;
    line-height: 1.8em;
    letter-spacing: -0.033em;
    font-weight: 500;
}

.medal-desc .highlight {
    color: #386CB0;
    font-weight: 700;
}

.benefit-box {
    transform: translateX(-100px);
    opacity: 0;
    transition: transform 1s ease, opacity 1s ease;
}

.swiper-slide-active .benefit-box {
    transform: translateX(0);
    opacity: 1;
    transition-delay: 0.9s;
}

.benefit-title {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 558px;
    height: 45px;
    background: var(--color-primary-dark);
    color: var(--color-white);
    font-size: 22px;
    letter-spacing: -0.033em;
    margin-bottom: 35px;
}

.benefit-list {
    display: flex;
}

.benefit-list li {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 185px;
    text-align: center;
    border-right: 1px solid #aaa;
    padding: 0 15px;
}

.benefit-list li:first-child {
    border-left: 1px solid #aaa;
}

.benefit-icon {
    width: 74px;
    height: 58px;
    object-fit: contain;
    margin-bottom: 10px;
}

.benefit-desc {
    font-size: 17px;
    letter-spacing: -0.033em;
}

.benefit-desc b {
    color: var(--color-primary-dark);
    font-weight: 700;
}

/* Education Center */
.education-center {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    padding-top: 80px;
    margin-right: 100px;
}

.education-img-box {
    display: flex;
    align-items: center;
    gap: 13px;
    position: relative;
}

.education-img-box img {
    opacity: 0;
    transition: transform 1s ease, opacity 1s ease;
}

.edu-img-1 {
    transform: translateX(-100px);
}

.edu-img-right {
    display: flex;
    flex-direction: column;
    gap: 13px;
    position: relative;
}

.edu-img-2 {
    transform: translateY(-100px);
}

.edu-img-3 {
    transform: translateX(100px);
}

.swiper-slide-active .education-img-box img {
    transform: translateX(0) translateY(0);
    opacity: 1;
    transition-delay: 0.4s;
}

/* Rotate Button */
.rotate-btn {
    position: absolute;
    width: 92px;
    height: 92px;
    background: var(--color-primary-dark);
    color: var(--color-white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
    text-align: center;
    line-height: 1.4;
    transform: translateY(-50%) scale(0);
    transition: transform 1s ease;
}

.swiper-slide-active .rotate-btn {
    transform: translateY(-50%) scale(1);
}

.education-btn {
    top: 0;
    right: 40px;
}

.rotate-btn::after {
    content: '';
    position: absolute;
    width: 115px;
    height: 115px;
    border: 2px dashed var(--color-white);
    border-radius: 50%;
    animation: rotateText 6s infinite linear;
}

/* Education Right */
.education-right {
    flex-shrink: 0;
    width: 280px;
}

.education-feature-list li {
    transform: translateX(100px);
    opacity: 0;
    transition: transform 1s ease, opacity 1s ease;
}

.education-feature-list li + li {
    margin-top: 57px;
}

.swiper-slide-active .education-feature-list li:nth-child(1) { transition-delay: 0.4s; }
.swiper-slide-active .education-feature-list li:nth-child(2) { transition-delay: 0.5s; }
.swiper-slide-active .education-feature-list li:nth-child(3) { transition-delay: 0.6s; }
.swiper-slide-active .education-feature-list li:nth-child(4) { transition-delay: 0.7s; }

.swiper-slide-active .education-feature-list li {
    transform: translateX(0);
    opacity: 1;
}

.feature-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--color-primary-dark);
    letter-spacing: -0.033em;
    margin-bottom: 19px;
}

.feature-desc {
    font-size: 17px;
    letter-spacing: -0.033em;
    font-weight: 500;
    color: var(--color-gray-700);
    line-height: 1.6em;
}

/* Education Slide 2 - Kyobo */
.education-slide-2-inner {
    display: flex;
    width: 100%;
    height: 100%;
}

.kyobo-video {
    width: 47%;
    height: calc(100% - 135px);
    margin-top: auto;
    position: relative;
}

.kyobo-video video,
.kyobo-video-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.kyobo-video-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.kyobo-btn {
    position: absolute;
    right: 0;
    bottom: 47px;
    transform: translateX(50%) scale(0);
}

.swiper-slide-active .kyobo-btn {
    transform: translateX(50%) scale(1);
}

.kyobo-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 90px 93px;
}

.kyobo-title-box {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 46px;
    transform: translateX(-100px);
    opacity: 0;
    transition: transform 1s ease, opacity 1s ease;
}

.swiper-slide-active .kyobo-title-box {
    transform: translateX(0);
    opacity: 1;
}

.kyobo-title h3 {
    font-size: 27px;
    letter-spacing: -0.033em;
    font-weight: 500;
    margin-bottom: 19px;
}

.kyobo-title h3 b {
    color: #2A304F;
    font-weight: 700;
}

.kyobo-title p {
    font-size: 18px;
    font-weight: 300;
    letter-spacing: -0.033em;
}

.kyobo-title p b {
    font-weight: 500;
}

.kyobo-logo {
    transform: translateX(100px);
    opacity: 0;
    transition: transform 1s ease, opacity 1s ease;
}

.swiper-slide-active .kyobo-logo {
    transform: translateX(0);
    opacity: 1;
}

.kyobo-img {
    clip-path: inset(0 50%);
    transition: clip-path 1s ease;
}

.swiper-slide-active .kyobo-img {
    clip-path: inset(0);
}

.kyobo-subtitle {
    text-align: right;
    margin-top: 34px;
    font-size: 29px;
    font-weight: 500;
    line-height: 1.4em;
    letter-spacing: -0.033em;
    transform: translateY(100px);
    opacity: 0;
    transition: transform 1s ease, opacity 1s ease;
}

.swiper-slide-active .kyobo-subtitle {
    transform: translateY(0);
    opacity: 1;
}

.kyobo-subtitle .green {
    color: #6BB340;
}

/* ============================================
   10. Section: Unit Plan
   ============================================ */
.section-unit {
    background: var(--color-white);
}

.unit-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.unit-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
    transform: scale(1.2);
    transition: transform 3s ease;
}

.active .unit-bg-img {
    transform: scale(1);
}

.unit-obj {
    position: absolute;
    opacity: 0;
    transition: opacity 1s ease;
}

.unit-obj-1 {
    left: 30px;
    bottom: 0;
}

.unit-obj-2 {
    right: 23%;
    top: 0;
}

.active .unit-obj {
    opacity: 1;
    transition-delay: 1s;
}

.unit-inner {
    display: flex;
    justify-content: space-between;
    position: relative;
    width: 100%;
    max-width: 1640px;
    margin: 0 auto;
    padding: 158px 0 116px;
    height: 100%;
}

.unit-left {
    flex-shrink: 0;
}

.unit-title {
    font-size: 83px;
    font-weight: 700;
    color: var(--color-primary-dark);
    text-align: left;
    margin-bottom: 10px;
    transform: translateX(-100px);
    opacity: 0;
    transition: transform 1s ease, opacity 1s ease;
}

.active .unit-title {
    transform: translateX(0);
    opacity: 1;
    transition-delay: 0.4s;
}

.unit-desc {
    font-size: 16px;
    letter-spacing: -0.033em;
    margin-bottom: 60px;
    transform: translateX(-100px);
    opacity: 0;
    transition: transform 1s ease, opacity 1s ease;
}

.active .unit-desc {
    transform: translateX(0);
    opacity: 1;
    transition-delay: 0.6s;
}

.unit-link-box {
    width: 145px;
    border-left: 1px solid #919191;
    transform: translateY(100px);
    opacity: 0;
    transition: transform 1s ease, opacity 1s ease;
}

.active .unit-link-box {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0.8s;
}

.unit-link-box li + li {
    margin-top: 15px;
}

.unit-link-box a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 0 11px 19px;
    color: #919191;
    letter-spacing: -0.04em;
    font-weight: 700;
    position: relative;
    white-space: nowrap;
}

.unit-link-box a::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: var(--radius-full);
    background: var(--color-gray-800);
    left: 0;
    transform: scale(0) translateX(-50%);
    transform-origin: left;
    transition: transform var(--transition-normal);
}

.unit-link-box li:hover a::after {
    transform: scale(1) translateX(-50%);
}

.unit-link-box li:hover a {
    color: var(--color-gray-800);
}

/* Unit Center */
.unit-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    opacity: 0;
    transition: transform 1s ease, opacity 1s ease;
    mix-blend-mode: darken;
}

.active .unit-center {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.unit-slider {
    width: 508px;
    height: 470px;
    margin-bottom: 50px;
    overflow: hidden;
    mix-blend-mode: darken;
}

.unit-slide-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 26px 0 42px;
}

.unit-type-title {
    font-size: 47px;
    font-weight: 700;
    color: var(--color-primary-dark);
}

.unit-type-count {
    font-size: 17px;
    letter-spacing: -0.04em;
    color: #2B2B2B;
    margin-bottom: 20px;
}

.unit-type-img {
    width: 508px;
    height: 343px;
    mix-blend-mode: darken;
}

.unit-type-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: darken;
}

.unit-navigation {
    display: flex;
    gap: 28px;
}

.unit-prev,
.unit-next {
    font-size: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
}

.unit-prev::after,
.unit-next::after {
    content: '\2192';
    font-size: 16px;
    font-weight: 700;
}

.unit-prev::after {
    content: '\2190';
    order: -1;
}

/* Unit Right */
.unit-right {
    display: flex;
    align-items: flex-end;
    height: 100%;
    padding-right: 140px;
}

.unit-btn-box {
    display: flex;
    justify-content: center;
    gap: 30px;
    opacity: 0;
    transform: translateX(100px);
    transition: opacity 1s ease, transform 1s ease;
    margin-top: auto;
}

.active .unit-btn-box {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.4s;
}

.unit-btn-box li {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 91px;
    height: 91px;
    border-radius: var(--radius-full);
    background: var(--color-white);
    flex-shrink: 0;
    position: relative;
    color: #B9B9B9;
    cursor: pointer;
    border: 2px solid transparent;
    transition: color var(--transition-normal), border-color var(--transition-normal);
}

.unit-btn-box li img {
    width: 70%;
}

.unit-btn-box li span {
    position: absolute;
    font-size: 23px;
    top: 100%;
    transform: translateY(7px);
}

.unit-btn-box li.active,
.unit-btn-box li:hover {
    color: #121212;
    font-weight: 700;
    border-color: var(--color-primary-dark);
}

/* ============================================
   11. Section: Brand
   ============================================ */
.section-brand {
    background: var(--color-white);
    overflow: hidden;
}

.brand-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    max-width: 1560px;
    margin: 0 auto;
    height: 100%;
    padding-top: 150px;
    position: relative;
}

.brand-inner::before {
    content: '';
    position: absolute;
    width: 946px;
    height: 946px;
    border: 100px solid var(--color-gray-100);
    border-radius: var(--radius-full);
    left: -18%;
    top: 65%;
}

.brand-title {
    margin-bottom: 50px;
    position: relative;
}

.brand-title::before {
    content: '';
    position: absolute;
    width: 346px;
    height: 346px;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-circle);
    left: -160px;
    bottom: -30px;
}

.brand-title .title-line-1,
.brand-title .title-line-2 {
    display: block;
    font-size: 94px;
    line-height: 1em;
    font-weight: 700;
    color: var(--color-accent);
    opacity: 0;
    transition: color 1s ease, padding-left 1s ease, -webkit-text-stroke 1s ease, opacity 1s ease;
}

.active .brand-title .title-line-1,
.active .brand-title .title-line-2 {
    opacity: 1;
}

.active .brand-title .title-line-2 {
    padding-left: 100px;
    color: transparent;
    -webkit-text-stroke: 1px var(--color-black);
    transition-delay: 1s;
}

.brand-obj {
    position: absolute;
    bottom: 40%;
    left: 80%;
    opacity: 0;
    transition: opacity 1s ease;
}

.active .brand-obj {
    opacity: 1;
    transition-delay: 1s;
}

.brand-desc {
    font-size: 22px;
    letter-spacing: -0.04em;
    font-weight: 300;
    transform: translateX(-100px);
    opacity: 0;
    transition: transform 1s ease, opacity 1s ease;
}

.active .brand-desc {
    transform: translateX(0);
    opacity: 1;
    transition-delay: 1s;
}

.brand-desc b {
    font-weight: 500;
}

.brand-main-img {
    position: absolute;
    bottom: 0;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease, transform 1s ease;
}

.active .brand-main-img {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1s;
}

/* Brand Circle */
.brand-circle-container {
    position: absolute;
    width: 50%;
    height: 100%;
    right: 0;
    top: 0;
    overflow: visible;
    z-index: -1;
    transform: translateX(100%);
    transition: transform 2s ease;
}

.active .brand-circle-container {
    transform: translateX(0);
}

.brand-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 100vw;
    background: var(--color-white);
    border-radius: var(--radius-full);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 50px rgba(0,0,0,0.09);
    transition: transform 1.4s ease;
}

.brand-circle.type1 { transform: translateY(-50%) rotate(0deg); }
.brand-circle.type2 { transform: translateY(-50%) rotate(90deg); }
.brand-circle.type3 { transform: translateY(-50%) rotate(180deg); }
.brand-circle.type4 { transform: translateY(-50%) rotate(270deg); }
.brand-circle.type5 { transform: translateY(-50%) rotate(360deg); }
.brand-circle.type6 { transform: translateY(-50%) rotate(450deg); }
.brand-circle.type7 { transform: translateY(-50%) rotate(540deg); }

.brand-item {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 670px;
    height: 670px;
    box-shadow: var(--shadow-circle);
    border-radius: var(--radius-full);
    opacity: 0;
    position: absolute;
    transition: transform 1.4s ease, opacity 1.4s ease;
}

.brand-item.active {
    opacity: 1;
}

.brand-item-1 { left: 175px; }
.brand-item-2 { bottom: 175px; }
.brand-item-3 { right: 175px; }
.brand-item-4 { top: 175px; }
.brand-item-5 { left: 175px; }
.brand-item-6 { bottom: 175px; }
.brand-item-7 { right: 175px; }

.brand-item-img {
    width: 498px;
    height: 498px;
    border-radius: var(--radius-full);
    overflow: hidden;
    position: absolute;
}

.brand-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
}

.brand-item-name {
    position: absolute;
    bottom: 30px;
    font-size: 24px;
    font-weight: 300;
    color: var(--color-gray-800);
    letter-spacing: -0.04em;
}

.brand-item-name b {
    font-weight: 700;
}

.brand-item-info {
    position: absolute;
    top: 100%;
    text-align: center;
}

.brand-ve {
    font-size: 57px;
    font-weight: 700;
    color: #757D82;
}

.brand-ve span {
    color: var(--color-accent);
}

.brand-item-desc {
    font-size: 20px;
    letter-spacing: -0.04em;
    color: #0A184A;
}

/* ============================================
   12. Section: Location
   ============================================ */
.section-location {
    background: var(--color-gray-100);
}

.location-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.location-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.25);
    transition: transform 4s ease;
}

.active .location-bg img {
    transform: scale(1);
}

.location-title {
    font-size: 46px;
    margin-bottom: 8px;
    font-family: var(--font-english);
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #06033C;
    text-align: center;
    overflow: hidden;
    padding-top: 50px;
}

.location-title .char {
    transform: translateY(100%);
}

.location-desc {
    text-align: center;
    margin-bottom: 50px;
    font-size: 16px;
    letter-spacing: -0.04em;
    transform: translateY(50px);
    opacity: 0;
    transition: opacity 1s ease, transform 1s ease;
}

.fp-active .location-desc {
    transform: translateY(0);
    opacity: 1;
}

.location-inner {
    display: flex;
    justify-content: center;
    gap: 100px;
}

.location-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 26px;
    transform: translateX(-100px);
    opacity: 0;
    transition: transform 1s ease, opacity 1s ease;
}

.location-box:nth-child(2) {
    transform: translateX(100px);
}

.fp-active .location-box {
    transform: translateX(0);
    opacity: 1;
    transition-delay: 1s;
}

.location-map-wrap {
    border: 1px solid #aaa;
    position: relative;
}

/* Hover Animation */
.hover-ani {
    position: relative;
}

.hover-ani .line {
    position: absolute;
    background: var(--color-primary);
    z-index: 10;
    transition: width var(--transition-normal), height var(--transition-normal);
}

.hover-ani .line:nth-child(1) { width: 0; height: 1px; left: 0; top: 0; }
.hover-ani .line:nth-child(2) { width: 1px; height: 0; right: 0; top: 0; }
.hover-ani .line:nth-child(3) { width: 0; height: 1px; right: 0; bottom: 0; }
.hover-ani .line:nth-child(4) { width: 1px; height: 0; left: 0; bottom: 0; }

.hover-ani:hover .line:nth-child(1),
.hover-ani:hover .line:nth-child(3) { width: 100%; }

.hover-ani:hover .line:nth-child(2),
.hover-ani:hover .line:nth-child(4) { height: 100%; }

.location-address {
    display: flex;
    font-size: 18px;
    letter-spacing: -0.06em;
    font-weight: 500;
    color: var(--color-gray-800);
}

.address-label {
    display: flex;
    align-items: center;
    margin-right: 22px;
    padding: 0 21px;
    font-weight: 700;
    color: var(--color-primary);
    position: relative;
}

.address-label::before,
.address-label::after {
    content: '';
    position: absolute;
    width: 1px;
    height: 15px;
    background: var(--color-primary);
    transform: translateY(1px);
}

.address-label::before { left: 0; }
.address-label::after { right: 0; }

.location-btn-box {
    display: flex;
    align-items: center;
    gap: 7px;
}

.map-btn {
    display: block;
    overflow: hidden;
    position: relative;
}

.map-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid transparent;
    transition: border-color var(--transition-fast);
}

.map-btn:hover::before {
    border-color: var(--color-primary);
}

/* ============================================
   13. Footer
   ============================================ */
.main-section-footer {
    height: auto !important;
}

.footer {
    padding: 50px 40px;
    background: var(--color-gray-900);
}

.footer-inner {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    position: relative;
}

.footer-logo {
    width: 84px;
    margin-bottom: 20px;
}

.footer-ul {
    display: flex;
    gap: 28px;
    color: var(--color-white);
    font-size: 14px;
    letter-spacing: -0.02em;
    margin-bottom: 25px;
}

.footer-ul li {
    display: flex;
    align-items: center;
    position: relative;
    font-weight: 300;
}

.footer-ul li:not(:last-child)::after {
    content: '';
    position: absolute;
    width: 1px;
    height: 10px;
    background: var(--color-white);
    right: -12px;
}

.footer-info {
    font-size: 14px;
    margin-bottom: 22px;
}

.footer-info li {
    padding-left: 15px;
    position: relative;
    color: #AAAAAA;
    font-size: 14px;
    letter-spacing: -0.04em;
    line-height: 1.6em;
}

.footer-info li::before {
    content: '※';
    position: absolute;
    left: 0;
}

.footer-copy {
    font-size: 14px;
    color: #999999;
}

.footer-tel {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: 0.02em;
}

/* 상세 페이지 Footer 스타일 */
.footer-info-list {
    display: flex;
    gap: 28px;
    color: #ffffff;
    font-size: 14px;
    letter-spacing: -0.02em;
    margin-bottom: 25px;
}

.footer-info-list li {
    display: flex;
    align-items: center;
    position: relative;
    font-weight: 300;
}

.footer-info-list li:not(:last-child)::after {
    content: '';
    position: absolute;
    width: 1px;
    height: 10px;
    background: rgba(255,255,255,0.5);
    right: -14px;
}

.footer-notice {
    font-size: 14px;
    margin-bottom: 22px;
}

.footer-notice li {
    padding-left: 15px;
    position: relative;
    color: #AAAAAA;
    font-size: 14px;
    letter-spacing: -0.04em;
    line-height: 1.6em;
}

.footer-notice li::before {
    content: '※';
    position: absolute;
    left: 0;
}

.sigong-logo {
    position: absolute;
    right: 0;
    bottom: 0;
}

.footer-link {
    display: flex;
    gap: 28px;
    position: absolute;
    right: 0;
    bottom: 70px;
}

.footer-link li {
    position: relative;
}

.footer-link li:not(:last-child)::after {
    content: '';
    position: absolute;
    width: 1px;
    height: 10px;
    background: var(--color-white);
    right: -12px;
    top: 50%;
    transform: translateY(-50%);
}

.footer-link a {
    font-size: 14px;
    color: var(--color-white);
    font-weight: 300;
}

.footer-link a:hover {
    text-decoration: underline;
}

.sigong {
    position: absolute;
    right: 0;
    bottom: 0;
}

/* ============================================
   14. Quick Menu
   ============================================ */
.quick-menu {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 900;
}

.quick-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.quick-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--color-primary);
    border-radius: var(--radius-full);
    color: var(--color-white);
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: background var(--transition-fast), transform var(--transition-fast);
}

.quick-link:hover {
    background: var(--color-primary-dark);
    transform: scale(1.1);
}

.quick-link.kakao {
    background: #FEE500;
    color: #3C1E1E;
}

.quick-text {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

.quick-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.quick-icon::before {
    content: '\2605';
}

.quick-icon.phone::before {
    content: '\260E';
}

.quick-icon.kakao::before {
    content: 'K';
    font-weight: 700;
    font-size: 16px;
}

/* Top Button */
.top-btn {
    position: fixed;
    right: 20px;
    bottom: 200px;
    width: 50px;
    height: 50px;
    background: var(--color-white);
    border: 1px solid var(--color-gray-200);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: var(--color-gray-600);
    box-shadow: var(--shadow-sm);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-fast), transform var(--transition-fast);
    z-index: 900;
}

.top-btn.show {
    opacity: 1;
    pointer-events: all;
}

.top-btn:hover {
    transform: translateY(-5px);
}

/* ============================================
   15. Utilities
   ============================================ */
.pc-only {
    display: block;
}

.mobile-only {
    display: none;
}

/* ============================================
   16. Responsive
   ============================================ */
@media screen and (max-width: 1600px) {
    .header-inner {
        min-width: auto;
        padding: 0 40px;
    }

    .nav-item > a {
        padding: 0 20px;
    }
}

@media screen and (max-width: 1400px) {
    .education-inner {
        padding: 120px 40px;
    }

    .education-left {
        width: 40%;
    }

    .education-center {
        margin-right: 40px;
    }

    .brand-inner {
        padding: 150px 40px;
    }

    .unit-inner {
        padding: 158px 40px 116px;
    }
}

@media screen and (max-width: 1200px) {
    .header-nav {
        display: none;
    }

    .visit-counter {
        display: none;
    }

    /* Visual Badge 태블릿 */
    .visual-badge {
        right: 60px;
        bottom: 60px;
        width: 110px;
        height: 110px;
        font-size: 24px;
    }

    .visual-badge::after {
        width: 140px;
        height: 140px;
        margin-top: -70px;
        margin-left: -70px;
    }

    /* Visual Button Box 태블릿 */
    .visual-btn-box {
        left: 60px;
        bottom: 60px;
    }

    .visual-btn {
        width: 120px;
        height: 70px;
    }
}

@media screen and (max-width: 768px) {
    /* ============================================
       모바일: 기본 설정 (원본 기반)
       ============================================ */
    :root {
        --header-height: 50px;
    }

    .pc-only {
        display: none !important;
    }

    .mobile-only {
        display: block !important;
    }

    /* ============================================
       모바일: Fullpage 비활성화
       ============================================ */
    .section {
        height: auto !important;
        min-height: auto;
    }

    .fp-tableCell {
        height: auto !important;
        display: block;
    }

    #fullpage {
        height: auto !important;
    }

    .fp-section {
        height: auto !important;
    }

    /* ============================================
       모바일: 헤더 (원본 스타일)
       ============================================ */
    .header {
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        max-width: 100%;
        height: 50px;
        padding: 0 15px;
        z-index: 1000;
        background: transparent;
        border-bottom: none;
    }

    .header-top {
        height: 50px;
        border-bottom: none;
        background: transparent;
    }

    .header-inner {
        padding: 0;
        min-width: auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 100%;
    }

    .header-left {
        display: none;
    }

    .header-open {
        display: none;
    }

    .main-logo {
        width: auto;
        height: auto;
        position: static;
        transform: none;
    }

    .main-logo .logo-text {
        font-size: 15px;
        font-weight: 400;
        color: #fff !important;
        text-shadow: 0 1px 3px rgba(0,0,0,0.3);
    }

    .main-logo .logo-text::before {
        content: '두산위브더제니스 ';
        font-weight: 400;
    }

    .main-logo .logo-text {
        font-size: 0;
    }

    .main-logo .logo-text::before {
        font-size: 15px;
        color: #fff;
    }

    .main-logo .logo-text::after {
        content: '센트럴 천안';
        font-size: 15px;
        color: var(--color-secondary);
        font-weight: 700;
    }

    .header-right {
        gap: 12px;
        display: flex;
        align-items: center;
    }

    .header-nav {
        display: none;
    }

    .applyhome {
        display: none;
    }

    .header-customer {
        display: none;
    }

    /* 전화 아이콘 - 원형 버튼 스타일 */
    .header-tel {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background: var(--color-primary);
        border-radius: 50%;
        font-size: 0;
    }

    .header-tel .tel-icon {
        display: block !important;
        width: 18px;
        height: 18px;
        background: url('../images/common/tel-icon-white.png') no-repeat center / contain;
    }

    .header-tel .tel-icon::before {
        content: '📞';
        font-size: 16px;
        filter: brightness(0) invert(1);
    }

    .header-tel span {
        display: none;
    }

    /* ============================================
       모바일: 햄버거 메뉴 버튼 (원본 스타일)
       ============================================ */
    .hamburger {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: flex-end;
        width: 28px;
        height: 28px;
        cursor: pointer;
        z-index: 1001;
        gap: 6px;
    }

    .hamburger span {
        display: block;
        height: 2px;
        background: #333;
        transition: all 0.3s ease;
    }

    .hamburger span:nth-child(1) {
        width: 28px;
    }

    .hamburger span:nth-child(2) {
        width: 20px;
    }

    .hamburger span:nth-child(3) {
        width: 28px;
    }

    .hamburger.active span:nth-child(1) {
        width: 28px;
        transform: rotate(45deg) translate(6px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    /* ============================================
       모바일: 슬라이드 네비게이션 메뉴
       ============================================ */
    .mobile-nav {
        display: block !important;
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: #fff;
        z-index: 1000;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        overflow-y: auto;
    }

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

    .mobile-nav-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 15px 20px;
        border-bottom: 1px solid #eee;
        background: var(--color-primary);
    }

    .mobile-nav-title {
        color: #fff;
        font-size: 14px;
        font-weight: 600;
    }

    .mobile-nav-close {
        width: 24px;
        height: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        color: #fff;
        font-size: 20px;
    }

    .mobile-nav-list {
        padding: 0;
        margin: 0;
        list-style: none;
    }

    .mobile-nav-item {
        border-bottom: 1px solid #eee;
    }

    .mobile-nav-item > a {
        display: block;
        padding: 15px 20px;
        font-size: 15px;
        font-weight: 600;
        color: var(--color-primary);
        text-decoration: none;
    }

    .mobile-nav-item > a:hover {
        background: #f5f5f5;
    }

    .mobile-nav-sub {
        display: none;
        padding: 0;
        margin: 0;
        list-style: none;
        background: #f9f9f9;
    }

    .mobile-nav-item.open .mobile-nav-sub {
        display: block;
    }

    .mobile-nav-sub li a {
        display: block;
        padding: 12px 20px 12px 35px;
        font-size: 14px;
        color: #666;
        text-decoration: none;
    }

    .mobile-nav-sub li a:hover {
        color: var(--color-primary);
        background: #f0f0f0;
    }

    .mobile-nav-toggle {
        position: relative;
    }

    .mobile-nav-toggle::after {
        content: '+';
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 18px;
        color: #999;
        transition: transform 0.3s;
    }

    .mobile-nav-item.open .mobile-nav-toggle::after {
        content: '-';
    }

    /* 모바일 네비게이션 오버레이 */
    .mobile-nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 999;
    }

    .mobile-nav-overlay.active {
        display: block;
    }

    /* 퀵메뉴 전화버튼 */
    .mobile-nav-tel {
        display: block;
        margin: 20px;
        padding: 15px;
        background: var(--color-secondary);
        color: #fff;
        text-align: center;
        border-radius: 8px;
        font-size: 16px;
        font-weight: 600;
        text-decoration: none;
    }

    .mobile-nav-tel:hover {
        background: #b8956b;
    }

    .header-tel .tel-icon {
        width: 24px;
        height: 24px;
    }

    .header-tel span {
        display: none;
    }

    .scroll-indicator {
        display: none;
    }

    /* ============================================
       모바일: 비주얼/인트로 섹션 (원본 기반)
       ============================================ */
    body {
        overflow: auto !important;
        overflow-x: hidden !important;
        height: auto !important;
    }

    html {
        overflow: auto !important;
        overflow-x: hidden !important;
    }

    html.fp-enabled,
    html.fp-enabled body {
        overflow: auto !important;
        overflow-x: hidden !important;
        height: auto !important;
    }

    .section-visual {
        height: 100vh;
        min-height: 100vh;
        position: relative;
        z-index: 1;
    }

    .intro-container {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        padding-top: 50px;
    }

    .intro-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .intro-bg-img,
    .intro-bg-img img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .intro-phase-1 {
        display: none;
    }

    .intro-phase-2 {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .intro-phase-2 .visual-slider {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        clip-path: none !important;
    }

    .intro-phase-2 .visual-slider .swiper-wrapper,
    .intro-phase-2 .visual-slider .swiper-slide {
        height: 100%;
    }

    .visual-bg-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transform: none !important;
    }

    /* 인트로 타이틀 - 원본 스타일 (화면 중앙) */
    .intro-title-box {
        position: absolute;
        top: 30%;
        left: 0 !important;
        right: 0 !important;
        transform: translateY(-50%) !important;
        padding: 0 20px;
        text-align: center;
        width: 100%;
        z-index: 10;
    }

    .intro-title-1 {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
        font-size: 18px !important;
        color: #fff !important;
        font-family: var(--font-serif);
        margin-bottom: 8px;
        white-space: normal;
    }

    .intro-title-2 {
        font-size: 32px !important;
        font-weight: 700;
        color: #fff !important;
        font-family: var(--font-serif);
        line-height: 1.3;
        margin-bottom: 8px;
        white-space: normal;
    }

    .intro-title-3 {
        font-size: 18px !important;
        color: #fff !important;
        font-family: var(--font-serif);
        white-space: normal;
    }

    .intro-title-3 span {
        position: static;
        font-size: 18px;
        transform: none;
    }

    /* 플로팅바 숨김 */
    .quick-menu,
    .floating-bar,
    .quick-btn,
    .top-btn {
        display: none !important;
    }

    .bubble-text {
        font-size: 10px;
        padding: 4px 10px;
        background: rgba(255,255,255,0.2);
        border: 1px solid rgba(255,255,255,0.5);
        border-radius: 15px;
        color: #fff;
    }

    .intro-skip-btn {
        display: none;
    }

    /* 비주얼 배지 숨김 */
    .visual-badge {
        display: none;
    }

    /* 썸네일 버튼 - 하단 중앙 */
    .visual-btn-box {
        position: absolute;
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
        gap: 8px;
        display: flex;
        z-index: 10;
    }

    .visual-btn {
        width: 80px;
        height: 50px;
        border: 2px solid transparent;
        border-radius: 4px;
        overflow: hidden;
    }

    .visual-btn.active {
        border-color: #fff;
    }

    .visual-btn img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .visual-controls {
        bottom: 20px;
    }

    /* ============================================
       모바일: 스케줄 섹션 (원본 기반)
       ============================================ */
    .main-section-schedule {
        padding: 0;
    }

    .schedule-inner {
        padding: 50px 5%;
    }

    .schedule-title {
        font-size: 36px;
        margin-bottom: 5px;
    }

    .schedule-desc {
        font-size: 10px;
        margin-bottom: 18px;
    }

    .schedule-table-box {
        width: 100%;
    }

    .schedule-table {
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
    }

    .schedule-table > li {
        grid-column: span 1;
        height: 115px;
        padding-top: 28px;
    }

    .schedule-table > li.wide {
        grid-column: span 2;
    }

    .schedule-table .day {
        font-size: 18px;
        margin-bottom: 6px;
    }

    .schedule-table .day small {
        font-size: 11px;
    }

    .schedule-table .con {
        font-size: 10px;
        line-height: 1.4;
    }

    .schedule-table .point {
        font-size: 16px;
    }

    .schedule-rotate-btn {
        width: 43px;
        height: 43px;
        font-size: 8px;
    }

    .schedule-rotate-btn::after {
        width: 56px;
        height: 56px;
    }

    .schedule-btn-box {
        gap: 10px;
        margin-top: 14px;
    }

    .schedule-btn-box > a {
        width: 106px;
        height: 32px;
        font-size: 8px;
        padding: 0 12px;
    }

    .round {
        display: none;
    }

    /* ============================================
       모바일: 교육 섹션 (원본 기반)
       ============================================ */
    .section-education {
        height: auto !important;
        min-height: auto;
    }

    .education-slider {
        height: auto !important;
    }

    .education-slider .swiper-slide {
        height: auto !important;
        position: relative;
    }

    /* 배경 이미지 모바일 최적화 */
    .education-bg {
        position: relative;
        width: 100%;
        height: 200px;
        z-index: 0;
    }

    .education-bg img {
        transform: none !important;
        transition: none !important;
    }

    /* 모든 애니메이션 요소 강제 표시 */
    .education-title,
    .education-subtitle,
    .education-logo,
    .education-logo-desc,
    .education-medal-box,
    .benefit-box,
    .education-img-box,
    .education-feature-list li {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    .education-inner {
        flex-direction: column;
        padding: 30px 5% 25px;
        min-height: auto;
        height: auto;
    }

    .education-left,
    .education-center,
    .education-right {
        width: 100%;
        padding: 0;
    }

    .education-left {
        margin-bottom: 25px;
    }

    .education-title {
        font-size: 28px;
        margin-bottom: 12px;
        line-height: 1;
    }

    .education-subtitle {
        font-size: 16px;
        line-height: 1.4;
        margin-bottom: 15px;
    }

    .education-subtitle small {
        font-size: 12px;
    }

    .education-logo {
        max-width: 100px;
        margin-bottom: 10px;
    }

    .education-logo-desc {
        font-size: 12px;
        margin-bottom: 14px;
    }

    .education-medal-box {
        gap: 10px;
        flex-direction: row;
        align-items: center;
        margin-bottom: 20px;
    }

    .medal-img {
        max-width: 50px;
    }

    .medal-desc {
        font-size: 10px;
        line-height: 1.5;
    }

    /* 입주민 특별혜택 박스 */
    .benefit-title {
        width: 100% !important;
        height: 35px;
        font-size: 14px;
        margin-bottom: 15px;
    }

    .benefit-list {
        flex-wrap: wrap;
    }

    .benefit-list li {
        width: 33.333% !important;
        padding: 0 5px;
    }

    .benefit-icon {
        width: 40px;
        height: 32px;
        margin-bottom: 8px;
    }

    .benefit-desc {
        font-size: 10px;
        line-height: 1.4;
    }

    .benefit-desc b {
        font-size: 10px;
    }

    /* 교육 이미지 박스 */
    .education-center {
        padding: 20px 0;
    }

    .education-img-box {
        flex-direction: column;
        gap: 10px;
        margin-top: 0;
        position: relative;
    }

    .edu-img-1 {
        width: 100%;
        height: auto;
    }

    .edu-img-right {
        display: flex;
        gap: 10px;
    }

    .edu-img-2,
    .edu-img-3 {
        width: 50%;
        height: auto;
    }

    .education-btn,
    .rotate-btn {
        width: 60px;
        height: 60px;
        font-size: 10px;
    }

    /* 교육 특징 리스트 */
    .education-right {
        margin-top: 20px;
    }

    .education-feature-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .education-feature-list li {
        padding: 0;
    }

    .feature-title {
        font-size: 13px;
        margin-bottom: 8px;
    }

    .feature-desc {
        font-size: 10px;
        line-height: 1.5;
    }

    /* 교보문고 슬라이드 */
    .education-slide-2-inner {
        flex-direction: column;
        padding: 30px 5%;
    }

    .kyobo-video {
        width: 100%;
        margin-bottom: 20px;
    }

    .kyobo-video-img {
        width: 100%;
    }

    .kyobo-content {
        width: 100%;
        padding: 0;
    }

    .kyobo-title-box {
        opacity: 1 !important;
        transform: none !important;
    }

    .kyobo-title {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .kyobo-subtitle {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .kyobo-desc {
        font-size: 12px;
        line-height: 1.6;
    }

    .kyobo-benefit-list {
        gap: 10px;
    }

    .kyobo-benefit-list li {
        font-size: 11px;
        padding: 8px 12px;
    }

    .education-benefit-title {
        font-size: 11px;
        width: 100%;
        height: 23px;
        margin-bottom: 18px;
    }

    .education-benefit-list {
        flex-wrap: nowrap;
    }

    .education-benefit-list > li {
        width: 25%;
        padding: 0;
        border-right: 1px solid #aaa;
        border-bottom: none;
    }

    .education-benefit-list > li:first-child {
        border-left: 1px solid #aaa;
    }

    .education-icon {
        width: 37px;
        height: 29px;
        margin-bottom: 5px;
    }

    .education-benefit-desc {
        font-size: 9px;
    }

    .education-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 25px 0;
    }

    .education-list-title {
        font-size: 11px;
        margin-bottom: 10px;
    }

    .education-list-desc {
        font-size: 9px;
        line-height: 1.6;
    }

    /* ============================================
       모바일: 평면 섹션 (원본 기반)
       ============================================ */
    .section-unit {
        height: auto !important;
        min-height: auto;
        padding: 0;
    }

    .unit-inner {
        flex-direction: column;
        padding: 50px 5%;
        gap: 0;
    }

    .unit-left {
        width: 100%;
    }

    .unit-title {
        font-size: 42px;
        margin-bottom: 5px;
    }

    .unit-desc {
        font-size: 10px;
        margin-bottom: 30px;
    }

    .unit-link-box {
        width: 72px;
        border-left: 1px solid #919191;
    }

    .unit-link-box > li {
        margin-top: 0;
    }

    .unit-link-box > li + li {
        margin-top: 8px;
    }

    .unit-link-box > li > a {
        padding: 5px 0 5px 10px;
        font-size: 10px;
        border: none;
        border-radius: 0;
    }

    .unit-link-box > li > a::after {
        width: 6px;
        height: 6px;
    }

    .unit-link-box > li > a > span {
        font-size: 8px;
        padding-right: 15px;
    }

    .unit-center {
        position: relative;
        left: auto;
        transform: none !important;
        width: 100%;
        order: 0;
    }

    .unit-slider {
        width: 100%;
        max-width: 254px;
        height: 235px;
        margin: 0 auto 25px;
    }

    .unit-slide-inner {
        padding: 13px 0 21px;
    }

    .unit-con-title {
        font-size: 24px;
    }

    .unit-con-desc {
        font-size: 10px;
        margin-bottom: 10px;
    }

    .unit-con-img {
        width: 100%;
        height: auto;
    }

    .unit-right {
        width: 100%;
        padding-right: 0;
        margin-top: 40px;
    }

    .unit-btn-box {
        gap: 15px;
        justify-content: center;
    }

    .unit-btn-box > li {
        width: 60px;
        height: 60px;
    }

    .unit-btn-box > li > span {
        font-size: 12px;
    }

    .unit-navigation {
        gap: 14px;
        justify-content: center;
        margin-top: 15px;
    }

    .unit-navigation > div {
        font-size: 8px;
    }

    .unit-obj-01,
    .unit-obj-02 {
        display: none;
    }

    /* ============================================
       모바일: 위치 섹션 (원본 기반)
       ============================================ */
    .section-location {
        height: auto !important;
        min-height: auto;
        padding: 50px 5%;
    }

    .location-title {
        font-size: 38px;
        padding-top: 0;
        margin-bottom: 12px;
    }

    .location-desc {
        font-size: 15px;
        margin-bottom: 19px;
        padding: 0;
    }

    .location-inner {
        flex-direction: column;
        gap: 17px;
        padding: 0;
    }

    .location-box {
        width: 100%;
        gap: 13px;
    }

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

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

    .location-address {
        font-size: 9px;
        flex-direction: row;
        align-items: center;
        gap: 0;
    }

    .location-address > span {
        margin-right: 11px;
        padding: 0 10px;
        margin-bottom: 0;
    }

    .location-address > span::before {
        display: block;
        width: 1px;
        height: 8px;
    }

    .location-address > span::after {
        display: block;
        width: 1px;
        height: 8px;
    }

    .location-btn-box {
        gap: 4px;
    }

    .location-btn-box a {
        font-size: 10px;
        padding: 6px 12px;
    }

    /* ============================================
       모바일: 푸터 (원본 기반)
       ============================================ */
    .main-section-footer {
        height: auto !important;
        min-height: auto !important;
    }

    .footer {
        padding: 40px 5% 60px;
        position: relative;
        z-index: 100;
        background: #151515;
    }

    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .footer-logo {
        width: 42px;
        margin-bottom: 20px;
    }

    /* 메인페이지 footer-ul 모바일 스타일 */
    .footer-ul {
        flex-direction: column;
        gap: 6px;
        font-size: 13px;
        margin-bottom: 18px;
    }

    .footer-ul li {
        font-size: 13px;
        line-height: 1.5;
    }

    .footer-ul li:not(:last-child)::after {
        display: none;
    }

    .footer-tel {
        font-size: 20px;
        font-weight: 700;
        color: #fff;
        margin-bottom: 18px;
    }

    .footer-info {
        margin-bottom: 18px;
    }

    .footer-info li {
        font-size: 11px;
        line-height: 1.6;
        padding-left: 14px;
    }

    .footer-info-list {
        flex-direction: column;
        gap: 8px;
        margin-bottom: 15px;
    }

    .footer-info-list li {
        font-size: 13px;
        font-weight: 500;
        line-height: 1.5;
    }

    .footer-info-list li::after {
        display: none;
    }

    .footer-notice {
        margin-bottom: 15px;
    }

    .footer-notice li {
        font-size: 11px;
        line-height: 1.6;
        padding-left: 12px;
    }

    .footer-copy {
        font-size: 12px;
        margin-bottom: 25px;
        margin-top: 20px;
    }

    .footer-link {
        position: static !important;
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap;
        gap: 15px !important;
        font-size: 13px;
        margin-bottom: 20px;
    }

    .footer-link li {
        position: static !important;
    }

    .footer-link li:not(:last-child)::after {
        display: none !important;
    }

    .footer-link a {
        font-size: 13px !important;
        text-decoration: underline;
    }

    .footer-links {
        gap: 15px;
        font-size: 13px;
        margin-bottom: 15px;
        position: static;
    }

    .sigong-logo,
    .footer .sigong {
        max-width: 120px;
        position: static;
        margin-top: 20px;
    }

    /* 시행사/시공사 정보 */
    .footer-bottom {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid rgba(255,255,255,0.1);
    }

    .footer-bottom-item {
        display: flex;
        align-items: center;
        gap: 15px;
        font-size: 13px;
        color: #999;
    }

    .footer-bottom-item strong {
        color: #fff;
        font-weight: 600;
    }

    .footer-tel-info {
        font-size: 18px;
        font-weight: 700;
        color: #fff;
        margin-top: 15px;
    }

    .top-btn {
        width: 42px;
        height: 42px;
        font-size: 10px;
    }

    /* ============================================
       모바일: 서브페이지 스타일 (원본 기반)
       ============================================ */
    .sub-title-section {
        height: 150px;
        margin-top: 50px;
    }

    .sub-title-content h2 {
        font-size: 24px;
        margin-bottom: 8px;
    }

    .sub-title-content p {
        font-size: 12px;
    }

    .sub-nav {
        top: 50px;
    }

    .sub-nav-inner {
        padding: 0 3%;
    }

    .sub-nav-home {
        width: 40px;
        height: 40px;
    }

    .sub-nav-home::before {
        font-size: 16px;
    }

    .sub-nav-list {
        height: 40px;
    }

    .sub-nav-list li a {
        padding: 0 15px;
        font-size: 12px;
    }

    .sub-content {
        padding: 30px 5%;
    }

    .sub-content-title {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .sub-content-desc {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .sub-content-img {
        max-width: 100%;
    }

    /* Overview Info */
    .overview-info {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 30px;
    }

    .overview-info-item {
        padding: 20px;
    }

    .overview-info-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
        margin-right: 15px;
    }

    .overview-info-content h4 {
        font-size: 16px;
        margin-bottom: 5px;
    }

    .overview-info-content p {
        font-size: 13px;
    }

    .overview-table th,
    .overview-table td {
        padding: 12px;
        font-size: 12px;
    }

    .overview-table th {
        width: 100px;
    }

    /* Sub Gallery */
    .sub-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        margin-bottom: 30px;
    }

    .sub-gallery-item.large {
        grid-column: span 2;
    }

    /* Swiper Slider for Sub Pages */
    .overview-slide {
        margin-bottom: 30px;
    }

    .overview-img .swiper-main {
        height: 250px;
        margin-bottom: 5px;
    }

    .overview-img .swiper-thum {
        height: 60px;
    }

    .overview-img .swiper-thum .swiper-slide {
        height: 60px;
    }

    /* Page Info */
    .page-info {
        padding: 15px 15px 15px 60px;
        min-height: 80px;
        font-size: 10px;
        margin-top: 2em;
    }

    .page-info::after {
        width: 40px;
        height: 40px;
        font-size: 20px;
        left: 12px;
    }

    .page-info > li {
        padding-left: 10px;
        line-height: 1.5;
    }

    /* Unit Tabs */
    .unit-tabs {
        gap: 10px;
        margin-bottom: 30px;
        flex-wrap: wrap;
    }

    .unit-tab-btn {
        padding: 10px 20px;
        font-size: 13px;
    }

    .unit-plan-wrap {
        flex-direction: column;
        gap: 30px;
    }

    .unit-plan-info {
        width: 100%;
    }

    .unit-plan-title {
        font-size: 24px;
        margin-bottom: 5px;
    }

    .unit-plan-count {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .unit-spec-list li {
        padding: 10px 0;
        font-size: 13px;
    }

    /* Schedule Detail Table */
    .schedule-detail-table th,
    .schedule-detail-table td {
        padding: 12px 8px;
        font-size: 11px;
    }

    /* Location Map Section */
    .location-map-section {
        margin-bottom: 30px;
    }

    .location-map-title {
        font-size: 18px;
        margin-bottom: 15px;
        padding-left: 10px;
    }

    /* Customer Form */
    .customer-form {
        padding: 25px 15px;
    }

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

    .form-group label {
        font-size: 13px;
        margin-bottom: 5px;
    }

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

    .form-row {
        flex-direction: column;
        gap: 15px;
    }

    .form-submit-btn {
        padding: 12px 30px;
        font-size: 14px;
    }

    /* Sub Page Footer Adjustment */
    .sub-page .footer {
        padding: 30px 5%;
    }

    /* ============================================
       모바일: 애니메이션 요소 강제 표시
       (fullpage.js 비활성화로 .active 클래스 미적용 대응)
       롤백: git checkout d1b2ad7 -- assets/css/style.css
       ============================================ */

    /* 비주얼/인트로 섹션 강제 표시 */
    .intro-bg-img,
    .intro-bg-img img,
    .visual-bg-img,
    .visual-slider,
    .visual-slider img,
    .intro-title-box,
    .intro-title-1,
    .intro-title-2,
    .intro-title-3,
    .visual-controls,
    .visual-btn-box,
    .visual-badge {
        opacity: 1 !important;
        transform: none !important;
        visibility: visible !important;
    }

    /* 스케줄 섹션 강제 표시 */
    .schedule-bg,
    .schedule-bg img,
    .schedule-inner,
    .schedule-title,
    .schedule-title .char,
    .schedule-desc,
    .schedule-table,
    .schedule-table .day,
    .schedule-table .con,
    .schedule-table .point,
    .schedule-rotate-btn,
    .schedule-btn-box {
        opacity: 1 !important;
        transform: none !important;
        visibility: visible !important;
    }

    /* 교육 섹션 강제 표시 */
    .education-bg,
    .education-bg img,
    .education-inner,
    .education-title,
    .education-subtitle,
    .education-logo,
    .education-logo-desc,
    .education-medal-box,
    .medal-img,
    .medal-desc,
    .benefit-box,
    .benefit-title,
    .benefit-list,
    .benefit-icon,
    .benefit-desc,
    .education-img-box,
    .edu-img-1,
    .edu-img-2,
    .edu-img-3,
    .education-btn,
    .education-feature-list,
    .feature-title,
    .feature-desc,
    .education-center,
    .education-list,
    .education-list-title,
    .education-list-desc,
    .kyobo-box,
    .kyobo-title,
    .kyobo-logo,
    .kyobo-img,
    .kyobo-sub-title {
        opacity: 1 !important;
        transform: none !important;
        visibility: visible !important;
    }

    /* 평면 섹션 강제 표시 */
    .unit-bg,
    .unit-bg-img,
    .unit-inner,
    .unit-title,
    .unit-desc,
    .unit-link-box,
    .unit-center,
    .unit-slider,
    .unit-slide-inner,
    .unit-con-title,
    .unit-con-desc,
    .unit-con-img,
    .unit-con-img img,
    .unit-btn-box,
    .unit-btn-box > li,
    .unit-obj,
    .unit-obj-01,
    .unit-obj-02 {
        opacity: 1 !important;
        transform: none !important;
        visibility: visible !important;
    }

    /* 브랜드 섹션 강제 표시 */
    .brand-title,
    .brand-title .title-line-1,
    .brand-title .title-line-2,
    .brand-obj,
    .brand-desc,
    .brand-main-img,
    .brand-circle-container,
    .brand-item {
        opacity: 1 !important;
        transform: none !important;
        visibility: visible !important;
    }

    /* 위치 섹션 강제 표시 */
    .location-bg,
    .location-bg img,
    .location-title,
    .location-title .char,
    .location-desc,
    .location-inner,
    .location-box,
    .location-map,
    .location-map img,
    .location-address,
    .location-btn-box {
        opacity: 1 !important;
        transform: none !important;
        visibility: visible !important;
    }

    /* 푸터 강제 표시 */
    .footer,
    .footer-inner,
    .footer-logo,
    .footer-info-list,
    .footer-notice,
    .footer-copy,
    .sigong-logo {
        opacity: 1 !important;
        transform: none !important;
        visibility: visible !important;
    }

    /* 공통 애니메이션 요소 강제 표시 */
    .section-title .char,
    [data-aos],
    [data-aos][data-aos][data-aos-duration] {
        opacity: 1 !important;
        transform: none !important;
        visibility: visible !important;
        transition: none !important;
    }
}

/* ============================================
   17. Print Styles
   ============================================ */
@media print {
    .header,
    .scroll-indicator,
    .quick-menu,
    .top-btn,
    .intro-skip-btn {
        display: none !important;
    }

    .section {
        height: auto !important;
        page-break-inside: avoid;
    }

    body {
        background: white;
        color: black;
    }
}

/* ============================================
   18. Sub Page Styles
   ============================================ */

/* Sub Page Header - Always visible */
.sub-page .header {
    background: var(--color-white);
    border-color: rgba(0,0,0,0.1);
}

.sub-page .header .logo-text {
    color: var(--color-primary);
}

/* Sub Title Section */
.sub-title-section {
    position: relative;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 134px;
    overflow: hidden;
}

.sub-title-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

.sub-title-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.sub-title-bg::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.5);
}

.sub-title-content {
    text-align: center;
    color: var(--color-white);
    z-index: 1;
}

.sub-title-content h2 {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 15px;
}

.sub-title-content p {
    font-size: 18px;
    font-weight: 300;
    letter-spacing: -0.02em;
}

/* Sub Navigation */
.sub-nav {
    background: var(--color-white);
    border-bottom: 1px solid var(--color-gray-200);
    position: sticky;
    top: 134px;
    z-index: 100;
}

.sub-nav-inner {
    display: flex;
    align-items: center;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 40px;
}

.sub-nav-home {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-right: 1px solid var(--color-gray-200);
}

.sub-nav-home::before {
    content: '\2302';
    font-size: 20px;
    color: var(--color-gray-500);
}

.sub-nav-list {
    display: flex;
    height: 50px;
}

.sub-nav-list li {
    position: relative;
}

.sub-nav-list li a {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 30px;
    font-size: 15px;
    font-weight: 500;
    color: var(--color-gray-600);
    border-bottom: 2px solid transparent;
    transition: color var(--transition-fast), border-color var(--transition-fast);
}

.sub-nav-list li a:hover,
.sub-nav-list li a.active {
    color: var(--color-primary);
    font-weight: 700;
    border-color: var(--color-primary);
}

/* Sub Nav hidden state when header is hidden */
.sub-nav.header-hidden {
    top: 0;
}

/* Sub Content */
.sub-content {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 80px 40px;
}

.sub-content-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 20px;
}

.sub-content-desc {
    font-size: 18px;
    color: var(--color-gray-600);
    text-align: center;
    margin-bottom: 60px;
}

/* Overview Section */
.overview-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}

.overview-info-item {
    display: flex;
    align-items: flex-start;
    padding: 30px;
    background: var(--color-gray-100);
    border-radius: var(--radius-lg);
}

.overview-info-icon {
    width: 60px;
    height: 60px;
    background: var(--color-primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 24px;
    margin-right: 20px;
    flex-shrink: 0;
}

.overview-info-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.overview-info-content p {
    font-size: 16px;
    color: var(--color-gray-600);
    line-height: 1.6;
}

.overview-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 60px;
}

.overview-table th,
.overview-table td {
    padding: 20px;
    border: 1px solid var(--color-gray-200);
    text-align: left;
}

.overview-table th {
    background: var(--color-primary);
    color: var(--color-white);
    font-weight: 600;
    width: 200px;
}

.overview-table td {
    background: var(--color-white);
}

/* Image Gallery */
.sub-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.sub-gallery-item {
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.sub-gallery-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.sub-gallery-item:hover img {
    transform: scale(1.05);
}

.sub-gallery-item.large {
    grid-column: span 2;
}

.sub-gallery-item.large img {
    height: auto;
}

/* Sub Content Image - 원본 비율 유지 */
.sub-content-img {
    display: block;
    max-width: 1200px;
    width: 100%;
    height: auto;
    margin: 0 auto;
}

/* Swiper Slider for Sub Pages */
.overview-slide {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 60px;
    overflow: hidden;
}

.overview-img .swiper-slide {
    width: 100%;
    text-align: center;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.overview-img .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overview-img .swiper-main {
    width: 100%;
    height: 750px;
    overflow: hidden;
    margin-bottom: 8px;
}

.overview-img .swiper-main .swiper-slide {
    overflow: hidden;
}

.overview-img .swiper-thum {
    width: 100%;
    height: 120px;
    box-sizing: border-box;
    padding: 0;
}

.overview-img .swiper-thum .swiper-slide {
    width: 20%;
    height: 120px;
    opacity: 0.4;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.overview-img .swiper-thum .swiper-slide-thumb-active {
    opacity: 1 !important;
}

/* Page Info (안내 문구) */
.page-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 1200px;
    margin: 4em auto 0;
    background: #f7f7f7;
    border: 1px solid #e5e5e5;
    padding: 25px 60px 25px 120px;
    min-height: 120px;
    font-size: 13px;
    letter-spacing: -0.04em;
    color: #777;
    position: relative;
    list-style: none;
}

.page-info::after {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 36px;
    font-weight: 700;
    content: '!';
    position: absolute;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #ddd;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
}

.page-info > li {
    position: relative;
    padding-left: 14px;
}

.page-info > li + li {
    margin-top: 3px;
}

.page-info > li::before {
    content: '※ ';
    position: absolute;
    left: 0;
    font-size: 11px;
    line-height: 18px;
}

/* Unit Type Tabs */
.unit-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
}

.unit-tab-btn {
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 600;
    color: var(--color-gray-500);
    background: var(--color-gray-100);
    border: 2px solid transparent;
    border-radius: 100px;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.unit-tab-btn.active,
.unit-tab-btn:hover {
    color: var(--color-primary);
    background: var(--color-white);
    border-color: var(--color-primary);
}

.unit-tab-content {
    display: none;
}

.unit-tab-content.active {
    display: block;
}

.unit-plan-wrap {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.unit-plan-img {
    flex: 1;
    text-align: center;
}

.unit-plan-img img {
    max-width: 100%;
    height: auto;
}

.unit-plan-info {
    width: 400px;
    flex-shrink: 0;
}

.unit-plan-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.unit-plan-count {
    font-size: 18px;
    color: var(--color-secondary);
    font-weight: 600;
    margin-bottom: 30px;
}

.unit-spec-list {
    margin-bottom: 30px;
}

.unit-spec-list li {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid var(--color-gray-200);
}

.unit-spec-list li span:first-child {
    color: var(--color-gray-500);
}

.unit-spec-list li span:last-child {
    font-weight: 600;
    color: var(--color-gray-800);
}

/* Schedule Table */
.schedule-detail-table {
    width: 100%;
    border-collapse: collapse;
}

.schedule-detail-table th,
.schedule-detail-table td {
    padding: 25px 20px;
    text-align: center;
    border: 1px solid var(--color-gray-200);
}

.schedule-detail-table thead th {
    background: var(--color-primary);
    color: var(--color-white);
    font-weight: 600;
}

.schedule-detail-table tbody tr:nth-child(even) {
    background: var(--color-gray-100);
}

.schedule-detail-table .highlight {
    background: rgba(205, 170, 126, 0.2);
    font-weight: 700;
}

/* Location Map */
.location-map-section {
    margin-bottom: 60px;
}

.location-map-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 20px;
    padding-left: 15px;
    border-left: 4px solid var(--color-secondary);
}

.location-map-wrap {
    display: flex;
    gap: 40px;
}

.location-map-img {
    flex: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

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

.location-map-info {
    width: 400px;
    flex-shrink: 0;
}

.location-address-box {
    background: var(--color-gray-100);
    padding: 30px;
    border-radius: var(--radius-lg);
    margin-bottom: 20px;
}

.location-address-box h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.location-address-box p {
    font-size: 16px;
    color: var(--color-gray-600);
    line-height: 1.6;
}

.location-btn-wrap {
    display: flex;
    gap: 10px;
}

.location-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: opacity var(--transition-fast);
}

.location-btn:hover {
    opacity: 0.8;
}

.location-btn.naver {
    background: #03C75A;
    color: var(--color-white);
}

.location-btn.kakao {
    background: #FEE500;
    color: #3C1E1E;
}

/* Customer Form */
.customer-form-section {
    max-width: 800px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-gray-700);
    margin-bottom: 10px;
}

.form-group label .required {
    color: #E53935;
    margin-left: 4px;
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    font-size: 16px;
    border: 1px solid var(--color-gray-200);
    border-radius: var(--radius-md);
    transition: border-color var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--color-primary);
}

.form-control::placeholder {
    color: var(--color-gray-300);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
}

.form-checkbox label {
    margin-bottom: 0;
    font-weight: 400;
    line-height: 1.5;
}

.form-checkbox a {
    color: var(--color-primary);
    text-decoration: underline;
}

.form-select {
    appearance: none;
    background: var(--color-white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 8L1 3h10z'/%3E%3C/svg%3E") no-repeat right 20px center;
    padding-right: 50px;
}

.form-submit-btn {
    width: 100%;
    padding: 20px;
    font-size: 18px;
    font-weight: 700;
    color: var(--color-white);
    background: var(--color-primary);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: background var(--transition-fast);
}

.form-submit-btn:hover {
    background: var(--color-primary-dark);
}

/* Sub Page Footer */
.sub-page .footer {
    margin-top: 0;
}

/* Sub Page Responsive */
@media screen and (max-width: 1200px) {
    .sub-nav {
        top: 60px;
    }

    .sub-title-section {
        margin-top: 60px;
        height: 200px;
    }

    .sub-title-content h2 {
        font-size: 32px;
    }

    /* Swiper Responsive */
    .overview-img {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        height: 100%;
    }

    .overview-img .swiper-main {
        height: 400px;
    }

    .overview-img .swiper-thum {
        margin-bottom: 0;
    }

    .overview-img .swiper-thum .swiper-slide {
        height: 80px;
    }
}

@media screen and (max-width: 768px) {
    .sub-title-section {
        height: 180px;
    }

    .sub-title-content h2 {
        font-size: 24px;
    }

    .sub-title-content p {
        font-size: 14px;
    }

    .sub-nav-inner {
        padding: 0 15px;
    }

    .sub-nav-list li a {
        padding: 0 15px;
        font-size: 13px;
    }

    .sub-content {
        padding: 40px 20px;
    }

    .sub-content-title {
        font-size: 24px;
    }

    .overview-info {
        grid-template-columns: 1fr;
    }

    .overview-table th {
        width: 100px;
    }

    .sub-gallery {
        grid-template-columns: 1fr;
    }

    .sub-gallery-item.large {
        grid-column: span 1;
    }

    .sub-gallery-item.large img {
        height: auto;
    }

    /* Swiper Mobile */
    .overview-img .swiper-main {
        height: 300px;
    }

    .overview-img .swiper-thum .swiper-slide {
        height: 60px;
    }

    .unit-tabs {
        flex-wrap: wrap;
    }

    .unit-tab-btn {
        padding: 10px 25px;
        font-size: 14px;
    }

    .unit-plan-wrap {
        flex-direction: column;
    }

    .unit-plan-info {
        width: 100%;
    }

    .location-map-wrap {
        flex-direction: column;
    }

    .location-map-info {
        width: 100%;
    }
}
