/**
 * DR-08 Theme - Style
 * Pink/Feminine Soft Style
 *
 * @package dr-08
 */

/* ===================================
   1. CSS Variables
   =================================== */
:root {
    /* Primary Colors - Pink */
    --primary-color: #EC4899;
    --primary-dark: #DB2777;
    --primary-light: #F472B6;
    --primary-lighter: #FBCFE8;
    --primary-gradient: linear-gradient(135deg, #EC4899 0%, #F472B6 100%);

    /* Secondary Colors */
    --secondary-color: #8B5CF6;
    --secondary-light: #A78BFA;

    /* Accent Colors */
    --accent-color: #F59E0B;
    --accent-light: #FCD34D;

    /* Background Colors */
    --bg-color: #FFFBFE;
    --bg-light: #FDF2F8;
    --bg-card: #FFFFFF;
    --bg-section: #FCE7F3;

    /* Text Colors */
    --text-color: #4A4458;
    --text-light: #78716C;
    --text-muted: #A8A29E;
    --text-white: #FFFFFF;

    /* Border Colors */
    --border-color: #FBCFE8;
    --border-light: #FCE7F3;

    /* Status Colors */
    --success-color: #10B981;
    --warning-color: #F59E0B;
    --error-color: #EF4444;
    --info-color: #06B6D4;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(236, 72, 153, 0.08);
    --shadow-md: 0 4px 16px rgba(236, 72, 153, 0.12);
    --shadow-lg: 0 8px 32px rgba(236, 72, 153, 0.16);
    --shadow-xl: 0 16px 48px rgba(236, 72, 153, 0.2);

    /* Typography */
    --font-family: 'Noto Sans KR', sans-serif;
    --font-display: 'Jua', sans-serif;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ===================================
   2. Reset & Base Styles
   =================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--bg-color);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition-fast);
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
}

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.3;
    color: var(--text-color);
}

/* ===================================
   3. Container & Layout
   =================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-emoji {
    display: inline-block;
    font-size: 48px;
    margin-bottom: 16px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.section-title h2 {
    font-size: 36px;
    margin-bottom: 12px;
    color: var(--text-color);
}

.section-title p {
    font-size: 18px;
    color: var(--text-light);
}

/* ===================================
   4. Floating Decorations
   =================================== */
.floating-deco {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.15;
}

.deco-1 {
    width: 300px;
    height: 300px;
    background: var(--primary-gradient);
    top: 10%;
    left: -150px;
    animation: float1 8s ease-in-out infinite;
}

.deco-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
    top: 40%;
    right: -100px;
    animation: float2 10s ease-in-out infinite;
}

.deco-3 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    bottom: 20%;
    left: 5%;
    animation: float3 6s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(30px, 20px) rotate(10deg); }
}

@keyframes float2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-20px, 30px) rotate(-10deg); }
}

@keyframes float3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, -20px) scale(1.1); }
}

/* ===================================
   5. Header & Navigation
   =================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    transition: var(--transition-normal);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--primary-color);
}

.brand-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--primary-gradient);
    border-radius: var(--radius-full);
    color: white;
    font-size: 20px;
}

.navbar-nav {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    gap: 8px;
}

.nav-link {
    padding: 10px 18px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.nav-link:hover {
    color: var(--primary-color);
    background: var(--bg-light);
}

.nav-cta {
    background: var(--primary-gradient);
    color: white !important;
    padding: 10px 24px;
}

.nav-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.navbar-toggler {
    display: none;
    width: 44px;
    height: 44px;
    border: none;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    cursor: pointer;
}

.navbar-toggler-icon {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-color);
    position: relative;
    margin: 0 auto;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--text-color);
    left: 0;
}

.navbar-toggler-icon::before { top: -7px; }
.navbar-toggler-icon::after { bottom: -7px; }

/* ===================================
   6. Hero Section
   =================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.85) 0%, rgba(139, 92, 246, 0.7) 100%);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 650px;
    color: white;
    text-align: left;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
}

.hero-badge .emoji {
    font-size: 20px;
}

.hero-content h1 {
    font-size: 52px;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content h1 .highlight {
    display: inline-block;
    position: relative;
}

.hero-content h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    z-index: -1;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.95;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-tags .tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-full);
    font-size: 14px;
}

.hero-tags .tag i {
    color: var(--accent-light);
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: 80px;
    fill: var(--bg-color);
}

/* ===================================
   7. Buttons
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: var(--font-family);
    font-size: 15px;
    font-weight: 500;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-primary {
    background: var(--primary-gradient);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-outline:hover {
    background: white;
    color: var(--primary-color);
}

.btn-light {
    background: white;
    color: var(--primary-color);
}

.btn-light:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline-light {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 16px;
}

.btn-block {
    width: 100%;
}

.btn-secondary {
    background: var(--bg-section);
    color: var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-lighter);
}

/* ===================================
   8. Breadcrumb
   =================================== */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--bg-light);
    border-radius: var(--radius-full);
    font-size: 14px;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: '/';
    margin-right: 8px;
    color: var(--text-muted);
}

