/* ===============================================
   DR-Drive-10 - 블랙/럭셔리 테마
   컨셉: 다크 테마, 골드 액센트, 미니멀 럭셔리
   =============================================== */

/* CSS Variables */
:root {
    /* 메인 컬러 - 럭셔리 블랙 & 골드 */
    --primary-color: #171717;
    --primary-dark: #0A0A0A;
    --primary-light: #262626;
    --secondary-color: #D4AF37;
    --accent-color: #D4AF37;
    --gold: #D4AF37;
    --gold-light: #E8C547;
    --gold-dark: #B8942E;

    /* 무채색 계열 */
    --gray-900: #0A0A0A;
    --gray-800: #171717;
    --gray-700: #262626;
    --gray-600: #404040;
    --gray-500: #525252;
    --gray-400: #737373;
    --gray-300: #A3A3A3;
    --gray-200: #D4D4D4;
    --gray-100: #E5E5E5;
    --gray-50: #F5F5F5;

    /* 텍스트 컬러 */
    --text-dark: #171717;
    --text-light: #A3A3A3;
    --text-white: #FFFFFF;
    --text-gold: #D4AF37;

    /* 배경 컬러 */
    --white: #FFFFFF;
    --black: #000000;
    --bg-dark: #0A0A0A;
    --bg-darker: #050505;

    /* 보더 컬러 */
    --border-color: #262626;
    --border-gold: #D4AF37;

    /* 그림자 */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.6);
    --shadow-gold: 0 4px 15px rgba(212, 175, 55, 0.3);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    background: var(--white);
    overflow-x: hidden;
}

/* Typography - 럭셔리 서체 */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', 'Noto Sans KR', Georgia, serif;
    color: var(--primary-color);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.02em;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--gold);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: var(--primary-color);
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.header.scrolled {
    background: var(--primary-dark);
    box-shadow: var(--shadow-lg);
}

.navbar {
    padding: 15px 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.brand-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--gold) !important;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.navbar-toggler {
    border: 1px solid var(--gold);
    padding: 8px 12px;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23D4AF37' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-nav {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.navbar-nav .nav-link {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: 1rem;
    color: var(--text-white) !important;
    padding: 10px 20px !important;
    margin: 0 5px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--gold) !important;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

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

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.3);
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.7) 100%);
}

.hero-overlay {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 120px 0;
}

.hero-content {
    max-width: 700px;
    color: var(--white);
    text-align: center;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: transparent;
    color: var(--gold);
    padding: 10px 30px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    margin-bottom: 25px;
    border: 1px solid var(--gold);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--gray-300);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 35px;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
}

.btn-primary {
    background: var(--gold);
    color: var(--primary-dark) !important;
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--white) !important;
    border: 1px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-color) !important;
}

.btn-outline-primary {
    background: transparent;
    color: var(--gold) !important;
    border: 1px solid var(--gold);
}

.btn-outline-primary:hover {
    background: var(--gold);
    color: var(--primary-dark) !important;
}

.btn-gold {
    background: var(--gold);
    color: var(--primary-dark) !important;
}

.btn-gold:hover {
    background: var(--gold-light);
}

.btn-outline-gold {
    background: transparent;
    color: var(--gold) !important;
    border: 1px solid var(--gold);
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--primary-dark) !important;
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.1rem;
}

/* Breadcrumb */
.breadcrumb {
    background: var(--gray-100);
    padding: 12px 24px;
    margin: 20px 0;
    display: inline-flex;
    border: 1px solid var(--gray-200);
}

.breadcrumb-item {
    font-size: 0.9rem;
    color: var(--gray-500);
}

.breadcrumb-item a {
    color: var(--primary-color);
}

.breadcrumb-item a:hover {
    color: var(--gold);
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "/";
    color: var(--gray-400);
    margin: 0 12px;
}

/* Section Styles */
.section {
    padding: 120px 0;
}

.section-header {
    margin-bottom: 70px;
}

.section-subtitle {
    display: inline-block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 0.3em;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
}

/* Features Section */
.features-section {
    background: var(--gray-50);
}

.feature-card {
    background: var(--white);
    padding: 50px 35px;
    text-align: center;
    border: 1px solid var(--gray-200);
    transition: all 0.4s ease;
    height: 100%;
}

.feature-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
    transform: translateY(-10px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--gold);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: var(--gold);
    color: var(--primary-dark);
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.feature-card p {
    color: var(--gray-500);
    line-height: 1.8;
}

/* About Section */
.about-section {
    background: var(--white);
}

.about-image {
    position: relative;
}

.about-image img {
    box-shadow: var(--shadow-xl);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--primary-color);
    color: var(--gold);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.experience-badge .number {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.1em;
}

