/* --- 1. Branches (Accordion) --- */
.simple-intro { text-align: center; margin-bottom: 50px; }
.title-bold { font-size: clamp(32px, 5vw, 50px); font-weight: 900; margin-bottom: 10px; }
.title-bold span { color: var(--primary-red); transition: var(--transition); }
.title-bold:hover span { color: var(--primary-sky); transform: scale(1.05); }

.video-accordion { display: flex; flex-direction: column; gap: 20px; min-height: 400px; }
.branch-item { position: relative; flex: 1; overflow: hidden; border-radius: 20px; cursor: pointer; border: 2px solid rgba(255, 255, 255, 0.05); }
.branch-item:hover { border-color: var(--primary-sky); box-shadow: 0 0 25px rgba(0, 204, 255, 0.25); z-index: 5; }

@media (min-width: 1024px) {
    .video-accordion { flex-direction: row; height: 600px; }
    .video-accordion:hover .branch-item { flex: 0.6; filter: brightness(0.4); }
    .video-accordion .branch-item:hover { flex: 3; filter: brightness(1); border-color: var(--primary-red); }
}

.video-wrapper { width: 100%; height: 100%; position: relative; }
.tour-img { width: 100%; height: 100%; object-fit: cover; }
.content-overlay {
    position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 60%, rgba(0,0,0,0.3) 100%);
    display: flex; flex-direction: column; justify-content: center; align-items: center; padding: 20px; text-align: center;
}
.play-btn { width: 65px; height: 65px; background: var(--primary-red); border: none; border-radius: 50%; color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; margin-bottom: 15px; }
.branch-name { font-size: 1.8rem; font-weight: 900; white-space: nowrap; text-shadow: 0 2px 15px rgba(0,0,0,0.9); }
.bottom-actions { position: absolute; bottom: -70px; opacity: 0; transition: var(--transition); width: 100%; display: flex; justify-content: center; }
.branch-item:hover .bottom-actions { bottom: 35px; opacity: 1; }
.map-link { display: flex; align-items: center; gap: 10px; background: rgba(255, 255, 255, 0.08); padding: 12px 24px; border-radius: 50px; color: #fff; font-weight: 700; border: 1px solid rgba(255, 255, 255, 0.15); }
.map-link:hover { background: var(--primary-red); border-color: var(--primary-red); transform: translateY(-3px); }

/* --- 2. Features (Mumayizat) --- */
.features-section { padding: 100px 0; background: radial-gradient(circle at 50% 50%, #111 0%, #050505 100%); position: relative; overflow: hidden; }
.section-header { text-align: center; margin-bottom: 70px; }
.sub-heading { color: var(--primary-sky); text-transform: uppercase; font-weight: 700; letter-spacing: 4px; display: block; margin-bottom: 10px; }
.main-heading { font-size: clamp(30px, 6vw, 50px); font-weight: 900; }
.main-heading span { color: var(--primary-red); }

.features-grid { display: grid; gap: 30px; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.feature-item {
    background: var(--bg-card); padding: 50px 30px; border-radius: 24px; text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05); transition: var(--transition); animation: float 6s ease-in-out infinite;
}
.feature-item:hover { transform: scale(1.05) translateY(-15px) !important; background: #151515; }
.icon-box {
    width: 80px; height: 80px; margin: 0 auto 30px; background: linear-gradient(135deg, rgba(255,0,0,0.1), rgba(0,204,255,0.1));
    border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--primary-red);
}
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* --- 3. Schedule (Jadwal) --- */
.header-section { text-align: center; padding: 80px 0 50px; background: linear-gradient(to bottom, rgba(255, 0, 0, 0.05) 0%, transparent 100%); }
.main-title { font-size: clamp(2rem, 6vw, 3.5rem); font-weight: 900; text-transform: uppercase; margin-bottom: 15px; color: var(--text-white); }
.brand-name { color: var(--primary-red); text-shadow: 0 0 20px rgba(255, 0, 0, 0.2); }
.sub-header-line { width: 80px; height: 3px; background: var(--primary-sky); margin: 0 auto 25px; border-radius: 10px; box-shadow: 0 0 10px var(--primary-sky); }
.description { color: var(--primary-sky); font-size: 1.2rem; font-weight: 700; letter-spacing: 1px; opacity: 0.9; }

.schedule-section { padding: 60px 0; }
.branch-nav { margin-bottom: 40px; text-align: center; }
.branch-list { list-style: none; display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; }
.branch-btn { background: var(--bg-card); border: 1px solid #333; color: #fff; padding: 12px 30px; border-radius: 12px; cursor: pointer; font-family: var(--font-ar); font-weight: 700; transition: var(--transition); }
.branch-btn.active, .branch-btn:hover { background: var(--primary-red); border-color: var(--primary-red); transform: translateY(-3px); box-shadow: 0 10px 20px rgba(255, 0, 0, 0.3); }

.table-container { background: var(--bg-card); border-radius: 16px; overflow-x: auto; }
.schedule-table { width: 100%; border-collapse: collapse; min-width: 900px; }
.schedule-table th { padding: 25px; background: rgba(255,255,255,0.02); color: var(--primary-sky); font-size: 1.2rem; font-weight: 800; border-bottom: 2px solid #333; }
.schedule-table td { border: 1px solid #333; padding: 15px; vertical-align: top; }

.class-card { padding: 20px; border-radius: 12px; background: rgba(255,255,255,0.03); transition: var(--transition); }
.class-card:hover { background: rgba(255,255,255,0.07); border-right-color: var(--primary-red); }
.time { color: var(--primary-sky); font-family: 'Oswald', sans-serif; font-weight: 700; display: block; margin-bottom: 8px; }
.class-name { font-size: 1.3rem; font-weight: 800; margin-bottom: 5px; }
.coach { color: var(--text-gray); font-size: 0.9rem; }
.level-tag { display: inline-block; margin-top: 15px; padding: 4px 10px; border-radius: 5px; font-size: 0.75rem; font-weight: 700; background: rgba(255,255,255,0.05); }