/* ===============================================
   DR-Drive-06 Theme - Mint/Fresh Style
   Concept: Clean, Refreshing, Round Design
   =============================================== */

/* CSS Variables */
:root {
    --primary-color: #14B8A6;
    --primary-dark: #0D9488;
    --primary-light: #5EEAD4;
    --primary-lighter: #CCFBF1;
    --secondary-color: #0F172A;
    --accent-color: #F59E0B;

    --gray-900: #0F172A;
    --gray-800: #1E293B;
    --gray-700: #334155;
    --gray-600: #475569;
    --gray-500: #64748B;
    --gray-400: #94A3B8;
    --gray-300: #CBD5E1;
    --gray-200: #E2E8F0;
    --gray-100: #F1F5F9;
    --gray-50: #F8FAFC;

    --white: #ffffff;
    --black: #000000;

    --gradient-primary: linear-gradient(135deg, #14B8A6 0%, #0D9488 100%);
    --gradient-light: linear-gradient(135deg, #CCFBF1 0%, #99F6E4 100%);

    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.07);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 40px rgba(0,0,0,0.12);

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;

    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans KR', 'Poppins', sans-serif;
    color: var(--gray-800);
    line-height: 1.7;
    background: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', 'Noto Sans KR', sans-serif;
    color: var(--gray-900);
    line-height: 1.3;
    font-weight: 600;
}

a {
    text-decoration: none;
    transition: var(--transition-normal);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-normal);
    padding: 20px 0;
    background: transparent;
}

.header.scrolled {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    padding: 15px 0;
}

.navbar-brand {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-color) !important;
    display: flex;
    align-items: center;
    gap: 8px;
}

.navbar-brand i {
    color: var(--primary-color);
}

.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 {
    color: var(--gray-700) !important;
    font-weight: 500;
    margin: 0 8px;
    padding: 10px 18px;
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
    background: var(--primary-lighter);
}

.navbar-toggler {
    border: none;
    padding: 10px;
}

.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='rgba%2820, 184, 166, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    background: var(--gray-50);
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.5;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--primary-lighter);
    top: -100px;
    right: -100px;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--gradient-light);
    bottom: -50px;
    left: -50px;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: var(--primary-light);
    top: 40%;
    left: 10%;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-tag {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--gray-900);
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--gray-600);
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-buttons .btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 16px 32px;
    border-radius: var(--radius-full);
    font-weight: 600;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-lg);
}

.hero-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.hero-buttons .btn-outline {
    background: var(--white);
    color: var(--primary-color);
    padding: 16px 32px;
    border-radius: var(--radius-full);
    font-weight: 600;
    border: 2px solid var(--primary-color);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.hero-buttons .btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

.hero-image {
    position: relative;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.hero-badge {
    position: absolute;
    bottom: 30px;
    left: -30px;
    background: var(--white);
    padding: 20px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.badge-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.badge-text {
    font-size: 0.9rem;
    color: var(--gray-600);
}

/* Section Styles */
.section {
    padding: 100px 0;
}

.section-tag {
    display: inline-block;
    background: var(--primary-lighter);
    color: var(--primary-dark);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-title p {
    font-size: 1.1rem;
    color: var(--gray-600);
}

/* Features Horizontal Scroll */
.features-section {
    background: var(--white);
    padding: 80px 0;
}

.horizontal-scroll {
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
    padding: 20px 0;
}

.horizontal-scroll::-webkit-scrollbar {
    display: none;
}

.scroll-content {
    display: flex;
    gap: 25px;
    padding: 0 40px;
    width: max-content;
}

.feature-card {
    background: var(--gray-50);
    padding: 40px 35px;
    border-radius: var(--radius-xl);
    min-width: 280px;
    text-align: center;
    transition: var(--transition-normal);
    border: 2px solid transparent;
}

.feature-card:hover {
    background: var(--white);
    border-color: var(--primary-light);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--white);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--gray-600);
    line-height: 1.6;
}

/* Services Section */
.services-section {
    background: var(--gray-50);
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-xl);
    position: relative;
    transition: var(--transition-normal);
    height: 100%;
    border: 2px solid var(--gray-100);
}

.service-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.service-card.featured {
    background: var(--gradient-primary);
    border-color: transparent;
}

.service-card.featured h3,
.service-card.featured p {
    color: var(--white);
}

.service-card.featured .service-icon {
    background: rgba(255,255,255,0.2);
}

.service-card.featured .service-link {
    color: var(--white);
}

.service-number {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 3rem;
    font-weight: 700;
    color: var(--gray-100);
    font-family: 'Poppins', sans-serif;
}

.service-card.featured .service-number {
    color: rgba(255,255,255,0.2);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-lighter);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 1.8rem;
    color: var(--primary-color);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--gray-600);
    margin-bottom: 20px;
}