.breadcrumb-item a {
    color: var(--text-light);
}

.breadcrumb-item a:hover {
    color: var(--primary-color);
}

.breadcrumb-item.active {
    color: var(--primary-color);
    font-weight: 500;
}

/* ===================================
   9. Feature Cards
   =================================== */
.features-section {
    background: var(--bg-color);
}

.feature-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 2px solid var(--border-light);
    transition: var(--transition-normal);
}

.feature-card:hover {
    border-color: var(--primary-light);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: var(--bg-section);
    border-radius: var(--radius-full);
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 24px;
    transition: var(--transition-normal);
}

.feature-card:hover .feature-icon {
    background: var(--primary-gradient);
    color: white;
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-light);
    font-size: 15px;
}

/* ===================================
   10. Service Cards
   =================================== */
.services-section {
    background: var(--bg-section);
}

.service-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.service-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.service-card:hover .service-img img {
    transform: scale(1.08);
}

.service-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 16px;
    background: var(--primary-gradient);
    color: white;
    font-size: 13px;
    font-weight: 500;
    border-radius: var(--radius-full);
}

.service-tag.popular {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
}

.service-content {
    padding: 28px;
}

.service-content h4 {
    font-size: 22px;
    margin-bottom: 12px;
}

.service-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 15px;
}

.service-list {
    margin-bottom: 24px;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-color);
}

.service-list li i {
    color: var(--primary-color);
    font-size: 12px;
}

/* ===================================
   11. Price Cards
   =================================== */
.price-section {
    background: var(--bg-color);
}

.price-card {
    position: relative;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 2px solid var(--border-light);
    overflow: hidden;
    transition: var(--transition-normal);
}

.price-card:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-lg);
}

.price-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.02);
}

.price-card.featured:hover {
    transform: scale(1.05);
}

.price-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    padding: 6px 40px;
    background: var(--primary-gradient);
    color: white;
    font-size: 13px;
    font-weight: 500;
    transform: rotate(45deg);
}

.price-header {
    text-align: center;
    padding: 40px 30px 30px;
    background: var(--bg-section);
}

.price-icon {
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
}

.price-header h4 {
    font-size: 24px;
    margin-bottom: 16px;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.price .amount {
    font-family: var(--font-display);
    font-size: 42px;
    color: var(--primary-color);
}

.price .period {
    font-size: 16px;
    color: var(--text-light);
}

.price-body {
    padding: 30px;
}

.price-features {
    margin-bottom: 24px;
}

.price-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px dashed var(--border-color);
}

.price-features li:last-child {
    border-bottom: none;
}

.price-features li i {
    color: var(--primary-color);
    font-size: 14px;
}

.price-features li.note {
    color: var(--text-light);
    font-size: 13px;
}

.price-features li.note i {
    color: var(--text-muted);
}

.price-notice {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 20px 24px;
    background: var(--bg-section);
    border-radius: var(--radius-md);
    margin-top: 40px;
}

.price-notice i {
    color: var(--accent-color);
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.price-notice p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

/* ===================================
   12. Reviews Section
   =================================== */
.reviews-section {
    background: var(--bg-section);
}

.review-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    height: 100%;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.reviewer-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    border-radius: var(--radius-full);
    color: white;
    font-size: 20px;
    font-weight: 500;
}