.experience-badge .text {
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.about-content {
    padding-left: 40px;
}

.about-desc {
    font-size: 1.1rem;
    color: var(--gray-600);
    margin-bottom: 30px;
    line-height: 1.9;
}

.about-list {
    list-style: none;
    padding: 0;
    margin-bottom: 35px;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    font-size: 1.05rem;
    color: var(--text-dark);
    border-bottom: 1px solid var(--gray-200);
}

.about-list li:last-child {
    border-bottom: none;
}

.about-list li i {
    color: var(--gold);
    font-size: 0.9rem;
}

/* Price Section */
.price-section {
    background: var(--primary-color);
}

.price-section .section-subtitle,
.price-section .section-title,
.price-section .section-desc {
    color: var(--white);
}

.price-section .section-subtitle {
    color: var(--gold);
}

.price-card {
    background: var(--gray-800);
    overflow: hidden;
    border: 1px solid var(--gray-700);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.price-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
    transform: translateY(-10px);
}

.price-card.featured {
    border: 2px solid var(--gold);
}

.price-card .price-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gold);
    color: var(--primary-dark);
    padding: 5px 15px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
}

.price-header {
    background: var(--gray-700);
    padding: 35px;
    text-align: center;
    border-bottom: 1px solid var(--gray-600);
}

.price-card.featured .price-header {
    background: var(--gold);
}

.price-card.featured .price-header h3,
.price-card.featured .price-header .price-type {
    color: var(--primary-dark);
}

.price-header h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: var(--white);
    letter-spacing: 0.1em;
}

.price-type {
    font-size: 0.95rem;
    color: var(--gray-400);
}

.price-body {
    padding: 35px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.price-amount {
    text-align: center;
    margin-bottom: 30px;
}

.price-amount .currency {
    font-size: 1.2rem;
    color: var(--gold);
    vertical-align: top;
}

.price-amount .number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--white);
}

.price-amount .period {
    font-size: 1rem;
    color: var(--gray-400);
}

.price-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    flex: 1;
}

.price-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-700);
    color: var(--gray-300);
}

.price-features li:last-child {
    border-bottom: none;
}

.price-features li i {
    color: var(--gold);
}

.price-notice {
    text-align: center;
    font-size: 0.85rem;
    color: var(--gray-400);
    margin-top: 15px;
}

/* Reviews Section */
.reviews-section {
    background: var(--white);
}

.review-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    padding: 35px;
    height: 100%;
    transition: all 0.3s ease;
}

.review-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.review-avatar {
    width: 55px;
    height: 55px;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.3rem;
}

.review-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--text-dark);
    font-family: 'Noto Sans KR', sans-serif;
}

.review-rating {
    color: var(--gold);
}

.review-rating .empty {
    color: var(--gray-300);
}

.review-content h5 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-family: 'Noto Sans KR', sans-serif;
}

.review-content p {
    color: var(--gray-500);
    line-height: 1.8;
}

.review-date {
    margin-top: 20px;
    font-size: 0.85rem;
    color: var(--gray-400);
}

/* CTA Banner */
.cta-banner {
    background: var(--primary-dark);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.pexels.com/photos/3764984/pexels-photo-3764984.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover;
    opacity: 0.1;
}

.cta-content {
    position: relative;
    z-index: 1;
    color: var(--white);
}

.cta-subtitle {
    display: inline-block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.9rem;
    color: var(--gold);
    letter-spacing: 0.3em;
    margin-bottom: 15px;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--gray-400);
    margin-bottom: 35px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Contact Form Section */
.contact-section {
    background: var(--gray-50);
}

.contact-form-wrapper {
    background: var(--white);
    padding: 60px 50px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
}

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

.form-label {
    display: block;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.form-label i {
    color: var(--gold);
    margin-right: 8px;
}

.form-control,
.form-select {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid var(--gray-200);
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-control:focus,
.form-select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

/* Footer */
.footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: 70px 0 40px;
}

.footer-content {
    text-align: center;
}

.footer-logo {
    margin-bottom: 25px;
}

.footer-logo .brand-text {
    font-size: 1.8rem;
}

.footer-contact {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--gray-300);
}

.footer-contact i {
    color: var(--gold);
    margin-right: 10px;
}

.footer-desc {
    color: var(--gray-500);
    margin-bottom: 30px;
}

.footer-divider {
    height: 1px;
    background: var(--gray-700);
    margin: 30px auto;
    max-width: 200px;
}

.footer-copyright {
    font-size: 0.9rem;
    color: var(--gray-500);
}

/* CTA Buttons (Fixed) */
.cta-buttons {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cta-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--white) !important;
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    letter-spacing: 0.05em;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.cta-btn.apply {
    background: var(--gold);
    color: var(--primary-dark) !important;
}

.cta-btn.kakao {
    background: #FEE500;
    color: #3C1E1E !important;
}

.cta-btn.tel {
    background: var(--primary-color);
    border: 1px solid var(--gold);
}

/* Back to Top */
.btn-back-to-top {
    position: fixed;
    bottom: 200px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--gold);
    border: 1px solid var(--gold);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
}

.btn-back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.btn-back-to-top:hover {
    background: var(--gold);
    color: var(--primary-dark);
}

/* Page Header (Sub Pages) */
.page-header {
    background: var(--primary-color);
    padding: 160px 0 90px;
    text-align: center;
    color: var(--white);
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.pexels.com/photos/3764984/pexels-photo-3764984.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover;
    opacity: 0.1;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2rem;
    color: var(--gold);
    letter-spacing: 0.1em;
}

/* Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.animate-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }
    .section-title {
        font-size: 2.4rem;
    }
}

@media (max-width: 992px) {
    .hero-section {
        height: auto;
        min-height: 600px;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .about-content {
        padding-left: 0;
        margin-top: 40px;
    }
    .experience-badge {
        bottom: -20px;
        right: 20px;
        padding: 25px;
    }
    .section {
        padding: 80px 0;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }
    .hero-title {
        font-size: 2rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .price-amount .number {
        font-size: 2.8rem;
    }
    .contact-form-wrapper {
        padding: 40px 25px;
    }
    .cta-content h2 {
        font-size: 1.8rem;
    }
    .page-header {
        padding: 130px 0 70px;
    }
    .page-header h1 {
        font-size: 2.2rem;
    }
    .cta-btn span {
        display: none;
    }
    .cta-btn {
        width: 50px;
        height: 50px;
        padding: 0;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.7rem;
    }
    .hero-badge {
        padding: 8px 20px;
        font-size: 0.8rem;
    }
    .btn-lg {
        padding: 14px 28px;
        font-size: 0.95rem;
    }
    .section-title {
        font-size: 1.6rem;
    }
}

/* Row & Columns */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-lg-3, .col-lg-4, .col-lg-6, .col-lg-8,
.col-md-4, .col-md-6, .col-md-8 {
    padding: 0 15px;
    width: 100%;
}

@media (min-width: 768px) {
    .col-md-4 { width: 33.333%; }
    .col-md-6 { width: 50%; }
    .col-md-8 { width: 66.666%; }
}

@media (min-width: 992px) {
    .col-lg-3 { width: 25%; }
    .col-lg-4 { width: 33.333%; }
    .col-lg-6 { width: 50%; }
    .col-lg-8 { width: 66.666%; }
}

.g-4 {
    --bs-gutter-x: 30px;
    --bs-gutter-y: 30px;
    margin-right: calc(var(--bs-gutter-x) * -.5);
    margin-left: calc(var(--bs-gutter-x) * -.5);
    margin-top: calc(var(--bs-gutter-y) * -1);
}

.g-4 > * {
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-top: var(--bs-gutter-y);
}

.justify-content-center { justify-content: center; }
.align-items-center { align-items: center; }
.text-center { text-align: center; }
.text-muted { color: var(--gray-500) !important; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }
.mb-4 { margin-bottom: 1.5rem; }
.py-5 { padding-top: 3rem; padding-bottom: 3rem; }
.w-100 { width: 100%; }
.h-100 { height: 100%; }
.img-fluid { max-width: 100%; height: auto; }

/* ===============================================
   Sub Pages Styles - 서브 페이지 스타일
   =============================================== */

/* About Page - About Intro Section */
.about-intro-section {
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
}

.about-image-wrapper {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.image-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--primary-color);
    color: var(--gold);
    padding: 20px 25px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid var(--gold);
}

.image-badge .badge-icon {
    display: block;
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.image-badge .badge-text {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.1em;
}

.about-content {
    padding-left: 40px;
}

.about-desc {
    color: var(--gray-600);
    font-size: 1.1rem;
    margin-bottom: 15px;
    line-height: 1.8;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.about-stats .stat-item {
    text-align: center;
}

.about-stats .stat-number {
    display: block;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.about-stats .stat-label {
    display: block;
    font-size: 0.85rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 5px;
}

/* Why Choose Us Section */
.why-choose-section {
    background: var(--primary-color);
}

.why-choose-section .section-subtitle,
.why-choose-section .section-title,
.why-choose-section .section-desc {
    color: var(--white);
}

.why-choose-section .section-subtitle {
    color: var(--gold);
}

.why-card {
    background: var(--gray-800);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid var(--gray-700);
}

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

.why-icon {
    width: 80px;
    height: 80px;
    background: var(--gold);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 25px;
}

.why-card h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.why-card p {
    color: var(--gray-400);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Promise Section */
.promise-section {
    background: var(--white);
}

.promise-content {
    padding-right: 40px;
}

.promise-list {
    list-style: none;
    padding: 0;
    margin: 30px 0 0;
}

.promise-list li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--gray-200);
}

.promise-list li:last-child {
    border-bottom: none;
}

.promise-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--gold);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.promise-text h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.promise-text p {
    color: var(--gray-600);
    font-size: 0.95rem;
    margin: 0;
}

.promise-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.promise-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Course Page - Process Timeline */
.course-process-section {
    background: var(--gray-50);
}

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 60px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gold);
}

.process-item {
    display: flex;
    gap: 30px;
    padding: 30px 0;
    position: relative;
}

.process-number {
    width: 120px;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    text-align: center;
    position: relative;
    flex-shrink: 0;
}

.process-number::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    width: 16px;
    height: 16px;
    background: var(--gold);
    border-radius: 50%;
    transform: translate(50%, -50%);
}

.process-content {
    flex: 1;
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
}

.process-content h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.process-content p {
    color: var(--gray-600);
    margin-bottom: 20px;
}

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

.process-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: var(--gray-600);
    font-size: 0.95rem;
}

.process-list li i {
    color: var(--gold);
}

/* Course Types Section */
.course-types-section {
    background: var(--white);
}

.course-type-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    height: 100%;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
    position: relative;
}

.course-type-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.course-type-card.featured {
    border-color: var(--gold);
    background: var(--primary-color);
}

