/* ===============================================
   DR-Drive-22 Theme - Pearl White (펄 화이트)
   Elegant & Minimal Design / #F8F8FF (Pearl) + #9DC183 (Sage Accent)
   =============================================== */

:root {
    --primary: #9DC183;
    --primary-dark: #7BA05B;
    --primary-light: #C8DEB5;
    --secondary: #6B8E23;
    --accent: #556B2F;

    --text-dark: #2D3B2D;
    --text-light: #5A6B5A;
    --text-muted: #7A8B7A;

    --bg-main: #F8F8FF;
    --bg-white: #FFFFFF;
    --bg-cream: #F5F8F2;
    --bg-sage-light: #EDF3E8;

    --border: #D8E5D0;
    --shadow-sm: 0 2px 10px rgba(107, 142, 35, 0.1);
    --shadow-md: 0 8px 30px rgba(107, 142, 35, 0.15);
    --shadow-lg: 0 15px 50px rgba(107, 142, 35, 0.2);

    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 50px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Noto Sans KR', sans-serif;
    color: var(--text-dark);
    background: var(--bg-main);
    line-height: 1.8;
}

h1, h2, h3, h4 {
    font-family: 'Gowun Batang', serif;
    font-weight: 700;
    line-height: 1.4;
}

a { text-decoration: none; color: var(--primary-dark); transition: all 0.3s; }
a:hover { color: var(--secondary); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 20px 0;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-sm);
    padding: 12px 0;
}

.navbar {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Gowun Batang', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-dark);
}

.brand-leaf {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.navbar-nav {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar-nav .nav-item { display: inline-block; }

.navbar-nav .nav-link {
    display: block;
    padding: 10px 18px;
    color: var(--text-dark);
    font-weight: 500;
    border-radius: var(--radius-full);
    transition: all 0.3s;
    font-size: 0.95rem;
}

.navbar-nav .nav-link:hover {
    color: var(--secondary);
    background: var(--bg-sage-light);
}

.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 26px;
    background: var(--primary);
    color: white;
    border-radius: var(--radius-full);
    font-weight: 600;
    transition: all 0.3s;
}

.header-cta:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: white;
}

.navbar-toggler {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.navbar-toggler span {
    width: 25px;
    height: 2px;
    background: var(--text-dark);
    transition: all 0.3s;
    border-radius: 2px;
}

/* ===== Hero Section - Pearl White Theme ===== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #F8F8FF 0%, #EDF3E8 100%);
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(157, 193, 131, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(107, 142, 35, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding-top: 100px;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    padding: 40px 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-sage-light);
    color: var(--primary-dark);
    padding: 12px 24px;
    border-radius: var(--radius-full);
    font-weight: 600;
    margin-bottom: 30px;
    border: 1px solid var(--primary-light);
}

.hero-title {
    font-size: 3.2rem;
    margin-bottom: 20px;
    color: var(--text-dark);
    line-height: 1.3;
}

.hero-title .highlight {
    color: var(--primary-dark);
    display: inline-block;
}

.hero-desc {
    font-size: 1.15rem;
    margin-bottom: 40px;
    color: var(--text-light);
    line-height: 1.9;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 50px;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: var(--radius-full);
    font-weight: 600;
    transition: all 0.3s;
    background: transparent;
    color: var(--primary-dark);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 30px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Gowun Batang', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

/* Hero Image */
.hero-image {
    position: relative;
}

.image-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.image-frame img {
    width: 100%;
    height: auto;
    display: block;
}

.frame-decoration {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    border: 3px solid var(--primary-light);
    border-radius: var(--radius-md);
    z-index: -1;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: var(--radius-full);
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--secondary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    color: white;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.btn-secondary:hover {
    background: white;
    color: var(--secondary);
    border-color: white;
}

/* Overlap Stats Cards */
.hero-overlap-cards {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 30px;
    z-index: 10;
    width: 100%;
    max-width: 900px;
    justify-content: center;
    padding: 0 20px;
}

.overlap-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 30px 40px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s;
    flex: 1;
    max-width: 280px;
}

.overlap-card:hover {
    transform: translateY(-8px);
}

.overlap-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-sage-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    font-size: 1.5rem;
}

