/* ===============================================
   DR-Drive-09 - 클래식 브라운 테마
   컨셉: 브라운/클래식, 세리프 폰트, 전통적 배치
   =============================================== */

/* CSS Variables */
:root {
    /* 메인 컬러 - 클래식 브라운 */
    --primary-color: #92400E;
    --primary-dark: #78350F;
    --primary-light: #B45309;
    --secondary-color: #D97706;
    --accent-color: #F59E0B;

    /* 무채색 계열 */
    --gray-900: #1C1917;
    --gray-800: #292524;
    --gray-700: #44403C;
    --gray-600: #57534E;
    --gray-500: #78716C;
    --gray-400: #A8A29E;
    --gray-300: #D6D3D1;
    --gray-200: #E7E5E4;
    --gray-100: #F5F5F4;
    --gray-50: #FAFAF9;

    /* 텍스트 컬러 */
    --text-dark: #1C1917;
    --text-light: #57534E;
    --text-muted: #78716C;

    /* 배경 컬러 */
    --white: #FFFFFF;
    --black: #000000;
    --bg-cream: #FFFBEB;
    --bg-warm: #FEF3C7;
    --bg-light: #FAFAF9;

    /* 보더 컬러 */
    --border-color: #E7E5E4;

    /* 그림자 */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);
}

/* 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: 'Noto Serif KR', Georgia, 'Times New Roman', serif;
    color: var(--primary-dark);
    font-weight: 600;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.header.scrolled {
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.navbar {
    padding: 15px 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Noto Serif KR', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color) !important;
    text-decoration: none;
}

.navbar-brand i {
    font-size: 1.4rem;
    color: var(--primary-color);
}

.navbar-brand span {
    color: var(--primary-dark);
}

.navbar-toggler {
    border: 1px solid var(--primary-color);
    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='%2392400E' 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: 'Noto Serif KR', serif;
    font-weight: 500;
    color: var(--text-dark) !important;
    padding: 10px 20px !important;
    margin: 0 5px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
    background: var(--bg-cream);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    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.4) sepia(0.3);
}

.hero-overlay {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 120px 0;
}

.hero-content {
    max-width: 700px;
    color: var(--white);
}

.hero-badge {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 25px;
    border-radius: 2px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 35px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    font-family: 'Noto Serif KR', serif;
    font-weight: 500;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white) !important;
    box-shadow: 0 4px 15px rgba(146, 64, 14, 0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(146, 64, 14, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--white) !important;
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-color) !important;
}

.btn-light {
    background: var(--white);
    color: var(--primary-color) !important;
}

.btn-light:hover {
    background: var(--bg-cream);
}

.btn-outline-light {
    background: transparent;
    color: var(--white) !important;
    border: 2px solid var(--white);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-lg {
    padding: 18px 35px;
    font-size: 1.1rem;
}

/* Breadcrumb */
.breadcrumb {
    background: var(--bg-cream);
    padding: 12px 24px;
    border-radius: 4px;
    margin: 20px 0;
    display: inline-flex;
    border: 1px solid var(--border-color);
}

.breadcrumb-item {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.breadcrumb-item a {
    color: var(--primary-color);
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "/";
    color: var(--gray-400);
    margin: 0 12px;
}

/* Section Styles */
.section {
    padding: 100px 0;
}

.section-header {
    margin-bottom: 60px;
}

.section-subtitle {
    display: inline-block;
    font-family: 'Noto Serif KR', serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Features Section */
.features-section {
    background: var(--bg-light);
}

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--bg-cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: var(--primary-color);
    color: var(--white);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.7;
}

/* About Section */
.about-section {
    background: var(--white);
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 8px;
    box-shadow: var(--shadow-xl);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--primary-color);
    color: var(--white);
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.experience-badge .number {
    display: block;
    font-family: 'Noto Serif KR', serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.9rem;
    opacity: 0.9;
}

.about-content {
    padding-left: 40px;
}

.about-desc {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.8;
}

.about-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 1.05rem;
    color: var(--text-dark);
}

