/* ========================================
   A&J E-EDU Landing Page - PC Version
   Professional & Conversion-Optimized
   ======================================== */

/* CSS Variables - Modern & Professional Color System */
:root {
    /* Primary - 세련된 딥 코랄/테라코타 */
    --primary: #D4654A;
    --primary-dark: #B8533A;
    --primary-light: #E8846E;

    /* Secondary - 모던 네이비/슬레이트 */
    --secondary: #374259;
    --secondary-light: #4A5874;

    /* Accent - 소프트 틸 */
    --accent: #2A9D8F;
    --accent-dark: #238B7E;

    /* Status - 절제된 톤 */
    --warning: #E9C46A;
    --danger: #C75B5B;
    --success: #2A9D8F;

    /* Text Colors */
    --text-dark: #1E2A3B;
    --text-medium: #4A5568;
    --text-light: #718096;
    --text-white: #FFFFFF;

    /* Background Colors */
    --bg-white: #FFFFFF;
    --bg-light: #F7F8FA;
    --bg-cream: #FAFAF8;
    --bg-dark: #1E2A3B;

    /* Modern Gradients - 미묘하고 세련된 */
    --bg-gradient: linear-gradient(135deg, #D4654A 0%, #E8846E 100%);
    --bg-gradient-soft: linear-gradient(135deg, #F7F8FA 0%, #EEF0F5 100%);
    --bg-gradient-dark: linear-gradient(135deg, #374259 0%, #1E2A3B 100%);
    --bg-gradient-premium: linear-gradient(135deg, #374259 0%, #4A5874 100%);

    /* Shadows - 더 부드럽게 */
    --shadow-sm: 0 2px 8px rgba(30, 42, 59, 0.06);
    --shadow-md: 0 4px 20px rgba(30, 42, 59, 0.08);
    --shadow-lg: 0 8px 40px rgba(30, 42, 59, 0.12);
    --shadow-xl: 0 16px 60px rgba(30, 42, 59, 0.15);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;

    /* Transitions */
    --transition: all 0.3s ease;
    --transition-fast: all 0.15s ease;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
    overflow-x: hidden;
    min-width: 1024px;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
}

.text-gradient {
    background: var(--bg-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
}

.btn-primary {
    background: var(--bg-gradient);
    color: var(--text-white);
    box-shadow: 0 4px 15px rgba(212, 101, 74, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 101, 74, 0.4);
}

.btn-secondary {
    background: var(--secondary);
    color: var(--text-white);
}

.btn-secondary:hover {
    background: var(--secondary-light);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--text-white);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--text-white);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 18px;
}

.btn-xl {
    padding: 20px 40px;
    font-size: 18px;
    flex-direction: column;
    gap: 4px;
}

.btn-xl .btn-sub {
    font-size: 12px;
    font-weight: 400;
    opacity: 0.9;
}

.btn-kakao {
    background: #FEE500;
    color: #3C1E1E;
}

.btn-kakao:hover {
    background: #FFD700;
    transform: translateY(-2px);
}

.btn-phone {
    background: var(--accent);
    color: var(--text-white);
}

.btn-phone:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
}

/* Animations */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes pulseDot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.pulse-animation {
    animation: pulse 2s infinite;
}

/* ========================================
   Urgency Banner - Modern & Professional
   ======================================== */
.urgency-banner {
    background: var(--bg-gradient-dark);
    color: var(--text-white);
    padding: 12px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background: var(--text-white);
    border-radius: 50%;
    animation: pulseDot 1.5s infinite;
}

.banner-text {
    font-size: 15px;
}

.banner-text .highlight {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 4px;
    font-weight: 700;
}

.countdown-text {
    font-weight: 600;
}

.banner-cta {
    background: var(--primary);
    color: var(--text-white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
}

.banner-cta:hover {
    background: var(--primary-light);
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(212, 101, 74, 0.3);
}

/* ========================================
   Navigation
   ======================================== */
.navbar {
    position: fixed;
    top: 44px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.logo-brand {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.3px;
}

.logo-divider {
    width: 1px;
    height: 18px;
    background: #d1d5db;
    flex-shrink: 0;
}

.logo-company {
    font-size: 12px;
    font-weight: 700;
    color: var(--secondary);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Active Navigation Link */
.nav-links a.nav-link.active {
    color: var(--primary);
    font-weight: 600;
}

.nav-links a.nav-link.active::after {
    width: 100%;
}

.nav-cta {
    background: var(--bg-gradient) !important;
    color: var(--text-white) !important;
    padding: 12px 28px !important;
    border-radius: var(--radius-md);
}

.nav-cta::after {
    display: none !important;
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 160px 0 100px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-gradient-dark);
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-placeholder {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: rgba(255, 255, 255, 0.3);
}

.hero-placeholder i {
    font-size: 100px;
    margin-bottom: 20px;
}

.hero-placeholder p {
    font-size: 18px;
}

.hero-placeholder small {
    font-size: 14px;
    opacity: 0.7;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(46, 64, 87, 0.85) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--text-white);
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 24px;
    border-radius: 30px;
    margin-bottom: 28px;
    font-size: 15px;
    backdrop-filter: blur(5px);
}

.badge-icon {
    color: var(--warning);
}

.hero-title {
    font-size: 64px;
    font-weight: 900;
    margin-bottom: 28px;
    line-height: 1.2;
}

.title-accent {
    color: var(--primary-light);
}

.hero-subtitle {
    font-size: 22px;
    margin-bottom: 36px;
    opacity: 0.95;
    line-height: 1.8;
}

.guarantee-text {
    display: inline-block;
    background: rgba(0, 212, 170, 0.2);
    padding: 10px 20px;
    border-radius: 8px;
    margin-top: 10px;
    font-size: 17px;
    border: 1px solid rgba(0, 212, 170, 0.3);
}

.guarantee-text i {
    color: var(--accent);
    margin-right: 10px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 48px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 56px;
    font-weight: 900;
    color: var(--primary-light);
}

.stat-suffix {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-light);
}

.stat-label {
    display: block;
    font-size: 15px;
    opacity: 0.8;
    margin-top: 6px;
}

.hero-cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 28px;
}

.hero-note {
    font-size: 15px;
    opacity: 0.85;
}

.hero-note i {
    color: var(--warning);
    margin-right: 8px;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-white);
    opacity: 0.6;
    text-align: center;
    animation: float 2s infinite;
}

.scroll-indicator span {
    display: block;
    font-size: 12px;
    margin-bottom: 8px;
}

/* ========================================
   Promo Section
   ======================================== */
.promo-section {
    padding: 70px 0;
    background: var(--bg-light);
    margin-top: -50px;
    position: relative;
    z-index: 2;
}

.promo-box {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--primary);
}

