/* Course Pages Specific Styles */

.course-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 150px 0 80px;
    position: relative;
    overflow: hidden;
}

.course-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.course-level-badge {
    display: inline-block;
    background: #d32f2f;
    padding: 8px 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.course-hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.course-hero-subtitle {
    font-size: 20px;
    color: #b8b8b8;
    margin-bottom: 30px;
    line-height: 1.6;
}

.course-meta {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.meta-item i {
    color: #d32f2f;
    font-size: 20px;
}

.course-price-box {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid #d32f2f;
}

.price-label {
    display: block;
    font-size: 14px;
    color: #b8b8b8;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.price-value {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px;
    color: #d32f2f;
    margin-bottom: 20px;
}

.btn-enroll {
    background: #d32f2f;
    color: white;
    padding: 15px 40px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-enroll:hover {
    background: white;
    color: #0a0a0a;
    transform: translateY(-2px);
}

.course-hero-image {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.course-overview {
    padding: 100px 0;
    background: #fef7e5;
}

.for-whom-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.for-whom-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.for-whom-card:hover {
    border-color: #d32f2f;
    transform: translateY(-5px);
}

.for-whom-card i {
    font-size: 50px;
    color: #d32f2f;
    margin-bottom: 20px;
}

.for-whom-card h4 {
    font-family: 'Archivo Black', sans-serif;
    font-size: 20px;
    margin-bottom: 15px;
}

.learning-outcomes {
    padding: 100px 0;
    background: white;
}

.outcome-card {
    background: #fef7e5;
    padding: 40px;
    border-radius: 10px;
    border-left: 4px solid #d32f2f;
    height: 100%;
}

.outcome-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px;
    color: #d32f2f;
    margin-bottom: 15px;
}

.outcome-card h4 {
    font-family: 'Archivo Black', sans-serif;
    font-size: 22px;
    margin-bottom: 15px;
}

.course-modules {
    padding: 100px 0;
    background: #0a0a0a;
    color: white;
}

.course-modules .section-title {
    color: white;
}

.modules-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.module-item {
    background: rgba(255,255,255,0.05);
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.module-item:hover {
    border-color: #d32f2f;
}

.module-header {
    padding: 25px 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255,255,255,0.03);
}

.module-week {
    background: #d32f2f;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

.module-header h4 {
    font-family: 'Archivo Black', sans-serif;
    font-size: 22px;
    margin: 0;
}

.module-content {
    padding: 0 30px 30px;
}

.module-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.module-content li {
    padding: 12px 0;
    padding-left: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    position: relative;
}

.module-content li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #d32f2f;
    font-weight: 700;
}

.module-content li:last-child {
    border-bottom: none;
}

.course-format {
    padding: 100px 0;
    background: #fef7e5;
}

.format-image {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.format-details {
    margin-top: 30px;
}

.format-item {
    display: flex;
    gap: 25px;
    margin-bottom: 30px;
}

.format-item i {
    font-size: 40px;
    color: #d32f2f;
    flex-shrink: 0;
}

.format-item h4 {
    font-family: 'Archivo Black', sans-serif;
    font-size: 20px;
    margin-bottom: 10px;
}

.ethical-disclaimer {
    padding: 80px 0;
    background: white;
}

.disclaimer-box {
    background: #fef7e5;
    padding: 50px;
    border-radius: 10px;
    border-left: 5px solid #d32f2f;
    max-width: 900px;
    margin: 0 auto;
}

.disclaimer-box h3 {
    font-family: 'Archivo Black', sans-serif;
    font-size: 28px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.disclaimer-box h3 i {
    color: #d32f2f;
}

.disclaimer-box p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.disclaimer-box p:last-child {
    margin-bottom: 0;
}

.course-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #d32f2f 0%, #7b1fa2 100%);
    color: white;
}

.cta-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 56px;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 20px;
    margin-bottom: 40px;
}

.cta-price-highlight {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
}

.cta-price-highlight .price-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.cta-price-highlight .price-amount {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 72px;
    line-height: 1;
    margin-bottom: 10px;
}

.cta-price-highlight .price-note {
    font-size: 16px;
    opacity: 0.9;
}

.btn-cta-large {
    background: white;
    color: #0a0a0a;
    padding: 20px 60px;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.btn-cta-large:hover {
    background: #0a0a0a;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.guarantee-text {
    margin-top: 30px;
    font-size: 16px;
}

.guarantee-text i {
    color: #ffa726;
    margin-right: 8px;
}

.payment-info {
    margin-top: 30px;
    font-size: 14px;
    opacity: 0.9;
}

.payment-info a {
    color: white;
    text-decoration: underline;
}

.course-hero .container{
    position: relative;
    z-index: 10;
}

@media (max-width: 991px) {
    .course-hero-title {
        font-size: 48px;
    }
    
    .cta-title {
        font-size: 42px;
    }
}

@media (max-width: 767px) {
    .course-hero-title {
        font-size: 36px;
    }
    
    .course-meta {
        flex-direction: column;
        gap: 15px;
    }
    
    .for-whom-grid {
        grid-template-columns: 1fr;
    }
}
