/* ===============================================
   DR-Drive-12 Theme - 선셋 글로우 (Sunset Glow)
   상하 레이아웃 / #FFA07A (살몬) + #FFDAB9 (피치)
   =============================================== */

:root {
    --primary: #FFA07A;
    --primary-dark: #FF8C5A;
    --primary-light: #FFDAB9;
    --secondary: #FF7F50;
    --accent: #FFB347;

    --text-dark: #4A3728;
    --text-light: #8B7355;
    --text-muted: #A89078;

    --bg-main: #FFFAF5;
    --bg-white: #FFFFFF;
    --bg-cream: #FFF8F0;

    --border: #F5E6D8;
    --shadow-sm: 0 2px 8px rgba(255, 160, 122, 0.15);
    --shadow-md: 0 4px 20px rgba(255, 160, 122, 0.2);
    --shadow-lg: 0 10px 40px rgba(255, 160, 122, 0.25);

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 50px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Nunito', 'Noto Sans KR', sans-serif;
    color: var(--text-dark);
    background: var(--bg-main);
    line-height: 1.7;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', 'Noto Serif KR', serif;
    font-weight: 600;
    line-height: 1.3;
}

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

.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.3s;
    padding: 15px 0;
}

.header.scrolled {
    background: rgba(255,255,255,0.98);
    box-shadow: var(--shadow-sm);
    padding: 10px 0;
}

.navbar {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.brand-icon { font-size: 1.8rem; }

.navbar-nav {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    gap: 5px;
    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: 600;
    border-radius: var(--radius-full);
    transition: all 0.3s;
}

.navbar-nav .nav-link:hover {
    color: var(--primary);
    background: var(--primary-light);
}

.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-radius: var(--radius-full);
    font-weight: 600;
}

.header-cta:hover {
    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;
}

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

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,160,122,0.85) 0%, rgba(255,218,185,0.75) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 650px;
    color: white;
    padding: 100px 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.2);
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-weight: 600;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: white;
    line-height: 1.2;
}

.hero-title .highlight {
    color: var(--text-dark);
}

.hero-desc {
    font-size: 1.2rem;
    margin-bottom: 35px;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 30px;
    border-radius: var(--radius-full);
    font-weight: 700;
    transition: all 0.3s;
}

.btn-primary {
    background: white;
    color: var(--primary-dark);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    color: var(--primary-dark);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary);
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.hero-stats .stat {
    text-align: center;
}

.hero-stats .num {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
}

.hero-stats .label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-badge {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.5rem;
    color: var(--text-dark);
}

/* Features */
.features-section {
    background: var(--bg-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 40px 25px;
    background: var(--bg-cream);
    border-radius: var(--radius-lg);
    transition: all 0.3s;
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Price */
.price-section {
    background: linear-gradient(135deg, var(--primary-light), var(--bg-cream));
}

.price-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.price-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.3s;
}

.price-card.featured {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    transform: scale(1.05);
}

.price-card:hover {
    box-shadow: var(--shadow-lg);
}

.price-badge {
    position: absolute;
    top: -12px;
    right: 25px;
    background: var(--secondary);
    color: white;
    padding: 6px 18px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
}

.price-card.featured .price-badge {
    background: white;
    color: var(--primary);
}

.price-card h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.price-card.featured h3 { color: white; }

.price-amount {
    margin-bottom: 25px;
}

.price-amount .won {
    font-size: 1.2rem;
    color: var(--text-light);
}

.price-card.featured .won { color: rgba(255,255,255,0.8); }

.price-amount .number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
}

.price-card.featured .number { color: white; }

.price-features {
    list-style: none;
    text-align: left;
    margin-bottom: 25px;
}

.price-features li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

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

.price-card.featured .price-features i { color: white; }

.price-btn {
    display: block;
    padding: 14px;
    background: var(--primary);
    color: white;
    border-radius: var(--radius-full);
    font-weight: 700;
    transition: all 0.3s;
}

.price-card.featured .price-btn {
    background: white;
    color: var(--primary);
}

.price-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
    color: white;
}

.price-card.featured .price-btn:hover { color: var(--primary); }

.price-note {
    text-align: center;
    color: var(--text-light);
}

.price-note i { color: var(--secondary); }

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