.promo-header {
    text-align: center;
    margin-bottom: 36px;
}

.promo-badge {
    display: inline-block;
    background: var(--danger);
    color: var(--text-white);
    padding: 6px 16px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 14px;
    letter-spacing: 1px;
}

.promo-header h2 {
    font-size: 32px;
    color: var(--text-dark);
}

.promo-header h2 i {
    color: var(--primary);
    margin-right: 10px;
}

.promo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.promo-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 24px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.promo-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    background: var(--bg-white);
}

.promo-item i {
    font-size: 36px;
    color: var(--primary);
}

.promo-item strong {
    display: block;
    font-size: 17px;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.promo-item span {
    font-size: 14px;
    color: var(--text-light);
}

/* ========================================
   Section Styles (Common)
   ======================================== */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-badge {
    display: inline-block;
    background: var(--bg-gradient);
    color: var(--text-white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

.section-title {
    font-size: 44px;
    color: var(--text-dark);
    margin-bottom: 18px;
}

.section-desc {
    font-size: 19px;
    color: var(--text-medium);
}

/* ========================================
   Comparison Section
   ======================================== */
.comparison-section {
    background: var(--bg-light);
}

.comparison-table {
    display: flex;
    align-items: stretch;
    gap: 0;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.comparison-col {
    flex: 1;
    padding: 48px;
}

.comparison-bad {
    background: #FFF5F5;
}

.comparison-good {
    background: linear-gradient(135deg, #F0FFF9 0%, #E8FFF6 100%);
}

.comparison-header {
    text-align: center;
    margin-bottom: 36px;
}

.comparison-header i {
    font-size: 56px;
    margin-bottom: 14px;
    display: block;
}

.comparison-bad .comparison-header i {
    color: var(--danger);
}

.comparison-good .comparison-header i {
    color: var(--success);
}

.comparison-header h3 {
    font-size: 26px;
    color: var(--text-dark);
}

.comparison-list {
    list-style: none;
}

.comparison-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 17px;
}

.comparison-list li:last-child {
    border-bottom: none;
}

.comparison-list li i {
    margin-top: 4px;
}

.comparison-bad .comparison-list li i {
    color: var(--danger);
    opacity: 0.6;
}

.comparison-good .comparison-list li i {
    color: var(--success);
}

.comparison-vs {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    background: var(--secondary);
    color: var(--text-white);
    font-size: 22px;
    font-weight: 900;
}

/* ========================================
   Progress Section
   ======================================== */
.progress-section {
    background: var(--bg-white);
}

.progress-chart {
    max-width: 900px;
    margin: 0 auto;
}

.chart-item {
    display: grid;
    grid-template-columns: 100px 1fr 240px;
    align-items: center;
    gap: 28px;
    padding: 24px;
    border-radius: var(--radius-md);
    margin-bottom: 14px;
    transition: var(--transition);
}

.chart-item:hover {
    background: var(--bg-light);
}

.chart-item.highlight {
    background: linear-gradient(135deg, #FFF5F0 0%, #FFF0E8 100%);
    border: 2px solid var(--primary);
    position: relative;
}

.chart-week {
    font-weight: 700;
    font-size: 17px;
    color: var(--text-dark);
}

.chart-bar-container {
    height: 28px;
    background: #E8E8F0;
    border-radius: 14px;
    overflow: hidden;
}

.chart-bar {
    height: 100%;
    background: var(--bg-gradient);
    border-radius: 14px;
    width: 0;
    transition: width 1.5s ease;
}

.chart-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.chart-level {
    font-weight: 700;
    font-size: 17px;
    color: var(--text-dark);
}

.level-up {
    color: var(--success);
    font-size: 15px;
}

.chart-desc {
    font-size: 14px;
    color: var(--text-light);
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 24px;
    background: var(--primary);
    color: var(--text-white);
    padding: 6px 16px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
}

/* ========================================
   Guarantee Section
   ======================================== */
.guarantee-section {
    background: var(--bg-gradient-dark);
    color: var(--text-white);
}

.guarantee-section .section-badge {
    background: rgba(255, 255, 255, 0.2);
}

.guarantee-section .section-title {
    color: var(--text-white);
}

.guarantee-section .text-gradient {
    background: linear-gradient(135deg, #FFD93D 0%, #FF6B35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.guarantee-section .section-desc {
    color: rgba(255, 255, 255, 0.8);
}

.guarantee-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.guarantee-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 48px 36px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: var(--transition);
    position: relative;
}

.guarantee-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.guarantee-card.featured {
    background: var(--text-white);
    color: var(--text-dark);
    transform: scale(1.05);
}

.guarantee-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.featured-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--text-white);
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
}

.guarantee-icon {
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
}

.guarantee-card.featured .guarantee-icon {
    background: var(--bg-light);
}

.guarantee-icon i {
    font-size: 40px;
    color: var(--primary-light);
}

.guarantee-card h3 {
    font-size: 26px;
    margin-bottom: 18px;
}

.guarantee-highlight {
    font-size: 19px;
    margin-bottom: 14px;
    line-height: 1.5;
}

.guarantee-highlight strong {
    color: var(--primary-light);
    font-size: 24px;
}

.guarantee-card.featured .guarantee-highlight strong {
    color: var(--primary);
}

.guarantee-desc {
    font-size: 15px;
    opacity: 0.8;
}

/* ========================================
   Trust Section
   ======================================== */
.trust-section {
    padding: 70px 0;
    background: var(--bg-light);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
}

.trust-item {
    text-align: center;
    padding: 40px;
    background: var(--bg-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.trust-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.trust-icon {
    width: 70px;
    height: 70px;
    background: var(--bg-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.trust-icon i {
    font-size: 28px;
    color: var(--text-white);
}

.trust-item h4 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.trust-item p {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.7;
}

/* ========================================
   Campus Section
   ======================================== */
.campus-section {
    background: var(--bg-white);
}

.campus-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.campus-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
}

.campus-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.campus-card.featured {
    border: 3px solid var(--primary);
}

.campus-popular {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--primary);
    color: var(--text-white);
    padding: 10px 50px;
    font-size: 13px;
    font-weight: 700;
    transform: rotate(45deg);
    z-index: 2;
}

.campus-image {
    position: relative;
    height: 280px;
    background: var(--bg-light);
}

.image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    background: linear-gradient(135deg, #E8E8F0 0%, #D8D8E4 100%);
}

.image-placeholder.eco {
    background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%);
    color: #4CAF50;
}

.image-placeholder i {
    font-size: 56px;
    margin-bottom: 14px;
}

.image-placeholder p {
    font-size: 15px;
    text-align: center;
}

.image-placeholder small {
    font-size: 12px;
    opacity: 0.7;
}

.campus-badge {
    position: absolute;
    bottom: 18px;
    left: 18px;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
}

.campus-badge.main {
    background: var(--secondary);
    color: var(--text-white);
}

.campus-badge.eco {
    background: var(--accent);
    color: var(--text-white);
}

.campus-content {
    padding: 36px;
}

.campus-content h3 {
    font-size: 26px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.campus-concept {
    color: var(--primary);
    font-weight: 600;
    font-size: 17px;
    margin-bottom: 24px;
}

.campus-features {
    list-style: none;
    margin-bottom: 24px;
}

.campus-features li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    font-size: 16px;
}

.campus-features li:last-child {
    border-bottom: none;
}

.campus-features li i {
    color: var(--primary);
    width: 22px;
}

.campus-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.campus-amenities span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-light);
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 14px;
}

.campus-amenities span i {
    color: var(--accent);
}

.campus-recommend {
    background: var(--bg-light);
    padding: 18px;
    border-radius: var(--radius-md);
    margin-bottom: 24px;
}

.recommend-label {
    display: block;
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 6px;
}

.campus-recommend p {
    font-weight: 600;
    font-size: 16px;
    color: var(--text-dark);
}

/* ========================================
   Programs Section
   ======================================== */
.programs-section {
    background: var(--bg-light);
}

.program-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
}

.tab-btn {
    padding: 16px 36px;
    background: var(--bg-white);
    border: 2px solid #E0E0E8;
    border-radius: var(--radius-md);
    font-size: 17px;
    font-weight: 600;
    color: var(--text-medium);
    cursor: pointer;
    transition: var(--transition);
}

.tab-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.tab-btn.active {
    background: var(--bg-gradient);
    border-color: var(--primary);
    color: var(--text-white);
}

.program-content {
    display: none;
}

.program-content.active {
    display: block;
}

.program-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.program-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.program-card.featured {
    border: 2px solid var(--primary);
}

.program-badge {
    position: absolute;
    top: -12px;
    right: 24px;
    background: var(--secondary);
    color: var(--text-white);
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
}

.program-badge.hot {
    background: var(--danger);
}

.program-icon {
    width: 72px;
    height: 72px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.program-icon i {
    font-size: 32px;
    color: var(--primary);
}

.program-card h4 {
    font-size: 22px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.program-target {
    color: var(--text-light);
    font-size: 15px;
    margin-bottom: 18px;
}

.program-detail {
    background: var(--bg-light);
    padding: 12px;
    border-radius: var(--radius-sm);
    margin-bottom: 18px;
}

.program-detail span {
    font-size: 15px;
    color: var(--text-medium);
}

.program-detail span i {
    color: var(--primary);
    margin-right: 8px;
}

.program-result {
    color: var(--success);
    font-weight: 600;
    font-size: 15px;
}

.program-result i {
    margin-right: 8px;
}

/* Special Programs */
.special-program-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
}

.special-program-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-md);
    position: relative;
}