.reviewer-info {
    flex: 1;
}

.reviewer-info h5 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 4px;
}

.review-date {
    font-size: 13px;
    color: var(--text-muted);
}

.review-rating {
    display: flex;
    gap: 2px;
}

.review-rating i {
    color: var(--accent-color);
    font-size: 14px;
}

.review-rating i.empty {
    color: var(--border-color);
}

.review-content h4 {
    font-size: 17px;
    margin-bottom: 10px;
    font-family: var(--font-family);
    font-weight: 500;
}

.review-content p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.7;
}

/* ===================================
   13. CTA Section
   =================================== */
.cta-section {
    background: var(--primary-gradient);
    padding: 80px 0;
}

.cta-content {
    text-align: center;
    color: white;
}

.cta-emoji {
    font-size: 64px;
    margin-bottom: 24px;
    display: block;
}

.cta-content h2 {
    font-size: 40px;
    color: white;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ===================================
   14. Contact Section
   =================================== */
.contact-section {
    background: var(--bg-color);
}

.contact-form-wrapper {
    background: var(--bg-card);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-light);
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 10px;
}

.form-label i {
    color: var(--primary-color);
}

.form-control,
.form-select {
    width: 100%;
    padding: 14px 18px;
    font-size: 15px;
    font-family: var(--font-family);
    color: var(--text-color);
    background: var(--bg-light);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
}

.form-control:focus,
.form-select:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--bg-card);
}

.form-control::placeholder {
    color: var(--text-muted);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* ===================================
   15. Footer
   =================================== */
.footer {
    background: linear-gradient(135deg, #4A4458 0%, #2D2937 100%);
    padding: 60px 0 40px;
    color: white;
}

.footer-content {
    text-align: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-brand .brand-icon {
    width: 44px;
    height: 44px;
    background: var(--primary-gradient);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.footer-brand h3 {
    font-size: 24px;
    color: white;
}

.footer-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    line-height: 1.8;
}

.footer-tel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 28px;
    color: white;
    margin-bottom: 24px;
}

.footer-tel i {
    color: var(--primary-light);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 30px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary-light);
}

.footer-copy {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

/* ===================================
   16. CTA Fixed Buttons
   =================================== */
.cta-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 999;
}

.cta-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    border-radius: var(--radius-full);
    color: white;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-md);
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: white;
}

.cta-btn.apply {
    background: var(--primary-gradient);
}

.cta-btn.kakao {
    background: #FAE100;
    color: #3C1E1E;
}

.cta-btn.kakao:hover {
    color: #3C1E1E;
}

.cta-btn.tel {
    background: var(--success-color);
}

.cta-btn i {
    font-size: 18px;
}

/* ===================================
   17. Back to Top Button
   =================================== */
.btn-top {
    position: fixed;
    bottom: 180px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    color: white;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    z-index: 998;
    box-shadow: var(--shadow-md);
}

.btn-top.show {
    opacity: 1;
    visibility: visible;
}

.btn-top:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

/* ===================================
   18. Page Header
   =================================== */
.page-header {
    background: var(--primary-gradient);
    padding: 140px 0 80px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-header h1 {
    font-size: 42px;
    color: white;
    margin-bottom: 16px;
    position: relative;
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
    position: relative;
}

/* ===================================
   19. Page Content
   =================================== */
.page-content {
    padding: 60px 0 80px;
}

/* Content Cards */
.content-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--border-light);
}

.content-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.content-card h3 i {
    color: var(--primary-color);
}

/* Value Cards */
.value-card {
    text-align: center;
    padding: 35px 25px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 2px solid var(--border-light);
    transition: var(--transition-normal);
    height: 100%;
}

.value-card:hover {
    border-color: var(--primary-light);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.value-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: var(--bg-section);
    border-radius: var(--radius-full);
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.value-card:hover .value-icon {
    background: var(--primary-gradient);
    color: white;
}

.value-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
}

.value-card p {
    font-size: 14px;
    color: var(--text-light);
}

