/* =============================================================================
   main.css — HNH Elite Sports
   Style : Stade nuit · Vert pelouse · Bleu marine · Glassmorphism
   ============================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;600;700&family=Nunito:wght@400;600;700;800&display=swap');

:root {
  /* ── Fond principal ── */
  --grad-bg:        linear-gradient(160deg, #020d1a 0%, #041c35 35%, #062910 70%, #020d1a 100%);

  /* ── Cards / Surfaces ── */
  --card-bg:        rgba(4, 28, 53, 0.72);
  --card-border:    rgba(255, 255, 255, 0.08);
  --card-shadow:    0 4px 24px rgba(0, 0, 0, 0.4);
  --card-hover:     0 12px 40px rgba(0, 0, 0, 0.55);

  /* ── Couleurs stade ── */
  --vert:           #22c55e;          /* vert néon pelouse */
  --vert-sombre:    #0a3d1f;          /* vert pelouse sombre */
  --vert-vif:       #16a34a;          /* vert intermédiaire */
  --bleu-nuit:      #020d1a;          /* bleu nuit profond */
  --bleu-marine:    #041c35;          /* bleu marine */
  --bleu:           #0ea5e9;          /* bleu électrique */
  --cyan:           #06b6d4;          /* cyan aqua */
  --or:             #f59e0b;          /* or trophée */
  --argent:         #94a3b8;          /* argent */

  /* ── Anciens noms conservés pour compat. ── */
  --orange:         #f59e0b;          /* remplacé par --or */
  --orange-vif:     #fbbf24;
  --orange-dark:    #d97706;
  --grad-orange:    linear-gradient(135deg, #f59e0b, #d97706);
  --violet:         #0ea5e9;          /* violet → bleu électrique */

  /* ── Texte ── */
  --blanc:          #ffffff;
  --texte:          rgba(255, 255, 255, 0.92);
  --texte-2:        rgba(255, 255, 255, 0.72);
  --texte-3:        rgba(255, 255, 255, 0.42);

  /* ── Couleurs disciplines ── */
  --sport-football:   #22c55e;
  --sport-basketball: #f59e0b;
  --sport-handball:   #0ea5e9;
  --sport-tennis:     #06b6d4;

  /* ── Layout ── */
  --nav-h:          68px;
  --r:              12px;
  --r-lg:           14px;
  --transition:     0.22s cubic-bezier(0.4, 0, 0.2, 1);

  /* ── Dropdown ── */
  --dd-bg:          rgba(2, 13, 26, 0.98);
  --dd-border:      rgba(255, 255, 255, 0.08);
  --dd-shadow:      0 16px 48px rgba(0, 0, 0, 0.7);
  --dd-item-hover:  rgba(255, 255, 255, 0.06);

  /* ── Rouge ── */
  --rouge:          #f43f5e;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  background: var(--grad-bg);
  background-attachment: fixed;
  color: var(--texte);
  min-height: 100vh;
  display: flex; flex-direction: column;
  line-height: 1.65; font-size: 16px;
}

/* Fix background-attachment sur iOS Safari */
@supports (-webkit-touch-callout: none) {
  body { background-attachment: scroll; }
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
main { flex: 1; padding: 1.5rem 0 3rem; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 2.5rem; }
.section { padding: 2rem 0; }


/* ══════════════════════════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════════════════════════ */
.navbar {
  position: sticky; top: 0; z-index: 900;
  height: var(--nav-h);
  background: rgba(2, 13, 26, 0.75);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border-bottom: 1px solid rgba(34, 197, 94, 0.12);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.5);
  display: flex; align-items: center;
  padding: 0 1.5rem; gap: 0.75rem;
}

/* Brand */
.brand { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; margin-right: 1.25rem; }
.brand-logo {
  width: 44px; height: 44px; border-radius: 50%;
  border: 2px solid rgba(34, 197, 94, 0.6); object-fit: cover;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.15);
}
.brand-logo-fb {
  width: 44px; height: 44px; border-radius: 50%;
  border: 2px solid rgba(34, 197, 94, 0.6);
  display: none; align-items: center; justify-content: center;
  font-size: 1.3rem; background: rgba(34, 197, 94, 0.12);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.12);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-name {
  font-family: 'Oswald', sans-serif;
  font-size: 1.15rem; font-weight: 700; color: var(--blanc);
  letter-spacing: 0.06em; text-transform: uppercase;
}
.brand-sub {
  font-size: 0.6rem; color: rgba(34, 197, 94, 0.85);
  letter-spacing: 0.12em; text-transform: uppercase; font-weight: 700;
}

