/* Courses Page Hero Section Styles */
.courses-hero-area {
    background: linear-gradient(135deg, rgba(0,0,0,0.8), rgba(0,0,0,0.6)), url('../img/slider/slider_img01.png');
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
}

.courses-hero-content {
    text-align: center;
    width: 100%;
}

.courses-hero-badge {
    display: inline-block;
    background: rgba(184,148,80,0.15);
    border: 1px solid #b89450;
    border-radius: 25px;
    padding: 8px 20px;
    margin-bottom: 20px;
}

.courses-hero-badge span {
    color: #b89450;
    font-size: 14px;
    font-weight: 500;
}

.courses-hero-title h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 600;
}

.courses-hero-title .highlight {
    color: #b89450;
}

.courses-hero-description p {
    color: #ddd;
    font-size: 18px;
    line-height: 1.6;
    margin: 25px auto;
    max-width: 800px;
}

.courses-hero-features {
    margin: 35px auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    max-width: 700px;
    justify-items: center;
}

.courses-feature-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    border-left: 3px solid #b89450;
    width: 100%;
    text-align: center;
    min-height: 50px;
}

.courses-feature-item .icon {
    color: #b89450;
    margin-right: 8px;
    font-size: 16px;
    flex-shrink: 0;
}

.courses-feature-item .text {
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.3;
}

.courses-hero-cta {
    margin-top: 40px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.courses-btn-primary {
    background: linear-gradient(135deg, #b89450, #d4a843);
    color: #000;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(184,148,80,0.3);
    border: none;
}

.courses-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(184,148,80,0.4);
    color: #000;
    text-decoration: none;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .courses-hero-title h1 {
        font-size: 32px;
    }
    
    .courses-hero-description p {
        font-size: 16px;
    }
    
    .courses-hero-features {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .courses-feature-item {
        padding: 10px 12px;
        min-height: 45px;
    }
    
    .courses-feature-item .text {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .courses-hero-area {
        padding: 100px 0 60px;
    }
    
    .courses-hero-title h1 {
        font-size: 28px;
    }
    
    .courses-hero-description p {
        font-size: 15px;
        max-width: 100%;
    }
}