/* wizard.css - Custom styles for EduPath Wizard */

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #f8f9fc;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #f5f7fe 0%, #eef2fa 100%);
}

.brand-logo {
    font-weight: 800;
    font-size: 2.5rem;
    letter-spacing: -0.02em;
    color: #1e2a3e;
}

.brand-logo span {
    color: #e85d26;
}

.brand-logo.small {
    font-size: 1.2rem;
}

.hero-description {
    max-width: 500px;
    font-size: 1.05rem;
}

/* Buttons */
.btn-orange {
    background-color: #1e2a3e;
    border: none;
    color: white;
    font-weight: 600;
    padding: 12px 32px;
    border-radius: 40px;
    transition: all 0.2s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.btn-orange:hover {
    background-color: #e85d26;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(232, 93, 38, 0.25);
}

.btn-wizard-next {
    background-color: #1e2a3e;
    color: white;
    border-radius: 40px;
    padding: 10px 28px;
    font-weight: 600;
    transition: all 0.2s;
    border: none;
}

.btn-wizard-next:hover {
    background-color: #e85d26;
    color: white;
}

.btn-wizard-back {
    border-radius: 40px;
    padding: 10px 24px;
    background: transparent;
    border: 1px solid #ced4da;
    color: #4a5568;
    transition: all 0.2s;
}

.btn-wizard-back:hover {
    background: #f1f5f9;
}

.btn-submit-grad {
    background: linear-gradient(100deg, #e85d26, #f59e0b);
    border: none;
    border-radius: 40px;
    padding: 10px 28px;
    font-weight: 600;
    color: white;
    transition: all 0.2s;
}

.btn-submit-grad:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

/* Modal */
.wizard-modal .modal-content {
    border-radius: 28px;
    border: none;
    overflow: hidden;
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.2);
}

.wizard-modal .modal-header {
    border-bottom: 1px solid #e9ecef;
    background: white;
    padding: 1rem 1.5rem;
}

.wizard-modal .modal-body {
    padding: 0;
    max-height: 85vh;
    overflow-y: auto;
}

/* Step Cards */
.step-card {
    background: white;
}

.step-header {
    background: #fefaf7;
    border-bottom: 1px solid #edf2f7;
    padding: 1.2rem 1.8rem;
}

.step-badge {
    background: #e85d26;
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 40px;
    display: inline-block;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.step-title {
    font-weight: 800;
    font-size: 1.6rem;
    margin-bottom: 0.25rem;
    color: #1e2a3e;
}

.step-desc {
    color: #5a6874;
    font-size: 0.9rem;
}

.step-body {
    padding: 1.8rem;
}

/* Course Cards */
.course-card {
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 12px;
    cursor: pointer;
    transition: all 0.2s;
    background: white;
    height: 100%;
    position: relative;
}

.course-card:hover {
    border-color: #e85d26;
    background: #fffaf5;
    transform: translateY(-2px);
}

.course-card.selected {
    border-color: #e85d26;
    background: #fff5ed;
    box-shadow: 0 4px 12px rgba(232, 93, 38, 0.12);
}

.course-check {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 20px;
    height: 20px;
    border-radius: 30px;
    background: white;
    border: 1.5px solid #cbd5e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

.course-card.selected .course-check {
    background: #e85d26;
    border-color: #e85d26;
    color: white;
}

.course-card.selected .course-check::after {
    content: '✓';
}

.course-icon {
    font-size: 1.6rem;
    margin-bottom: 6px;
}

.course-name {
    font-weight: 600;
    font-size: 0.85rem;
    color: #1e2a3e;
    padding-right: 20px;
}

/* Category Headings */
.category-heading {
    font-weight: 700;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #6c7a8a;
    margin: 1rem 0 0.7rem 0;
}

.category-heading:first-of-type {
    margin-top: 0;
}

/* Study Mode Options */
.mode-option {
    border: 1px solid #dee2e6;
    border-radius: 20px;
    padding: 12px 10px;
    cursor: pointer;
    text-align: center;
    transition: all 0.2s;
    background: white;
    height: 100%;
}

.mode-option.selected {
    border-color: #e85d26;
    background: #fff5ed;
    box-shadow: 0 2px 8px rgba(232, 93, 38, 0.1);
}

.mode-icon {
    font-size: 1.5rem;
}

/* Review Box */
.review-box {
    background: #f8fafc;
    border-radius: 20px;
    padding: 1.2rem;
    border: 1px solid #e9edf2;
    font-size: 0.9rem;
    line-height: 1.65;
}

/* Success State */
.success-icon {
    background: #d1fae5;
    width: 70px;
    height: 70px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    border-radius: 50%;
    margin-bottom: 1rem;
}

/* Responsive */
@media (max-width: 576px) {
    .step-body {
        padding: 1.2rem;
    }
    .step-header {
        padding: 1rem 1.2rem;
    }
    .step-title {
        font-size: 1.3rem;
    }
}