.special-program-card.premium {
    border: 2px solid var(--warning);
}

.premium-badge {
    position: absolute;
    top: -14px;
    left: 36px;
    background: linear-gradient(135deg, #FFD93D 0%, #FF9500 100%);
    color: var(--text-dark);
    padding: 8px 20px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
}

.special-icon {
    width: 70px;
    height: 70px;
    background: var(--bg-gradient);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.special-icon i {
    font-size: 32px;
    color: var(--text-white);
}

.special-program-card h4 {
    font-size: 26px;
    color: var(--text-dark);
    margin-bottom: 14px;
}

.partner-info {
    color: var(--primary);
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 20px;
}

.special-program-card ul {
    list-style: none;
    margin-bottom: 28px;
}

.special-program-card ul li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    color: var(--text-medium);
    font-size: 16px;
}

.special-program-card ul li i {
    color: var(--success);
}

/* ========================================
   Satisfaction Section
   ======================================== */
.satisfaction-section {
    background: var(--bg-white);
    padding: 80px 0;
}

.satisfaction-grid {
    max-width: 800px;
    margin: 0 auto;
}

.satisfaction-item {
    display: grid;
    grid-template-columns: 140px 1fr 80px;
    align-items: center;
    gap: 24px;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.satisfaction-label {
    font-weight: 600;
    font-size: 16px;
    color: var(--text-dark);
}

.satisfaction-bar-container {
    height: 16px;
    background: #E8E8F0;
    border-radius: 8px;
    overflow: hidden;
}

.satisfaction-bar {
    height: 100%;
    background: var(--bg-gradient);
    border-radius: 8px;
    width: 0;
    transition: width 1.5s ease;
}

.satisfaction-percent {
    font-weight: 700;
    font-size: 18px;
    color: var(--primary);
}

/* ========================================
   Reviews Section
   ======================================== */
.reviews-section {
    background: var(--bg-light);
}

.reviews-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.review-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.review-header {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.review-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
}

.avatar-placeholder {
    width: 100%;
    height: 100%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 22px;
}

.avatar-placeholder.parent {
    background: #E8F5E9;
    color: #4CAF50;
}

.review-info h4 {
    font-size: 17px;
    color: var(--text-dark);
}

.review-info p {
    font-size: 14px;
    color: var(--text-light);
}

.review-result {
    margin-left: auto;
}

.result-badge {
    display: inline-block;
    background: var(--bg-light);
    color: var(--primary);
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
}

.result-badge.success {
    background: #E8F5E9;
    color: #4CAF50;
}

.review-content {
    margin-bottom: 20px;
}

.review-content p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.8;
}

.review-stars {
    color: var(--warning);
}

.review-stars i {
    margin-right: 4px;
    font-size: 18px;
}

/* ========================================
   Gallery Section
   ======================================== */
.gallery-section {
    background: var(--bg-white);
}

/* 갤러리 탭 */
.gallery-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
}