.service-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-link:hover {
    gap: 12px;
}

/* Price Section */
.price-section {
    background: var(--white);
}

.price-card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: var(--transition-normal);
    position: relative;
    height: 100%;
}

.price-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-xl);
}

.price-card.featured {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-xl);
}

.price-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 5px 15px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
}

.price-header {
    padding: 35px 30px 20px;
    text-align: center;
    border-bottom: 1px solid var(--gray-100);
}

.price-type {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.price-header h3 {
    font-size: 1.5rem;
}

.price-body {
    padding: 30px;
    text-align: center;
}

.price-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    margin-bottom: 30px;
}

.price-amount .amount {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.price-amount .unit {
    font-size: 1.5rem;
    color: var(--gray-600);
}

.price-amount .period {
    font-size: 1rem;
    color: var(--gray-500);
}

.price-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    text-align: left;
}

.price-features li {
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-100);
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gray-700);
}

.price-features li i {
    color: var(--primary-color);
    width: 20px;
}

.btn-price {
    width: 100%;
    padding: 16px 30px;
    background: var(--gray-100);
    color: var(--gray-800);
    border: none;
    border-radius: var(--radius-full);
    font-weight: 600;
    transition: var(--transition-fast);
}

.btn-price:hover {
    background: var(--gradient-primary);
    color: var(--white);
}

.btn-price-featured {
    width: 100%;
    padding: 16px 30px;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius-full);
    font-weight: 600;
    transition: var(--transition-fast);
}

.btn-price-featured:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

.price-note {
    padding: 15px 30px;
    background: var(--gray-50);
    font-size: 0.85rem;
    color: var(--gray-600);
    text-align: center;
}

/* Reviews Section */
.reviews-section {
    background: var(--gray-50);
}

.review-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    height: 100%;
    position: relative;
}

.review-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.review-quote {
    color: var(--primary-light);
    font-size: 2rem;
    margin-bottom: 15px;
}

.review-content p {
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 25px;
}

.review-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid var(--gray-100);
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.author-info h4 {
    font-size: 1rem;
    margin-bottom: 3px;
}

.review-rating i {
    color: var(--accent-color);
    font-size: 0.8rem;
}

.review-rating i.inactive {
    color: var(--gray-300);
}

.review-date {
    font-size: 0.85rem;
    color: var(--gray-500);
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #0D9488 0%, #14B8A6 100%);
    color: var(--white);
}

.contact-section .section-tag {
    background: rgba(255,255,255,0.2);
    color: var(--white);
}

.contact-section .section-title h2 {
    color: var(--white);
}

.contact-section .section-title p {
    color: rgba(255,255,255,0.8);
}

.contact-form-card {
    background: var(--white);
    padding: 50px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.form-floating {
    margin-bottom: 0;
}

.form-floating > .form-control,
.form-floating > .form-select {
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    height: 60px;
    padding: 1rem 1.25rem;
}

.form-floating > .form-control:focus,
.form-floating > .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(20,184,166,0.1);
}

.form-floating > label {
    padding: 1rem 1.25rem;
    color: var(--gray-500);
}

.btn-submit {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 18px 50px;
    border: none;
    border-radius: var(--radius-full);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

/* Footer */
.footer {
    background: var(--gray-900);
    color: var(--gray-400);
    padding: 60px 0 30px;
}

.footer-brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-brand i {
    color: var(--primary-color);
}

.footer-desc {
    margin-bottom: 20px;
}

.footer h5 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-tel {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: var(--gray-400);
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--gray-800);
    text-align: center;
}

/* CTA Buttons */
.cta-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 140px;
    height: 50px;
    padding: 0 20px;
    border-radius: var(--radius-full);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-lg);
}

.cta-btn.apply {
    background: var(--gradient-primary);
    color: var(--white);
}

.cta-btn.kakao {
    background: #FEE500;
    color: #3C1E1E;
}

.cta-btn.tel {
    background: var(--gray-900);
    color: var(--white);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

/* Back to Top */
#backToTop {
    position: fixed;
    bottom: 220px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-lg);
}

#backToTop:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animate-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Page Header */
.page-header {
    background: var(--gradient-primary);
    padding: 150px 0 80px;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

.page-header h1 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 15px;
    position: relative;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    position: relative;
}

/* Breadcrumb */
.breadcrumb {
    background: var(--white);
    padding: 15px 25px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    display: inline-flex;
    margin: 20px 0;
}

.breadcrumb-item a {
    color: var(--gray-600);
}

.breadcrumb-item a:hover {
    color: var(--primary-color);
}

.breadcrumb-item.active {
    color: var(--primary-color);
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "/";
    color: var(--gray-400);
}