.overlap-info {
    display: flex;
    flex-direction: column;
}

.overlap-num {
    font-family: 'Gowun Batang', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
}

.overlap-label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ===== Sections ===== */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-dark);
    background: var(--bg-sage-light);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

.section-title {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.section-desc {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* ===== Features Section ===== */
.features-section {
    background: var(--bg-white);
    padding: 100px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    position: relative;
    text-align: center;
    padding: 45px 30px;
    background: var(--bg-cream);
    border-radius: var(--radius-lg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    background: white;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-card:hover .feature-icon {
    background: var(--secondary);
    transform: scale(1.1);
}

/* Legacy support */
.features-overlap-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-icon-wrap {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.feature-icon-wrap i {
    font-size: 2rem;
    color: white;
}

.feature-card:hover .feature-icon-wrap {
    background: var(--secondary);
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

.feature-leaf {
    position: absolute;
    bottom: -10px;
    right: -10px;
    font-size: 4rem;
    color: var(--primary-light);
    opacity: 0.3;
    transition: all 0.3s;
}

.feature-card:hover .feature-leaf {
    opacity: 0.5;
    transform: rotate(-15deg);
}

/* ===== About Section ===== */
.about-section {
    background: var(--bg-sage-light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img-main img {
    width: 100%;
    height: auto;
    display: block;
}

.about-img-float {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 200px;
    height: 200px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 6px solid white;
    box-shadow: var(--shadow-md);
}

.about-img-float img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-badge-float {
    position: absolute;
    top: 30px;
    left: -30px;
    background: var(--primary);
    color: white;
    padding: 25px 20px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-md);
}

.about-badge-float .badge-num {
    display: block;
    font-family: 'Gowun Batang', serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.about-badge-float .badge-text {
    font-size: 0.85rem;
    opacity: 0.9;
}

.about-content {
    padding: 20px 0;
}

.about-title {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.about-text {
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.9;
}

.about-list {
    list-style: none;
    margin-bottom: 35px;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-weight: 500;
}

.about-list i {
    color: var(--primary-dark);
    font-size: 1.1rem;
}

.btn-about {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--primary);
    color: white;
    border-radius: var(--radius-full);
    font-weight: 600;
    transition: all 0.3s;
}

.btn-about:hover {
    background: var(--secondary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    color: white;
}

/* ===== Pricing Section ===== */
.pricing-section {
    background: var(--bg-cream);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.pricing-card {
    background: white;
    border-radius: var(--radius-lg);
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    overflow: hidden;
}

.pricing-card.featured {
    background: var(--primary);
    color: white;
    transform: scale(1.05);
    border-color: var(--secondary);
}

.pricing-card:not(.featured):hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.pricing-badge {
    position: absolute;
    top: 15px;
    right: -35px;
    background: var(--secondary);
    color: white;
    padding: 6px 40px;
    font-size: 0.75rem;
    font-weight: 700;
    transform: rotate(45deg);
}

.pricing-card.featured .pricing-badge {
    background: white;
    color: var(--secondary);
}

.pricing-header {
    padding: 35px 30px 25px;
}

.pricing-header h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: inherit;
}

.pricing-header p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.pricing-card.featured .pricing-header p {
    color: rgba(255, 255, 255, 0.8);
}

.pricing-body {
    padding: 0 30px 30px;
}

.price {
    margin-bottom: 25px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.price .currency {
    font-size: 1.2rem;
    color: var(--text-muted);
}

.pricing-card.featured .price .currency {
    color: rgba(255, 255, 255, 0.8);
}

.price .amount {
    font-family: 'Gowun Batang', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-dark);
}

.pricing-card.featured .price .amount {
    color: white;
}

.price .unit {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.pricing-card.featured .price .unit {
    color: rgba(255, 255, 255, 0.8);
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 25px;
}

.pricing-features li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    border-bottom: 1px solid var(--border);
    color: var(--text-dark);
}

.pricing-card.featured .pricing-features li {
    border-color: rgba(255, 255, 255, 0.2);
    color: white;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    color: var(--primary-dark);
    font-size: 0.9rem;
    width: 18px;
}

.pricing-card.featured .pricing-features i {
    color: #FFFACD;
}

.pricing-footer {
    padding: 0 30px 35px;
}

.btn-pricing {
    display: block;
    width: 100%;
    padding: 16px;
    background: var(--primary);
    color: white;
    border-radius: var(--radius-full);
    font-weight: 600;
    transition: all 0.3s;
    text-align: center;
}

.pricing-card.featured .btn-pricing {
    background: white;
    color: var(--secondary);
}

.btn-pricing:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
    color: white;
}

.pricing-card.featured .btn-pricing:hover {
    color: var(--secondary);
    background: #f5f5f5;
}

.pricing-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.95rem;
    padding: 20px;
    background: var(--bg-sage-light);
    border-radius: var(--radius-md);
}

.pricing-notice i {
    color: var(--primary-dark);
}

/* ===== Price Section - Overlap Cards ===== */
.price-section {
    background: var(--bg-cream);
}

.price-overlap-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.price-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 45px 35px;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.price-card.featured {
    background: var(--primary);
    color: white;
    transform: scale(1.05);
    border-color: var(--secondary);
}

.price-card:not(.featured):hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.price-ribbon {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary);
    color: white;
    padding: 8px 25px;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    font-size: 0.8rem;
    font-weight: 700;
}

.price-card.featured .price-ribbon {
    background: white;
    color: var(--secondary);
}

.price-card h3 {
    font-size: 1.4rem;
    margin: 30px 0 25px;
    color: inherit;
}

.price-amount {
    margin-bottom: 30px;
}

.price-amount .won {
    font-size: 1.2rem;
    color: var(--text-muted);
    vertical-align: top;
}

.price-card.featured .price-amount .won {
    color: rgba(255, 255, 255, 0.8);
}

.price-amount .number {
    font-family: 'Gowun Batang', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
}

.price-card.featured .price-amount .number {
    color: white;
}

.price-features {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}

.price-features li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    border-bottom: 1px solid var(--border);
}

.price-card.featured .price-features li {
    border-color: rgba(255, 255, 255, 0.2);
}

.price-features li:last-child {
    border-bottom: none;
}

.price-features i {
    color: var(--primary-dark);
    font-size: 0.9rem;
}

.price-card.featured .price-features i {
    color: #FFFACD;
}

.price-btn {
    display: block;
    width: 100%;
    padding: 16px;
    background: var(--primary);
    color: white;
    border-radius: var(--radius-full);
    font-weight: 600;
    transition: all 0.3s;
}

.price-card.featured .price-btn {
    background: white;
    color: var(--secondary);
}

.price-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
    color: white;
}

.price-card.featured .price-btn:hover {
    color: var(--secondary);
    background: #f5f5f5;
}

.price-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.price-note i {
    color: var(--primary-dark);
    margin-right: 5px;
}

/* ===== Testimonials Section ===== */
.testimonials-section {
    background: var(--bg-cream);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 35px 30px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.testimonial-rating {
    color: var(--primary-dark);
    margin-bottom: 20px;
    font-size: 1rem;
    letter-spacing: 2px;
}

.testimonial-rating i {
    color: var(--primary-dark);
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid var(--primary-light);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.author-name {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1rem;
}

.author-detail {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.testimonials-cta {
    text-align: center;
    margin-top: 50px;
}

.testimonials-cta .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* ===== Reviews Section - Overlap Grid ===== */
.reviews-section {
    background: var(--bg-white);
}

.review-overlap-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.review-card {
    position: relative;
    background: var(--bg-cream);
    border-radius: var(--radius-lg);
    padding: 40px 30px 30px;
    transition: all 0.3s;
}

.review-card:nth-child(2) {
    transform: translateY(30px);
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.review-card:nth-child(2):hover {
    transform: translateY(20px);
}

.review-quote {
    position: absolute;
    top: -15px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.review-stars {
    color: #FFD700;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.review-text {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 25px;
    line-height: 1.8;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.review-author img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-light);
}

.review-info strong {
    display: block;
    font-size: 1rem;
    color: var(--text-dark);
}

.review-info span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.section-more {
    text-align: center;
    margin-top: 50px;
}

.section-more a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--primary-dark);
    padding: 12px 28px;
    border: 2px solid var(--primary);
    border-radius: var(--radius-full);
    transition: all 0.3s;
}

.section-more a:hover {
    background: var(--primary);
    color: white;
}

/* ===== Process Section ===== */
.process-section {
    background: var(--bg-white);
}

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-light);
}

.process-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}

.process-item:last-child {
    margin-bottom: 0;
}

.process-number {
    width: 80px;
    height: 80px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Gowun Batang', serif;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow-md);
}

.process-content {
    flex: 1;
    background: var(--bg-cream);
    padding: 25px 30px;
    border-radius: var(--radius-md);
    transition: all 0.3s;
}

.process-content:hover {
    background: white;
    box-shadow: var(--shadow-md);
    transform: translateX(10px);
}

.process-content h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.process-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== CTA Section ===== */
.cta-section {
    background: var(--primary);
    padding: 80px 0;
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2rem;
    color: white;
    margin-bottom: 15px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    background: white;
    color: var(--secondary);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.btn-cta:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    color: var(--secondary);
}

/* ===== FAQ Section ===== */
.faq-section {
    background: var(--bg-sage-light);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: var(--radius-md);
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 30px;
    cursor: pointer;
    transition: all 0.3s;
}

.faq-question span {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1.05rem;
}

.faq-question i {
    color: var(--primary);
    transition: transform 0.3s;
}

.faq-item.active .faq-question {
    background: var(--primary);
}

.faq-item.active .faq-question span,
.faq-item.active .faq-question i {
    color: white;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 20px 30px;
    color: var(--text-light);
    line-height: 1.8;
}

/* ===== Contact Section ===== */
.contact-section {
    background: var(--bg-cream);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}

.info-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.info-icon {
    width: 55px;
    height: 55px;
    background: var(--bg-sage-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.info-content h4 {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.info-content p,
.info-content a {
    color: var(--text-light);
    font-size: 0.95rem;
}

.contact-form {
    background: white;
    padding: 45px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-group label i {
    color: var(--primary);
    margin-right: 8px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 15px 18px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s;
    background: var(--bg-main);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
}

.btn-submit {
    width: 100%;
    padding: 18px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: var(--radius-full);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-submit:hover {
    background: var(--secondary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* ===== Footer ===== */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 70px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-brand a {
    font-family: 'Gowun Batang', serif;
    font-size: 1.5rem;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-brand a i {
    color: var(--primary-light);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-col h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 25px;
    font-family: 'Gowun Batang', serif;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 14px;
}

.footer-col a,
.footer-col li {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-col a:hover {
    color: var(--primary-light);
}

.footer-col i {
    color: var(--primary-light);
    width: 18px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* ===== Floating CTA Buttons ===== */
.cta-buttons {
    position: fixed;
    right: 25px;
    bottom: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.cta-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: var(--radius-full);
    color: white;
    font-weight: 600;
    box-shadow: var(--shadow-md);
    transition: all 0.3s;
}

.cta-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: var(--shadow-lg);
    color: white;
}

.cta-btn.apply {
    background: var(--primary);
}

.cta-btn.apply:hover {
    background: var(--secondary);
}

.cta-btn.kakao {
    background: #FEE500;
    color: #3C1E1E;
}

.cta-btn.kakao:hover {
    color: #3C1E1E;
    background: #FFD700;
}

.cta-btn.tel {
    background: var(--secondary);
}

/* Back to Top */
#backToTop {
    position: fixed;
    right: 25px;
    bottom: 200px;
    width: 50px;
    height: 50px;
    background: white;
    border: 2px solid var(--border);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 998;
    color: var(--text-dark);
}

#backToTop.visible {
    opacity: 1;
    visibility: visible;
}

#backToTop:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    transform: translateY(-3px);
}

/* ===== PAGE HEADER (서브페이지) ===== */
.page-header {
    padding: 140px 0 60px;
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-sage-light) 100%);
    text-align: center;
    position: relative;
}

.page-header-content {
    max-width: 600px;
    margin: 0 auto;
}

.page-icon {
    display: inline-flex;
    width: 56px;
    height: 56px;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: white;
    border-radius: 16px;
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.page-header h1 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.page-header p {
    font-size: 1.05rem;
    color: var(--text-body);
}

.breadcrumb-nav {
    margin-top: 20px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-body);
}

.breadcrumb a { color: var(--text-body); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb-item.active { color: var(--primary); font-weight: 500; }
.breadcrumb-item + .breadcrumb-item::before { content: '/'; margin-right: 8px; color: var(--text-body); }

/* ===== Responsive ===== */
@media (max-width: 1200px) {
    .hero-overlap-cards {
        gap: 20px;
    }

    .overlap-card {
        padding: 25px 30px;
    }

    .features-overlap-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-card.overlap-up,
    .feature-card.overlap-down {
        margin-top: 0;
    }
}

@media (max-width: 1024px) {
    .hero-section .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-title { font-size: 2.8rem; }

    .hero-image {
        max-width: 500px;
        margin: 0 auto;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-images {
        max-width: 500px;
        margin: 0 auto;
    }

    .price-overlap-cards {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto 40px;
    }

    .price-card.featured {
        transform: none;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto 40px;
    }

    .pricing-card.featured {
        transform: none;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .review-overlap-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .review-card:nth-child(2) {
        transform: none;
    }

    .review-card:nth-child(2):hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .navbar-toggler { display: flex; }

    .navbar-nav {
        display: none !important;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column !important;
        padding: 25px;
        box-shadow: var(--shadow-md);
        border-radius: 0 0 var(--radius-md) var(--radius-md);
    }

    .navbar-nav.active { display: flex !important; }
    .header-cta { display: none; }

    .hero-section .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-title { font-size: 2.2rem; }
    .hero-actions { flex-direction: column; justify-content: center; }

    .hero-stats {
        justify-content: center;
    }

    .hero-image {
        max-width: 400px;
        margin: 0 auto;
    }

    .hero-overlap-cards {
        flex-direction: column;
        bottom: -150px;
        gap: 15px;
    }

    .overlap-card {
        max-width: 100%;
    }

    .features-grid,
    .features-overlap-grid {
        grid-template-columns: 1fr;
    }

    .process-timeline::before {
        left: 25px;
    }

    .process-number {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }

    .process-content {
        padding: 20px;
    }

    .process-content h3 {
        font-size: 1.1rem;
    }

    .about-img-float {
        width: 140px;
        height: 140px;
        right: -20px;
        bottom: -20px;
    }

    .about-badge-float {
        left: -15px;
        padding: 20px 15px;
    }

    .about-badge-float .badge-num {
        font-size: 2rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .form-row { grid-template-columns: 1fr; }
    .contact-form { padding: 30px 25px; }

    .footer-content { grid-template-columns: 1fr; }
    .footer-links { grid-template-columns: 1fr; text-align: center; }

    .cta-btn span { display: none; }
    .cta-btn { padding: 14px; border-radius: 50%; }
}

@media (max-width: 480px) {
    .section { padding: 70px 0; }
    .section-title { font-size: 1.9rem; }
    .hero-title { font-size: 1.9rem; }

    .hero-badge {
        padding: 10px 18px;
        font-size: 0.85rem;
    }

    .overlap-card {
        padding: 20px 25px;
    }

    .overlap-num {
        font-size: 1.5rem;
    }

    .feature-card {
        padding: 35px 25px;
    }

    .price-card {
        padding: 35px 25px;
    }
}

/* ===== SUBPAGE COMPONENTS (공통 서브페이지 컴포넌트) ===== */

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-light, #E8F5E9);
    color: var(--primary, #4CAF50);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    color: var(--text-dark, #212121);
    margin-bottom: 12px;
}

.section-title .highlight,
.section-title .gradient-text {
    color: var(--primary, #4CAF50);
}

.section-desc {
    color: var(--text-muted, #757575);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Curriculum Grid */
.curriculum-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.curriculum-card {
    background: var(--white, #fff);
    padding: 32px 24px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    border: 1px solid var(--gray-100, #f5f5f5);
    position: relative;
    transition: all 0.3s ease;
}

.curriculum-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.curriculum-day {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary, #4CAF50);
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.curriculum-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light, #E8F5E9);
    color: var(--primary, #4CAF50);
    border-radius: 16px;
    font-size: 1.5rem;
    margin: 20px auto 16px;
}

.curriculum-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--primary, #4CAF50);
    color: white;
    border-radius: 50%;
    font-weight: 600;
    margin-bottom: 12px;
}

.curriculum-card h3 {
    color: var(--text-dark, #212121);
    margin-bottom: 12px;
    font-size: 1.15rem;
}

.curriculum-card p {
    color: var(--text-muted, #757575);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Highlight Grid */
.highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 32px;
}

.highlight-item {
    background: var(--white, #fff);
    padding: 28px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border: 1px solid var(--gray-100, #f5f5f5);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.highlight-icon {
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light, #E8F5E9);
    color: var(--primary, #4CAF50);
    border-radius: 12px;
    font-size: 1.25rem;
    margin-bottom: 16px;
}

.highlight-item h4 {
    color: var(--text-dark, #212121);
    margin-bottom: 8px;
    font-size: 1.05rem;
}

.highlight-item p {
    color: var(--text-muted, #757575);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Option Grid */
.option-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.option-card {
    background: var(--white, #fff);
    padding: 36px 28px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    border: 1px solid var(--gray-100, #f5f5f5);
    position: relative;
    transition: all 0.3s ease;
}

.option-card.featured {
    border-color: var(--primary, #4CAF50);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    transform: scale(1.02);
}

.option-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary, #4CAF50);
    color: white;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.option-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light, #E8F5E9);
    color: var(--primary, #4CAF50);
    border-radius: 16px;
    font-size: 1.5rem;
    margin: 0 auto 16px;
}

.option-card h3 {
    color: var(--text-dark, #212121);
    margin-bottom: 12px;
}

.option-list {
    list-style: none;
    margin: 0 0 20px;
    padding: 0;
    text-align: left;
}

.option-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    color: var(--text-body, #424242);
    border-bottom: 1px dashed var(--gray-200, #eee);
    font-size: 0.95rem;
}

.option-list li:last-child {
    border-bottom: none;
}

.option-list li i {
    color: var(--primary, #4CAF50);
}

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, var(--primary-light, #E8F5E9) 0%, var(--bg-cream, #FFFBF7) 100%);
    padding: 48px 32px;
    border-radius: 20px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-box h2 {
    color: var(--text-dark, #212121);
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.cta-box p {
    color: var(--text-muted, #757575);
    margin-bottom: 24px;
}

/* Section CTA */
.section-cta {
    background: linear-gradient(135deg, var(--primary, #4CAF50) 0%, var(--primary-dark, #388E3C) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.section-cta .cta-box {
    background: rgba(255,255,255,0.95);
}

/* Responsive */
@media (max-width: 768px) {
    .curriculum-grid,
    .option-grid {
        grid-template-columns: 1fr;
    }

    .highlight-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .option-card.featured {
        transform: none;
    }

    .cta-box {
        padding: 36px 24px;
    }
}

@media (max-width: 480px) {
    .highlight-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== Price Table ===== */
.price-table-wrapper {
    overflow-x: auto;
    margin-top: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-white);
}

.price-table thead {
    background: var(--bg-sage-light);
}

.price-table th {
    padding: 18px 20px;
    text-align: center;
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 0.95rem;
}

.price-table td {
    padding: 18px 20px;
    text-align: center;
    border-bottom: 1px solid var(--border);
    color: var(--text-light);
}

.price-table td strong {
    color: var(--text-dark);
}

.price-table td small {
    color: var(--text-muted);
}

.price-table tr:last-child td {
    border-bottom: none;
}

.price-table tbody tr:hover {
    background: var(--bg-cream);
}

.table-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.table-note i {
    color: var(--primary);
}

.table-note p {
    margin: 0;
}

@media (max-width: 768px) {
    .price-table th,
    .price-table td {
        padding: 12px 10px;
        font-size: 0.9rem;
    }
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin: 30px 0;
}
.page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-color, #e5e7eb);
    border-radius: var(--radius-full, 50px);
    color: var(--text-muted, #6b7280);
    font-weight: 500;
    transition: all 0.2s;
}
.page-link:hover,
.page-link.active {
    background: var(--primary, #9DC183);
    border-color: var(--primary, #9DC183);
    color: #fff;
}

/* ===============================================
   Road Training Page (도로연수)
   =============================================== */

/* Program Card */
.program-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 0;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    overflow: hidden;
    margin-bottom: 30px;
}

/* Program Header */
.program-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 32px;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border);
    flex-wrap: wrap;
    gap: 20px;
}

.program-title-area {
    display: flex;
    align-items: center;
    gap: 16px;
}

.program-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-sm);
    background: var(--bg-sage-light);
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.program-title-area h2 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.program-title-area p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

/* Program Prices */
.program-prices {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.price-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 0.88rem;
    font-weight: 600;
    background: var(--bg-sage-light);
    color: var(--text-dark);
    border: 1px solid var(--border);
}

.price-tag.featured {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* Schedule Timeline */
.schedule-timeline {
    padding: 0;
}

.schedule-item {
    display: flex;
    align-items: stretch;
    border-bottom: 1px solid var(--border);
}

.schedule-item:last-child {
    border-bottom: none;
}

.schedule-number {
    width: 90px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
    font-family: 'Gowun Batang', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
    background: var(--bg-cream);
    border-right: 2px solid var(--primary-light);
}

.schedule-content {
    flex: 1;
    padding: 24px 28px;
}

.schedule-content h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.schedule-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* Program Note */
.program-note {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px 32px;
    background: var(--bg-cream);
    color: var(--text-light);
    font-size: 0.9rem;
    border-top: 1px solid var(--border);
}

.program-note i {
    color: var(--primary);
    font-size: 1rem;
}

/* Weekend Grid */
.weekend-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.weekend-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 36px 28px;
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.weekend-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.weekend-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-sm);
    background: var(--bg-sage-light);
    color: var(--primary-dark);
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.weekend-card h4 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.weekend-time {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.weekend-price {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-dark);
}

/* Area Grid */
.area-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.area-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 36px 24px;
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.area-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.area-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-sm);
    background: var(--bg-sage-light);
    color: var(--primary-dark);
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.area-card h4 {
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.area-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

/* Road Page Responsive */
@media (max-width: 768px) {
    .program-header {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
    }

    .program-prices {
        width: 100%;
    }

    .price-tag {
        font-size: 0.82rem;
        padding: 6px 14px;
    }

    .schedule-item {
        flex-direction: column;
    }

    .schedule-number {
        width: 100%;
        padding: 14px 20px;
        border-right: none;
        border-bottom: 2px solid var(--primary-light);
        font-size: 1.2rem;
    }

    .schedule-content {
        padding: 16px 20px;
    }

    .weekend-grid {
        grid-template-columns: 1fr;
    }

    .area-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .program-note {
        padding: 14px 20px;
    }
}

/* Scroll Animation */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

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

/* Contact Info Card */
.contact-info-card {
    background: linear-gradient(135deg, var(--primary-color, #333) 0%, var(--primary-dark, #222) 100%);
    border-radius: 16px;
    padding: 40px;
    color: white;
    height: 100%;
}

.contact-info-card h3 {
    font-size: 1.5rem;
    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: 50%;
    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;
}

/* Review Card Thumbnail (4:3) */
.rv-card-thumb {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 16px;
}

.rv-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
