/* courses.css - COURSES PAGE SPECIFIC STYLES - ADJUSTED */

/* ===== HERO SECTION - NO GLASS BOX ===== */
.courses-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.courses-hero .hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.courses-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
    z-index: 2;
}

.courses-hero .hero-container {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 0 20px;
}

/* REMOVED GLASS BOX - simple text overlay */
.courses-hero .hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* REDUCED HERO HEADER SIZE */
.courses-hero h1 {
    font-size: 2.2rem; /* Reduced from 3.5rem */
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
    font-weight: 700;
}

.courses-hero p {
    font-size: 1rem; /* Reduced from 1.3rem */
    margin-bottom: 25px;
    opacity: 0.9;
    line-height: 1.5;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.courses-hero .btn-lg {
    padding: 12px 30px;
    font-size: 0.95rem;
    border-radius: 50px;
    font-weight: 600;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    box-shadow: 0 8px 25px rgba(67, 97, 238, 0.4);
    transition: all 0.3s ease;
}

.courses-hero .btn-lg:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(67, 97, 238, 0.6);
}

/* ===== SECTION TITLES - REDUCED SIZE ===== */
.section-title h2 {
    font-size: 1.8rem; /* Reduced size */
    margin-bottom: 10px;
    font-weight: 700;
}

.section-title p {
    font-size: 0.95rem; /* Reduced size */
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== SEARCH & FILTER SECTION ===== */
.search-section {
    padding: 40px 0;
    background: white;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 10;
    margin-top: -40px;
    border-radius: 20px 20px 0 0;
}

.search-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.search-box {
    display: flex;
    background: white;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(67, 97, 238, 0.15);
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
}

.search-box:focus-within {
    border-color: var(--primary);
    box-shadow: 0 12px 35px rgba(67, 97, 238, 0.2);
}

.search-box input {
    flex: 1;
    padding: 16px 25px;
    border: none;
    font-size: 1rem;
    background: transparent;
    outline: none;
}

.search-box input::placeholder {
    color: #999;
    font-weight: 500;
}

.search-btn {
    padding: 0 35px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 55px;
}

.search-btn:hover {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    transform: scale(1.03);
}

.filters-wrapper {
    text-align: center;
}

.filter-title {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 12px;
    font-weight: 600;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 10px;
}

.filter-btn {
    padding: 10px 20px;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 40px;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    min-width: 110px;
}

.filter-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(67, 97, 238, 0.2);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-color: transparent;
    box-shadow: 0 6px 15px rgba(67, 97, 238, 0.3);
    transform: translateY(-2px);
}

/* Enhanced Search & Filter */
.grade-filter {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid #f0f0f0;
}

.grade-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 10px;
}

.grade-btn {
    padding: 8px 18px;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 40px;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.grade-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-2px);
}

.grade-btn.active {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-color: transparent;
}

/* Search suggestions */
.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 0 0 15px 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 100;
    display: none;
    max-height: 300px;
    overflow-y: auto;
}

.search-box:focus-within .search-suggestions {
    display: block;
}

.suggestion-item {
    padding: 12px 20px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.suggestion-item:hover {
    background: #f8f9fa;
}

.suggestion-item i {
    color: var(--primary);
}

/* Course tags */
.course-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin: 10px 0;
}

.course-tag {
    background: rgba(67, 97, 238, 0.1);
    color: var(--primary);
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Responsive filters */
@media (max-width: 768px) {
    .grade-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .grade-btn {
        width: 100%;
        max-width: 250px;
    }
    
    .filter-buttons {
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 10px;
    }
    
    .filter-btn {
        flex-shrink: 0;
    }
}

/* ===== COURSES GRID ===== */
.courses-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.course-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 90%;
}

.course-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.course-img {
    height: 180px;
    overflow: hidden;
    position: relative;
}

.Course-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.course-card:hover .Course-image {
    transform: scale(1.05);
}

.course-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.course-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 2;
}

.course-title {
    font-size: 1.1rem; /* Reduced from 1.3rem */
    margin-bottom: 12px;
    color: var(--dark);
    line-height: 1.3;
    min-height: 3em;
}

.course-instructor {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.instructor-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--light);
}

.course-instructor span {
    font-weight: 600;
    color: var(--dark);
    font-size: 0.9rem;
}

.course-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding: 12px 0;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.pricing-model {
    background: rgba(67, 97, 238, 0.1);
    color: var(--primary);
    padding: 5px 12px;
    border-radius: 15px;
    font-weight: 700;
    font-size: 0.85rem;
}