.course-type-card.featured h3,
.course-type-card.featured .course-type-desc,
.course-type-card.featured .course-type-features li {
    color: var(--white);
}

.course-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--primary-color);
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.course-type-icon {
    width: 80px;
    height: 80px;
    background: var(--gray-100);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 25px;
}

.course-type-card.featured .course-type-icon {
    background: var(--gold);
    color: var(--primary-color);
}

.course-type-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.course-type-desc {
    color: var(--gray-600);
    font-size: 0.95rem;
    margin-bottom: 25px;
    line-height: 1.7;
}

.course-type-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    text-align: left;
}

.course-type-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-200);
    color: var(--gray-600);
}

.course-type-card.featured .course-type-features li {
    border-color: var(--gray-700);
}

.course-type-features li:last-child {
    border-bottom: none;
}

.course-type-features li i {
    color: var(--gold);
}

/* Course Features Section */
.course-features-section {
    background: var(--gray-50);
}

.course-feature-item {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    height: 100%;
}

.course-feature-item:hover {
    box-shadow: var(--shadow-md);
}

.course-feature-item .feature-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 20px;
}

.course-feature-item h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.course-feature-item p {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin: 0;
}

/* Price Page - Extended Hours Section */
.extended-hours-section {
    background: var(--primary-color);
}

.extended-hours-section .section-subtitle,
.extended-hours-section .section-title,
.extended-hours-section .section-desc {
    color: var(--white);
}

.extended-hours-section .section-subtitle {
    color: var(--gold);
}

.extended-table-wrapper {
    background: var(--gray-800);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--gray-700);
}

.extended-table {
    width: 100%;
    border-collapse: collapse;
}

.extended-table th,
.extended-table td {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid var(--gray-700);
}

.extended-table thead {
    background: var(--gray-900);
}

.extended-table th {
    color: var(--gold);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.extended-table tbody tr:hover {
    background: var(--gray-700);
}

.extended-table tbody tr:last-child td {
    border-bottom: none;
}

/* Notice Section */
.notice-section {
    background: var(--gray-50);
}

.notice-box {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--gold);
}

.notice-box h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.notice-box h3 i {
    color: var(--gold);
    margin-right: 10px;
}

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

.notice-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.6;
}

.notice-list li i {
    color: var(--gold);
    margin-top: 4px;
}

/* Included Services Section */
.included-section {
    background: var(--white);
}

.included-item {
    background: var(--primary-color);
    padding: 35px 25px;
    border-radius: 10px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid var(--gray-700);
}

.included-item:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
}

.included-icon {
    width: 70px;
    height: 70px;
    background: var(--gold);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
}

.included-item h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.included-item p {
    color: var(--gray-400);
    font-size: 0.9rem;
    margin: 0;
}

/* Location Page - Region Cards */
.location-intro-section {
    background: var(--gray-50);
}

.regions-section {
    background: var(--white);
}

.region-card {
    background: var(--primary-color);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    height: 100%;
    border: 1px solid var(--gray-700);
    transition: all 0.3s ease;
}

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

.region-icon {
    width: 80px;
    height: 80px;
    background: var(--gold);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 25px;
}

.region-card h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.region-areas {
    list-style: none;
    padding: 0;
    margin: 0;
}

.region-areas li {
    color: var(--gray-400);
    padding: 8px 0;
    font-size: 0.95rem;
    border-bottom: 1px solid var(--gray-700);
}

.region-areas li:last-child {
    border-bottom: none;
}

/* Pickup Service Section */
.pickup-section {
    background: var(--gray-50);
}

.pickup-content {
    padding-right: 40px;
}

.pickup-desc {
    color: var(--gray-600);
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.8;
}

.pickup-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pickup-features li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--gray-200);
}

.pickup-features li:last-child {
    border-bottom: none;
}

.pickup-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--gold);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.pickup-text h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.pickup-text p {
    color: var(--gray-600);
    font-size: 0.95rem;
    margin: 0;
}

.pickup-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.pickup-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Road Types Section */
.road-types-section {
    background: var(--white);
}

.road-type-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid var(--gray-200);
    height: 100%;
    transition: all 0.3s ease;
}

.road-type-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--gold);
}

.road-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 20px;
}

.road-type-card h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.road-type-card p {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin: 0;
}

/* FAQ Page */
.faq-section {
    background: var(--gray-50);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--gold);
}

.faq-item.active {
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
}

.faq-question {
    display: flex;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--gray-50);
}

