/* ========================================
   Global Styles
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #9480c5;
    --primary-dark: #7d6aad;
    --accent-color: #77bf7e;
    --accent-dark: #5fa766;
    --secondary-color: #b9c9da;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --border-color: #e2e8f0;
    --bg-gray: #f8fafc;
    --white: #ffffff;
    --success: #77bf7e;
    --danger: #ef4444;
    --warning: #f59e0b;
}

body {
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   Navigation
   ======================================== */
.navbar {
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 16px 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.2s;
}

.logo a {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    text-decoration: none;
}

.logo:hover {
    opacity: 0.8;
}

.logo img {
    height: 32px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 36px;
    align-items: center;
    margin-left: 350px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s;
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

/* Active page indicator */
.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a.active::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

/* ==================== Dropdown Menu ==================== */
.nav-item {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    padding: 16px 0;
    min-width: 220px;
    margin-top: 0;
    padding-top: 20px;
    z-index: 1000;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 20px;
    background: transparent;
}

.nav-item.has-dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu a {
    display: block;
    padding: 10px 24px;
    color: #64748b;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
}

.dropdown-menu a:hover {
    background: #f8f4ff;
    color: #9480c5;
}

.dropdown-menu a i {
    margin-right: 8px;
    font-size: 13px;
    width: 16px;
    text-align: center;
    color: #9480c5;
}

/* ==================== Auth Menu ==================== */

/* Auth buttons styling - 독립적으로 오른쪽 배치 */
#authMenu {
    display: flex;
    align-items: center;
    gap: 8px;
}

#authMenu a {
    font-size: 14px !important;
    font-weight: 200 !important;
    letter-spacing: 0.3px;
    text-decoration: none;
    color: #555555;
    transition: color 0.2s;
}

#authMenu a[onclick*="logout"] {
    font-weight: 200 !important;
    color: #555555 !important;
}

#authMenu a:hover {
    color: var(--primary-color);
}

.auth-separator {
    color: #cbd5e1;
    font-size: 14px;
    font-weight: 200;
}

/* Floating Kakao Talk Button */
.kakao-float-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #FEE500;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.kakao-float-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.kakao-float-btn i {
    font-size: 28px;
    color: #3C1E1E;
}

@media (max-width: 768px) {
    .kakao-float-btn {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }
    
    .kakao-float-btn i {
        font-size: 24px;
    }
}

.nav-menu a[href="login.html"]:hover,
.nav-menu a[href="register.html"]:hover,
.nav-menu a[onclick*="logout"]:hover {
    color: var(--primary-color) !important;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: var(--text-dark);
}

/* ========================================
   Buttons
   ======================================== */
