/* ===================================
   COURSES PAGE - ULTRA PREMIUM STYLES
   =================================== */

/* Page Hero */
.page-hero {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 90px;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1449965408869-eaa3f722e40d?w=1920') center/cover;
    filter: brightness(0.3);
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        rgba(11, 11, 11, 0.9) 0%,
        rgba(229, 9, 20, 0.3) 100%);
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 80px 20px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 30px;
    font-size: 14px;
}

.breadcrumb a {
    color: var(--light-grey);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.breadcrumb a:hover {
    color: var(--primary-red);
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.3);
}

.page-title {
    font-size: clamp(42px, 6vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--white);
}

.page-description {
    font-size: clamp(16px, 2vw, 20px);
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

/* Filter Section */
.filter-section {
    padding: 40px 0;
    background: var(--dark-grey);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 90px;
    z-index: 100;
    backdrop-filter: blur(20px);
}

.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-tab {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.filter-tab i {
    font-size: 18px;
}

.filter-tab:hover {
    background: rgba(229, 9, 20, 0.1);
    border-color: var(--primary-red);
    transform: translateY(-2px);
}

.filter-tab.active {
    background: var(--gradient-red);
    border-color: var(--primary-red);
    box-shadow: 0 8px 25px rgba(229, 9, 20, 0.4);
}

/* Courses Section */
.courses-section {
    padding: 80px 0;
    background: var(--black);
}

.courses-section .container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 30px;
}

/* Course Card */
.course-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 35px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.course-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-red);
    transform: scaleX(0);
    transition: var(--transition);
}

.course-card:hover::before {
    transform: scaleX(1);
}

.course-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-red);
    box-shadow: 0 20px 60px rgba(229, 9, 20, 0.3);
    background: rgba(229, 9, 20, 0.05);
}

.course-card.featured {
    border-color: var(--primary-red);
    background: rgba(229, 9, 20, 0.05);
    box-shadow: 0 15px 50px rgba(229, 9, 20, 0.2);
}

/* Course Badge */
.course-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px 18px;
    background: var(--gradient-red);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 5px 20px rgba(229, 9, 20, 0.5);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.course-badge.special {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.5);
}

.course-badge i {
    font-size: 10px;
}

/* Course Header */
.course-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

.course-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-red);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(229, 9, 20, 0.4);
}

.course-icon i {
    font-size: 32px;
    color: var(--white);
}

.course-header-info {
    flex: 1;
}

.course-title {
    font-size: 26px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
    line-height: 1.2;
}

.course-subtitle {
    font-size: 14px;
    color: var(--light-grey);
    font-weight: 600;
}

/* Course Description */
.course-description {
    margin-bottom: 25px;
}

.course-description p {
    font-size: 15px;
    color: var(--light-grey);
    line-height: 1.7;
}

/* Course Features */
.course-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--light-grey);
}

.feature-item i {
    color: var(--primary-red);
    font-size: 14px;
    flex-shrink: 0;
}

/* Course Details */
.course-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(229, 9, 20, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(229, 9, 20, 0.2);
}

.detail-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}

.detail-item i {
    font-size: 24px;
    color: var(--primary-red);
}

