.elementor-1319 .elementor-element.elementor-element-33b7bc5{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for container, class: .elementor-element-33b7bc5 *//**
 * Courses Listing Page Styles
 * Modern, Professional Design with Brand Colors
 * Version: 2.0
 */

/* ========================================
   ROOT VARIABLES
======================================== */
:root {
    --primary: #1a5f7a;
    --primary-dark: #124559;
    --primary-light: #2e7d9e;
    --secondary: #ff6b35;
    --secondary-dark: #e64e19;
    --secondary-light: #ff8a5c;
    --dark: #212529;
    --gray-dark: #495057;
    --gray: #6c757d;
    --gray-light: #ced4da;
    --light: #f8f9fa;
    --white: #ffffff;
    --shadow-sm: 0 .125rem .25rem rgba(0,0,0,.075);
    --shadow: 0 .5rem 1rem rgba(0,0,0,.08);
    --shadow-lg: 0 1rem 3rem rgba(0,0,0,.15);
    --radius: 8px;
    --radius-lg: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================================
   GLOBAL STYLES
======================================== */
.courses-listing-wrapper {
    width: 100%;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   MODERN HERO SECTION
======================================== */
.courses-hero-modern {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.courses-hero-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255,107,53,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content-modern {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 10px 24px;
    border-radius: 50px;
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-title-modern {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.hero-subtitle-modern {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    margin: 0;
}

/* ========================================
   MODERN FILTERS SECTION
======================================== */
.filters-section-modern {
    background: var(--white);
    padding: 30px 0;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

/* Search Bar */
.search-bar-modern {
    position: relative;
    margin-bottom: 24px;
}

.search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray);
    font-size: 1.1rem;
    pointer-events: none;
    z-index: 1;
}

.search-input-modern {
    width: 100%;
    padding: 16px 20px 16px 52px;
    border: 2px solid var(--gray-light);
    border-radius: var(--radius-lg);
    font-size: 1rem;
    color: var(--dark);
    transition: var(--transition);
    background: var(--white);
}

.search-input-modern:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(26, 95, 122, 0.1);
}

.search-input-modern::placeholder {
    color: var(--gray);
}

/* Filters Grid */
.filters-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 20px;
}

.filter-item-modern {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-label-modern {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-dark);
    display: flex;
    align-items: center;
    gap: 6px;
}

.filter-label-modern i {
    color: var(--secondary);
    font-size: 0.9rem;
}

.filter-select-modern {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--gray-light);
    border-radius: var(--radius);
    font-size: 0.95rem;
    color: var(--dark);
    background: var(--white);
    cursor: pointer;
    transition: var(--transition);
    appearance: none;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%231a5f7a" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="6 9 12 15 18 9"></polyline></svg>');
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 40px;
}

.filter-select-modern:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26, 95, 122, 0.1);
}

.filter-select-modern:hover {
    border-color: var(--primary-light);
}

/* Results Bar */
.results-bar-modern {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 2px solid var(--light);
}

.results-info-modern {
    display: flex;
    align-items: center;
    gap: 16px;
}

.results-text {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-dark);
}

.btn-clear-modern {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: transparent;
    color: var(--secondary);
    border: 2px solid var(--secondary);
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-clear-modern:hover {
    background: var(--secondary);
    color: var(--white);
    transform: translateY(-1px);
}

.btn-clear-modern:active {
    transform: translateY(0);
}

/* View Toggle */
.view-toggle-modern {
    display: flex;
    gap: 8px;
    background: var(--light);
    padding: 4px;
    border-radius: var(--radius);
}

.view-btn-modern {
    padding: 10px 16px;
    background: transparent;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
    color: var(--gray-dark);
    font-size: 1rem;
}

.view-btn-modern:hover {
    background: var(--white);
}

.view-btn-modern.active {
    background: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

/* ========================================
   COURSES SECTION
======================================== */
.courses-section-modern {
    padding: 60px 0;
    background: var(--light);
    min-height: 500px;
}

.courses-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 32px;
}

.courses-grid-modern[data-view="list"] {
    grid-template-columns: 1fr;
}

/* ========================================
   MODERN COURSE CARD
======================================== */
.course-card-modern {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.05);
}

.course-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.courses-grid-modern[data-view="list"] .course-card-modern {
    flex-direction: row;
    height: auto;
}