.review-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.review-card {
    background: var(--bg-cream);
    border-radius: var(--radius-md);
    padding: 30px;
}

.review-stars {
    color: #FFC107;
    margin-bottom: 15px;
}

.review-text {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-author img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}

.review-author strong {
    display: block;
    font-size: 0.95rem;
}

.review-author span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.section-more {
    text-align: center;
    margin-top: 40px;
}

.section-more a {
    font-weight: 600;
    color: var(--primary);
}

/* Contact */
.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: 25px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: var(--bg-white);
    border-radius: var(--radius-md);
}

.info-item i {
    width: 50px;
    height: 50px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
}

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

.info-item p, .info-item a {
    color: var(--text-light);
}

.contact-form {
    background: var(--bg-white);
    padding: 40px;
    border-radius: var(--radius-lg);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-group label i {
    color: var(--primary);
    margin-right: 5px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    border-radius: var(--radius-full);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand a {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: white;
    display: block;
    margin-bottom: 10px;
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-col h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 12px;
}

.footer-col a,
.footer-col li {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

.footer-col a:hover {
    color: var(--primary-light);
}

.footer-col i {
    width: 20px;
    color: var(--primary-light);
}

.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;
}

/* ===== PAGE HEADER (서브페이지) ===== */
.page-header {
    padding: 140px 0 60px;
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--primary-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-light);
}

.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-light);
}

.breadcrumb a { color: var(--text-light); }
.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-light); }

/* Floating CTA */
.cta-buttons {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 999;
}

.cta-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: var(--radius-full);
    color: white;
    font-weight: 600;
    box-shadow: var(--shadow-md);
    transition: all 0.3s;
}

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

.cta-btn.apply { background: linear-gradient(135deg, var(--primary), var(--secondary)); }
.cta-btn.kakao { background: #FEE500; color: #3C1E1E; }
.cta-btn.kakao:hover { color: #3C1E1E; }
.cta-btn.tel { background: var(--primary); }

#backToTop {
    position: fixed;
    right: 20px;
    bottom: 180px;
    width: 45px;
    height: 45px;
    background: var(--bg-white);
    border: 1px 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;
}

#backToTop.visible {
    opacity: 1;
    visibility: visible;
}

#backToTop:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

/* Responsive */
@media (max-width: 1024px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .price-cards { grid-template-columns: 1fr; }
    .price-card.featured { transform: none; }
}

@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: 20px;
        box-shadow: var(--shadow-md);
    }
    .navbar-nav.active { display: flex !important; }
    .header-cta { display: none; }

    .hero-title { font-size: 2.5rem; }
    .hero-buttons { flex-direction: column; }
    .hero-stats { flex-wrap: wrap; gap: 20px; }

    .features-grid,
    .review-grid { grid-template-columns: 1fr; }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .form-row { grid-template-columns: 1fr; }

    .footer-content { grid-template-columns: 1fr; }
    .footer-links { grid-template-columns: 1fr; text-align: center; }

    .cta-btn span { display: none; }
    .cta-btn { padding: 12px; border-radius: 50%; }
}

@media (max-width: 480px) {
    .section { padding: 60px 0; }
    .section-title { font-size: 2rem; }
    .hero-title { font-size: 2rem; }
    .contact-form { padding: 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;
    }
}

/* 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, #FFA07A);
    border-color: var(--primary, #FFA07A);
    color: #fff;
}

/* 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);
}

/* FAQ Accordion */
.faq-item {
    background: #fff;
    border-radius: 16px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 28px;
    cursor: pointer;
    transition: background 0.2s;
}

.faq-question:hover {
    background: #f9f9f9;
}

.faq-question-inner {
    display: flex;
    align-items: center;
    gap: 16px;
}

.faq-question h4 {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 600;
}

.faq-question .faq-toggle-icon {
    color: var(--primary-color, #333);
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-item.active .faq-toggle-icon {
    transform: rotate(180deg);
}

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

.faq-answer-inner {
    padding: 0 28px 24px;
    color: #666;
    line-height: 1.8;
}

.faq-answer-inner ul {
    margin: 16px 0;
    padding-left: 20px;
}

.faq-answer-inner ul li {
    margin-bottom: 4px;
}