.faq-icon {
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    color: var(--gold);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.faq-question h3 {
    flex: 1;
    font-size: 1.1rem;
    margin: 0;
    line-height: 1.4;
}

.faq-toggle {
    width: 35px;
    height: 35px;
    background: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.faq-item.active .faq-toggle {
    background: var(--gold);
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 30px 25px;
    padding-left: 95px;
    color: var(--gray-600);
    line-height: 1.8;
    font-size: 1rem;
}

/* Contact CTA Section */
.contact-cta-section {
    background: var(--white);
}

.contact-cta-box {
    background: var(--primary-color);
    padding: 60px 50px;
    border-radius: 15px;
    border: 1px solid var(--gold);
}

.contact-cta-box .section-subtitle {
    color: var(--gold);
}

.contact-cta-box h2 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 15px;
}

.contact-cta-box p {
    color: var(--gray-400);
    margin-bottom: 30px;
}

.contact-cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Contact Page */
.contact-page-section {
    background: var(--gray-50);
}

.contact-form-box {
    background: var(--primary-color);
    padding: 50px;
    border-radius: 15px;
    border: 1px solid var(--gray-700);
}

.contact-form-box h2 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.contact-form-box h2 i {
    color: var(--gold);
}

.form-desc {
    color: var(--gray-400);
    margin-bottom: 30px;
}

.contact-form-box .form-label {
    color: var(--white);
}

.contact-form-box .form-control,
.contact-form-box .form-select {
    background: var(--gray-800);
    border-color: var(--gray-700);
    color: var(--white);
}

.contact-form-box .form-control:focus,
.contact-form-box .form-select:focus {
    border-color: var(--gold);
    background: var(--gray-800);
}

.contact-form-box .form-control::placeholder {
    color: var(--gray-500);
}

.required {
    color: var(--gold);
}

.contact-info-box {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    height: 100%;
}

.contact-info-box h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.contact-info-box h3 i {
    color: var(--gold);
}

.info-desc {
    color: var(--gray-600);
    margin-bottom: 30px;
    line-height: 1.7;
}

.contact-info-list {
    margin-bottom: 30px;
}

.contact-info-item {
    display: flex;
    gap: 15px;
    padding: 20px 0;
    border-bottom: 1px solid var(--gray-200);
}

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

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--gold);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-content h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.info-content p {
    color: var(--gray-600);
    font-size: 0.95rem;
    margin: 0;
}

.info-content a {
    color: var(--gold);
}

.info-content a:hover {
    text-decoration: underline;
}

.quick-links {
    padding-top: 20px;
    border-top: 1px solid var(--gray-200);
}

.quick-links h4 {
    font-size: 1rem;
    margin-bottom: 15px;
}

.quick-links h4 i {
    color: var(--gold);
    margin-right: 8px;
}

.quick-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quick-links li {
    padding: 8px 0;
}

.quick-links a {
    color: var(--gray-600);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.quick-links a:hover {
    color: var(--gold);
}

.quick-links a i {
    font-size: 0.8rem;
    color: var(--gold);
}

/* Review Page */
.reviews-stats-section {
    background: var(--gray-50);
    padding: 60px 0;
}

.stats-box {
    background: var(--primary-color);
    padding: 50px;
    border-radius: 15px;
    border: 1px solid var(--gold);
}

.stats-box .stat-item {
    padding: 0 20px;
}

.stats-box .stat-number {
    display: block;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.stats-box .stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--gray-400);
    margin-top: 8px;
}

.reviews-grid-section {
    background: var(--white);
}

.empty-reviews {
    padding: 60px;
    text-align: center;
}

.empty-reviews i {
    font-size: 4rem;
    color: var(--gray-300);
    margin-bottom: 20px;
}

.empty-reviews p {
    color: var(--gray-500);
    font-size: 1.1rem;
}

#loadMoreReviews {
    background: var(--primary-color);
    color: var(--white);
    border: 1px solid var(--gold);
    padding: 15px 40px;
}

#loadMoreReviews:hover {
    background: var(--gold);
    color: var(--primary-color);
}

/* Featured Review Section */
.featured-review-section {
    background: var(--primary-color);
}

.featured-review-box {
    background: var(--gray-800);
    padding: 60px 80px;
    border-radius: 15px;
    text-align: center;
    position: relative;
    border: 1px solid var(--gray-700);
}

.quote-icon {
    font-size: 4rem;
    color: var(--gold);
    margin-bottom: 30px;
    opacity: 0.5;
}

.featured-text {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.5rem;
    color: var(--white);
    line-height: 1.8;
    margin-bottom: 40px;
    font-style: italic;
}