.course-duration {
    color: var(--gray);
    font-size: 0.85rem;
    font-weight: 600;
}

.course-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.stars {
    color: var(--secondary);
    font-size: 0.9rem;
}

.course-rating span {
    color: var(--gray);
    font-weight: 600;
    font-size: 0.85rem;
}

.course-footer {
    margin-top: auto;
}

.course-footer .btn-block {
    width: 100%;
    padding: 10px 16px;
    font-size: 0.95rem;
    border-radius: 6px;
    font-weight: 600;
}

.see-more {
    text-align: center;
    margin-top: 30px;
}

.see-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 35px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    text-decoration: none;
    border-radius: 40px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(67, 97, 238, 0.3);
}

.see-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(67, 97, 238, 0.4);
    gap: 12px;
}

/* ===== HORIZONTALLY SCROLLABLE BENEFITS SECTION ===== */
.benefits-section {
    padding: 60px 0;
    background: white;
    overflow: hidden;
}

.benefits-grid {
    display: flex;
    overflow-x: auto;
    gap: 25px;
    padding: 20px 10px 30px 10px;
    margin-top: 30px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.benefits-grid::-webkit-scrollbar {
    height: 8px;
}

.benefits-grid::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.benefits-grid::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

.benefits-grid::-webkit-scrollbar-thumb:hover {
    background: var(--secondary);
}

/* COLORFUL BENEFIT CARDS */
.benefit-card {
    flex: 0 0 auto;
    width: 280px;
    min-height: 280px;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    cursor: grab;
    
    /* COLORFUL BACKGROUND */
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(67, 97, 238, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
    cursor: grabbing;
}

.benefit-card h3 {
    font-size: 1rem;
    margin-bottom: 12px;
    color: white;
    font-weight: 700;
    min-height: 2.5em;
}

.benefit-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    font-size: 0.9rem;
    margin: 0;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.2);
}

/* Add scroll navigation hint for desktop */
@media (min-width: 769px) {
    .benefits-grid {
        position: relative;
    }
    
    .benefits-grid::after {
        content: '← Scroll →';
        position: absolute;
        top: -35px;
        right: 20px;
        color: var(--gray);
        font-size: 0.85rem;
        font-weight: 600;
        opacity: 0.7;
    }
}

/* Make sure section title is centered */
.benefits-section .section-title {
    text-align: center;
    max-width: 100%;
}

/* Responsive adjustments for horizontal scroll */
@media (max-width: 768px) {
    .benefits-grid {
        gap: 20px;
        padding: 15px 10px 25px 10px;
    }
    
    .benefit-card {
        width: 250px;
        min-height: 260px;
        padding: 20px;
        /* KEEP THE COLORS ON MOBILE */
        background: linear-gradient(135deg, var(--primary), var(--secondary)) !important;
        color: white !important;
    }
    
    .benefit-card h3 {
        color: white !important;
    }
    
    .benefit-card p {
        color: rgba(255, 255, 255, 0.9) !important;
    }
    
    .benefit-icon {
        background: rgba(255, 255, 255, 0.25) !important;
        color: white !important;
    }
}

@media (max-width: 480px) {
    .benefit-card {
        width: 220px;
        min-height: 240px;
        padding: 18px;
        /* KEEP THE COLORS ON MOBILE */
        background: linear-gradient(135deg, var(--primary), var(--secondary)) !important;
        color: white !important;
    }
    
    .benefit-card h3 {
        font-size: 0.95rem;
        margin-bottom: 10px;
        color: white !important;
    }
    
    .benefit-card p {
        font-size: 0.85rem;
        color: rgba(255, 255, 255, 0.9) !important;
    }
    
    .benefit-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        margin-bottom: 15px;
        background: rgba(255, 255, 255, 0.25) !important;
        color: white !important;
    }
}
/* ===== PRICING SECTION - COLORFUL CARD ===== */
.pricing-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.pricing-card-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

/* COLORFUL PRICING CARD */
.pricing-card {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 20px;
    padding: 40px 35px;
    box-shadow: 0 20px 50px rgba(67, 97, 238, 0.3);
    position: relative;
    overflow: hidden;
    color: white;
}

/* Subtle pattern overlay */
.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 2;
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.pricing-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: white;
    font-size: 1.8rem;
    backdrop-filter: blur(10px);
}