/* Stats */
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--bg-section);
    border-radius: var(--radius-lg);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
}

/* ===================================
   20. Course Page Styles
   =================================== */
.process-timeline {
    position: relative;
    padding: 40px 0;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary-lighter);
    transform: translateX(-50%);
}

.process-step {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
}

.process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.process-step:nth-child(even) .step-content {
    text-align: right;
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    color: white;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 24px;
    z-index: 1;
}

.step-content {
    flex: 1;
    max-width: 400px;
}

.step-content h4 {
    font-size: 20px;
    margin-bottom: 8px;
}

.step-content p {
    font-size: 14px;
    color: var(--text-light);
}

/* Course Cards */
.course-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 2px solid var(--border-light);
    transition: var(--transition-normal);
    height: 100%;
}

.course-card:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-lg);
}

.course-header {
    padding: 30px;
    background: var(--bg-section);
    text-align: center;
}

.course-icon {
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
}

.course-header h4 {
    font-size: 22px;
    margin-bottom: 8px;
}

.course-header p {
    font-size: 14px;
    color: var(--text-light);
}

.course-body {
    padding: 30px;
}

.course-body ul li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 14px;
}

.course-body ul li i {
    color: var(--primary-color);
    margin-top: 4px;
}

/* ===================================
   21. Location Page Styles
   =================================== */
.location-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 35px;
    text-align: center;
    border: 2px solid var(--border-light);
    transition: var(--transition-normal);
    height: 100%;
}

.location-card:hover {
    border-color: var(--primary-light);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.location-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: var(--bg-section);
    border-radius: var(--radius-full);
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.location-card:hover .location-icon {
    background: var(--primary-gradient);
    color: white;
}

.location-card h4 {
    font-size: 24px;
    margin-bottom: 16px;
}

.location-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
}

/* ===================================
   22. FAQ Page Styles
   =================================== */
.faq-categories {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.faq-category-btn {
    padding: 12px 24px;
    background: var(--bg-light);
    border: 2px solid transparent;
    border-radius: var(--radius-full);
    color: var(--text-color);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-fast);
}

.faq-category-btn:hover,
.faq-category-btn.active {
    background: var(--primary-gradient);
    color: white;
}

.faq-item {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    border: 2px solid var(--border-light);
    overflow: hidden;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question h4 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-family: var(--font-family);
    font-weight: 500;
}

.faq-question h4 span.q-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--primary-gradient);
    color: white;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
}

.faq-question i {
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--primary-color);
}

.faq-answer {
    display: none;
    padding: 0 24px 24px;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    display: flex;
    gap: 12px;
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
}

.faq-answer p span.a-badge {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--bg-section);
    color: var(--primary-color);
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
}

/* ===================================
   23. Review Page Styles
   =================================== */
.review-list-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 20px;
    border: 2px solid var(--border-light);
    cursor: pointer;
    transition: var(--transition-normal);
}

.review-list-card:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-md);
}

.review-list-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.review-list-title h4 {
    font-size: 18px;
    font-family: var(--font-family);
    font-weight: 500;
    margin-bottom: 8px;
}

.review-list-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 13px;
    color: var(--text-muted);
}

.review-list-content {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

/* Review Detail */
.review-detail-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 2px solid var(--border-light);
}

.review-detail-header {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 24px;
    margin-bottom: 24px;
}

.review-detail-header h2 {
    font-size: 26px;
    margin-bottom: 16px;
}

.review-detail-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 14px;
    color: var(--text-muted);
}

.review-detail-content {
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-color);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    background: var(--bg-card);
    border: 2px solid var(--border-light);
    border-radius: var(--radius-sm);
    color: var(--text-color);
    font-size: 14px;
    transition: var(--transition-fast);
}

.page-link:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.page-link.active {
    background: var(--primary-gradient);
    border-color: var(--primary-color);
    color: white;
}

.page-link.disabled {
    color: var(--text-muted);
    pointer-events: none;
}

/* ===================================
   24. Contact Page Styles
   =================================== */