.gallery-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--bg-light);
    border: 2px solid transparent;
    border-radius: var(--radius-xl);
    font-size: 16px;
    font-weight: 600;
    color: var(--text-medium);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.gallery-tab:hover {
    background: var(--bg-white);
    border-color: var(--primary-light);
    color: var(--primary);
}

.gallery-tab.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--text-white);
}

.gallery-tab i {
    font-size: 18px;
}

.tab-badge {
    background: var(--accent);
    color: var(--text-white);
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 10px;
    text-transform: uppercase;
}

.gallery-tab.active .tab-badge {
    background: var(--text-white);
    color: var(--primary);
}

/* 갤러리 콘텐츠 */
.gallery-content {
    display: none;
    animation: fadeIn 0.4s ease;
}

.gallery-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 200px);
    gap: 20px;
}

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
}

.gallery-item.large {
    grid-column: span 2;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #E8E8F0 0%, #D8D8E4 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: var(--transition);
}

.gallery-item:hover .gallery-placeholder {
    background: linear-gradient(135deg, #D8D8E4 0%, #C8C8D4 100%);
}

.gallery-placeholder i {
    font-size: 42px;
    margin-bottom: 10px;
}

.gallery-placeholder p {
    font-size: 14px;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: white;
    font-size: 16px;
    font-weight: 600;
}

/* ========================================
   CTA Section
   ======================================== */
.cta-section {
    background: var(--bg-gradient-dark);
    padding: 100px 0;
}

.cta-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: start;
}