.featured-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.featured-avatar {
    width: 60px;
    height: 60px;
    background: var(--gold);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.featured-info h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.featured-info .rating {
    color: var(--gold);
}

.featured-info .rating i {
    font-size: 0.9rem;
}

/* Sub Page Responsive */
@media (max-width: 991px) {
    .about-content,
    .promise-content,
    .pickup-content {
        padding: 30px 0 0;
    }

    .about-stats {
        gap: 25px;
    }

    .about-stats .stat-number {
        font-size: 2rem;
    }

    .process-timeline::before {
        left: 40px;
    }

    .process-number {
        width: 80px;
        font-size: 2rem;
    }

    .featured-review-box {
        padding: 40px 30px;
    }

    .featured-text {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .about-stats {
        gap: 15px;
    }

    .about-stats .stat-number {
        font-size: 1.5rem;
    }

    .about-stats .stat-label {
        font-size: 0.75rem;
    }

    .process-timeline::before {
        display: none;
    }

    .process-item {
        flex-direction: column;
        gap: 15px;
    }

    .process-number {
        width: auto;
    }

    .process-number::after {
        display: none;
    }

    .faq-question {
        padding: 20px;
    }

    .faq-icon {
        width: 35px;
        height: 35px;
        margin-right: 15px;
        font-size: 0.9rem;
    }

    .faq-question h3 {
        font-size: 1rem;
    }

    .faq-answer p {
        padding-left: 70px;
    }

    .contact-form-box {
        padding: 30px 25px;
    }

    .contact-info-box {
        padding: 30px;
        margin-top: 30px;
    }

    .stats-box {
        padding: 30px;
    }

    .stats-box .stat-number {
        font-size: 2rem;
    }

    .featured-review-box {
        padding: 30px 20px;
    }

    .featured-text {
        font-size: 1.1rem;
    }

    .featured-avatar {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .image-badge {
        padding: 15px 20px;
        bottom: 15px;
        right: 15px;
    }

    .image-badge .badge-icon {
        font-size: 1.2rem;
    }

    .image-badge .badge-text {
        font-size: 0.9rem;
    }

    .why-card,
    .region-card,
    .road-type-card,
    .included-item {
        padding: 30px 20px;
    }

    .extended-table th,
    .extended-table td {
        padding: 15px 10px;
        font-size: 0.85rem;
    }

    .notice-box {
        padding: 25px 20px;
    }

    .contact-cta-box {
        padding: 40px 25px;
    }

    .contact-cta-box h2 {
        font-size: 1.5rem;
    }
}

/* ===============================================
   29. BOARD PAGE - 연수후기 페이지
   =============================================== */

/* Glass Card */
.glass-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    padding: 30px;
    margin-bottom: 30px;
}

/* Search Box */
.search-box {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
}

.search-form {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.search-select {
    padding: 12px 20px;
    border: 1px solid var(--gray-200);
    font-size: 0.95rem;
    min-width: 120px;
    background: var(--white);
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.search-select:focus {
    border-color: var(--gold);
    outline: none;
}

.search-input {
    flex: 1;
    min-width: 200px;
    padding: 12px 20px;
    border: 1px solid var(--gray-200);
    font-size: 0.95rem;
    background: var(--white);
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.search-input:focus {
    border-color: var(--gold);
    outline: none;
}

.search-input::placeholder {
    color: var(--gray-400);
}

/* Board Table */
.board-list {
    padding: 0;
    overflow-x: auto;
}

.board-table {
    width: 100%;
    border-collapse: collapse;
}

.board-table thead {
    background: var(--primary-color);
}

.board-table th {
    padding: 18px 15px;
    font-weight: 600;
    color: var(--gold);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 2px solid var(--gold);
}

.board-table td {
    padding: 18px 15px;
    border-bottom: 1px solid var(--gray-200);
    color: var(--text-dark);
    font-size: 0.95rem;
}

.board-table tbody tr:hover {
    background: var(--gray-50);
}

.col-no { width: 80px; }
.col-author { width: 100px; }
.col-date { width: 120px; }
.col-views { width: 80px; }

.post-title {
    color: var(--text-dark);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.post-title:hover {
    color: var(--gold);
}

.post-meta {
    font-size: 0.8rem;
    color: var(--gray-500);
    margin-top: 5px;
}

/* Badges */
.badge-notice {
    display: inline-block;
    background: var(--gold);
    color: var(--primary-color);
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.badge-new {
    display: inline-block;
    background: var(--primary-color);
    color: var(--gold);
    padding: 2px 8px;
    font-size: 0.7rem;
    font-weight: 600;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 40px 0;
}

.page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid var(--gray-200);
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.3s ease;
}

.page-link:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.page-link.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--primary-color);
}

.text-right {
    text-align: right;
}

/* Hide on Mobile */
@media (max-width: 768px) {
    .hide-mobile {
        display: none;
    }

    .search-form {
        flex-direction: column;
    }

    .search-select,
    .search-input {
        width: 100%;
    }

    .board-table th,
    .board-table td {
        padding: 12px 10px;
        font-size: 0.85rem;
    }

    .col-no { width: 60px; }
}

.d-md-none {
    display: none;
}

@media (max-width: 768px) {
    .d-md-none {
        display: block;
    }
}

/* ===============================================
   30. CLASS PAGE - 수업안내 페이지
   =============================================== */

/* Class Grid */
.class-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

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

/* Day Header */
.day-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray-200);
}

.day-number {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.day-info h3 {
    font-size: 1.3rem;
    margin-bottom: 3px;
    color: var(--primary-color);
}

.day-info span {
    font-size: 0.9rem;
    color: var(--gray-500);
}

/* Feature Card Enhancement for Class */
.class-grid .feature-card {
    background: var(--white);
    padding: 35px;
    border: 1px solid var(--gray-200);
    transition: all 0.4s ease;
}

.class-grid .feature-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
    transform: translateY(-5px);
}

.class-grid .feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: var(--primary-color);
    color: var(--gold);
    font-size: 1.5rem;
}

.class-grid .feature-card:hover .feature-icon {
    background: var(--gold);
    color: var(--primary-color);
}

.class-grid .feature-title {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.class-grid .feature-description {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* Express Grid (3-Day Course) */
.express-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

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

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

.express-number {
    width: 70px;
    height: 70px;
    background: var(--gold);
    color: var(--primary-color);
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.express-grid .feature-card {
    background: var(--white);
    padding: 40px 30px;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.express-grid .feature-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

/* Notice Card */
.notice-card {
    background: var(--primary-color);
    border: 1px solid var(--gold);
    padding: 40px;
}

.notice-card h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 25px;
}

.notice-card h3 i {
    color: var(--gold);
    margin-right: 10px;
}

.notice-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.notice-card li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    color: var(--gray-300);
    font-size: 0.95rem;
    line-height: 1.6;
    border-bottom: 1px solid var(--gray-700);
}

.notice-card li:last-child {
    border-bottom: none;
}

.notice-card li::before {
    content: '✓';
    color: var(--gold);
    font-weight: 700;
}

/* ===============================================
   31. RECOMMEND PAGE - 면허취득가이드 페이지
   =============================================== */

/* Tab Navigation */
.tab-nav {
    display: flex;
    gap: 15px;
    margin-bottom: 50px;
    border-bottom: 2px solid var(--gray-200);
    padding-bottom: 0;
}

.tab-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 35px;
    background: transparent;
    color: var(--gray-500);
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    border: none;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.tab-btn:hover {
    color: var(--gold);
}

.tab-btn.active {
    color: var(--primary-color);
    border-bottom-color: var(--gold);
}

.tab-btn i {
    font-size: 1.1rem;
}

@media (max-width: 576px) {
    .tab-nav {
        flex-direction: column;
        gap: 0;
        border-bottom: none;
    }

    .tab-btn {
        border-bottom: 1px solid var(--gray-200);
        margin-bottom: 0;
        justify-content: center;
    }

    .tab-btn.active {
        background: var(--primary-color);
        color: var(--gold);
        border-bottom-color: var(--gray-200);
    }
}

/* Section Badge */
.section-badge {
    display: inline-block;
    background: transparent;
    color: var(--gold);
    padding: 8px 20px;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    margin-bottom: 15px;
    text-transform: uppercase;
    border: 1px solid var(--gold);
}

.section-description {
    font-size: 1.1rem;
    color: var(--gray-500);
    max-width: 600px;
}

.text-center .section-description {
    margin: 0 auto;
}

/* Recommend Grid */
.recommend-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

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

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

.recommend-grid .feature-card {
    background: var(--white);
    padding: 40px 30px;
    border: 1px solid var(--gray-200);
    text-align: center;
    transition: all 0.3s ease;
}

.recommend-grid .feature-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
    transform: translateY(-5px);
}

.recommend-grid .feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--primary-color);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.recommend-grid .feature-icon.icon-premium {
    background: var(--gold);
    color: var(--primary-color);
}

.recommend-grid .feature-icon.icon-budget {
    background: var(--gray-700);
    color: var(--gold);
}

.recommend-grid .feature-icon.icon-flex {
    background: var(--primary-color);
    color: var(--gold);
}

.recommend-grid .feature-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.recommend-grid .feature-description {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Recommend Stars */
.recommend-stars {
    display: flex;
    justify-content: center;
    gap: 5px;
    color: var(--gold);
    font-size: 1rem;
}

.recommend-stars .far {
    color: var(--gray-300);
}

/* Why Choose Box */
.why-choose {
    background: var(--primary-color);
    border: 1px solid var(--gold);
    padding: 50px;
}

.why-choose h3 {
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 30px;
    text-align: center;
}

.why-choose h3 i {
    color: var(--gold);
    margin-right: 10px;
}

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

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

.why-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: var(--gray-800);
    border: 1px solid var(--gray-700);
}

.why-item i {
    color: var(--gold);
    font-size: 1.2rem;
    margin-top: 2px;
}

.why-item h5 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 5px;
}