.contact-info-card {
    background: var(--primary-gradient);
    border-radius: var(--radius-lg);
    padding: 40px;
    color: white;
    height: 100%;
}

.contact-info-card h3 {
    font-size: 28px;
    color: white;
    margin-bottom: 24px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-info-item:last-child {
    border-bottom: none;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-info-content h5 {
    font-size: 14px;
    font-weight: 500;
    opacity: 0.8;
    margin-bottom: 6px;
}

.contact-info-content p {
    font-size: 18px;
    font-weight: 500;
}

/* ===================================
   25. Animations
   =================================== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animate-visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* Floating Emojis */
.emoji-float {
    position: fixed;
    font-size: 32px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.3;
    animation: floatEmoji 6s ease-in-out infinite;
}

@keyframes floatEmoji {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

/* ===================================
   26. Grid System
   =================================== */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.row > * {
    padding: 0 15px;
}

.col-12 { width: 100%; }
.col-md-6 { width: 100%; }
.col-md-8 { width: 100%; }
.col-lg-3 { width: 100%; }
.col-lg-4 { width: 100%; }
.col-lg-6 { width: 100%; }
.col-lg-8 { width: 100%; }

.g-4 {
    margin: -12px;
}

.g-4 > * {
    padding: 12px;
}

.justify-content-center {
    justify-content: center;
}

.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 24px;
}

.mt-5 {
    margin-top: 40px;
}

.py-5 {
    padding-top: 40px;
    padding-bottom: 40px;
}

.text-muted {
    color: var(--text-muted);
}

/* ===================================
   27. Responsive Design
   =================================== */

/* Tablet - 768px */
@media (min-width: 768px) {
    .col-md-6 { width: 50%; }
    .col-md-8 { width: 66.666667%; }

    .hero-content h1 {
        font-size: 48px;
    }

    .stats-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-timeline::before {
        display: block;
    }
}

/* Desktop - 992px */
@media (min-width: 992px) {
    .col-lg-3 { width: 25%; }
    .col-lg-4 { width: 33.333333%; }
    .col-lg-6 { width: 50%; }
    .col-lg-8 { width: 66.666667%; }

    .hero-content h1 {
        font-size: 52px;
    }

    .stats-row {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Mobile - max 991px */
@media (max-width: 991px) {
    .navbar-collapse {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        padding: 20px;
        box-shadow: var(--shadow-lg);
        border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    }

    .navbar-collapse.show {
        display: block;
    }

    .navbar-nav {
        flex-direction: column;
        gap: 4px;
    }

    .nav-link {
        padding: 14px 20px;
    }

    .navbar-toggler {
        display: block;
    }

    .hero-content {
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-tags {
        justify-content: center;
    }

    .cta-btn span {
        display: none;
    }

    .cta-btn {
        padding: 14px;
        border-radius: var(--radius-full);
    }

    .process-timeline::before {
        left: 30px;
    }

    .process-step,
    .process-step:nth-child(even) {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 60px;
    }

    .process-step:nth-child(even) .step-content {
        text-align: left;
    }

    .step-number {
        position: absolute;
        left: 0;
    }

    .step-content {
        max-width: 100%;
    }
}

/* Small Mobile - max 576px */
@media (max-width: 576px) {
    .section {
        padding: 60px 0;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 15px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .contact-form-wrapper {
        padding: 24px;
    }

    .price-card.featured {
        transform: none;
    }

    .price-card.featured:hover {
        transform: translateY(-5px);
    }

    .cta-content h2 {
        font-size: 28px;
    }

    .page-header {
        padding: 120px 0 60px;
    }

    .page-header h1 {
        font-size: 32px;
    }

    .content-card {
        padding: 24px;
    }

    .review-detail-card {
        padding: 24px;
    }

    .footer-tel {
        font-size: 22px;
    }

    .footer-links {
        flex-wrap: wrap;
    }

    .faq-question h4 {
        font-size: 14px;
    }
}

/* ===================================
   28. Utilities
   =================================== */
.d-flex { display: flex; }
.d-none { display: none; }
.d-block { display: block; }
.align-items-center { align-items: center; }
.justify-content-between { justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }
.w-100 { width: 100%; }
.h-100 { height: 100%; }
.mb-0 { margin-bottom: 0; }
.mb-3 { margin-bottom: 16px; }
.mb-4 { margin-bottom: 24px; }
.pt-4 { padding-top: 24px; }
.pb-4 { padding-bottom: 24px; }
.px-3 { padding-left: 12px; padding-right: 12px; }
.border-0 { border: 0; }
.rounded { border-radius: var(--radius-md); }
.overflow-hidden { overflow: hidden; }

/* ===================================
   29. BOARD PAGE STYLES (연수후기)
   =================================== */

/* Glass Card */
.glass-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 30px;
    border: 2px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

/* Search Box */
.search-box {
    margin-bottom: 30px;
}

.search-form {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    align-items: center;
}

.search-select {
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-full);
    font-size: 0.95rem;
    background: var(--bg-card);
    color: var(--text-color);
    min-width: 120px;
    transition: var(--transition-fast);
}

.search-select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.search-input {
    flex: 1;
    min-width: 200px;
    padding: 12px 20px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-full);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(236, 72, 153, 0.1);
}

/* Board Table */
.board-list {
    overflow-x: auto;
}

.board-table {
    width: 100%;
    border-collapse: collapse;
}

.board-table th {
    background: var(--bg-section);
    padding: 16px;
    font-weight: 600;
    color: var(--text-color);
    border-bottom: 2px solid var(--border-color);
    text-align: center;
    font-size: 0.9rem;
}

.board-table td {
    padding: 16px;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-color);
    font-size: 0.95rem;
}

.board-table tbody tr:hover {
    background: var(--bg-light);
}

.col-no { width: 80px; }
.col-title { width: auto; }
.col-author { width: 100px; }
.col-date { width: 110px; }
.col-views { width: 80px; }

.post-title {
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition-fast);
}

.post-title:hover {
    color: var(--primary-color);
}

.post-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 5px;
}

/* Board Badges */
.badge-notice {
    background: var(--primary-gradient);
    color: white;
    padding: 5px 12px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
}

.badge-new {
    background: var(--success-color);
    color: white;
    padding: 3px 8px;
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 600;
    margin-left: 8px;
}

/* Text Utilities */
.text-right { text-align: right; }

.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 STYLES (수업안내)
   =================================== */

/* Class Grid */
.class-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

/* Day Header */
.day-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-light);
}