/* Responsive */
@media (max-width: 1200px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 991px) {
    .hero-section {
        padding: 100px 0 60px;
    }

    .hero-image {
        margin-top: 50px;
    }

    .hero-badge {
        left: 0;
        bottom: -20px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-outline {
        width: 100%;
        justify-content: center;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .scroll-content {
        padding: 0 20px;
    }

    .feature-card {
        min-width: 250px;
        padding: 30px 25px;
    }

    .contact-form-card {
        padding: 30px 20px;
    }

    .cta-buttons {
        bottom: 15px;
        right: 15px;
    }

    .cta-btn {
        min-width: 120px;
        height: 45px;
        font-size: 0.85rem;
    }

    #backToTop {
        bottom: 180px;
        right: 15px;
        width: 45px;
        height: 45px;
    }

    .page-header {
        padding: 120px 0 60px;
    }

    .page-header h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .price-amount .amount {
        font-size: 3rem;
    }
}

/* Utility */
.text-primary { color: var(--primary-color) !important; }
.bg-primary { background: var(--primary-color) !important; }

.btn-primary {
    background: var(--gradient-primary);
    border: none;
    padding: 14px 30px;
    border-radius: var(--radius-full);
    color: var(--white);
    font-weight: 600;
    transition: var(--transition-fast);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-primary {
    background: transparent;
    border: 2px solid var(--primary-color);
    padding: 14px 30px;
    border-radius: var(--radius-full);
    color: var(--primary-color);
    font-weight: 600;
    transition: var(--transition-fast);
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* ===============================================
   BOARD PAGE STYLES - 연수후기
   =============================================== */

/* Glass Card */
.glass-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 25px;
    margin-bottom: 25px;
}

/* Search Box */
.search-box {
    margin-bottom: 30px;
}

.search-form {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.search-select {
    padding: 12px 20px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-full);
    font-size: 0.95rem;
    background: var(--white);
    min-width: 120px;
    transition: var(--transition-fast);
}

.search-select:focus {
    border-color: var(--primary-color);
    outline: none;
}

.search-input {
    flex: 1;
    min-width: 200px;
    padding: 12px 20px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-full);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.search-input:focus {
    border-color: var(--primary-color);
    outline: none;
}

/* Board Table */
.board-list {
    overflow-x: auto;
}

.board-table {
    width: 100%;
    border-collapse: collapse;
}

.board-table th,
.board-table td {
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid var(--gray-200);
}

.board-table th {
    background: var(--gray-50);
    font-weight: 600;
    color: var(--gray-700);
    font-size: 0.9rem;
    white-space: nowrap;
}

.board-table tbody tr:hover {
    background: var(--gray-50);
}

.col-no { width: 80px; text-align: center; }
.col-title { min-width: 300px; }
.col-author { width: 100px; text-align: center; }
.col-date { width: 120px; text-align: center; }
.col-views { width: 80px; text-align: center; }

.badge-notice {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
}

.badge-new {
    display: inline-block;
    background: var(--accent-color);
    color: var(--white);
    padding: 2px 8px;
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 600;
    margin-left: 8px;
}

.post-title {
    color: var(--gray-800);
    font-weight: 500;
}

.post-title:hover {
    color: var(--primary-color);
}

.post-meta {
    font-size: 0.8rem;
    color: var(--gray-500);
    margin-top: 5px;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 30px 0;
}

.page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-full);
    color: var(--gray-600);
    font-weight: 500;
    transition: var(--transition-fast);
}

.page-link:hover,
.page-link.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.text-center { text-align: center; }
.text-right { text-align: right; }

.hide-mobile {
    display: table-cell;
}

.d-md-none {
    display: none;
}

@media (max-width: 768px) {
    .hide-mobile {
        display: none !important;
    }

    .d-md-none {
        display: block;
    }

    .col-title {
        min-width: auto;
    }

    .search-form {
        flex-direction: column;
    }

    .search-select,
    .search-input {
        width: 100%;
    }
}

/* ===============================================
   CLASS PAGE STYLES - 수업안내
   =============================================== */

.section-alt {
    background: var(--gray-50);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-badge {
    display: inline-block;
    background: var(--primary-lighter);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-description {
    color: var(--gray-600);
    font-size: 1.1rem;
    margin-top: 10px;
}

/* Class Grid */
.class-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.feature-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.day-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--gray-100);
}

.day-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
}

.day-info h3 {
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.day-info span {
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 600;
}

.feature-card .feature-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-lighter);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.feature-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--gray-900);
}

.feature-description {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Express Grid */
.express-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.express-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

/* Notice Card */
.notice-card {
    background: var(--gradient-light);
    border-left: 4px solid var(--primary-color);
}

.notice-card h3 {
    color: var(--primary-dark);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.notice-card ul {
    list-style: none;
    padding: 0;
}

.notice-card li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: var(--gray-700);
}

.notice-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.1rem;
}

