/* ============================================
   EDUTEK TRAINING — Main Stylesheet v1.0
   Compatible : WordPress 5.8+, PHP 7.2+
   Polices : Poppins (titres), Inter (corps)
============================================ */

/* === VARIABLES === */
:root {
  --edutek-primary: #1e3a5f;
  --edutek-primary-light: #2d5a8e;
  --edutek-accent: #f97316;
  --edutek-accent-hover: #ea6c0a;
  --edutek-white: #ffffff;
  --edutek-bg: #f8fafc;
  --edutek-border: #e2e8f0;
  --edutek-text: #1e293b;
  --edutek-muted: #64748b;
  --edutek-success: #22c55e;
  --edutek-warning: #f59e0b;
  --edutek-error: #ef4444;
  --edutek-radius: 12px;
  --edutek-radius-lg: 20px;
  --edutek-shadow: 0 4px 20px rgba(0,0,0,0.08);
  --edutek-shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
}

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px; line-height: 1.6;
  color: var(--edutek-text);
  background: var(--edutek-bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--edutek-primary); text-decoration: none; transition: color .15s; }
a:hover { color: var(--edutek-accent); }
h1,h2,h3,h4,h5 { font-family: 'Poppins', sans-serif; font-weight: 700; line-height: 1.25; }