/* Card Header */
.card-header-modern {
    padding: 32px 28px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    position: relative;
    overflow: hidden;
}

.card-header-modern::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: subtle-pulse 4s ease-in-out infinite;
}

@keyframes subtle-pulse {
    0%, 100% { 
        transform: scale(1) rotate(0deg); 
        opacity: 1; 
    }
    50% { 
        transform: scale(1.1) rotate(5deg); 
        opacity: 0.8; 
    }
}

.card-header-content {
    position: relative;
    z-index: 1;
}

/* Card Badges */
.card-badges-modern {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.badge-modern {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.badge-trending {
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    border-color: #ffc107;
    color: var(--dark);
}

/* Partner Badge */
.partner-badge-modern {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.partner-avatar {
    width: 48px;
    height: 48px;
    background: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.partner-name-modern {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 600;
    opacity: 0.95;
}

.card-title-modern {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin: 0;
    line-height: 1.3;
}

.courses-grid-modern[data-view="list"] .card-header-modern {
    min-width: 320px;
    flex-shrink: 0;
}

/* Card Body */
.card-body-modern {
    padding: 28px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-meta-modern {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--light);
}

.meta-item-modern {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-dark);
    font-size: 0.9rem;
    font-weight: 500;
}

.meta-item-modern i {
    color: var(--secondary);
    font-size: 1rem;
}

.card-excerpt-modern {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
}

.card-features-modern {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.card-features-modern li {
    padding: 10px 0;
    color: var(--gray-dark);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.card-features-modern li i {
    color: var(--secondary);
    font-size: 0.9rem;
    width: 16px;
    flex-shrink: 0;
}

/* Card Footer */
.card-footer-modern {
    padding: 24px 28px;
    background: var(--light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    border-top: 2px solid rgba(0,0,0,0.05);
}

.price-section-modern {
    flex: 1;
}

.price-label-modern {
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 6px;
    font-weight: 500;
}

.price-wrapper-modern {
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.price-current-modern {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.price-original-modern {
    font-size: 1.1rem;
    color: var(--gray);
    text-decoration: line-through;
}

.price-contact {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
}

.card-cta-modern {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--secondary);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.card-cta-modern:hover {
    background: var(--secondary-dark);
    transform: translateX(4px);
    box-shadow: var(--shadow);
}

.card-cta-modern:active {
    transform: translateX(2px);
}

/* List View Adjustments */
.courses-grid-modern[data-view="list"] .card-body-modern {
    flex: 1;
}

.courses-grid-modern[data-view="list"] .card-footer-modern {
    min-width: 280px;
    flex-direction: column;
    align-items: stretch;
}

.courses-grid-modern[data-view="list"] .card-cta-modern {
    justify-content: center;
    width: 100%;
}

/* ========================================
   NO COURSES STATE
======================================== */
.no-courses-modern {
    grid-column: 1 / -1;
    text-align: center;
    padding: 100px 20px;
}

.no-courses-icon {
    width: 120px;
    height: 120px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.no-courses-icon i {
    font-size: 3.5rem;
    color: var(--gray-light);
}

.no-courses-modern h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-dark);
    margin-bottom: 12px;
}

.no-courses-modern p {
    font-size: 1.1rem;
    color: var(--gray);
    margin: 0;
}

/* ========================================
   LOADING STATE
======================================== */
.loading-modern {
    text-align: center;
    padding: 60px 20px;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 4px solid var(--light);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading-modern p {
    font-size: 1.1rem;
    color: var(--gray-dark);
    font-weight: 600;
    margin: 0;
}

/* ========================================
   CTA SECTION
======================================== */
.cta-section-modern {
    padding: 80px 0;
    background: var(--white);
}

.cta-card-modern {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    border-radius: var(--radius-lg);
    padding: 60px;
    display: flex;
    align-items: center;
    gap: 40px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.cta-card-modern::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-icon-modern {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.cta-icon-modern i {
    font-size: 3rem;
    color: var(--white);
}

.cta-content-modern {
    flex: 1;
    position: relative;
    z-index: 1;
}

.cta-content-modern h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
}

.cta-content-modern p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
}

.cta-btn-modern {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: var(--secondary);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.cta-btn-modern:hover {
    background: var(--secondary-dark);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.cta-btn-modern:active {
    transform: translateY(-2px);
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */

/* Large Devices (1200px and below) */
@media (max-width: 1200px) {
    .courses-grid-modern {
        grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
        gap: 28px;
    }
}

/* Medium Devices (992px and below) */
@media (max-width: 992px) {
    .hero-title-modern {
        font-size: 2.75rem;
    }

    .filters-grid-modern {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }

    .courses-grid-modern {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 24px;
    }

    .cta-card-modern {
        flex-direction: column;
        text-align: center;
        padding: 50px 40px;
    }
}

/* Tablets (768px and below) */
@media (max-width: 768px) {
    .courses-hero-modern {
        padding: 60px 0 40px;
    }

    .hero-title-modern {
        font-size: 2.25rem;
    }

    .hero-subtitle-modern {
        font-size: 1.1rem;
    }

    .filters-section-modern {
        padding: 20px 0;
    }

    .filters-grid-modern {
        grid-template-columns: 1fr;
    }

    .results-bar-modern {
        flex-direction: column;
        gap: 16px;
        align-items: stretch;
    }

    .results-info-modern {
        justify-content: space-between;
    }

    .view-toggle-modern {
        justify-content: center;
    }

    .courses-grid-modern {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .courses-grid-modern[data-view="list"] .course-card-modern {
        flex-direction: column;
    }

    .courses-grid-modern[data-view="list"] .card-header-modern {
        min-width: 100%;
    }

    .card-footer-modern {
        flex-direction: column;
        align-items: stretch;
    }

    .card-cta-modern {
        width: 100%;
        justify-content: center;
    }

    .cta-content-modern h2 {
        font-size: 2rem;
    }

    .cta-content-modern p {
        font-size: 1.1rem;
    }
}

/* Mobile Devices (480px and below) */
@media (max-width: 480px) {
    .hero-badge {
        font-size: 0.85rem;
        padding: 8px 18px;
    }

    .hero-title-modern {
        font-size: 1.875rem;
    }

    .hero-subtitle-modern {
        font-size: 1rem;
    }

    .search-input-modern {
        padding: 14px 18px 14px 48px;
        font-size: 0.95rem;
    }

    .filter-select-modern {
        padding: 10px 14px;
        font-size: 0.9rem;
    }

    .card-header-modern {
        padding: 24px 20px;
    }

    .card-title-modern {
        font-size: 1.25rem;
    }

    .card-body-modern {
        padding: 20px;
    }

    .price-current-modern {
        font-size: 1.75rem;
    }

    .card-footer-modern {
        padding: 20px;
    }

    .cta-card-modern {
        padding: 40px 24px;
        gap: 32px;
    }

    .cta-icon-modern {
        width: 80px;
        height: 80px;
    }

    .cta-icon-modern i {
        font-size: 2.5rem;
    }

    .cta-content-modern h2 {
        font-size: 1.75rem;
    }

    .cta-content-modern p {
        font-size: 1rem;
    }

    .cta-btn-modern {
        padding: 16px 28px;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }
}

/* Extra Small Devices (360px and below) */
@media (max-width: 360px) {
    .hero-title-modern {
        font-size: 1.625rem;
    }

    .card-title-modern {
        font-size: 1.125rem;
    }

    .meta-item-modern {
        font-size: 0.85rem;
    }

    .card-excerpt-modern {
        font-size: 0.9rem;
    }

    .card-features-modern li {
        font-size: 0.85rem;
    }
}

/* ========================================
   PRINT STYLES
======================================== */
@media print {
    .courses-hero-modern,
    .filters-section-modern,
    .cta-section-modern {
        display: none;
    }

    .course-card-modern {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid var(--gray-light);
    }

    .card-cta-modern {
        display: none;
    }
}

/* ========================================
   ACCESSIBILITY
======================================== */
.course-card-modern:focus-within {
    outline: 3px solid var(--primary);
    outline-offset: 2px;
}

.filter-select-modern:focus,
.search-input-modern:focus,
.btn-clear-modern:focus,
.view-btn-modern:focus,
.card-cta-modern:focus,
.cta-btn-modern:focus {
    outline: 3px solid var(--primary);
    outline-offset: 2px;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .course-card-modern {
        border: 2px solid var(--dark);
    }

    .badge-modern {
        border: 2px solid currentColor;
    }
}

/* Dark Mode Support (Optional) */
@media (prefers-color-scheme: dark) {
    /* Add dark mode styles here if needed */
}/* End custom CSS */