@media (max-width: 1200px) {
    .class-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .class-grid,
    .express-grid {
        grid-template-columns: 1fr;
    }
}

/* ===============================================
   RECOMMEND PAGE STYLES - 면허취득가이드
   =============================================== */

/* Tab Navigation */
.tab-nav {
    display: flex;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.tab-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-weight: 600;
    color: var(--gray-600);
    background: var(--white);
    border: 2px solid var(--gray-200);
    transition: var(--transition-fast);
}

.tab-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.tab-btn.active {
    background: var(--gradient-primary);
    border-color: var(--primary-color);
    color: var(--white);
}

/* Process Timeline */
.process-timeline {
    position: relative;
    padding-left: 50px;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary-color), var(--primary-light));
    border-radius: 2px;
}

.process-item {
    position: relative;
    margin-bottom: 40px;
    padding: 25px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.process-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.process-item:last-child {
    margin-bottom: 0;
}

.process-number {
    position: absolute;
    left: -50px;
    top: 25px;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: var(--shadow-md);
}

.process-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--gray-900);
}

.process-content p {
    color: var(--gray-600);
    line-height: 1.7;
}

/* Recommend Grid */
.recommend-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.icon-premium {
    background: linear-gradient(135deg, #14B8A6, #0D9488) !important;
    color: var(--white) !important;
}

.icon-budget {
    background: linear-gradient(135deg, #22C55E, #16A34A) !important;
    color: var(--white) !important;
}

.icon-flex {
    background: linear-gradient(135deg, #3B82F6, #2563EB) !important;
    color: var(--white) !important;
}

.recommend-stars {
    margin-top: 15px;
}

.recommend-stars i {
    color: var(--accent-color);
    font-size: 0.9rem;
}

/* Why Choose */
.why-choose {
    background: var(--gradient-light);
}

.why-choose h3 {
    color: var(--primary-dark);
    margin-bottom: 25px;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.why-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.why-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 3px;
}

.why-item h5 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--gray-900);
}

.why-item p {
    font-size: 0.9rem;
    color: var(--gray-600);
}

@media (max-width: 991px) {
    .recommend-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .process-timeline {
        padding-left: 40px;
    }

    .process-timeline::before {
        left: 15px;
    }

    .process-number {
        left: -40px;
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }

    .recommend-grid {
        grid-template-columns: 1fr;
    }

    .tab-btn {
        flex: 1;
        justify-content: center;
        min-width: 140px;
    }
}

/* ===============================================
   ROAD PAGE STYLES - 도로연수
   =============================================== */

/* Program Card */
.program-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.program-header {
    background: var(--gradient-primary);
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.program-header h2 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.program-header p {
    color: rgba(255,255,255,0.9);
    font-size: 1rem;
}

.price-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.price-badge {
    background: var(--white);
    color: var(--primary-color);
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.95rem;
}

.price-badge.green {
    background: #22C55E;
    color: var(--white);
}

.price-badge.blue {
    background: #3B82F6;
    color: var(--white);
}

/* Schedule Table */
.schedule-table {
    padding: 30px;
}

.schedule-row {
    display: flex;
    border-bottom: 1px solid var(--gray-100);
    padding: 25px 0;
}

.schedule-row:last-child {
    border-bottom: none;
}

.day-label {
    width: 100px;
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1rem;
    flex-shrink: 0;
}

.day-content {
    flex: 1;
}

.day-content h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.day-content h4 i {
    color: var(--primary-color);
}

.day-content p {
    color: var(--gray-600);
    line-height: 1.7;
}

.program-note {
    background: var(--primary-lighter);
    padding: 20px 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-dark);
    font-size: 0.95rem;
}

.program-note i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* Weekend Grid */
.weekend-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.feature-card.text-center {
    text-align: center;
}

.icon-weekend {
    background: linear-gradient(135deg, #F59E0B, #D97706) !important;
    color: var(--white) !important;
}

.icon-express {
    background: linear-gradient(135deg, #8B5CF6, #7C3AED) !important;
    color: var(--white) !important;
}

.program-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 15px;
}

/* Area Grid */
.area-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.area-emoji {
    font-size: 3rem;
    margin-bottom: 15px;
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 991px) {
    .program-header {
        flex-direction: column;
        text-align: center;
    }

    .price-badges {
        justify-content: center;
    }

    .weekend-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .schedule-row {
        flex-direction: column;
    }

    .day-label {
        width: 100%;
        margin-bottom: 10px;
    }

    .area-grid {
        grid-template-columns: 1fr;
    }

    .program-header h2 {
        font-size: 1.5rem;
    }
}