/* === CONTAINER === */
.edutek-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* === BOUTONS === */
.btn-primary, .btn-accent, .btn-outline, .btn-outline-white, .btn-whatsapp {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 10px 22px; border-radius: var(--edutek-radius); font-weight: 600;
  font-size: 14px; cursor: pointer; border: 2px solid transparent;
  transition: all .2s; text-decoration: none; white-space: nowrap;
}
.btn-primary { background: var(--edutek-primary); color: #fff; }
.btn-primary:hover { background: var(--edutek-primary-light); color: #fff; }
.btn-accent { background: var(--edutek-accent); color: #fff; }
.btn-accent:hover { background: var(--edutek-accent-hover); color: #fff; }
.btn-outline { background: transparent; border-color: var(--edutek-border); color: var(--edutek-text); }
.btn-outline:hover { border-color: var(--edutek-primary); color: var(--edutek-primary); }
.btn-outline-white { background: transparent; border-color: rgba(255,255,255,.4); color: #fff; }
.btn-outline-white:hover { background: rgba(255,255,255,.1); color: #fff; }
.btn-whatsapp { background: #25d366; color: #fff; border-color: #25d366; }
.btn-whatsapp:hover { background: #1fb856; color: #fff; }
.btn-lg { padding: 14px 32px; font-size: 16px; border-radius: 16px; }
.btn-sm { padding: 7px 14px; font-size: 12px; border-radius: 8px; }
.btn-block { width: 100%; }

/* === HEADER === */
.edutek-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,.95);
  border-bottom: 1px solid var(--edutek-border);
  box-shadow: 0 1px 8px rgba(0,0,0,.06);
  backdrop-filter: blur(8px);
}
.header-inner {
  display: flex; align-items: center; gap: 20px;
  height: 64px;
}
.site-branding { flex-shrink: 0; }
.site-branding .custom-logo { height: 36px; width: auto; }
.site-text-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.site-text-logo .site-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--edutek-primary);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 18px;
}
.site-text-logo .site-name {
  font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 16px;
  color: var(--edutek-primary); line-height: 1;
}
.site-text-logo .site-tagline { font-size: 10px; color: var(--edutek-muted); }

/* Navigation principale */
.main-navigation { flex: 1; display: flex; align-items: center; }
.nav-menu { list-style: none; display: flex; gap: 4px; align-items: center; }
.nav-menu li a {
  padding: 8px 16px; border-radius: 8px; font-size: 14px; font-weight: 500;
  color: var(--edutek-text); transition: all .15s;
}
.nav-menu li a:hover, .nav-menu li.current-menu-item a {
  background: var(--edutek-primary); color: #fff;
}
.header-cta { margin-left: auto; }

/* Mobile toggle */
.mobile-toggle {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 8px; border-radius: 8px;
}
.mobile-toggle span { width: 22px; height: 2px; background: var(--edutek-text); border-radius: 2px; transition: all .2s; }

/* === FOOTER === */
.edutek-footer { background: var(--edutek-primary); color: rgba(255,255,255,.85); padding: 60px 0 0; margin-top: auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }
.footer-brand .footer-logo img { height: 40px; filter: brightness(0) invert(1); margin-bottom: 16px; }
.footer-brand .site-text-logo .site-name { color: #fff; }
.footer-brand .site-text-logo .site-tagline { color: rgba(255,255,255,.5); }
.footer-desc { font-size: 14px; color: rgba(255,255,255,.6); line-height: 1.7; margin: 16px 0; max-width: 320px; }
.social-links { display: flex; gap: 10px; }
.social-links a {
  width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center; color: #fff;
  transition: background .2s;
}
.social-links a:hover { background: var(--edutek-accent); color: #fff; }
.footer-col h4 { font-family: 'Poppins', sans-serif; font-weight: 600; color: #fff; margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,.6); transition: color .15s; }
.footer-col ul li a:hover { color: #fff; }
.footer-contact li { font-size: 14px; margin-bottom: 8px; color: rgba(255,255,255,.7); }
.footer-contact li a { color: rgba(255,255,255,.7); }
.footer-contact li a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,.4); }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 12px; color: rgba(255,255,255,.4); }
.footer-links a:hover { color: rgba(255,255,255,.8); }

/* === HERO SECTION === */
.hero-section {
  position: relative; overflow: hidden;
  background: var(--edutek-primary); min-height: 540px;
  display: flex; align-items: center;
}
.hero-bg-pattern {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 25px 25px, rgba(255,255,255,.04) 2px, transparent 0),
                    radial-gradient(circle at 75px 75px, rgba(255,255,255,.04) 2px, transparent 0);
  background-size: 100px 100px;
}
.hero-orb { position: absolute; border-radius: 50%; filter: blur(60px); }
.hero-orb-1 { top: 20px; right: 60px; width: 300px; height: 300px; background: rgba(249,115,22,.18); }
.hero-orb-2 { bottom: 0; left: -40px; width: 240px; height: 240px; background: rgba(255,255,255,.04); }
.hero-content { position: relative; z-index: 1; padding: 80px 0; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 6px 16px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  border-radius: 100px; color: rgba(255,255,255,.8); font-size: 13px; font-weight: 500;
  margin-bottom: 24px;
}
.hero-title {
  font-size: clamp(32px, 5vw, 56px); color: #fff; font-weight: 800;
  line-height: 1.15; margin-bottom: 20px;
}
.hero-highlight {
  color: var(--edutek-accent); position: relative;
}
.hero-subtitle { font-size: 18px; color: rgba(255,255,255,.7); line-height: 1.7; max-width: 560px; margin-bottom: 36px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 48px; }
.hero-stats { display: flex; gap: 40px; }
.hero-stat { text-align: center; }
.hero-stat strong { display: block; font-size: 28px; font-weight: 800; color: #fff; font-family: 'Poppins', sans-serif; }
.hero-stat span { font-size: 12px; color: rgba(255,255,255,.6); }

/* === STATS BAR === */
.stats-bar { background: #fff; border-bottom: 1px solid var(--edutek-border); padding: 32px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat-item { text-align: center; }
.stat-icon { font-size: 28px; margin-bottom: 8px; }
.stat-value { font-size: 28px; font-weight: 800; font-family: 'Poppins', sans-serif; color: var(--edutek-text); }
.stat-label { font-size: 13px; color: var(--edutek-muted); }

/* === SECTIONS === */
.section-header { text-align: center; margin-bottom: 48px; }
.section-header h2 { font-size: clamp(24px, 3vw, 36px); color: var(--edutek-text); margin-bottom: 10px; }
.section-header p { color: var(--edutek-muted); max-width: 480px; margin: 0 auto; }
.section-header-flex { display: flex; align-items: flex-end; justify-content: space-between; text-align: left; }
.see-all-link { font-size: 14px; color: var(--edutek-primary); font-weight: 600; white-space: nowrap; }
.see-all-link:hover { text-decoration: underline; }

/* === CATÉGORIES === */
.categories-section { padding: 64px 0; background: rgba(248,250,252,.8); }
.categories-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px,1fr)); gap: 16px; }
.category-card {
  display: flex; flex-direction: column; align-items: center; gap: 10px; padding: 20px 16px;
  background: #fff; border: 1px solid var(--edutek-border); border-radius: var(--edutek-radius-lg);
  text-decoration: none; color: var(--edutek-text);
  transition: all .2s; cursor: pointer;
}
.category-card:hover { box-shadow: var(--edutek-shadow); transform: translateY(-2px); border-color: var(--edutek-primary); color: var(--edutek-primary); }
.cat-icon { font-size: 32px; }
.cat-name { font-size: 13px; font-weight: 600; text-align: center; line-height: 1.3; }

/* === FORMATIONS GRID === */
.featured-section, .catalogue-layout { padding: 64px 0; }
.formations-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px,1fr)); gap: 24px; }