/* Nav menu */
.nav-menu {
  display: flex; align-items: center; gap: 0.1rem;
  flex: 1; overflow-x: auto; scrollbar-width: none;
}
.nav-menu::-webkit-scrollbar { display: none; }

.nav-link {
  display: flex; align-items: center; gap: 0.38rem;
  padding: 0.46rem 0.82rem; border-radius: var(--r);
  color: rgba(255,255,255,0.65); font-size: 0.86rem; font-weight: 600;
  white-space: nowrap; transition: all var(--transition); position: relative;
  cursor: pointer;
}
.nav-link i { font-size: 0.74rem; }
.nav-link:hover { background: rgba(34, 197, 94, 0.1); color: var(--blanc); transform: translateY(-1px); }
.nav-link.active { background: rgba(34, 197, 94, 0.14); color: var(--blanc); font-weight: 800; }
.nav-link.active::after {
  content: ''; position: absolute; bottom: 3px; left: 50%;
  transform: translateX(-50%); width: 18px; height: 2px;
  background: var(--vert); border-radius: 2px;
}

.nav-sep { width: 1px; height: 18px; background: rgba(255,255,255,0.08); margin: 0 0.35rem; flex-shrink: 0; }

/* Badge LIVE */
.badge-live-pulse {
  display: inline-flex; align-items: center; gap: 3px;
  background: rgba(34, 197, 94, 0.18); color: var(--vert);
  font-size: 0.58rem; font-weight: 800; padding: 2px 6px; border-radius: 6px; margin-left: 3px;
  border: 1px solid rgba(34, 197, 94, 0.3); animation: livePulse 2s infinite;
}
@keyframes livePulse { 0%,100%{opacity:1} 50%{opacity:0.5} }

/* Bouton Admin */
.btn-nav-admin {
  margin-left: auto; flex-shrink: 0;
  display: flex; align-items: center; gap: 0.4rem;
  padding: 0.46rem 1.1rem; border-radius: 20px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  border: none; color: #fff;
  font-size: 0.8rem; font-weight: 800; transition: all var(--transition);
  white-space: nowrap; cursor: pointer;
  box-shadow: 0 2px 12px rgba(34, 197, 94, 0.3);
}
.btn-nav-admin:hover {
  box-shadow: 0 4px 20px rgba(34, 197, 94, 0.5);
  transform: translateY(-1px); filter: brightness(1.08);
}

/* Burger toggler */
.nav-toggler {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 6px; margin-left: auto;
  background: rgba(34, 197, 94, 0.08); border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: var(--r);
}
.nav-toggler span { display: block; width: 22px; height: 2px; background: var(--blanc); border-radius: 2px; transition: var(--transition); }

/* Overlay mobile */
.nav-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.7); z-index: 800; backdrop-filter: blur(4px); }
.nav-overlay.active { display: block; }


/* ══════════════════════════════════════════════════════════════════
   DROPDOWNS NAVBAR
══════════════════════════════════════════════════════════════════ */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle { display: flex; align-items: center; gap: 0.4rem; cursor: pointer; user-select: none; }
.nav-chevron { font-size: 0.65rem; opacity: 0.7; transition: transform 0.25s ease; pointer-events: none; flex-shrink: 0; }
.nav-dropdown.open > .nav-dropdown-toggle .nav-chevron { transform: rotate(180deg); }