.why-item p {
    color: var(--gray-400);
    font-size: 0.9rem;
    margin: 0;
}

/* ===============================================
   32. ROAD PAGE - 도로연수 페이지
   =============================================== */

/* Program Card */
.program-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    overflow: hidden;
    margin-bottom: 30px;
}

.program-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 35px;
    background: var(--primary-color);
    border-bottom: 2px solid var(--gold);
    flex-wrap: wrap;
    gap: 20px;
}

.program-header h2 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.program-header p {
    color: var(--gold);
    font-size: 0.95rem;
    margin: 0;
    letter-spacing: 0.05em;
}

/* Price Badges */
.price-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.price-badge {
    display: inline-block;
    padding: 10px 20px;
    background: var(--gray-800);
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid var(--gray-700);
}

.price-badge.green {
    background: var(--gold);
    color: var(--primary-color);
    border-color: var(--gold);
}

.price-badge.blue {
    background: var(--gray-600);
    border-color: var(--gray-500);
}

/* Schedule Table */
.schedule-table {
    padding: 0;
}

.schedule-row {
    display: flex;
    border-bottom: 1px solid var(--gray-200);
}

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

.day-label {
    width: 120px;
    flex-shrink: 0;
    padding: 25px;
    background: var(--gray-50);
    color: var(--gold);
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-right: 2px solid var(--gold);
}

.day-content {
    flex: 1;
    padding: 25px 30px;
}

.day-content h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.day-content h4 i {
    color: var(--gold);
    margin-right: 10px;
}

.day-content p {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 768px) {
    .schedule-row {
        flex-direction: column;
    }

    .day-label {
        width: 100%;
        padding: 15px;
        border-right: none;
        border-bottom: 2px solid var(--gold);
    }

    .day-content {
        padding: 20px;
    }
}

