/* Academy Page Styles */

.academy-section {
    background: #000000;
    min-height: 100vh;
    padding: 80px 0;
}

.courses-header {
    text-align: center;
    margin-bottom: 60px;
}

.courses-title {
    background: linear-gradient(45deg, #d4af37, #f4d03f);
    color: #000000;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 2.5rem;
    font-weight: 700;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.course-item {
    margin-bottom: 80px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.course-item:nth-child(even) {
    flex-direction: row-reverse;
}

.course-image {
    flex: 0 0 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.course-image img {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #d4af37;
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.course-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.5);
}

.course-content {
    flex: 1;
    color: #ffffff;
}

.course-title {
    color: #d4af37;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.course-subtitle {
    color: #f4d03f;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.course-description {
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
    text-align: justify;
}

.course-highlight {
    color: #f4d03f;
    font-weight: 600;
}

.training-section {
    margin: 30px 0;
}

.training-title {
    color: #d4af37;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.training-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.training-list li {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 8px;
    padding-left: 25px;
    position: relative;
}

.training-list li:before {
    content: "✓";
    color: #d4af37;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.call-to-action {
    margin-top: 35px;
}

.cta-text {
    color: #f4d03f;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.contact-btn {
    background: linear-gradient(45deg, #d4af37, #f4d03f);
    color: #000000;
    border: none;
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.contact-btn:hover {
    background: linear-gradient(45deg, #f4d03f, #d4af37);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    color: #000000;
    text-decoration: none;
}

/* Course Details */
.course-details {
    display: flex;
    gap: 30px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.course-detail-item {
    background: rgba(212, 175, 55, 0.1);
    padding: 10px 20px;
    border-radius: 20px;
    border: 1px solid #d4af37;
}

.course-detail-label {
    color: #d4af37;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.course-detail-value {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Empty State */
.empty-courses {
    text-align: center;
    padding: 100px 0;
}

.empty-courses h3 {
    color: #d4af37;
    font-size: 2rem;
    margin-bottom: 20px;
}

.empty-courses p {
    color: #ffffff;
    font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .course-item {
        gap: 40px;
    }
    
    .course-image {
        flex: 0 0 300px;
    }
    
    .course-image img {
        width: 280px;
        height: 280px;
    }
    
    .course-title {
        font-size: 2.4rem;
    }
}

@media (max-width: 992px) {
    .course-item,
    .course-item:nth-child(even) {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .course-image {
        flex: none;
    }
    
    .course-image img {
        width: 250px;
        height: 250px;
    }
    
    .course-title {
        font-size: 2.2rem;
    }
    
    .courses-title {
        font-size: 2rem;
        padding: 12px 30px;
    }
}

@media (max-width: 768px) {
    .academy-section {
        padding: 60px 0;
    }
    
    .course-item {
        margin-bottom: 60px;
    }
    
    .course-image img {
        width: 220px;
        height: 220px;
    }
    
    .course-title {
        font-size: 2rem;
    }
    
    .courses-title {
        font-size: 1.8rem;
        padding: 10px 25px;
    }
    
    .course-description {
        font-size: 1rem;
        text-align: left;
    }
    
    .training-title {
        font-size: 1.3rem;
    }
    
    .training-list li {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .course-image img {
        width: 200px;
        height: 200px;
    }
    
    .course-title {
        font-size: 1.8rem;
    }
    
    .courses-title {
        font-size: 1.6rem;
        padding: 8px 20px;
    }
    
    .course-details {
        flex-direction: column;
        gap: 15px;
    }
    
    .contact-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
}