.detail-content {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.detail-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-value {
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
}

/* Course Price - Updated */
.course-price {
    margin-bottom: 25px;
    padding: 25px;
    background: var(--gradient-red);
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(229, 9, 20, 0.4);
}

.price-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.price-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Price Contact Button */
.price-contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-red);
    font-size: 16px;
    font-weight: 800;
    border-radius: 12px;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.price-contact-btn:hover {
    background: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.price-contact-btn i {
    font-size: 18px;
    animation: phoneRing 1.5s infinite;
}

@keyframes phoneRing {
    0%, 100% { transform: rotate(0deg); }
    10%, 30% { transform: rotate(-15deg); }
    20%, 40% { transform: rotate(15deg); }
    50% { transform: rotate(0deg); }
}

.price-note {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

/* Course Actions */
.course-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: auto;
}

.full-width {
    width: 100%;
    justify-content: center;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(229, 9, 20, 0.1);
    border: 1px solid var(--primary-red);
    border-radius: 50px;
    color: var(--primary-red);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 15px;
}

.section-description {
    font-size: clamp(14px, 2vw, 18px);
    color: var(--light-grey);
    max-width: 600px;
    margin: 0 auto;
}

/* Comparison Section */
.comparison-section {
    padding: 100px 0;
    background: var(--dark-grey);
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-top: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    position: relative;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
}

.comparison-table thead {
    background: var(--gradient-red);
}

.comparison-table th {
    padding: 20px;
    text-align: left;
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    border-bottom: 2px solid var(--primary-red);
}

.comparison-table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.comparison-table tbody tr:hover {
    background: rgba(229, 9, 20, 0.05);
}

.comparison-table td {
    padding: 18px 20px;
    color: var(--light-grey);
    font-size: 14px;
}

.comparison-table td:first-child {
    font-weight: 700;
    color: var(--white);
}

.comparison-table td i {
    margin-right: 8px;
}

.text-success {
    color: #10B981;
}

.text-danger {
    color: #EF4444;
}

.text-warning {
    color: #FFD700;
}

/* Comparison Contact Button */
.comparison-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: var(--gradient-red);
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(229, 9, 20, 0.4);
}

.comparison-contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(229, 9, 20, 0.6);
}

.comparison-contact-btn i {
    font-size: 16px;
    animation: phoneRing 1.5s infinite;
}

.comparison-table td[colspan] {
    padding: 25px 20px !important;
}

/* Comparison Table Scroll Indicator */
.comparison-table-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 100%;
    background: linear-gradient(to left, rgba(26, 26, 26, 0.8), transparent);
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.comparison-table-wrapper.is-scrolled::after {
    opacity: 0;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: var(--black);
}

.faq-grid {
    display: grid;
    gap: 20px;
    max-width: 900px;
    margin: 50px auto 0;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--primary-red);
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary-red);
}

.faq-question i {
    font-size: 14px;
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 30px 25px;
    color: var(--light-grey);
    font-size: 15px;
    line-height: 1.7;
}

/* FAQ Contact Button */
.faq-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--gradient-red);
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    margin-top: 15px;
    transition: var(--transition);
}

.faq-contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(229, 9, 20, 0.5);
}

.faq-contact-btn i {
    font-size: 12px;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: var(--dark-grey);
    text-align: center;
}

.cta-content h2 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--light-grey);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Course Modal */
.course-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.course-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.course-modal {
    background: var(--dark-grey);
    border: 1px solid rgba(229, 9, 20, 0.3);
    border-radius: 24px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.9) translateY(50px);
    transition: all 0.3s ease;
}