/* REDUCED PRICING HEADER SIZE */
.pricing-header h3 {
    font-size: 1.8rem; /* Kept slightly larger for emphasis */
    margin-bottom: 12px;
    color: white;
    font-weight: 700;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 6px;
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
}

.amount {
    font-size: 3.5rem; /* Larger for emphasis */
    font-weight: 900;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.period {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.pricing-description {
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    max-width: 400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.pricing-features {
    margin: 30px 0;
    position: relative;
    z-index: 2;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-size: 1rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    color: white;
    font-size: 1.1rem;
}

.pricing-cta {
    text-align: center;
    position: relative;
    z-index: 2;
}

.pricing-cta .btn-block {
    width: 100%;
    padding: 18px;
    font-size: 1.1rem;
    border-radius: 12px;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: white;
    color: var(--primary);
    border: none;
    transition: all 0.3s ease;
}

.pricing-cta .btn-block:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.pricing-note {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    text-align: center;
}

.pricing-note strong {
    color: white;
}


/* ===== CTA SECTION - REDUCED HEADERS ===== */
.cta-section {
    padding: 60px 0;
}

.cta-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.cta-video-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(67, 97, 238, 0.8), rgba(248, 150, 30, 0.8));
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 50px 30px;
    max-width: 700px;
}

/* REDUCED CTA HEADER SIZE */
.cta-content h2 {
    font-size: 1.8rem; /* Reduced from 2.5rem */
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 700;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-lg {
    padding: 16px 30px;
    font-size: 1rem;
    border-radius: 40px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cta-buttons .btn-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.cta-buttons .btn-outline:hover {
    background: white;
    color: var(--primary);
}

/* ===== VIDEO MODAL ===== */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.video-modal.active {
    display: flex;
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 800px;
    background: black;
    border-radius: 10px;
    overflow: hidden;
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: 1.3rem;
    cursor: pointer;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.modal-video {
    width: 100%;
    height: auto;
    display: block;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .courses-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
    
    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 992px) {
    .courses-hero h1 {
        font-size: 2rem;
    }
    
    .courses-hero p {
        font-size: 0.95rem;
    }
    
    .section-title h2 {
        font-size: 1.6rem;
    }
    
    .pricing-card {
        padding: 35px 25px;
    }
    
    .amount {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .courses-hero {
        height: 50vh;
        min-height: 350px;
        margin-top: 60px;
    }
    
    .courses-hero h1 {
        font-size: 1.6rem;
    }
    
    .courses-hero p {
        font-size: 0.9rem;
    }
    
    .courses-hero .btn-lg {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
    
    .section-title h2 {
        font-size: 1.5rem;
    }
    
    .section-title p {
        font-size: 0.9rem;
    }
    
    .search-section {
        padding: 30px 0;
        margin-top: -30px;
        border-radius: 15px 15px 0 0;
    }
    
    .search-wrapper {
        gap: 20px;
    }
    
    .search-box {
        flex-direction: column;
        border-radius: 15px;
        margin: 0 15px;
    }
    
    .search-box input {
        padding: 14px 18px;
        font-size: 0.95rem;
    }
    
    .search-btn {
        padding: 14px;
        border-radius: 0 0 15px 15px;
        font-size: 1rem;
    }
    
    .filter-title {
        font-size: 1rem;
    }
    
    .filter-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
        min-width: 90px;
    }
    
    .courses-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .course-title {
        font-size: 1rem;
        min-height: auto;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .benefit-card {
        padding: 25px 20px;
    }
    
    .benefit-card h3 {
        font-size: 0.95rem;
    }
    
    .pricing-card {
        padding: 25px 20px;
    }
    
    .amount {
        font-size: 2.5rem;
    }
    
    .pricing-header h3 {
        font-size: 1.5rem;
    }
    
    .pricing-features li {
        font-size: 0.95rem;
        padding: 10px 0;
    }
    
    .cta-content {
        padding: 35px 20px;
    }
    
    .cta-content h2 {
        font-size: 1.5rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .cta-buttons .btn-lg {
        width: 100%;
        max-width: 280px;
        padding: 14px 25px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .courses-hero h1 {
        font-size: 1.4rem;
    }
    
    .section-title h2 {
        font-size: 1.4rem;
    }
    
    .filter-btn {
        min-width: 80px;
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .benefit-card {
        padding: 20px 15px;
    }
    
    .benefit-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    .benefit-card h3 {
        font-size: 0.9rem;
    }
    
    .pricing-badge {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    .amount {
        font-size: 2.2rem;
    }
    
    .pricing-header h3 {
        font-size: 1.3rem;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