.nav-dropdown-menu {
  display: none; list-style: none; padding: 0.4rem 0; margin: 0;
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%);
  background: var(--dd-bg); backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  min-width: 215px; border-radius: 12px;
  box-shadow: var(--dd-shadow); border: 1px solid var(--dd-border); z-index: 1000;
}
.nav-dropdown-menu::before {
  content: ''; position: absolute; top: -6px; left: 50%; transform: translateX(-50%);
  border: 6px solid transparent; border-bottom-color: var(--dd-border); pointer-events: none;
}
@keyframes ddOpen {
  from { opacity: 0; transform: translateX(-50%) translateY(8px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.nav-dropdown.open > .nav-dropdown-menu { display: block; animation: ddOpen 0.18s ease both; }

.nav-dropdown-menu li a {
  display: flex; align-items: center; gap: 0.55rem;
  padding: 0.6rem 1.1rem;
  color: rgba(255,255,255,0.6); font-size: 0.875rem; font-weight: 600;
  transition: background 0.15s, color 0.15s, padding-left 0.15s;
  border-bottom: 1px solid rgba(255,255,255,0.03);
}
.nav-dropdown-menu li:last-child a { border-bottom: none; }
.nav-dropdown-menu li a i { width: 18px; text-align: center; font-size: 0.8rem; flex-shrink: 0; }
.nav-dropdown-menu li a:hover { background: var(--dd-item-hover); color: var(--blanc); padding-left: 1.4rem; }
.nav-dropdown-menu li a.active { background: rgba(34, 197, 94, 0.1); color: var(--vert); padding-left: 1.4rem; font-weight: 700; }
.nav-dropdown.open > .nav-dropdown-toggle { color: var(--blanc); }


/* ══════════════════════════════════════════════════════════════════
   FLASH
══════════════════════════════════════════════════════════════════ */
.flash-zone { padding: 0.75rem 1.5rem 0; }
.alert {
  display: flex; align-items: center; gap: 0.65rem;
  padding: 0.88rem 1.15rem; border-radius: var(--r);
  margin-bottom: 0.5rem; font-size: 0.92rem; font-weight: 600;
  animation: slideDown 0.3s ease; backdrop-filter: blur(10px);
}
@keyframes slideDown { from{opacity:0;transform:translateY(-8px)} to{opacity:1;transform:translateY(0)} }
.alert-success { background: rgba(34,197,94,0.15);   color: #4ade80; border: 1px solid rgba(34,197,94,0.25); }
.alert-error,
.alert-danger  { background: rgba(244,63,94,0.15);   color: #fb7185; border: 1px solid rgba(244,63,94,0.25); }
.alert-warning { background: rgba(245,158,11,0.15);  color: #fbbf24; border: 1px solid rgba(245,158,11,0.25); }
.alert-info    { background: rgba(14,165,233,0.15);  color: #38bdf8; border: 1px solid rgba(14,165,233,0.25); }


/* ══════════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════════ */
.footer {
  background: rgba(2, 13, 26, 0.85);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(34, 197, 94, 0.1);
  padding: 2.5rem 1.5rem 1.25rem; margin-top: auto;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; margin-bottom: 2rem; }
.footer-logo-wrap { display: flex; align-items: center; gap: 0.7rem; margin-bottom: 0.9rem; }
.footer-logo-img { width: 44px; height: 44px; border-radius: 50%; border: 2px solid rgba(34,197,94,0.5); object-fit: cover; }
.footer-logo-title { font-family: 'Oswald', sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--blanc); }
.footer-logo-sub { font-size: 0.6rem; color: rgba(34, 197, 94, 0.8); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; }
.footer-desc { font-size: 0.85rem; color: var(--texte-3); line-height: 1.8; max-width: 280px; }
.footer-col h4 { font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(34,197,94,0.8); margin-bottom: 0.9rem; display: flex; align-items: center; gap: 0.35rem; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a { font-size: 0.84rem; color: var(--texte-3); display: flex; align-items: center; gap: 0.4rem; transition: color var(--transition); }
.footer-col a i { font-size: 0.64rem; }
.footer-col a:hover { color: var(--vert); }
.footer-brand-col { grid-column: span 1; }
.footer-bottom {
  padding-top: 1.2rem; border-top: 1px solid rgba(255,255,255,0.05);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 0.5rem; font-size: 0.78rem; color: rgba(255,255,255,0.3);
}
.footer-bottom strong { color: rgba(34, 197, 94, 0.75); }
.footer-tech {
  display: inline-flex; align-items: center; gap: 0.3rem;
  background: rgba(34, 197, 94, 0.08); border: 1px solid rgba(34, 197, 94, 0.15);
  padding: 0.22rem 0.62rem; border-radius: 20px;
  font-size: 0.68rem; color: rgba(34, 197, 94, 0.75);
}
.footer-socials { display: flex; gap: 0.6rem; margin-top: 1rem; }
.footer-social {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  color: var(--texte-3); font-size: 0.9rem; transition: all var(--transition);
}
.footer-social:hover { background: rgba(34,197,94,0.15); border-color: rgba(34,197,94,0.35); color: var(--vert); transform: translateY(-2px); }


/* ══════════════════════════════════════════════════════════════════
   COMPOSANTS
══════════════════════════════════════════════════════════════════ */
.section-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.55rem; font-weight: 700; color: var(--blanc);
  margin-bottom: 0.3rem; display: flex; align-items: center; gap: 0.5rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.section-title i { color: var(--vert); }
.section-sub { font-size: 0.92rem; color: var(--texte-3); margin-bottom: 1.5rem; }

/* Card */
.card {
  background: var(--card-bg); backdrop-filter: blur(16px);
  border: 1px solid var(--card-border); border-radius: var(--r-lg);
  padding: 1.5rem; box-shadow: var(--card-shadow);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  color: var(--texte);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--card-hover); border-color: rgba(34,197,94,0.15); }

/* Badges */
.badge { display: inline-flex; align-items: center; gap: 3px; padding: 0.2rem 0.6rem; border-radius: 20px; font-size: 0.7rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; }
.badge-live    { background: rgba(34,197,94,0.2);   color: #4ade80; border: 1px solid rgba(34,197,94,0.3); }
.badge-info    { background: rgba(14,165,233,0.2);  color: #38bdf8; border: 1px solid rgba(14,165,233,0.3); }
.badge-warning { background: rgba(245,158,11,0.2);  color: #fbbf24; border: 1px solid rgba(245,158,11,0.3); }
.badge-success { background: rgba(34,197,94,0.2);   color: #4ade80; border: 1px solid rgba(34,197,94,0.3); }
.badge-muted   { background: rgba(255,255,255,0.06); color: var(--texte-3); border: 1px solid rgba(255,255,255,0.1); }
.badge-danger  { background: rgba(244,63,94,0.2);   color: #fb7185; border: 1px solid rgba(244,63,94,0.3); }

/* Boutons */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.68rem 1.55rem; border-radius: 24px;
  font-size: 0.92rem; font-weight: 800; cursor: pointer; border: none;
  transition: all var(--transition); font-family: 'Nunito', sans-serif;
}
.btn-primary { background: linear-gradient(135deg, #22c55e, #16a34a); color: #fff; box-shadow: 0 4px 16px rgba(34,197,94,0.3); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 26px rgba(34,197,94,0.45); filter: brightness(1.08); }
.btn-or { background: rgba(255,255,255,0.1); color: var(--blanc); border: 1.5px solid rgba(255,255,255,0.25); backdrop-filter: blur(8px); }
.btn-or:hover { background: rgba(255,255,255,0.18); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--texte-2); border: 1.5px solid rgba(34,197,94,0.25); }
.btn-outline:hover { background: rgba(34,197,94,0.08); border-color: rgba(34,197,94,0.45); transform: translateY(-1px); color: var(--blanc); }
.btn-warning { background: linear-gradient(135deg, #f59e0b, #d97706); color: #fff; box-shadow: 0 4px 16px rgba(245,158,11,0.3); }
.btn-warning:hover { transform: translateY(-2px); box-shadow: 0 8px 26px rgba(245,158,11,0.4); filter: brightness(1.08); }
.btn-sm { padding: 0.42rem 0.95rem; font-size: 0.8rem; }
.btn-lg { padding: 0.82rem 2rem; font-size: 1rem; }

/* Formulaires */
.form-group  { margin-bottom: 1.25rem; }
.form-label  { display: block; margin-bottom: 0.45rem; font-size: 0.9rem; font-weight: 700; color: var(--texte-2); }
.form-label i { color: var(--vert); margin-right: 4px; }
.form-control {
  width: 100%; padding: 0.8rem 1rem;
  background: rgba(255,255,255,0.05); border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: var(--r); color: var(--blanc); font-size: 0.92rem;
  font-family: 'Nunito', sans-serif;
  transition: border-color var(--transition), box-shadow var(--transition);
  backdrop-filter: blur(4px);
}
.form-control:focus { outline: none; border-color: var(--vert); box-shadow: 0 0 0 3px rgba(34,197,94,0.12); background: rgba(255,255,255,0.08); }
.form-control::placeholder { color: rgba(255,255,255,0.25); }
.form-control option { background: #041c35; color: var(--blanc); }
.form-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem; }
.field-error { font-size: 0.8rem; color: var(--rouge); margin-top: 0.3rem; display: flex; align-items: center; gap: 4px; }

/* Container formulaire */
.form-container {
  background: var(--card-bg); backdrop-filter: blur(16px);
  border: 1px solid var(--card-border); border-radius: var(--r-lg);
  padding: 2.25rem 2.75rem; box-shadow: var(--card-shadow);
  color: var(--texte); margin-bottom: 1.5rem;
}
.form-container-header {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 1.75rem; padding-bottom: 1.3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.form-container-icon { width: 50px; height: 50px; border-radius: 11px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; }
.form-container-title { font-family: 'Oswald', sans-serif; font-size: 1.3rem; font-weight: 700; color: var(--blanc); }
.form-container-sub { font-size: 0.84rem; color: var(--texte-3); margin-top: 0.2rem; }

/* Icons (partagés, une seule définition) */
.icon-blue   { background: rgba(14,165,233,0.12);  border: 1px solid rgba(14,165,233,0.22);  color: #38bdf8; }
.icon-or     { background: rgba(245,158,11,0.12);  border: 1px solid rgba(245,158,11,0.22);  color: #fbbf24; }
.icon-green  { background: rgba(34,197,94,0.12);   border: 1px solid rgba(34,197,94,0.22);   color: var(--vert); }
.icon-purple { background: rgba(14,165,233,0.12);  border: 1px solid rgba(14,165,233,0.22);  color: #38bdf8; }

/* Loader */
.loader { position: fixed; inset: 0; z-index: 9999; background: rgba(2,13,26,0.8); display: none; align-items: center; justify-content: center; backdrop-filter: blur(6px); }
.loader-spinner { font-size: 2.2rem; color: var(--vert); }

/* Info block */
.info-block {
  background: var(--card-bg); backdrop-filter: blur(16px);
  border: 1px solid var(--card-border); border-radius: var(--r-lg);
  padding: 1.75rem 2.25rem; margin-bottom: 1.1rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative; overflow: hidden; color: var(--texte);
}
.info-block::before { content: ''; position: absolute; top: 0; left: 0; bottom: 0; width: 4px; background: linear-gradient(180deg, var(--vert), #0a3d1f); border-radius: var(--r) 0 0 var(--r); }
.info-block:hover { transform: translateY(-3px); box-shadow: var(--card-hover); border-color: rgba(34,197,94,0.18); }
.info-block-header { display: flex; align-items: center; gap: 0.85rem; margin-bottom: 0.9rem; }
.info-block-icon { width: 44px; height: 44px; border-radius: 11px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 1.15rem; }
.info-block-title { font-family: 'Oswald', sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--blanc); }
.info-block-tag { margin-left: auto; flex-shrink: 0; font-size: 0.66rem; font-weight: 800; padding: 0.2rem 0.6rem; border-radius: 8px; text-transform: uppercase; letter-spacing: 0.08em; }
.tag-info    { background: rgba(14,165,233,0.18);  color: #38bdf8; border: 1px solid rgba(14,165,233,0.25); }
.tag-guide   { background: rgba(245,158,11,0.18);  color: #fbbf24; border: 1px solid rgba(245,158,11,0.25); }
.tag-live    { background: rgba(34,197,94,0.18);   color: #4ade80; border: 1px solid rgba(34,197,94,0.25); }
.tag-new     { background: rgba(6,182,212,0.18);   color: #22d3ee; border: 1px solid rgba(6,182,212,0.25); }
.tag-contact { background: rgba(14,165,233,0.12);  color: #38bdf8; border: 1px solid rgba(14,165,233,0.2); }
.info-block-body { color: var(--texte-2); font-size: 0.93rem; line-height: 1.8; }
.info-block-body p { margin-bottom: 0.45rem; }
.info-block-body p:last-child { margin-bottom: 0; }
.info-block-body strong { color: var(--blanc); font-weight: 800; }
.info-block-footer { margin-top: 1rem; }


/* ══════════════════════════════════════════════════════════════════
   FOND ANIMÉ — pelouse qui défile
══════════════════════════════════════════════════════════════════ */
@keyframes bgScroll {
  0%   { background-position: 0 0; }
  100% { background-position: 300px 300px; }
}
.bg-balls {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 0;
  background-image: url('/static/images/animations/img2.jpeg');
  background-repeat: repeat;
  background-size: 300px 300px;
  mix-blend-mode: screen;
  opacity: 0.08;
  animation: bgScroll 30s linear infinite;
}


/* ══════════════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════════════ */
@media (max-width: 960px) {
  .nav-toggler { display: flex; }
  .btn-nav-admin { display: none; }

  .nav-menu {
    display: none;
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: rgba(2,13,26,0.97); backdrop-filter: blur(20px);
    flex-direction: column; align-items: stretch;
    padding: 1rem; gap: 0.25rem;
    border-bottom: 1px solid rgba(34,197,94,0.1);
    z-index: 850; box-shadow: 0 12px 40px rgba(0,0,0,0.6);
    overflow-y: auto; max-height: calc(100vh - var(--nav-h));
  }
  .nav-menu.open { display: flex; }
  .nav-sep { display: none; }
  .nav-link { padding: 0.72rem 1rem; font-size: 0.94rem; }
  .nav-link.active::after { display: none; }

  .nav-dropdown-menu {
    position: static; transform: none;
    background: rgba(255,255,255,0.03); backdrop-filter: none;
    box-shadow: none; border: none;
    border-left: 2px solid rgba(34,197,94,0.25);
    border-radius: 0; min-width: 100%;
    margin-left: 0.75rem; animation: none !important;
  }
  .nav-dropdown-menu::before { display: none; }
  .nav-dropdown-menu li a { padding: 0.55rem 1rem 0.55rem 1.5rem; font-size: 0.88rem; color: rgba(255,255,255,0.55); border-bottom: 1px solid rgba(255,255,255,0.02); }
  .nav-dropdown-menu li a:hover,
  .nav-dropdown-menu li a.active { padding-left: 1.8rem; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .footer-brand-col { grid-column: span 2; }
  .form-container { padding: 1.75rem 1.5rem; }
  .info-block { padding: 1.4rem 1.5rem; }
}

@media (max-width: 600px) {
  .navbar { padding: 0 1rem; }
  .brand-sub { display: none; }
  .container { padding: 0 1rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand-col { grid-column: span 1; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .form-container { padding: 1.35rem 1.1rem; }
  .info-block { padding: 1.2rem 1.1rem; }
}