.course-modal-overlay.active .course-modal {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(229, 9, 20, 0.2);
    border: 1px solid var(--primary-red);
    border-radius: 50%;
    color: var(--white);
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.modal-close:hover {
    background: var(--primary-red);
    transform: rotate(90deg);
}

.modal-header {
    padding: 40px 40px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-header h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
}

.modal-header p {
    color: var(--light-grey);
    font-size: 14px;
}

.modal-body {
    padding: 40px;
}

.modal-body p {
    color: var(--light-grey);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.modal-actions {
    display: flex;
    gap: 15px;
}

.modal-actions .btn-primary,
.modal-actions .btn-secondary {
    flex: 1;
}

/* Hidden Class for Filtering */
.course-card.hidden {
    display: none;
}

/* Loading Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.course-card {
    animation: fadeIn 0.6s ease forwards;
}

.course-card:nth-child(1) { animation-delay: 0.1s; }
.course-card:nth-child(2) { animation-delay: 0.2s; }
.course-card:nth-child(3) { animation-delay: 0.3s; }
.course-card:nth-child(4) { animation-delay: 0.4s; }
.course-card:nth-child(5) { animation-delay: 0.5s; }
.course-card:nth-child(6) { animation-delay: 0.6s; }

/* Responsive */
@media (max-width: 1200px) {
    .courses-section .container {
        grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    }
}

@media (max-width: 1024px) {
    .filter-section {
        top: 70px;
    }
    
    .courses-section .container {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
    
    .course-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-hero {
        margin-top: 70px;
        min-height: 350px;
    }
    
    .filter-tabs {
        gap: 10px;
    }
    
    .filter-tab {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .courses-section {
        padding: 60px 0;
    }
    
    .courses-section .container {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .course-card {
        padding: 25px;
    }
    
    .course-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .course-details {
        grid-template-columns: 1fr;
    }
    
    .comparison-section,
    .faq-section,
    .cta-section {
        padding: 60px 0;
    }
    
    .comparison-table {
        font-size: 12px;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 12px 10px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .price-contact-btn {
        padding: 14px 24px;
        font-size: 15px;
    }
    
    .comparison-contact-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .page-hero-content {
        padding: 60px 15px;
    }
    
    .filter-section {
        padding: 20px 0;
    }
    
    .filter-tab span {
        display: none;
    }
    
    .course-card {
        padding: 20px;
    }
    
    .course-icon {
        width: 60px;
        height: 60px;
    }
    
    .course-icon i {
        font-size: 28px;
    }
    
    .course-title {
        font-size: 22px;
    }
    
    .price-contact-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .comparison-contact-btn {
        padding: 8px 16px;
        font-size: 12px;
    }
}

/* Print Styles */
@media print {
    .premium-header,
    .filter-section,
    .course-actions,
    .cta-section,
    .premium-footer {
        display: none;
    }
    
    .course-card {
        break-inside: avoid;
        page-break-inside: avoid;
    }
}
/* Ultra Premium Courses Page Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #0a0a0a !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

.ultra-premium-courses {
    position: relative;
    min-height: 100vh;
    padding: 60px 0;
}

/* Fix container width */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Ultra Premium Page Header */
.ultra-premium-page-header {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 80px;
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.page-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.gradient-mesh {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(255, 107, 53, 0.2) 0%, transparent 50%), radial-gradient(circle at 80% 70%, rgba(255, 107, 53, 0.15) 0%, transparent 50%);
}

.page-header-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 40px 20px;
}

.premium-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
    font-size: 14px;
}

.breadcrumb-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

    .breadcrumb-link:hover {
        color: #ff6b35;
    }

.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.4);
}

.current-page {
    color: #fff;
    font-weight: 600;
}

.ultra-page-title {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-word {
    background: linear-gradient(135deg, #ff6b35 0%, #ff6b35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

/* Floating Elements Animation */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.float-element {
    position: absolute;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 107, 53, 0.05));
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

    .float-element.element-1 {
        width: 80px;
        height: 80px;
        top: 10%;
        left: 10%;
        animation-delay: 0s;
    }

    .float-element.element-2 {
        width: 60px;
        height: 60px;
        top: 70%;
        right: 15%;
        animation-delay: 2s;
    }

    .float-element.element-3 {
        width: 100px;
        height: 100px;
        bottom: 10%;
        left: 20%;
        animation-delay: 4s;
    }

    .float-element.element-4 {
        width: 40px;
        height: 40px;
        top: 40%;
        right: 25%;
        animation-delay: 6s;
    }

    .float-element.element-5 {
        width: 70px;
        height: 70px;
        bottom: 30%;
        right: 10%;
        animation-delay: 8s;
    }

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }

    25% {
        transform: translateY(-30px) translateX(20px) rotate(90deg);
    }

    50% {
        transform: translateY(-60px) translateX(-20px) rotate(180deg);
    }

    75% {
        transform: translateY(-30px) translateX(-40px) rotate(270deg);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .ultra-premium-page-header {
        min-height: 300px;
        margin-bottom: 40px;
    }

    .ultra-page-title {
        font-size: 36px;
    }

    .page-subtitle {
        font-size: 16px;
    }
}

/* ========== COURSES SECTION STYLES ========== */

/* Page Stats */
.page-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 900;
    background: linear-gradient(135deg, #ff6b35, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.title-highlight {
    background: linear-gradient(135deg, #ffffff, rgba(255, 255, 255, 0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ultra-page-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 20px auto 0;
    line-height: 1.8;
}

.highlight-text {
    color: #ff6b35;
    font-weight: 600;
}

/* Courses Background Effects */
.courses-bg-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

    .gradient-orb.orb-1 {
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(255, 107, 53, 0.3), transparent);
        top: 10%;
        left: 5%;
    }

    .gradient-orb.orb-2 {
        width: 350px;
        height: 350px;
        background: radial-gradient(circle, rgba(255, 107, 53, 0.3), transparent);
        top: 50%;
        right: 10%;
        animation-delay: 5s;
    }

    .gradient-orb.orb-3 {
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, rgba(255, 107, 53, 0.2), transparent);
        bottom: 20%;
        left: 40%;
        animation-delay: 10s;
    }

/* Section Header */
.ultra-section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.premium-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(255, 107, 53, 0.1));
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 50px;
    color: #ff6b35;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.ultra-section-title {
    font-size: clamp(32px, 4vw, 56px);
    font-weight: 900;
    color: #fff;
    margin-bottom: 20px;
}