/* 상담 폼 영역 */
.cta-form-area {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-xl);
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-title {
    font-size: 32px;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-subtitle {
    color: var(--text-medium);
    font-size: 16px;
}

/* 폼 스타일 */
.consultation-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.consultation-form .form-group {
    margin-bottom: 20px;
}

.consultation-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 14px;
}

.consultation-form label i {
    margin-right: 6px;
    color: var(--primary);
}

.consultation-form .required {
    color: var(--danger);
}

.consultation-form .optional {
    color: var(--text-light);
    font-weight: 400;
    font-size: 12px;
}

.consultation-form input[type="text"],
.consultation-form input[type="tel"],
.consultation-form select,
.consultation-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #E8E8F0;
    border-radius: var(--radius-sm);
    font-size: 15px;
    transition: var(--transition);
    background: var(--bg-white);
}

.consultation-form input:focus,
.consultation-form select:focus,
.consultation-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(212, 101, 74, 0.1);
}

.consultation-form select {
    cursor: pointer;
    appearance: none;
    background-image: 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='%234A5568' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.consultation-form textarea {
    resize: vertical;
    min-height: 80px;
}

.input-hint {
    display: block;
    font-size: 12px;
    color: var(--text-light);
    margin-top: 4px;
}

/* 체크박스 그룹 */
.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-weight: 400;
}

.checkbox-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
    cursor: pointer;
}

.checkbox-item span {
    font-size: 14px;
    color: var(--text-dark);
}

/* 개인정보 동의 */
.privacy-agree {
    padding: 16px;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    margin-top: 10px;
}

.privacy-link {
    color: var(--primary);
    text-decoration: underline;
}

/* 제출 버튼 */
.btn-submit {
    width: 100%;
    padding: 18px;
    font-size: 18px;
    margin-top: 10px;
}

/* 오른쪽 정보 영역 */
.cta-info-area {
    color: var(--text-white);
}

.cta-benefits-box {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 30px;
    margin-bottom: 24px;
}

.cta-benefits-box h3 {
    font-size: 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cta-benefits-box h3 i {
    color: var(--primary-light);
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 15px;
}

.benefits-list li i {
    color: var(--accent);
}

/* 카카오톡 박스 */
.cta-kakao-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 24px;
    text-align: center;
    margin-bottom: 24px;
}

.kakao-label {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 16px;
}

.cta-kakao-box .btn-kakao {
    width: 100%;
    margin-bottom: 12px;
}

.kakao-id {
    font-size: 13px;
    opacity: 0.6;
}

/* 신뢰 박스 */
.cta-trust-box {
    background: rgba(42, 157, 143, 0.2);
    border-radius: var(--radius-md);
    padding: 16px 20px;
}

.cta-trust-box p {
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cta-trust-box i {
    color: var(--accent);
}

/* ========================================
   Final Urgency - Modern Professional Style
   ======================================== */
.final-urgency {
    background: var(--bg-gradient-dark);
    color: var(--text-white);
    padding: 48px 0;
    text-align: center;
    position: relative;
}

.final-urgency::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--bg-gradient);
}