.btn-primary, .btn-secondary, .btn-outline {
    display: inline-block;
    padding: 12px 24px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.btn-secondary {
    background: var(--white);
    color: var(--text-dark);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: var(--bg-gray);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

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

.btn-primary-small {
    padding: 8px 16px;
    background: var(--primary-color);
    color: var(--white) !important;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
}

.btn-primary-small:hover {
    background: var(--primary-dark);
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #f8fafc 0%, #e8e0f5 100%);
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    gap: 60px;
    justify-content: center;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 12px;
    color: var(--text-light);
}

/* ========================================
   Section Styles
   ======================================== */
.section {
    padding: 60px 0;
}

.section-gray {
    background: #f0f4f8;
}

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

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 14px;
    color: var(--text-light);
}

/* ========================================
   Features Grid
   ======================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.feature-card {
    background: var(--white);
    padding: 32px 24px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #9480c5 0%, #7d6aad 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 24px;
}

.feature-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.feature-desc {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ========================================
   Programs Grid
   ======================================== */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.program-card {
    background: var(--white);
    padding: 28px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
    position: relative;
}

.program-card.featured {
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
}

.program-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.program-badge {
    display: inline-block;
    padding: 4px 12px;
    background: var(--bg-gray);
    color: var(--text-light);
    font-size: 11px;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.program-badge.popular {
    background: linear-gradient(135deg, #9480c5 0%, #7d6aad 100%);
    color: var(--white);
}

.program-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.program-desc {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.program-features {
    list-style: none;
    margin-bottom: 20px;
}

.program-features li {
    font-size: 12px;
    color: var(--text-dark);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.program-features i {
    color: var(--success);
    font-size: 10px;
}

.program-target {
    padding: 12px;
    background: var(--bg-gray);
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-color);
    text-align: center;
}

/* ========================================
   Pricing Grid
   ======================================== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.pricing-card {
    background: var(--white);
    padding: 32px 24px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    right: 24px;
    background: linear-gradient(135deg, #9480c5 0%, #7d6aad 100%);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
}

.pricing-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.pricing-price {
    margin-bottom: 8px;
}

.price-amount {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
}

.price-unit {
    font-size: 16px;
    color: var(--text-light);
    margin-left: 4px;
}

.pricing-period {
    font-size: 12px;
    color: var(--text-light);
}

.pricing-features {
    list-style: none;
    margin-bottom: 24px;
    flex-grow: 1;
}

.pricing-features li {
    font-size: 12px;
    color: var(--text-dark);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pricing-features i {
    color: var(--success);
    font-size: 10px;
}

.pricing-card .btn-outline,
.pricing-card .btn-primary {
    width: 100%;
    text-align: center;
}

/* ========================================
   Reviews Grid
   ======================================== */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.review-card {
    background: var(--white);
    padding: 24px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

.review-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.06);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.review-student {
    display: flex;
    flex-direction: column;
}

.student-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.student-program {
    font-size: 11px;
    color: var(--text-light);
}

.review-rating {
    display: flex;
    gap: 2px;
}

.review-rating i {
    color: #fbbf24;
    font-size: 12px;
}

.review-text {
    font-size: 13px;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 16px;
}

.review-scores {
    display: flex;
    gap: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

.score-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
}

.score-label {
    color: var(--text-light);
}

.score-value {
    font-weight: 600;
    color: var(--primary-color);
}

/* ========================================
   CTA Section
   ======================================== */
.cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #7d6aad 0%, #9480c5 100%);
}

.cta-content {
    text-align: center;
    color: var(--white);
}

.cta-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.cta-subtitle {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
}

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

.cta-buttons .btn-primary:hover {
    background: var(--bg-gray);
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.cta-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

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

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    margin-bottom: 32px;
}

.footer-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.footer-desc {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-heading {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-links, .footer-contact {
    list-style: none;
}

.footer-links li, .footer-contact li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 12px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-contact li {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-contact i {
    font-size: 11px;
    width: 14px;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
}

/* ========================================
   Form Styles
   ======================================== */
.form-container {
    max-width: 600px;
    margin: 60px auto;
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.form-header {
    text-align: center;
    margin-bottom: 32px;
}

.form-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-subtitle {
    font-size: 13px;
    color: var(--text-light);
}

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

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

.form-label.required::after {
    content: ' *';
    color: var(--danger);
}

.form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 13px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-family: 'Pretendard', sans-serif;
    transition: border-color 0.2s;
}

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

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.form-error {
    font-size: 11px;
    color: var(--danger);
    margin-top: 6px;
    display: none;
}

.form-group.error .form-input,
.form-group.error .form-select,
.form-group.error .form-textarea {
    border-color: var(--danger);
}

.form-group.error .form-error {
    display: block;
}

.form-submit {
    width: 100%;
    padding: 14px;
    font-size: 14px;
    font-weight: 600;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
}

.form-submit:hover {
    background: var(--primary-dark);
}

.form-submit:disabled {
    background: var(--secondary-color);
    cursor: not-allowed;
}

/* ========================================
   Alert Messages
   ======================================== */
.alert {
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 13px;
    margin-bottom: 20px;
    display: none;
}

.alert.show {
    display: block;
}

.alert-success {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #a5d6a7;
}

.alert-error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

.alert-info {
    background: #e8e0f5;
    color: #5e4a8b;
    border: 1px solid #b9a9d4;
}

/* ========================================
   Loading Spinner
   ======================================== */
.loading {
    display: none;
    text-align: center;
    padding: 40px;
}

.loading.show {
    display: block;
}

.spinner {
    border: 3px solid var(--border-color);
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ========================================
   Process Steps
   ======================================== */
.process-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.process-step {
    text-align: center;
    flex: 0 0 auto;
}

.step-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #9480c5 0%, #7d6aad 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    color: var(--white);
    font-size: 22px;
}

.step-title {
    font-size: 11px;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.step-desc {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.step-detail {
    font-size: 11px;
    color: var(--text-light);
    line-height: 1.4;
    max-width: 150px;
}

.process-arrow {
    color: #cbd5e1;
    font-size: 18px;
    flex: 0 0 auto;
}

/* ========================================
   Admin Panel Styles
   ======================================== */
.admin-panel {
    max-width: 1400px;
    margin: 40px auto;
    padding: 0 20px;
}

.admin-header {
    margin-bottom: 32px;
}

.admin-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.admin-subtitle {
    font-size: 13px;
    color: var(--text-light);
}

.admin-filters {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.filter-input {
    flex: 1;
    min-width: 200px;
    padding: 10px 16px;
    font-size: 13px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
}

.filter-select {
    padding: 10px 16px;
    font-size: 13px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
}

.applications-table {
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.table-wrapper {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
}

thead {
    background: var(--bg-gray);
}

th {
    padding: 14px 16px;
    text-align: left;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

th:first-child,
th:nth-child(4),
th:nth-child(5) {
    text-align: center;
}

td {
    padding: 14px 16px;
    font-size: 13px;
    color: var(--text-dark);
    border-top: 1px solid var(--border-color);
}

td:first-child,
td:nth-child(4),
td:nth-child(5) {
    text-align: center;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 16px;
    white-space: nowrap;
}

.status-reviewing {
    background: #f3f4f6;
    color: #6b7280;
    border: 1px solid #d1d5db;
}

.status-pending {
    background: #fef3c7;
    color: #92400e;
}

.status-approved {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #86efac;
}

.status-conditional {
    background: #fed7aa;
    color: #9a3412;
    border: 1px solid #fb923c;
}

.status-rejected {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

.action-buttons {
    display: flex;
    gap: 6px;
}

.btn-small {
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-approve {
    background: var(--success);
    color: var(--white);
}

.btn-approve:hover {
    background: #5fa766;
}

.btn-reject {
    background: var(--danger);
    color: var(--white);
}

.btn-reject:hover {
    background: #dc2626;
}

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

.btn-view:hover {
    background: var(--primary-dark);
}

/* ========================================
   Modal Styles
   ======================================== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.modal.show {
    display: flex;
}

.modal-content {
    background: var(--white);
    border-radius: 12px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 32px;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 24px;
    color: var(--text-light);
    cursor: pointer;
    background: none;
    border: none;
}

.modal-close:hover {
    color: var(--text-dark);
}

.modal-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.detail-row {
    margin-bottom: 16px;
}

.detail-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-value {
    font-size: 14px;
    color: var(--text-dark);
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 768px) {
    .process-steps {
        flex-direction: column;
        gap: 24px;
    }
    
    .process-arrow {
        transform: rotate(90deg);
    }
    
    .step-detail {
        max-width: 250px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 14px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-stats {
        gap: 32px;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .features-grid,
    .programs-grid,
    .pricing-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .form-container {
        padding: 24px;
        margin: 40px 20px;
    }
    
    .admin-filters {
        flex-direction: column;
    }
    
    .filter-input {
        min-width: 100%;
    }
    
    table {
        font-size: 11px;
    }
    
    th, td {
        padding: 10px 8px;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 13px;
    }
    
    .hero-title {
        font-size: 24px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .section-title {
        font-size: 20px;
    }
}