/* Program Note */
.program-note {
    padding: 20px 35px;
    background: var(--gray-50);
    color: var(--gray-600);
    font-size: 0.9rem;
    border-top: 1px solid var(--gray-200);
}

.program-note i {
    color: var(--gold);
    margin-right: 10px;
}

/* Weekend Grid */
.weekend-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

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

.weekend-grid .feature-card {
    background: var(--white);
    padding: 40px 30px;
    border: 1px solid var(--gray-200);
    text-align: center;
    transition: all 0.3s ease;
}

.weekend-grid .feature-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.weekend-grid .feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--primary-color);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.weekend-grid .feature-icon.icon-weekend {
    background: var(--gold);
    color: var(--primary-color);
}

.weekend-grid .feature-icon.icon-express {
    background: var(--gray-800);
    color: var(--gold);
}

.weekend-grid .feature-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.weekend-grid .feature-description {
    color: var(--gray-600);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.program-price {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
}

/* Area Grid */
.area-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

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

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

.area-grid .feature-card {
    background: var(--white);
    padding: 40px 30px;
    border: 1px solid var(--gray-200);
    text-align: center;
    transition: all 0.3s ease;
}

.area-grid .feature-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
    transform: translateY(-5px);
}

.area-emoji {
    font-size: 3.5rem;
    margin-bottom: 20px;
    display: block;
}

.area-grid .feature-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.area-grid .feature-description {
    color: var(--gray-600);
    font-size: 0.95rem;
}

/* Section Alt - Alternating Background */
.section-alt {
    background: var(--gray-50);
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== SUBPAGE COMPONENTS (공통 서브페이지 컴포넌트) ===== */

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-light, #E8F5E9);
    color: var(--primary, #4CAF50);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    color: var(--text-dark, #212121);
    margin-bottom: 12px;
}

.section-title .highlight,
.section-title .gradient-text {
    color: var(--primary, #4CAF50);
}

.section-desc {
    color: var(--text-muted, #757575);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Curriculum Grid */
.curriculum-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.curriculum-card {
    background: var(--white, #fff);
    padding: 32px 24px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    border: 1px solid var(--gray-100, #f5f5f5);
    position: relative;
    transition: all 0.3s ease;
}

.curriculum-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.curriculum-day {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary, #4CAF50);
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.curriculum-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light, #E8F5E9);
    color: var(--primary, #4CAF50);
    border-radius: 16px;
    font-size: 1.5rem;
    margin: 20px auto 16px;
}

.curriculum-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--primary, #4CAF50);
    color: white;
    border-radius: 50%;
    font-weight: 600;
    margin-bottom: 12px;
}

.curriculum-card h3 {
    color: var(--text-dark, #212121);
    margin-bottom: 12px;
    font-size: 1.15rem;
}

.curriculum-card p {
    color: var(--text-muted, #757575);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Highlight Grid */
.highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 32px;
}

.highlight-item {
    background: var(--white, #fff);
    padding: 28px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border: 1px solid var(--gray-100, #f5f5f5);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.highlight-icon {
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light, #E8F5E9);
    color: var(--primary, #4CAF50);
    border-radius: 12px;
    font-size: 1.25rem;
    margin-bottom: 16px;
}

.highlight-item h4 {
    color: var(--text-dark, #212121);
    margin-bottom: 8px;
    font-size: 1.05rem;
}

.highlight-item p {
    color: var(--text-muted, #757575);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Option Grid */
.option-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.option-card {
    background: var(--white, #fff);
    padding: 36px 28px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    border: 1px solid var(--gray-100, #f5f5f5);
    position: relative;
    transition: all 0.3s ease;
}

.option-card.featured {
    border-color: var(--primary, #4CAF50);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    transform: scale(1.02);
}

.option-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary, #4CAF50);
    color: white;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.option-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light, #E8F5E9);
    color: var(--primary, #4CAF50);
    border-radius: 16px;
    font-size: 1.5rem;
    margin: 0 auto 16px;
}

.option-card h3 {
    color: var(--text-dark, #212121);
    margin-bottom: 12px;
}

.option-list {
    list-style: none;
    margin: 0 0 20px;
    padding: 0;
    text-align: left;
}

.option-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    color: var(--text-body, #424242);
    border-bottom: 1px dashed var(--gray-200, #eee);
    font-size: 0.95rem;
}

.option-list li:last-child {
    border-bottom: none;
}

.option-list li i {
    color: var(--primary, #4CAF50);
}

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, var(--primary-light, #E8F5E9) 0%, var(--bg-cream, #FFFBF7) 100%);
    padding: 48px 32px;
    border-radius: 20px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-box h2 {
    color: var(--text-dark, #212121);
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.cta-box p {
    color: var(--text-muted, #757575);
    margin-bottom: 24px;
}

/* Section CTA */
.section-cta {
    background: linear-gradient(135deg, var(--primary, #4CAF50) 0%, var(--primary-dark, #388E3C) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.section-cta .cta-box {
    background: rgba(255,255,255,0.95);
}

/* Responsive */
@media (max-width: 768px) {
    .curriculum-grid,
    .option-grid {
        grid-template-columns: 1fr;
    }

    .highlight-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .option-card.featured {
        transform: none;
    }

    .cta-box {
        padding: 36px 24px;
    }
}

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