.final-urgency p {
    font-size: 22px;
    font-weight: 700;
}

.final-urgency p i {
    margin-right: 10px;
    color: var(--primary-light);
}

.final-urgency .sub {
    font-size: 17px;
    font-weight: 400;
    opacity: 0.85;
    margin-top: 10px;
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: var(--bg-dark);
    color: var(--text-white);
    padding: 50px 0;
}

.footer-content {
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.footer-logo .logo-brand {
    font-size: 24px;
    font-weight: 800;
    color: #fff;
}

.footer-logo .logo-divider {
    width: 1px;
    height: 18px;
    background: rgba(255, 255, 255, 0.3);
}

.footer-logo .logo-company {
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.footer-info {
    margin-bottom: 24px;
}

.footer-info p {
    font-size: 15px;
    opacity: 0.7;
}

.footer-site {
    color: var(--primary-light) !important;
    opacity: 1 !important;
    font-weight: 600;
}

.footer-disclaimer {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-disclaimer p {
    font-size: 13px;
    opacity: 0.5;
    margin-bottom: 6px;
}

.footer-social {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.footer-social a:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    transform: translateY(-2px);
}

.footer-copyright {
    margin-top: 16px;
    font-size: 11px;
    opacity: 0.25;
}

.footer-admin-link {
    color: inherit;
    text-decoration: none;
}

/* ========================================
   Floating Elements
   ======================================== */
.floating-cta {
    position: fixed;
    bottom: 120px;
    right: 40px;
    z-index: 999;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
}

.floating-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: var(--bg-gradient);
    color: var(--text-white);
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 6px 25px rgba(212, 101, 74, 0.35);
    transition: var(--transition);
}

.floating-btn:hover {
    transform: scale(1.1);
}

.floating-btn i {
    font-size: 28px;
}

.floating-btn span {
    font-size: 11px;
    font-weight: 700;
    margin-top: 4px;
}

.floating-seats {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: var(--bg-gradient-dark);
    color: var(--text-white);
    padding: 14px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: pulse 2s infinite;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
    border: 1px solid rgba(212, 101, 74, 0.3);
}

.seats-label {
    font-size: 13px;
    opacity: 0.9;
}

.seats-number {
    font-size: 28px;
    font-weight: 900;
}

.seats-unit {
    font-size: 15px;
    font-weight: 600;
}

/* ========================================
   MELAZ Style - Results Highlight Section
   ======================================== */
.results-highlight-section {
    padding: 80px 0;
    background: var(--bg-gradient-soft);
}

.results-highlight-box {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: 60px;
    box-shadow: var(--shadow-xl);
    border: 3px solid var(--primary);
    position: relative;
    overflow: hidden;
}

.results-highlight-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--bg-gradient);
}

.results-before-after {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
}

.result-side {
    text-align: center;
}

.result-label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.result-circle {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.before-circle {
    background: linear-gradient(135deg, #E8E8F0 0%, #D0D0E0 100%);
    border: 4px solid #C0C0D0;
}

.after-circle {
    background: linear-gradient(135deg, #FFE8E0 0%, #FFCFC0 100%);
    border: 4px solid var(--primary);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.3);
}

.result-level {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 8px;
}

.before-circle .result-level {
    color: var(--text-light);
}

.after-circle .result-level {
    color: var(--primary);
}

.result-desc {
    font-size: 14px;
    line-height: 1.4;
}

.before-circle .result-desc {
    color: var(--text-light);
}

.after-circle .result-desc {
    color: var(--text-dark);
    font-weight: 500;
}

.result-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.arrow-line {
    width: 80px;
    height: 4px;
    background: var(--bg-gradient);
    border-radius: 2px;
}

.arrow-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: var(--text-white);
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 15px;
}

.arrow-weeks {
    font-size: 14px;
}

.results-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 30px;
}

