/* ==========================================
   ALFENA - Courses Page Styles
   ========================================== */

.page-hero {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, #fff5f8 0%, #fbe8ee 50%, #f8dfe7 100%);
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 10px;
}

.page-hero p {
    font-size: 1.2rem;
    color: var(--text-light);
}

/* Course Detail Section */
.course-detail {
    padding: 80px 0;
}

.course-detail.alt-bg {
    background: #fdf8fa;
}

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

.course-detail-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #e8a0b4, #d4728a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    margin: 0 auto 20px;
}

.course-detail-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--dark);
}

/* Detail Grid */
.course-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.detail-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.detail-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.detail-card h3 {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.detail-card h3 i {
    color: #e8a0b4;
    font-size: 1.2rem;
}

.detail-card p {
    color: var(--text-light);
    line-height: 1.8;
}

.detail-card ul {
    list-style: none;
    padding: 0;
}

.detail-card ul li {
    padding: 8px 0;
    color: var(--text);
    border-bottom: 1px solid #f8f8f8;
    padding-right: 20px;
    position: relative;
    line-height: 1.7;
}

.detail-card ul li::before {
    content: '•';
    position: absolute;
    right: 0;
    color: #e8a0b4;
    font-weight: 900;
}

.detail-card ul li:last-child {
    border: none;
}

/* Pricing Card */
.pricing-card {
    border-color: #e8a0b4;
    background: linear-gradient(135deg, #fff9fb, #fff);
}

.price-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.price-option {
    padding: 15px 20px;
    border-radius: 12px;
    background: #f8f8f8;
    border: 1px solid #eee;
}

.price-option.featured-price {
    background: linear-gradient(135deg, #fdf0f4, #fff5f8);
    border-color: #e8a0b4;
}

.price-amount {
    display: block;
    font-size: 1.8rem;
    font-weight: 900;
    color: #d4728a;
    margin-bottom: 5px;
}

.price-desc {
    font-size: 0.9rem;
    color: var(--text-light);
}

.price-note {
    margin-top: 10px;
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
}

/* Important Card */
.important-card {
    border-color: #ffcdd2;
    background: #fff8f8;
}

.important-card h3 i {
    color: #e74c3c;
}

.warning-text {
    color: #e74c3c;
    font-weight: 700;
    margin-top: 10px;
}

/* Bank Card */
.bank-card {
    border-color: #c8e6c9;
    background: #f8fdf8;
}

.bank-card h3 i {
    color: #4caf50;
}

.bank-card p {
    font-size: 1rem;
    color: var(--text);
}

/* Course CTA */
.course-cta {
    text-align: center;
    padding-top: 20px;
}

/* Notice Section */
.notice-section {
    padding: 60px 0;
    background: #fff5f8;
}

.notice-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    border: 2px solid #e8a0b4;
}

.notice-card h3 {
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.notice-card h3 i {
    color: #e8a0b4;
}

.notice-card ul {
    list-style: none;
    padding: 0;
}

.notice-card ul li {
    padding: 10px 0;
    color: var(--text);
    border-bottom: 1px solid #f0f0f0;
    padding-right: 20px;
    position: relative;
    line-height: 1.8;
}

.notice-card ul li::before {
    content: '⚠️';
    position: absolute;
    right: 0;
}

.notice-card ul li:last-child {
    border: none;
}

/* Responsive */
@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2rem;
    }

    .course-detail-grid {
        grid-template-columns: 1fr;
    }

    .course-detail-header h2 {
        font-size: 1.6rem;
    }

    .notice-card {
        padding: 25px;
    }
}