.about-list li i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* Price Section */
.price-section {
    background: var(--bg-cream);
}

.price-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.price-card.featured {
    border: 2px solid var(--primary-color);
}

.price-card .price-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 15px;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 3px;
}

.price-header {
    background: var(--bg-light);
    padding: 30px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.price-card.featured .price-header {
    background: var(--primary-color);
}

.price-card.featured .price-header h3,
.price-card.featured .price-header .price-type {
    color: var(--white);
}

.price-header h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: var(--primary-dark);
}

.price-type {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.price-body {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.price-amount {
    text-align: center;
    margin-bottom: 25px;
}

.price-amount .currency {
    font-size: 1.2rem;
    color: var(--primary-color);
    vertical-align: top;
}

.price-amount .number {
    font-family: 'Noto Serif KR', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.price-amount .period {
    font-size: 1rem;
    color: var(--text-muted);
}

.price-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
    flex: 1;
}

.price-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px dashed var(--border-color);
    color: var(--text-dark);
}

.price-features li:last-child {
    border-bottom: none;
}

.price-features li i {
    color: var(--primary-color);
}

.price-notice {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 15px;
}

/* Reviews Section */
.reviews-section {
    background: var(--white);
}

.review-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
}

.review-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.review-avatar {
    width: 50px;
    height: 50px;
    background: var(--bg-cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.3rem;
}

.review-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.review-rating {
    color: var(--accent-color);
}

.review-rating .empty {
    color: var(--gray-300);
}

.review-content h5 {
    font-size: 1.1rem;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.review-content p {
    color: var(--text-muted);
    line-height: 1.7;
}

.review-date {
    margin-top: 15px;
    font-size: 0.85rem;
    color: var(--gray-400);
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    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/3786091/pexels-photo-3786091.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover;
    opacity: 0.1;
}

.cta-content {
    position: relative;
    z-index: 1;
    color: var(--white);
}

.cta-content h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Contact Form Section */
.contact-section {
    background: var(--bg-light);
}

.contact-form-wrapper {
    background: var(--white);
    padding: 50px;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.form-label i {
    color: var(--primary-color);
    margin-right: 8px;
}

.form-control,
.form-select {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-control:focus,
.form-select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(146, 64, 14, 0.1);
}

/* Footer */
.footer {
    background: var(--gray-900);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-family: 'Noto Serif KR', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-logo i {
    color: var(--accent-color);
}

.footer-contact {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.footer-contact i {
    color: var(--accent-color);
    margin-right: 10px;
}

.footer-desc {
    color: var(--gray-400);
    margin-bottom: 25px;
}

.footer-divider {
    height: 1px;
    background: var(--gray-700);
    margin: 25px auto;
    max-width: 300px;
}

.footer-copyright {
    font-size: 0.9rem;
    color: var(--gray-500);
}

/* CTA Buttons (Fixed) */
.cta-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cta-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--white) !important;
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.cta-btn.apply {
    background: var(--primary-color);
}

.cta-btn.kakao {
    background: #FEE500;
    color: #3C1E1E !important;
}

.cta-btn.tel {
    background: var(--gray-800);
}

/* Back to Top */
.btn-back-to-top {
    position: fixed;
    bottom: 180px;
    right: 25px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
    box-shadow: var(--shadow-md);
}

.btn-back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.btn-back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* Page Header (Sub Pages) */
.page-header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    padding: 150px 0 80px;
    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/3786091/pexels-photo-3786091.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover;
    opacity: 0.15;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 2.8rem;
    color: var(--white);
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s 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.2rem;
    }
}

@media (max-width: 992px) {
    .hero-section {
        height: auto;
        min-height: 500px;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .about-content {
        padding-left: 0;
        margin-top: 40px;
    }
    .experience-badge {
        bottom: -20px;
        right: 20px;
        padding: 20px;
    }
    .experience-badge .number {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 70px 0;
    }
    .hero-content {
        text-align: center;
    }
    .hero-title {
        font-size: 2rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .hero-buttons {
        justify-content: center;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .price-amount .number {
        font-size: 2.5rem;
    }
    .contact-form-wrapper {
        padding: 30px 20px;
    }
    .cta-content h2 {
        font-size: 1.8rem;
    }
    .page-header {
        padding: 120px 0 60px;
    }
    .page-header h1 {
        font-size: 2rem;
    }
    .cta-btn span {
        display: none;
    }
    .cta-btn {
        width: 50px;
        height: 50px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.7rem;
    }
    .btn-lg {
        padding: 14px 25px;
        font-size: 1rem;
    }
    .section-title {
        font-size: 1.5rem;
    }
}

/* 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: 24px;
    --bs-gutter-y: 24px;
    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(--text-muted) !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; }

/* ===============================================
   29. BOARD PAGE - 연수후기
   =============================================== */
.search-box {
    padding: 24px;
    margin-bottom: 30px;
}

.search-form {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.search-select {
    background: var(--white);
    border: 1px solid var(--border-color);
    color: var(--text-dark);
    padding: 12px 16px;
    border-radius: 6px;
    min-width: 120px;
    font-size: 14px;
}

.search-input {
    flex: 1;
    min-width: 200px;
    background: var(--white);
    border: 1px solid var(--border-color);
    color: var(--text-dark);
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 14px;
}

.search-input:focus,
.search-select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.board-list {
    overflow: hidden;
}

.board-table {
    width: 100%;
    border-collapse: collapse;
}

.board-table thead tr {
    background: var(--bg-cream);
    border-bottom: 2px solid var(--primary-color);
}

.board-table th {
    padding: 16px;
    text-align: center;
    color: var(--primary-dark);
    font-weight: 600;
    font-family: 'Noto Serif KR', serif;
}

.board-table .col-no { width: 10%; }
.board-table .col-title { text-align: left; }
.board-table .col-author { width: 15%; }
.board-table .col-date { width: 15%; }
.board-table .col-views { width: 10%; }

.board-table tbody tr {
    border-bottom: 1px solid var(--border-color);
    transition: background 0.2s ease;
}

.board-table tbody tr:hover {
    background: var(--bg-cream);
}

.board-table td {
    padding: 16px;
    color: var(--text-light);
}

.badge-notice {
    background: var(--primary-color);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.badge-new {
    background: var(--accent-color);
    color: var(--white);
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 10px;
    margin-left: 8px;
}

.post-title {
    color: var(--text-dark);
    font-weight: 500;
}

.post-title:hover {
    color: var(--primary-color);
}

.post-meta {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 4px;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.page-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-light);
    font-weight: 500;
    transition: all 0.2s ease;
}

.page-link:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.page-link.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.text-right {
    text-align: right;
    margin-top: 20px;
}

.hide-mobile {
    display: table-cell;
}

.d-md-none {
    display: none;
}

@media (max-width: 768px) {
    .hide-mobile {
        display: none;
    }
    .d-md-none {
        display: block;
    }
    .search-form {
        flex-direction: column;
    }
    .search-select,
    .search-input {
        width: 100%;
    }
}

/* ===============================================
   30. CLASS PAGE - 수업안내
   =============================================== */
.class-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.day-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}

.day-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    color: var(--white);
    font-family: 'Noto Serif KR', serif;
}

.day-info h3 {
    margin: 0;
    font-size: 1.25rem;
    color: var(--primary-dark);
}

.day-info span {
    color: var(--primary-color);
    font-size: 14px;
}

.express-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.express-number {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 800;
    color: var(--white);
    margin: 0 auto 20px;
    font-family: 'Noto Serif KR', serif;
}

.notice-card {
    padding: 40px;
    background: var(--bg-cream);
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--primary-color);
}

.notice-card h3 {
    color: var(--primary-dark);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.notice-card h3 i {
    color: var(--primary-color);
}

.notice-card ul {
    color: var(--text-light);
    line-height: 2;
    margin: 0;
    padding-left: 20px;
}

.notice-card li {
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .class-grid,
    .express-grid {
        grid-template-columns: 1fr;
    }
}

/* ===============================================
   31. RECOMMEND PAGE - 면허취득가이드
   =============================================== */
.tab-nav {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.tab-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 30px;
    color: var(--text-light);
    font-weight: 500;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.tab-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 100px;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary-color);
}

.process-item {
    position: relative;
    margin-bottom: 40px;
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.process-number {
    position: absolute;
    left: -60px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--white);
    font-size: 16px;
    font-family: 'Noto Serif KR', serif;
    box-shadow: var(--shadow-md);
}

.process-content {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    flex: 1;
    box-shadow: var(--shadow-sm);
}

.process-content h3 {
    color: var(--primary-dark);
    margin: 0 0 8px;
    font-size: 1.25rem;
}

.process-content p {
    color: var(--text-light);
    margin: 0;
    font-size: 14px;
}

.recommend-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.recommend-stars {
    margin-top: 16px;
    color: var(--accent-color);
}

.recommend-stars i {
    margin-right: 2px;
}

.icon-premium {
    background: var(--primary-color) !important;
}

.icon-budget {
    background: var(--secondary-color) !important;
}

.icon-flex {
    background: var(--accent-color) !important;
}

.why-choose {
    padding: 40px;
    margin-top: 40px;
    background: var(--bg-cream);
    border: 1px solid var(--border-color);
}

.why-choose h3 {
    color: var(--primary-dark);
    margin-bottom: 24px;
}

.why-choose h3 i {
    color: var(--accent-color);
    margin-right: 10px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.why-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.why-item > i {
    color: var(--primary-color);
    margin-top: 4px;
    font-size: 18px;
}

.why-item h5 {
    color: var(--primary-dark);
    margin: 0 0 4px;
    font-size: 16px;
}

.why-item p {
    color: var(--text-light);
    font-size: 14px;
    margin: 0;
}

@media (max-width: 768px) {
    .recommend-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }
    .process-timeline {
        padding-left: 60px;
    }
    .process-number {
        left: -40px;
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    .process-timeline::before {
        left: 20px;
    }
}

/* ===============================================
   32. ROAD PAGE - 도로연수
   =============================================== */
.program-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.program-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
    border-bottom: 1px solid var(--border-color);
    background: var(--bg-cream);
    flex-wrap: wrap;
    gap: 20px;
}

.program-header h2 {
    color: var(--primary-dark);
    margin: 0 0 8px;
}

.program-header > div:first-child p {
    color: var(--text-light);
    margin: 0;
}

.price-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.price-badge {
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.price-badge.green {
    background: #059669;
}

.price-badge.blue {
    background: #0284C7;
}

.schedule-table {
    padding: 20px;
}

.schedule-row {
    display: flex;
    gap: 20px;
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
    align-items: flex-start;
}

.schedule-row:last-child {
    border-bottom: none;
}

.day-label {
    min-width: 80px;
    background: var(--primary-color);
    color: var(--white);
    padding: 10px 16px;
    border-radius: 8px;
    font-weight: 700;
    text-align: center;
    font-family: 'Noto Serif KR', serif;
}

.day-content {
    flex: 1;
}

.day-content h4 {
    color: var(--primary-dark);
    margin: 0 0 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.day-content h4 i {
    color: var(--primary-color);
}

.day-content p {
    color: var(--text-light);
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
}

.program-note {
    padding: 20px 30px;
    background: var(--bg-cream);
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    gap: 10px;
    border-top: 1px solid var(--border-color);
}

.program-note i {
    color: var(--primary-color);
}

.weekend-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.icon-weekend {
    background: var(--primary-color) !important;
}

.icon-express {
    background: var(--secondary-color) !important;
}

.program-price {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 18px;
    margin-top: 12px;
}

.area-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.area-emoji {
    font-size: 48px;
    margin-bottom: 16px;
}

.section-alt {
    background: var(--bg-cream);
}

.btn-lg {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .program-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .schedule-row {
        flex-direction: column;
    }
    .day-label {
        min-width: auto;
        align-self: flex-start;
    }
    .weekend-grid,
    .area-grid {
        grid-template-columns: 1fr;
    }
}