.gradient-text {
    background: linear-gradient(135deg, #ff6b35, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #ff6b35);
    margin: 15px auto;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

/* Categories Grid */
.ultra-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
    margin-bottom: 80px;
}

/* Category Card */
.ultra-category-card {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 40px;
    backdrop-filter: blur(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

    .ultra-category-card:hover {
        transform: translateY(-10px);
        border-color: rgba(255, 107, 53, 0.5);
        box-shadow: 0 25px 60px rgba(255, 107, 53, 0.3);
    }

    .ultra-category-card.featured {
        border-color: rgba(255, 107, 53, 0.5);
        background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 107, 53, 0.05));
    }

.card-glow-effect {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 107, 53, 0.1) 50%, transparent 70%);
    animation: rotate 10s linear infinite;
    pointer-events: none;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.card-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient( 45deg, transparent, transparent 10px, rgba(255, 255, 255, 0.02) 10px, rgba(255, 255, 255, 0.02) 20px );
    pointer-events: none;
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.ultra-category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(255, 107, 53, 0.1));
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.icon-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.3), transparent);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

.ultra-category-icon i {
    font-size: 36px;
    color: #ff6b35;
    position: relative;
    z-index: 2;
}

.ultra-popular-badge {
    padding: 8px 15px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border-radius: 50px;
    color: #000;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ultra-category-title {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.ultra-category-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.ultra-category-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.ultra-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .feature-icon i {
        font-size: 18px;
        color: #25d366;
    }

.ultra-feature-item span {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.ultra-category-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: linear-gradient(135deg, #ff6b35, #ff6b35);
    border: none;
    border-radius: 15px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

    .ultra-category-btn:hover {
        transform: scale(1.05);
        box-shadow: 0 15px 35px rgba(255, 107, 53, 0.4);
    }

.btn-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
    animation: rotate 3s linear infinite;
}

/* CTA Section */
.ultra-cta-section {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 107, 53, 0.05));
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 30px;
    padding: 60px 40px;
    text-align: center;
    overflow: hidden;
    margin-top: 80px;
}

.cta-background-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(255, 107, 53, 0.1));
    animation: float 15s ease-in-out infinite;
}

    .cta-shape.shape-1 {
        width: 200px;
        height: 200px;
        top: -100px;
        left: -50px;
    }

    .cta-shape.shape-2 {
        width: 150px;
        height: 150px;
        bottom: -75px;
        right: -30px;
        animation-delay: 3s;
    }

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-badge {
    display: inline-block;
    padding: 10px 25px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: #ff6b35;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.cta-title {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 900;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    background: linear-gradient(135deg, #ff6b35, #ff6b35);
    border: none;
    border-radius: 15px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 20px 40px rgba(255, 107, 53, 0.4);
    }

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

    .btn-secondary:hover {
        background: rgba(255, 255, 255, 0.15);
        border-color: #fff;
        transform: translateY(-3px);
    }

/* Mobile Responsive */
@media (max-width: 768px) {
    .page-stats {
        gap: 30px;
    }

    .stat-number {
        font-size: 36px;
    }

    .ultra-categories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .ultra-category-card {
        padding: 30px;
    }

    .ultra-cta-section {
        padding: 40px 20px;
    }

    .cta-actions {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