.result-stat-item {
    text-align: center;
    padding: 24px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.result-stat-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.result-stat-item.featured {
    background: linear-gradient(135deg, #E8FFF6 0%, #D0FFE8 100%);
    border: 2px solid var(--accent);
}

.stat-highlight-number {
    font-size: 42px;
    font-weight: 900;
    color: var(--primary);
}

.result-stat-item.featured .stat-highlight-number {
    color: var(--accent-dark);
}

.stat-highlight-unit {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
}

.result-stat-item.featured .stat-highlight-unit {
    color: var(--accent-dark);
}

.stat-highlight-label {
    display: block;
    font-size: 14px;
    color: var(--text-medium);
    margin-top: 8px;
}

.results-footnote {
    text-align: center;
    font-size: 14px;
    color: var(--text-light);
}

.results-footnote i {
    color: var(--accent);
    margin-right: 6px;
}

/* ========================================
   MELAZ Style - Trust Badges Section
   ======================================== */
.trust-badges-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.trust-badges-header {
    text-align: center;
    margin-bottom: 50px;
}

.trust-badges-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.trust-badge-card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 24px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    transition: var(--transition);
}

.trust-badge-card:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.badge-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.badge-icon-wrap i {
    font-size: 24px;
    color: var(--text-white);
}

.badge-icon-wrap.tesda {
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
}

.badge-icon-wrap.safety {
    background: linear-gradient(135deg, #4CAF50 0%, #388E3C 100%);
}

.badge-icon-wrap.experience {
    background: linear-gradient(135deg, #FF9800 0%, #F57C00 100%);
}

.badge-icon-wrap.teacher {
    background: linear-gradient(135deg, #9C27B0 0%, #7B1FA2 100%);
}

.badge-icon-wrap.refund {
    background: linear-gradient(135deg, #00D4AA 0%, #00B894 100%);
}

.badge-icon-wrap.global {
    background: linear-gradient(135deg, #607D8B 0%, #455A64 100%);
}

.badge-content h4 {
    font-size: 17px;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.badge-content p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.4;
}

.badge-verified {
    margin-left: auto;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent);
    white-space: nowrap;
}

.badge-verified i {
    margin-right: 4px;
}

.badge-verified.highlight {
    color: var(--primary);
}

/* ========================================
   MELAZ Style - Refund Policy Section
   ======================================== */
.refund-policy-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.refund-policy-box {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-md);
}

.refund-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 36px;
    padding-bottom: 24px;
    border-bottom: 2px solid var(--bg-light);
}

.refund-icon {
    width: 64px;
    height: 64px;
    background: var(--bg-gradient);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.refund-icon i {
    font-size: 28px;
    color: var(--text-white);
}

.refund-title h3 {
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.refund-title p {
    font-size: 15px;
    color: var(--text-medium);
}

.refund-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-bottom: 32px;
}

.refund-item {
    background: var(--bg-light);
    border-radius: var(--radius-md);
    padding: 28px;
}

.refund-item.full-width {
    grid-column: span 2;
}

.refund-item-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.refund-item-header i {
    font-size: 22px;
    color: var(--primary);
}

.refund-item-header.success i {
    color: var(--accent);
}

.refund-item-header.info i {
    color: var(--text-light);
}

.refund-item-header h4 {
    font-size: 18px;
    color: var(--text-dark);
}

.refund-list {
    list-style: none;
}

.refund-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
    font-size: 15px;
    color: var(--text-medium);
}

.refund-list li i {
    color: var(--accent);
    margin-top: 4px;
}

.refund-notice p {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: var(--text-light);
    padding: 8px 0;
}

.refund-notice p i {
    color: var(--text-light);
    font-size: 8px;
    margin-top: 5px;
}

.refund-cta {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid #eee;
}

.refund-cta p {
    font-size: 15px;
    color: var(--text-medium);
    margin-bottom: 16px;
}

.refund-cta p i {
    margin-right: 8px;
    color: var(--primary);
}

/* ========================================
   MELAZ Style - Promo Urgency
   ======================================== */
.promo-urgency-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-gradient-dark);
    color: var(--text-white);
    padding: 14px 24px;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    margin: -48px -48px 28px -48px;
}

.urgency-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.urgency-pulse {
    width: 10px;
    height: 10px;
    background: var(--text-white);
    border-radius: 50%;
    animation: pulseDot 1.5s infinite;
}

.urgency-text {
    font-size: 15px;
}

.urgency-timer {
    font-size: 15px;
    font-weight: 600;
}

.urgency-timer i {
    margin-right: 6px;
}

.promo-sub {
    font-size: 18px;
    color: var(--text-medium);
    margin-top: 10px;
}

.highlight-price {
    color: var(--primary);
    font-size: 24px;
}

.promo-item.featured {
    background: linear-gradient(135deg, #FFF5F0 0%, #FFE8E0 100%);
    border: 2px solid var(--primary);
    position: relative;
}

.promo-item-badge {
    position: absolute;
    top: -10px;
    right: 10px;
    background: var(--primary);
    color: var(--text-white);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
}

.promo-item-badge.hot {
    background: var(--danger);
}

.promo-bottom-cta {
    text-align: center;
    margin-top: 36px;
    padding-top: 28px;
    border-top: 2px dashed #E0E0E8;
}

.promo-notice {
    margin-top: 16px;
    font-size: 14px;
    color: var(--danger);
    font-weight: 500;
}

.promo-notice i {
    margin-right: 6px;
}

/* ========================================
   MELAZ Style - Floating CTA Group
   ======================================== */
.floating-cta-group {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
}

.floating-btn-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    text-decoration: none;
    color: var(--text-white);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    position: relative;
}

.floating-btn-item:hover {
    transform: scale(1.1);
}

.floating-btn-item i {
    font-size: 22px;
}

.floating-btn-item span {
    font-size: 9px;
    font-weight: 600;
    margin-top: 2px;
}

.floating-btn-item.kakao {
    background: #FEE500;
    color: #3C1E1E;
}

.floating-btn-item.primary {
    background: var(--bg-gradient);
    box-shadow: 0 6px 25px rgba(212, 101, 74, 0.35);
}

/* 플로팅 잔여석 배지 */
.floating-seats-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--secondary);
    color: var(--text-white);
    padding: 10px 16px;
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    border: 2px solid var(--primary);
}