.day-number {
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    color: white;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.2rem;
}

.day-info h3 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-color);
}

.day-info span {
    font-size: 0.85rem;
    color: var(--text-light);
}

.feature-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 10px;
}

.feature-description {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* Express Grid */
.express-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.express-number {
    width: 70px;
    height: 70px;
    background: var(--primary-gradient);
    color: white;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.8rem;
    margin: 0 auto 20px;
}

@media (max-width: 768px) {
    .express-grid {
        grid-template-columns: 1fr;
    }
}

/* Notice Card */
.notice-card {
    background: var(--bg-section);
    border-left: 4px solid var(--primary-color);
}

.notice-card h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.notice-card h3 i {
    color: var(--primary-color);
    margin-right: 10px;
}

.notice-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.notice-card li {
    padding: 10px 0;
    color: var(--text-light);
    font-size: 0.95rem;
}

.notice-card li::before {
    content: "💕";
    margin-right: 10px;
}

/* Section Alt Background */
.section-alt {
    background: var(--bg-section);
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-badge {
    display: inline-block;
    background: var(--primary-gradient);
    color: white;
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-description {
    color: var(--text-light);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ===================================
   31. RECOMMEND PAGE STYLES (면허취득가이드)
   =================================== */

/* Tab Navigation */
.tab-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
}

.tab-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-full);
    color: var(--text-color);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.tab-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.tab-btn.active {
    background: var(--primary-gradient);
    border-color: var(--primary-color);
    color: white;
}

.tab-btn i {
    font-size: 1rem;
}

@media (max-width: 576px) {
    .tab-nav {
        flex-direction: column;
        gap: 10px;
    }

    .tab-btn {
        justify-content: center;
    }
}

/* Process Timeline - 추가 스타일 */
.process-item {
    display: flex;
    gap: 25px;
    margin-bottom: 30px;
    position: relative;
}

.process-item:last-child {
    margin-bottom: 0;
}

.process-number {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    color: white;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.process-content {
    flex: 1;
    background: var(--bg-card);
    padding: 25px;
    border-radius: var(--radius-lg);
    border: 2px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

.process-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.process-content p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Recommend Grid */
.recommend-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

/* Icon Variants */
.icon-premium {
    background: linear-gradient(135deg, #fbbf24, #f59e0b) !important;
}

.icon-budget {
    background: linear-gradient(135deg, #34d399, #10b981) !important;
}

.icon-flex {
    background: var(--primary-gradient) !important;
}

/* Recommend Stars */
.recommend-stars {
    margin-top: 15px;
}

.recommend-stars i {
    color: var(--accent-color);
    font-size: 0.9rem;
}

.recommend-stars i.far {
    color: var(--border-color);
}

/* Why Choose Card */
.why-choose {
    background: var(--bg-section);
    margin-top: 50px;
}

.why-choose h3 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: var(--text-color);
}

.why-choose h3 i {
    color: var(--accent-color);
    margin-right: 10px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.why-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.why-item i {
    color: var(--success-color);
    font-size: 1.2rem;
    margin-top: 3px;
}

.why-item h5 {
    margin: 0 0 5px 0;
    font-size: 1rem;
    color: var(--text-color);
}

.why-item p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ===================================
   32. ROAD PAGE STYLES (도로연수)
   =================================== */

/* Program Card */
.program-card {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 2px solid var(--border-light);
    box-shadow: var(--shadow-md);
}

/* Program Header */
.program-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 30px;
    background: var(--primary-gradient);
    color: white;
}

.program-header h2 {
    margin: 0 0 5px 0;
    font-size: 1.5rem;
    color: white;
}

.program-header p {
    margin: 0;
    opacity: 0.9;
    font-size: 0.95rem;
}

/* Price Badges */
.price-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.price-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9rem;
    color: white;
}

.price-badge.green {
    background: var(--success-color);
}

.price-badge.blue {
    background: var(--info-color);
}

/* Schedule Table */
.schedule-table {
    padding: 30px;
}

.schedule-row {
    display: flex;
    gap: 25px;
    padding: 25px 0;
    border-bottom: 1px solid var(--border-light);
}

.schedule-row:last-child {
    border-bottom: none;
}

.day-label {
    width: 80px;
    height: 80px;
    background: var(--bg-section);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 400;
    color: var(--primary-color);
    flex-shrink: 0;
}

.day-content {
    flex: 1;
}

.day-content h4 {
    margin: 0 0 10px 0;
    font-size: 1.1rem;
    color: var(--text-color);
}

.day-content h4 i {
    color: var(--primary-color);
    margin-right: 10px;
}

.day-content p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Program Note */
.program-note {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 20px 30px;
    background: var(--bg-section);
    color: var(--text-light);
    font-size: 0.9rem;
}

.program-note i {
    color: var(--primary-color);
}

/* Weekend Grid */
.weekend-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.icon-weekend {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light)) !important;
}

.icon-express {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light)) !important;
}

.program-price {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-top: 15px;
}

@media (max-width: 768px) {
    .weekend-grid {
        grid-template-columns: 1fr;
    }

    .program-header {
        flex-direction: column;
        text-align: center;
    }

    .schedule-row {
        flex-direction: column;
        gap: 15px;
    }

    .day-label {
        width: 100%;
        height: 50px;
    }
}

/* Area Grid */
.area-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.area-emoji {
    font-size: 3rem;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .area-grid {
        grid-template-columns: 1fr;
    }
}

/* Button Large */
.btn-lg {
    padding: 16px 40px;
    font-size: 1.1rem;
}

/* Feature Card */
.feature-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 30px;
    border: 2px solid var(--border-light);
    transition: var(--transition-normal);
    height: 100%;
}

.feature-card:hover {
    border-color: var(--primary-light);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-gradient);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 1.5rem;
    color: white;
}
