/* Sections */
.section {
    max-width: 1150px;
    margin: 40px auto;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tagline {
    color: #ccc;
    margin-bottom: 20px;
    font-size: 15px;
    animation: slideInRight 1s ease;
}

/* Buttons */
.btn-btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 50px;
    background: red;
    color: #fff;
    font-weight: 500;
    font-size: 14px;
    box-shadow: 0 6px 18px rgba(255, 68, 0, 0.4);
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0,212,255,0.6);
}

/* Schedule Table */
.schedule-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
    font-size: 14px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.schedule-table th {
    background: linear-gradient(135deg, #1976d2 0%, #0d47a1 100%);
    color: #fff;
    padding: 12px 10px;
    font-weight: 600;
}

.schedule-table td {
    padding: 12px 10px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.05);
    transition: background 0.3s ease;
}

.schedule-table tr:hover td { background: rgba(0,212,255,0.1); }

.badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 11px;
    color: #fff;
    background: linear-gradient(135deg, #43a047 0%, #2e7d32 100%);
    box-shadow: 0 2px 8px rgba(67,160,71,0.3);
}

/* FAQ Grid */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
}

.faq-item {
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 15px;
    background: rgba(255,255,255,0.05);
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-color: var(--primary);
}

.faq-q { font-weight: 600; font-size: 15px; margin-bottom: 8px; color: var(--light); }
.faq-a { font-size: 14px; color: #ddd; display: none; margin-top: 6px; line-height: 1.5; }

/* Blog Posts */
.post-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
}

.post-card {
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 18px;
    background: rgba(255,255,255,0.05);
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0,212,255,0.2);
}

.post-cat {
    font-size: 12px;
    color: var(--primary);
    padding: 4px 10px;
    background: rgba(0,212,255,0.2);
    border-radius: 12px;
    margin-bottom: 8px;
    display: inline-block;
}

.post-title { font-size: 16px; font-weight: 600; margin-bottom: 8px; color: var(--light); }
.post-excerpt { font-size: 13.5px; color: #ccc; line-height: 1.5; }

/* Video Grid */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 18px;
    margin-top: 20px;
}

.video-card {
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 15px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.video-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,212,255,0.3);
}

.video-tag {
    font-size: 12px;
    color: #ccc;
    padding: 4px 8px;
    background: rgba(124,58,237,0.2);
    border-radius: 10px;
    margin-bottom: 8px;
    display: inline-block;
}

iframe {
    border-radius: 12px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.15);
}

/* Reviews */
.rating-summary {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    align-items: center;
    margin-bottom: 20px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(0,212,255,0.15), rgba(124,58,237,0.15));
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}

.rating-score {
    font-size: 42px;
    font-weight: 700;
    color: #ffb300;
    text-shadow: 0 2px 8px rgba(255,179,0,0.3);
}

.rating-stars { color: #ffb300; font-size: 22px; }

.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
}

.review-card {
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 18px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(0,212,255,0.2);
}

.review-name { font-weight: 600; font-size: 15px; }
.review-date { font-size: 12px; color: #aaa; }

/* Animations */
@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Responsive */
@media (max-width: 768px) {
    .section { margin: 20px 15px; padding: 20px; }
    .navbar { padding: 12px 20px; flex-direction: column; align-items: flex-start; }
    .nav-links { margin-top: 10px; }
    .rating-summary { flex-direction: column; text-align: center; }
    .faq-grid, .post-grid, .video-grid, .review-grid { grid-template-columns: 1fr; }
}
.review-card {
        background: linear-gradient(135deg, #7888cc 0%, #764ba2 100%);
        border-radius: 12px;
        padding: 20px;
        color: white;
        box-shadow: 0 8px 16px rgba(0,0,0,0.1);
        transition: all 0.3s ease;
    }
    
    .review-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 24px rgba(255, 255, 255, 0.2);
    }
    
    .rating-score {
        font-size: 48px;
        font-weight: bold;
        transition: transform 0.3s ease;
    }
    
    .review-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
        margin: 30px 0;
    }
    
    .fade-in-up {
        animation: fadeInUp 0.6s ease forwards;
    }
    
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    