.floating-seats-badge .seats-pulse {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary);
    opacity: 0;
    border-radius: 30px;
    animation: seatsPulse 2s infinite;
}

@keyframes seatsPulse {
    0%, 100% { opacity: 0; transform: scale(1); }
    50% { opacity: 0.15; transform: scale(1.05); }
}

.floating-seats-badge .seats-label {
    font-size: 11px;
    font-weight: 500;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.floating-seats-badge .seats-number {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary-light);
    position: relative;
    z-index: 1;
    line-height: 1;
}

.floating-seats-badge .seats-unit {
    font-size: 12px;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

/* Floating Seats Enhanced */
.floating-seats-enhanced {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--bg-gradient-dark);
    color: var(--text-white);
    padding: 0;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    z-index: 999;
    animation: pulse 2s infinite;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
    overflow: hidden;
    border: 1px solid rgba(212, 101, 74, 0.3);
}

.seats-inner {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
}

.seats-icon {
    font-size: 24px;
    animation: float 1.5s infinite;
}

.seats-info {
    display: flex;
    flex-direction: column;
}

.seats-label {
    font-size: 11px;
    opacity: 0.9;
}

.seats-number {
    font-size: 32px;
    font-weight: 900;
    line-height: 1;
}

.seats-unit {
    font-size: 16px;
    font-weight: 600;
}

/* ========================================
   Urgency Popup Layer
   ======================================== */
.urgency-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.urgency-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.urgency-popup {
    background: linear-gradient(180deg, #E8F4FC 0%, #FFFFFF 100%);
    border-radius: 20px;
    padding: 40px 50px;
    max-width: 420px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.8) translateY(20px);
    transition: all 0.3s ease;
    border: 1px solid #D0E8F5;
}

.urgency-popup-overlay.active .urgency-popup {
    transform: scale(1) translateY(0);
}

.popup-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    animation: popupBell 1s ease infinite;
}

@keyframes popupBell {
    0%, 100% { transform: rotate(0deg); }
    10%, 30% { transform: rotate(-10deg); }
    20%, 40% { transform: rotate(10deg); }
    50% { transform: rotate(0deg); }
}

.popup-icon i {
    font-size: 28px;
    color: white;
}

.popup-title {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.popup-alert-icon {
    font-size: 18px;
}

.popup-content {
    margin-bottom: 28px;
}

.popup-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin: 0;
}

.popup-content p strong {
    color: #333;
    font-weight: 700;
}

.popup-confirm-btn {
    background: #4A9FD4;
    color: white;
    border: none;
    padding: 14px 40px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(74, 159, 212, 0.4);
}

.popup-confirm-btn:hover {
    background: #3A8FC4;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 159, 212, 0.5);
}

/* ========================================
   Print Styles
   ======================================== */
@media print {
    .urgency-banner,
    .navbar,
    .floating-cta,
    .floating-cta-group,
    .floating-seats {
        display: none !important;
    }

    body {
        font-size: 12pt;
    }

    .hero {
        min-height: auto;
        padding: 40px 0;
    }
}

/* ========================================
   Campus Activities (에코캠퍼스 액티비티)
   ======================================== */
.campus-activities {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    padding: 16px 18px;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    color: white;
}

.campus-activities .activities-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    opacity: 0.9;
}

.campus-activities p {
    font-size: 13px;
    line-height: 1.5;
    font-weight: 500;
}

/* ========================================
   Campus Program Labels (성인 프로그램 캠퍼스별 구분)
   ======================================== */
.campus-program-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    padding: 12px 20px;
    background: linear-gradient(90deg, var(--secondary) 0%, var(--secondary-light) 50%, transparent 100%);
    border-radius: var(--radius-md);
}

.campus-program-label.eco {
    background: linear-gradient(90deg, var(--accent-dark) 0%, var(--accent) 50%, transparent 100%);
    margin-top: 40px;
}

.campus-program-label i {
    font-size: 20px;
}