/* === FORMATION CARD === */
.formation-card {
  background: #fff; border: 1px solid var(--edutek-border);
  border-radius: var(--edutek-radius-lg); overflow: hidden;
  display: flex; flex-direction: column;
  transition: all .3s; box-shadow: 0 2px 8px rgba(0,0,0,.04);
}
.formation-card:hover { box-shadow: var(--edutek-shadow-lg); transform: translateY(-4px); }
.card-image { position: relative; overflow: hidden; height: 200px; background: var(--edutek-bg); }
.card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.formation-card:hover .card-image img { transform: scale(1.05); }
.card-image-placeholder { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; background: linear-gradient(135deg, var(--edutek-primary) 0%, var(--edutek-primary-light) 100%); }
.card-cat-badge { position: absolute; top: 10px; left: 10px; padding: 4px 10px; border-radius: 100px; background: rgba(255,255,255,.92); font-size: 11px; font-weight: 600; color: var(--edutek-text); }
.card-discount-badge { position: absolute; top: 10px; right: 10px; padding: 3px 8px; border-radius: 100px; background: #ef4444; color: #fff; font-size: 11px; font-weight: 700; }
.card-places-badge { position: absolute; bottom: 10px; right: 10px; padding: 4px 10px; border-radius: 100px; background: rgba(249,115,22,.9); color: #fff; font-size: 11px; font-weight: 600; }
.card-complet-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.4); display: flex; align-items: center; justify-content: center; }
.card-complet-overlay span { padding: 10px 24px; background: #ef4444; color: #fff; font-weight: 700; border-radius: 100px; }
.card-body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.card-title { font-size: 16px; margin-bottom: 8px; line-height: 1.4; }
.card-title a { color: var(--edutek-text); transition: color .15s; }
.card-title a:hover { color: var(--edutek-primary); }
.card-desc { font-size: 13px; color: var(--edutek-muted); margin-bottom: 14px; line-height: 1.6; flex: 1; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.card-meta { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 12px; }
.meta-item { font-size: 12px; color: var(--edutek-muted); display: flex; align-items: center; gap: 4px; }

/* Badges niveau */
.badge-niveau { display: inline-block; padding: 3px 10px; border-radius: 100px; font-size: 11px; font-weight: 600; }
.badge-debutant { background: #dcfce7; color: #15803d; }
.badge-intermediaire { background: #fef9c3; color: #854d0e; }
.badge-avance { background: #fee2e2; color: #991b1b; }
.badge-tous { background: #dbeafe; color: #1d4ed8; }

/* Progress bar */
.card-progress, .places-progress { margin-bottom: 14px; }
.progress-bar-bg { height: 6px; background: #e5e7eb; border-radius: 3px; overflow: hidden; }
.progress-bar-fill { height: 100%; border-radius: 3px; transition: width .3s; }
.progress-labels { display: flex; justify-content: space-between; font-size: 11px; color: var(--edutek-muted); margin-top: 4px; }
.card-footer { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: auto; padding-top: 14px; border-top: 1px solid var(--edutek-border); }
.card-prix .prix-final { font-size: 18px; font-weight: 800; font-family: 'JetBrains Mono', monospace; color: var(--edutek-text); }
.card-prix .prix-barre { font-size: 12px; color: var(--edutek-muted); text-decoration: line-through; }
.card-actions { display: flex; gap: 8px; }

/* === WHY / CTA === */
.why-section { padding: 64px 0; background: rgba(248,250,252,.8); }
.why-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px,1fr)); gap: 24px; }
.why-card { background: #fff; border: 1px solid var(--edutek-border); border-radius: var(--edutek-radius-lg); padding: 28px; transition: box-shadow .2s; }
.why-card:hover { box-shadow: var(--edutek-shadow); }
.why-icon { font-size: 32px; margin-bottom: 16px; }
.why-card h3 { font-size: 16px; margin-bottom: 8px; }
.why-card p { font-size: 14px; color: var(--edutek-muted); line-height: 1.6; }

.cta-section { background: var(--edutek-primary); padding: 72px 0; text-align: center; }
.cta-section h2 { font-size: clamp(24px,3vw,36px); color: #fff; margin-bottom: 12px; }
.cta-section p { color: rgba(255,255,255,.7); max-width: 480px; margin: 0 auto 36px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

/* === CATALOGUE LAYOUT === */
.catalogue-header { background: rgba(30,58,95,.05); border-bottom: 1px solid var(--edutek-border); padding: 40px 0; }
.catalogue-header h1 { font-size: 32px; margin-bottom: 6px; }
.catalogue-header p { color: var(--edutek-muted); margin-bottom: 20px; }
.search-bar { display: flex; gap: 12px; max-width: 560px; }
.search-bar input { flex: 1; padding: 10px 16px; border: 1px solid var(--edutek-border); border-radius: var(--edutek-radius); font-size: 14px; background: #fff; }
.catalogue-layout { display: flex; gap: 32px; align-items: flex-start; padding: 40px 20px; }
.filter-sidebar { width: 260px; flex-shrink: 0; background: #fff; border: 1px solid var(--edutek-border); border-radius: var(--edutek-radius-lg); padding: 20px; position: sticky; top: 80px; }
.filter-block { margin-bottom: 24px; padding-bottom: 20px; border-bottom: 1px solid var(--edutek-border); }
.filter-block:last-child { border-bottom: none; margin-bottom: 0; }
.filter-block h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--edutek-muted); margin-bottom: 12px; }
.filter-checkbox { display: flex; align-items: center; justify-content: space-between; gap: 8px; padding: 6px 0; cursor: pointer; }
.filter-checkbox input { accent-color: var(--edutek-primary); width: 15px; height: 15px; cursor: pointer; }
.filter-checkbox span { font-size: 13px; flex: 1; }
.filter-count { font-size: 11px; background: #f1f5f9; color: var(--edutek-muted); padding: 1px 7px; border-radius: 100px; }
.filter-clear { display: block; font-size: 12px; color: var(--edutek-muted); margin-top: 8px; }
.filter-clear:hover { color: var(--edutek-error); }
.price-range-label { display: flex; justify-content: space-between; font-size: 12px; color: var(--edutek-muted); margin-top: 6px; }
.formations-content { flex: 1; min-width: 0; }
.no-results { text-align: center; padding: 60px 20px; }
.no-results h3 { font-size: 20px; margin-bottom: 8px; }
.no-results p { color: var(--edutek-muted); margin-bottom: 24px; }

/* === COURSE DETAIL === */
.breadcrumb { background: rgba(248,250,252,.8); border-bottom: 1px solid var(--edutek-border); padding: 12px 0; }
.breadcrumb a { font-size: 13px; color: var(--edutek-muted); }
.breadcrumb a:hover { color: var(--edutek-primary); }
.breadcrumb span { font-size: 13px; color: var(--edutek-text); font-weight: 500; }
.course-hero { position: relative; height: 320px; overflow: hidden; background: var(--edutek-primary); }
.course-hero-img { width: 100%; height: 100%; object-fit: cover; }
.course-hero-placeholder { width: 100%; height: 100%; }
.course-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.75) 0%, rgba(0,0,0,.2) 60%, transparent 100%); display: flex; align-items: flex-end; padding-bottom: 32px; }
.course-cat-badge { display: inline-block; padding: 4px 12px; background: rgba(255,255,255,.2); border: 1px solid rgba(255,255,255,.3); border-radius: 100px; font-size: 12px; color: #fff; font-weight: 500; margin-right: 8px; }
.course-hero-title { font-size: clamp(22px,3vw,36px); color: #fff; margin-top: 8px; }
.course-layout { display: flex; gap: 32px; align-items: flex-start; padding: 40px 20px 64px; }
.course-main { flex: 1; min-width: 0; }
.course-quick-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; padding: 20px; background: rgba(248,250,252,.8); border: 1px solid var(--edutek-border); border-radius: var(--edutek-radius-lg); margin-bottom: 32px; }
.quick-stat { text-align: center; }
.quick-stat span:first-child { font-size: 20px; display: block; margin-bottom: 4px; }
.quick-stat strong { display: block; font-size: 14px; font-weight: 700; }
.quick-stat span:last-child { font-size: 11px; color: var(--edutek-muted); }
.course-section { margin-bottom: 36px; }
.course-section h2 { font-size: 22px; margin-bottom: 16px; color: var(--edutek-text); }
.course-section p { font-size: 15px; color: var(--edutek-muted); line-height: 1.75; }
.objectifs-list { list-style: none; }
.objectifs-list li { padding: 10px 0; font-size: 15px; border-bottom: 1px solid var(--edutek-border); display: flex; align-items: flex-start; gap: 10px; }
.public-cible-box { background: rgba(248,250,252,.8); border: 1px solid var(--edutek-border); border-radius: var(--edutek-radius); padding: 16px; font-size: 14px; color: var(--edutek-muted); }
.programme-subtitle { font-size: 13px; color: var(--edutek-muted); margin-bottom: 12px; }
.programme-list { display: flex; flex-direction: column; gap: 10px; }
.programme-item { display: flex; gap: 14px; padding: 16px; background: #fff; border: 1px solid var(--edutek-border); border-radius: var(--edutek-radius); }
.prog-num { width: 32px; height: 32px; border-radius: 50%; background: rgba(30,58,95,.1); color: var(--edutek-primary); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; flex-shrink: 0; }
.prog-content h4 { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.prog-content p { font-size: 12px; color: var(--edutek-muted); }
.formateur-card { display: flex; align-items: center; gap: 16px; padding: 20px; background: #fff; border: 1px solid var(--edutek-border); border-radius: var(--edutek-radius-lg); }
.formateur-avatar { font-size: 40px; }
.formateur-card h4 { font-size: 16px; margin-bottom: 4px; }
.formateur-card p { font-size: 13px; color: var(--edutek-muted); }
.stars { color: #f59e0b; font-size: 14px; margin-top: 4px; }
.course-sidebar { width: 300px; flex-shrink: 0; }
.inscription-card { background: #fff; border: 1px solid var(--edutek-border); border-radius: var(--edutek-radius-lg); overflow: hidden; box-shadow: var(--edutek-shadow-lg); position: sticky; top: 80px; }
.inscription-card-header { background: var(--edutek-primary); padding: 24px; }
.prix-final { font-size: 32px; font-weight: 800; color: #fff; font-family: 'JetBrains Mono', monospace; }
.prix-original { font-size: 14px; color: rgba(255,255,255,.5); text-decoration: line-through; margin-top: 4px; }
.inscription-card-body { padding: 20px; }
.sidebar-info { display: flex; align-items: center; gap: 8px; font-size: 13px; padding: 8px 0; border-bottom: 1px solid var(--edutek-border); }
.sidebar-info strong { color: var(--edutek-text); }
.sidebar-info:last-of-type { border-bottom: none; }
.contact-buttons { display: flex; gap: 10px; margin-top: 14px; }
.contact-buttons .btn-outline, .contact-buttons .btn-whatsapp { flex: 1; }

/* === ADMIN STYLES === */
.edutek-admin-wrap { max-width: 1200px; }
.edutek-admin-wrap .button { border-radius: 6px !important; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }
  .catalogue-layout { flex-direction: column; }
  .filter-sidebar { width: 100%; position: static; }
  .course-layout { flex-direction: column; }
  .course-sidebar { width: 100%; }
  .inscription-card { position: static; }
  .course-quick-stats { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .main-navigation { display: none; }
  .header-cta { display: none; }
  .mobile-toggle { display: flex; margin-left: auto; }
  .main-navigation.active { display: block; position: fixed; top: 64px; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--edutek-border); padding: 16px; z-index: 999; box-shadow: var(--edutek-shadow); }
  .nav-menu { flex-direction: column; gap: 4px; }
  .nav-menu li a { display: block; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .hero-stats { gap: 24px; }
  .section-header-flex { flex-direction: column; align-items: flex-start; gap: 8px; }
  .formations-grid { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: repeat(2,1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .search-bar { flex-direction: column; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .card-footer { flex-direction: column; align-items: flex-start; }
  .card-actions { width: 100%; }
  .card-actions .btn-outline, .card-actions .btn-accent { flex: 1; justify-content: center; }
}

/* === PRINT === */
@media print {
  .edutek-header, .edutek-footer, .filter-sidebar, .course-sidebar { display: none !important; }
}
