/* ==========================================================================
   ELITE FOOTBALL ACADEMY – Custom CSS
   YOOtheme Customizer → Settings → Custom Code → CSS
   ========================================================================== */

/* ---------- Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow:ital,wght@0,300;0,400;0,600;0,700;1,300&family=Barlow+Condensed:wght@500;700&display=swap');

/* ---------- Brand Colors als CSS-Variablen ---------- */
:root {
  --efa-teal:   #1a5c5a;
  --efa-teal-d: #0f3a39;
  --efa-lime:   #b8ff3e;
  --efa-lime-d: #8fd42a;
  --efa-white:  #f5f5f0;
  --efa-dark:   #0b1f1f;
  --efa-glass:  rgba(255,255,255,0.04);
  --efa-glass-border: rgba(255,255,255,0.07);
  --efa-lime-glow:  rgba(184,255,62,0.25);
  --efa-lime-soft:  rgba(184,255,62,0.08);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  background: var(--efa-dark);
  color: var(--efa-white);
  overflow-x: hidden;
}

/* ---------- Headlines: Bebas Neue mit Letter-Spacing ---------- */
h1, h2, h3, .uk-h1, .uk-h2, .uk-h3, .uk-heading-small, .uk-heading-medium, .uk-heading-large, .uk-heading-xlarge, .uk-heading-2xlarge {
  font-family: 'Bebas Neue', sans-serif !important;
  letter-spacing: 2px;
  line-height: 0.95;
}

h4, h5, h6, .uk-h4, .uk-h5, .uk-h6 {
  font-family: 'Barlow Condensed', sans-serif !important;
  font-weight: 700;
  letter-spacing: 1px;
}

/* Heading-Stroke-Variante (nur Outline, kein Fill) */
.efa-heading-stroke,
h1 .efa-stroke, h2 .efa-stroke, h3 .efa-stroke {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--efa-lime);
  font-style: normal;
}
.efa-heading-stroke-bold {
  -webkit-text-stroke-width: 2px;
}

/* Lime-Highlight für Headlines (kein Stroke, voller Fill) */
.efa-lime { color: var(--efa-lime); font-style: normal; }

/* Fluid Hero-Headline – größer, mit !important über die yootheme-defaults */
.efa-h-hero,
.efa-h-hero h1,
.efa-h-hero h2 {
  font-size: clamp(80px, 12vw, 160px) !important;
  line-height: 0.9 !important;
  letter-spacing: 3px !important;
  font-weight: 400 !important;
}
.efa-h-xl,
.efa-h-xl h1, .efa-h-xl h2, .efa-h-xl h3 {
  font-size: clamp(56px, 7.5vw, 104px) !important;
  line-height: 0.92 !important;
  letter-spacing: 2px !important;
  font-weight: 400 !important;
}
.efa-h-l,
.efa-h-l h1, .efa-h-l h2, .efa-h-l h3 {
  font-size: clamp(48px, 6vw, 84px) !important;
  line-height: 0.95 !important;
  letter-spacing: 2px !important;
  font-weight: 400 !important;
}
.efa-h-m,
.efa-h-m h1, .efa-h-m h2, .efa-h-m h3 {
  font-size: clamp(40px, 4.5vw, 64px) !important;
  line-height: 1 !important;
  letter-spacing: 2px !important;
  font-weight: 400 !important;
}
.efa-h-s,
.efa-h-s h1, .efa-h-s h2, .efa-h-s h3 {
  font-size: clamp(32px, 3.5vw, 48px) !important;
  letter-spacing: 2px !important;
}

/* ---------- Eyebrow (kleiner Akzent-Tag über Headlines) ---------- */
.efa-eyebrow {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--efa-lime);
  border: 1px solid var(--efa-lime);
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: 14px;
}
.efa-eyebrow-quiet { opacity: 0.7; }

/* Eyebrow mit Lime-Strich davor (Hero) */
.efa-eyebrow-line {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--efa-lime);
  margin-bottom: 24px;
}
.efa-eyebrow-line::before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 2px;
  background: var(--efa-lime);
}

/* ---------- Buttons: Polygon-clipped + Hover-Lift ---------- */
.efa-btn,
.efa-btn:any-link {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif !important;
  font-weight: 700;
  font-size: 14px !important;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 36px;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}
.efa-btn-primary,
.efa-btn-primary:any-link {
  background: var(--efa-lime) !important;
  color: var(--efa-dark) !important;
}
.efa-btn-primary:hover {
  background: var(--efa-lime-d) !important;
  transform: translateY(-2px);
}
.efa-btn-ghost,
.efa-btn-ghost:any-link {
  background: transparent !important;
  color: var(--efa-white) !important;
  border: 1px solid rgba(255,255,255,0.4) !important;
  padding: 15px 34px;
}
.efa-btn-ghost:hover {
  border-color: var(--efa-lime) !important;
  color: var(--efa-lime) !important;
}

/* Wenn YOOtheme-Buttons mit der Klasse versehen sind */
.uk-button.efa-btn-primary {
  background: var(--efa-lime);
  color: var(--efa-dark);
  border-radius: 0;
}

/* ---------- Pulse Dot (animiertes Lime-Lämpchen) ---------- */
.efa-pulse-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--efa-lime);
  border-radius: 50%;
  animation: efaPulse 2s infinite;
  vertical-align: middle;
  margin-right: 12px;
}
@keyframes efaPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(0.7); }
}

/* ---------- Scarcity-Bar ---------- */
.efa-scarcity {
  background: var(--efa-lime-soft);
  border-top: 1px solid var(--efa-lime-glow);
  border-bottom: 1px solid var(--efa-lime-glow);
  padding: 18px 24px;
  text-align: center;
}
.efa-scarcity-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--efa-lime);
}
.efa-scarcity-text .quiet { color: rgba(255,255,255,0.7); }

/* ---------- Hero ---------- */
.efa-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding-bottom: 130px;
}
.efa-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(11,31,31,0.95) 40%, rgba(26,92,90,0.6) 100%),
    var(--efa-hero-bg, url('https://images.unsplash.com/photo-1758227231013-8cff978f1dae?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&q=80&w=1920')) center/cover;
  z-index: 0;
}
.efa-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255,255,255,0.015) 2px, rgba(255,255,255,0.015) 4px);
  pointer-events: none;
  z-index: 1;
}
.efa-hero > .uk-container,
.efa-hero .tm-grid-expand,
.efa-hero .uk-grid {
  position: relative;
  z-index: 2;width: stretch;
}
.efa-hero-accent {
  position: absolute;
  right: -80px;
  top: 0;
  width: 520px;
  height: 100%;
  background: linear-gradient(135deg, rgba(184,255,62,0.07), transparent);
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 1;
}

/* Stats-Bar unten am Hero */
.efa-stats {
  display: flex;
  flex-wrap: wrap;
  background: rgba(26,92,90,0.5);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--efa-lime-glow);
}
.efa-stat {
  flex: 1 1 auto;
  min-width: 218px;
  padding: 20px 40px;
  border-right: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  gap: 16px;
}
.efa-stat:last-child { border-right: 0; }
.efa-stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  color: var(--efa-lime);
  line-height: 1;
}
.efa-stat-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  line-height: 1.2;
  white-space: pre-line;
}

/* ---------- Background-Watermark "EUROPE" ---------- */
.efa-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(140px, 22vw, 280px);
  letter-spacing: 10px;
  color: rgba(255,255,255,0.018);
  pointer-events: none;
  white-space: nowrap;
  z-index: 0;
}

/* ---------- Glass-Card (Audience, Testimonials, ParentTrust, Packages) ---------- */
.efa-glass {
  background: var(--efa-glass);
  border: 1px solid var(--efa-glass-border);
  transition: border-color .3s ease, transform .3s ease, background .3s ease;
}
.efa-glass:hover {
  border-color: var(--efa-lime-glow);
  transform: translateY(-4px);
}

/* Audience-Card mit Icon-Tile + Hover-Underline */
.efa-card {
  position: relative;
  overflow: hidden;
  padding: 40px;
  background: var(--efa-dark);
  border: 1px solid rgba(255,255,255,0.04);
  transition: background .3s ease;
}
.efa-card:hover { background: rgba(26,92,90,0.3); }
.efa-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--efa-lime);
  transform-origin: left;
  transform: scaleX(0);
  transition: transform .4s ease;
}
.efa-card:hover::after { transform: scaleX(1); }

.efa-icon-tile {
  width: 52px;
  height: 52px;
  background: rgba(184,255,62,0.1);
  border: 1px solid rgba(184,255,62,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 28px;
}

/* Card-Bullet-Liste (Audience, FreeCall) */
.efa-bullets { list-style: none; padding: 0; margin: 0; }
.efa-bullets li {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex;
  gap: 10px;
}
.efa-bullets li::before {
  content: "→";
  color: var(--efa-lime);
  flex-shrink: 0;
}
.efa-bullets li > * { flex: 1; }

.efa-checks { list-style: none; padding: 0; margin: 0 0 30px; }
.efa-checks li {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  padding: 6px 0;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.efa-checks li::before {
  content: "✓";
  color: var(--efa-lime);
  font-weight: 700;
  flex-shrink: 0;
}

/* ---------- Numbered-Feature-Liste (Value-Section) ---------- */
.efa-features { list-style: none; padding: 0; margin: 0; }
.efa-features li {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.efa-features li:first-child { border-top: 1px solid rgba(255,255,255,0.06); }
.efa-features li::before {
  content: attr(data-num);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  color: var(--efa-lime);
  opacity: 0.6;
  flex-shrink: 0;
  padding-top: 3px;
}
.efa-features h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 1px;
  margin: 0 0 4px;
  color: var(--efa-white);
}
.efa-features p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
  margin: 0;
}

/* ---------- Quote-Block (Value-Section Pull-Quote) ---------- */
.efa-pullquote {
  background: rgba(184,255,62,0.06);
  border: 1px solid rgba(184,255,62,0.2);
  border-left: 3px solid var(--efa-lime);
  padding: 24px;
  margin: 0 0 30px;
}
.efa-pullquote p {
  font-size: 15px;
  font-style: italic;
  color: rgba(255,255,255,0.8);
  margin: 0;
}

/* ---------- Testimonial-Card mit Riesen-Anführungszeichen ---------- */
.efa-testimonial {
  position: relative;
  padding: 36px;
}
.efa-testimonial::before {
  content: "“";
  position: absolute;
  top: 20px;
  right: 28px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 80px;
  color: var(--efa-lime);
  opacity: 0.3;
  line-height: 1;
}
.efa-testimonial-quote {
  font-size: 15px;
  font-style: italic;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin: 0 0 28px;
}
.efa-testimonial-author { display: flex; align-items: center; gap: 14px; }
.efa-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--efa-teal);
  border: 2px solid var(--efa-lime);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  color: var(--efa-lime);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.efa-author-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
}
.efa-author-club {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 1px;
}

/* ---------- Partners-Strip ---------- */
.efa-partners-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.efa-partner {
  padding: 20px 40px;
  border-right: 1px solid rgba(255,255,255,0.07);
  text-align: center;
}
.efa-partner:last-child { border-right: 0; }
.efa-partner-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.35);
  transition: color .3s ease;
}
.efa-partner:hover .efa-partner-name { color: var(--efa-lime); }
.efa-partner-league {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
  margin-top: 4px;
}
.efa-partners-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  text-align: center;
  margin-bottom: 40px;
}

/* ---------- Packages ---------- */
.efa-pkg {
  position: relative;
  padding: 40px;
  background: var(--efa-glass);
  border: 1px solid rgba(255,255,255,0.08);
  transition: border-color .3s ease;
}
.efa-pkg:hover { border-color: rgba(184,255,62,0.4); }
.efa-pkg.featured {
  background: rgba(184,255,62,0.05);
  border-color: rgba(184,255,62,0.35);
}
.efa-pkg-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--efa-lime);
  color: var(--efa-dark);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 10px;
}
.efa-pkg-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.efa-pkg-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px;
  color: var(--efa-lime);
  letter-spacing: 1px;
  line-height: 1;
  display: block;
  margin-bottom: 6px;
}
.efa-pkg-financing {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 32px;
}

/* Reset for the .efa-checks variant inside packages */
.efa-pkg .efa-checks li {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 10px 0;
}
.efa-pkg .efa-checks li:last-child { border-bottom: 0; }

/* ---------- Trust-Items (ParentTrust) ---------- */
.efa-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 20px 24px;
  transition: border-color .3s ease;
}
.efa-trust-item:hover { border-color: rgba(184,255,62,0.25); }
.efa-trust-item h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  margin: 0 0 4px;
}
.efa-trust-item p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
  margin: 0;
}

/* ---------- Journey-Steps (numerische Stations-Linie) ---------- */
.efa-journey {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}
.efa-journey::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 60px;
  right: 60px;
  height: 1px;
  background: linear-gradient(90deg, rgba(184,255,62,0.4), rgba(184,255,62,0.1));
  z-index: 0;
}
.efa-journey-step {
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}
.efa-journey-num {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--efa-dark);
  border: 2px solid rgba(184,255,62,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  color: var(--efa-lime);
  transition: background .3s ease, border-color .3s ease;
}
.efa-journey-step:hover .efa-journey-num {
  background: rgba(184,255,62,0.1);
  border-color: var(--efa-lime);
}
.efa-journey-step h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin: 0 0 8px;
}
.efa-journey-step p {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
  margin: 0;
}
@media (max-width: 959px) {
  .efa-journey { grid-template-columns: 1fr; gap: 32px; }
  .efa-journey::before { display: none; }
}

/* ---------- FreeCall Form ---------- */
.efa-form {
  position: relative;
  padding: 44px;
  background: var(--efa-glass);
  border: 1px solid var(--efa-lime-glow);
}
.efa-form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--efa-lime);
}
.efa-form-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.efa-form-head-icon { font-size: 32px; }
.efa-form-head-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 2px;
}
.efa-form-head-meta {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--efa-lime);
  margin-top: 2px;
}
.efa-form input,
.efa-form select,
.efa-form textarea {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--efa-white);
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  padding: 14px 18px;
  outline: none;
  transition: border-color .2s ease;
  margin-bottom: 12px;
}
.efa-form input:focus,
.efa-form select:focus,
.efa-form textarea:focus {
  border-color: var(--efa-lime);
}
.efa-form input::placeholder { color: rgba(255,255,255,0.32); }
.efa-form button[type="submit"] {
  width: 100%;
  background: var(--efa-lime);
  color: var(--efa-dark);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 2px;
  padding: 18px 24px;
  border: 0;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
  margin-top: 6px;
}
.efa-form button[type="submit"]:hover {
  background: var(--efa-lime-d);
  transform: translateY(-2px);
}
.efa-form-foot {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}

/* Scout-Avatar-Stack */
.efa-avatar-stack { display: flex; align-items: center; gap: 14px; }
.efa-avatar-stack .efa-avatar:not(:first-child) { margin-left: -10px; }
.efa-avatar-stack-text {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  max-width: 200px;
  line-height: 1.4;
}

/* ---------- QuizQuiet (Mini-Form-Strip) ---------- */
.efa-quiz {
  background: rgba(255,255,255,0.02);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.efa-quiz h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.6);
}
.efa-quiz form {
  display: flex;
  gap: 10px;
  align-items: stretch;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .efa-quiz form { flex-direction: column; }
}
.efa-quiz input,
.efa-quiz select {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.55);
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  padding: 12px 16px;
  outline: none;
  width: 180px;
}
.efa-quiz button {
  white-space: nowrap;
  background: transparent;
  color: var(--efa-lime);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 12px 20px;
  border: 1px solid rgba(184,255,62,0.4);
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease;
}
.efa-quiz button:hover {
  border-color: var(--efa-lime);
  background: rgba(184,255,62,0.06);
}

/* ---------- Reveal-Animation (on-scroll) ---------- */
.efa-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s ease, transform .7s ease;
}
.efa-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Fade-Up (sofortige Animation, z.B. Hero) */
@keyframes efaFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.efa-fade-up        { animation: efaFadeUp 0.8s ease both; }
.efa-fade-up-d1     { animation: efaFadeUp 0.8s ease 0.15s both; }
.efa-fade-up-d2     { animation: efaFadeUp 0.8s ease 0.30s both; }
.efa-fade-up-d3     { animation: efaFadeUp 0.8s ease 0.45s both; }
.efa-fade-up-d4     { animation: efaFadeUp 0.8s ease 0.60s both; }

/* ---------- Final-CTA-Wattermark Glow ---------- */
.efa-cta-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(184,255,62,0.06) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

/* ---------- Footer ---------- */
.efa-footer {
  background: rgba(0,0,0,0.6);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 60px 0 40px;
}
.efa-footer h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  letter-spacing: 3px;
  margin-bottom: 12px;
}
.efa-footer h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--efa-lime);
  margin-bottom: 20px;
}
.efa-footer ul { list-style: none; padding: 0; margin: 0; }
.efa-footer ul li { padding: 5px 0; }
.efa-footer ul a {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color .2s ease;
}
.efa-footer ul a:hover { color: var(--efa-white); }
.efa-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 28px;
  margin-top: 48px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.efa-footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  margin: 0;
}
.efa-footer-mail {
  font-size: 14px;
  color: var(--efa-lime);
  text-decoration: none;
}

/* ---------- Header Logo ---------- */
.efa-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 3px;
  color: var(--efa-white);
  text-decoration: none;
}
.efa-logo .green { color: var(--efa-lime); }

/* ---------- Reveal Observer (JS-Helper – am Body in Custom JS einbinden) ---------- */
/* Falls du die Reveal-Animation aktivieren willst, füge in Customizer → Custom Code → JS ein:
   document.addEventListener('DOMContentLoaded', () => {
     const r = document.querySelectorAll('.efa-reveal');
     const o = new IntersectionObserver((entries) => {
       entries.forEach((e, i) => {
         if (e.isIntersecting) {
           setTimeout(() => e.target.classList.add('visible'), i * 80);
           o.unobserve(e.target);
         }
       });
     }, { threshold: 0.1 });
     r.forEach(el => o.observe(el));
   });
*/

/* ==========================================================================
   ELITE FOOTBALL ACADEMY – V2 PATCH
   Visual fixes nach dem ersten Live-Test
   ========================================================================== */

/* ---------- Force-Override: YOOtheme zentriert manche Headlines automatisch ---------- */

/* Sections wo die Headline LINKSBÜNDIG sein muss (überschreibt jede uk-text-center) */
.tm-section[id="call"] .el-headline,
.tm-section[id="about"] .el-headline,
.tm-section[id="players"] .el-headline,
.tm-section[id="audience"] .el-headline,
.tm-section[id="families"] .el-headline,
.tm-section[id="parents"] .el-headline,
.tm-section[id="coach-webinar"] .el-headline,
.tm-section[id="stories"] .el-headline {
  text-align: left;
}

/* Aber bei den explizit zentrierten (Hero-Eyebrow + Path Starts Here, Choose Your Path, Journey, Final CTA) bleibt center */
.tm-section[id="players"] .el-headline.uk-text-center,
.tm-section[id="audience"] .el-headline.uk-text-center,
.tm-section[id="packages"] .el-headline,
.tm-section[id="apply"] .el-headline {
  text-align: center;
}
/* Final-CTA "YOUR MOVE." darf auch zentriert riesig sein */
.tm-section[id="apply"] .efa-h-hero {
  font-size: clamp(64px, 11vw, 140px) !important;
}

/* Tracking für die "Journey"-Section auch zentriert lassen */
.tm-section[id="audience"] + .tm-section .el-headline.uk-text-center,
.tm-section[id="players"] + .tm-section .el-headline.uk-text-center {
  text-align: center;
}

/* ---------- FreeCall: zwei Spalten klar 1/2 ---------- */
/* YOOtheme rendert manchmal die Form-Spalte zu schmal. Force gleich verteilen. */
#call .uk-grid > .uk-width-1-2\@m {
  width: 50% !important;
}
@media (max-width: 959px) {
  #call .uk-grid > .uk-width-1-2\@m { width: 100% !important; }
}

/* Form-Box braucht mehr Innenraum auf Desktop */
.efa-form { padding: 40px !important; }
@media (min-width: 1200px) {
  .efa-form { padding: 48px !important; }
}

/* Form: Felder eng aneinander setzen */
.efa-form input,
.efa-form select { margin-bottom: 10px; }

/* ---------- Audience-Cards: stärkere Bullets ---------- */
.efa-bullets li {
  font-size: 14px;
  color: rgba(255,255,255,0.7) !important;  /* heller (war 0.55) */
  padding: 9px 0 !important;
  line-height: 1.5;
}
.efa-bullets li::before {
  font-size: 16px;
  font-weight: 700;
}

/* Bullet-Spans bekommen eigene Farbabstufung */
.efa-bullets li > span {
  color: rgba(255,255,255,0.7);
}

/* ---------- Testimonial-Card: Riesen-Quote ist jetzt ÜBER der Card ---------- */
/* Im Live-Test war das Quote-Mark schwer sichtbar. Jetzt prominenter platzieren. */
.efa-testimonial { padding: 44px 36px 36px !important; }
.efa-testimonial::before {
  font-size: 120px !important;
  top: -10px !important;
  right: 24px !important;
  opacity: 0.5 !important;
  font-family: 'Bebas Neue', sans-serif;
  line-height: 1;
}

/* ---------- Partners-Strip: Klubnamen lesbarer ---------- */
.efa-partner-name {
  color: rgba(255,255,255,0.6) !important;  /* war 0.35 */
  font-size: 18px;
}
.efa-partner-league {
  color: rgba(255,255,255,0.4) !important;  /* war 0.2 */
}
.efa-partners-label {
  color: rgba(255,255,255,0.5) !important;
  margin-bottom: 32px;
}

/* ---------- Pull-Quote: stärker hervorheben ---------- */
.efa-pullquote p {
  font-size: 17px !important;
  color: rgba(255,255,255,0.9) !important;
  line-height: 1.6;
}

/* ---------- Numbered Features (Value-Section): Nummern größer ---------- */
.efa-features li::before {
  font-size: 24px !important;  /* war 13px – war zu klein im Live */
  min-width: 36px;
}
.efa-features h4 {
  font-size: 18px !important;
}
.efa-features p {
  color: rgba(255,255,255,0.65) !important;  /* war 0.5 */
}

/* ---------- Hero: mehr Platz nach unten zwischen Buttons & Stats-Bar ---------- */
.efa-hero { padding-bottom: 0 !important; min-height: 100vh; }
.efa-hero .tm-fragment { padding-top: 160px !important; padding-bottom: 80px !important; }

/* Stats-Bar als sticky absolute Bottom-Bar in der Hero-Section */
.efa-hero > .uk-grid:last-child,
.efa-hero .efa-stats {
  position: relative;
  z-index: 5;
}

/* ---------- Stats-Bar Breite ---------- */
.efa-stats {
  width: 100%;
  margin: 0;
  position: relative;
  z-index: 5;
}

/* ---------- Watermark "EUROPE" – kräftiger sichtbar (war fast unsichtbar) ---------- */
.efa-watermark {
  color: rgba(255,255,255,0.04) !important;  /* war 0.018 */
  z-index: 0;
  font-weight: 400;
}

/* ---------- Pulse-Dot: animiert sicher mit Brand-Farbe ---------- */
.efa-pulse-dot {
  background: var(--efa-lime) !important;
  width: 8px !important;
  height: 8px !important;
  display: inline-block !important;
  vertical-align: middle;
}

/* ---------- Buttons: vergrößern, Text nicht abgeschnitten ---------- */
a.efa-btn,
.uk-button.efa-btn,
.efa-btn {
  font-size: 14px !important;
  letter-spacing: 2px !important;
  padding: 16px 36px !important;
  line-height: 1.2 !important;
  border-radius: 0 !important;
  white-space: nowrap;
}
.efa-btn-primary, .efa-btn-primary:any-link,
.uk-button.efa-btn-primary {
  background: var(--efa-lime) !important;
  color: var(--efa-dark) !important;
  border: 0 !important;
}
.efa-btn-ghost, .efa-btn-ghost:any-link,
.uk-button.efa-btn-ghost {
  background: transparent !important;
  color: var(--efa-white) !important;
  border: 1px solid rgba(255,255,255,0.4) !important;
}
.efa-btn-ghost:hover {
  border-color: var(--efa-lime) !important;
  color: var(--efa-lime) !important;
  background: transparent !important;
}

/* yootheme wrapt button-items oft – clip muss auf das innerste Anker greifen */
.uk-button-group > a.efa-btn,
.uk-grid > div > a.efa-btn {
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

/* ---------- Audience-Section: Cards mit fester Höhe, gleichmäßig ---------- */
.efa-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.efa-card .efa-bullets { flex: 1; }
.efa-card a {
  margin-top: auto;
}

/* ---------- ParentTrust: Trust-Items breiter, Icon-Tile sichtbarer ---------- */
.efa-trust-item {
  background: rgba(255,255,255,0.04) !important;
  padding: 22px 24px !important;
}
.efa-trust-item h4 {
  color: var(--efa-white) !important;
  font-size: 17px !important;
}
.efa-trust-item p {
  color: rgba(255,255,255,0.65) !important;
  font-size: 14px !important;
}

/* ---------- Footer: nur einmal anzeigen (falls beide aktiv) ---------- */
/* Falls du den Theme-Footer noch nicht abgeschaltet hast, blendet diese Regel den
   doppelten als Notlösung aus. Sobald Theme-Footer leer ist, ist die Regel egal. */
.tm-footer ~ .tm-footer,
footer + footer { display: none !important; }

/* ---------- Mobile-Tweaks ---------- */
/* ==========================================================================
   ELITE FOOTBALL ACADEMY – V3 PATCH
   Header-Fixes: Trennlinien weg, Logo-Span, Button-Glow weg
   ========================================================================== */

/* ---------- Header: vertikale Trennlinien zwischen Spalten entfernen ---------- */
/* circle:black-green setzt zwischen Header-Spalten Borders. Weg damit. */
.tm-header,
.tm-headerbar,
.tm-headerbar-top,
.tm-headerbar-bottom,
.tm-toolbar,
.uk-navbar-container {
  border: 0 !important;
  box-shadow: none !important;
}

.tm-header .uk-grid-divider > :not(.uk-first-column)::before,
.tm-header .uk-grid > * > .uk-section,
.tm-header .uk-navbar-left,
.tm-header .uk-navbar-center,
.tm-header .uk-navbar-right,
.tm-header [class*="uk-navbar"]::before,
.tm-header [class*="uk-navbar"]::after,
.tm-header [class*="uk-flex"] > * + *::before {
  border: 0 !important;
  box-shadow: none !important;
  background-image: none !important;
}

/* Auch die Linien an den Header-Cells / Sections selbst */
.tm-header > div,
.tm-header > section,
.tm-header > .uk-section,
.tm-header .tm-headerbar > div,
.tm-header .uk-grid > div {
  border: 0 !important;
  border-right: 0 !important;
  border-left: 0 !important;
}

/* circle:black-green setzt manche Header-Linien per ::before/::after */
.tm-header *::before,
.tm-header *::after {
  border: 0 !important;
}

/* Header-Container selbst transparent / dunkel halten */
.tm-header,
.tm-headerbar {
  background: rgba(11,31,31,0.95) !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* ---------- Logo: Lime-Akzent am "ACADEMY" ---------- */
/* Wenn der Logo-Text "ELITE FOOTBALL ACADEMY" ist, machen wir das letzte Wort grün */
.tm-header .uk-logo,
.tm-headerbar .uk-logo,
.tm-logo,
a.uk-logo {
  font-family: 'Bebas Neue', sans-serif !important;
  font-size: 22px !important;
  letter-spacing: 3px !important;
  color: var(--efa-white, #f5f5f0) !important;
  text-decoration: none !important;
  text-transform: uppercase;
  font-weight: 400 !important;
}

/* "ACADEMY" wird grün via ::after. Das funktioniert wenn das Logo ein reiner Text ist. 
   Wenn du im YOOtheme-Customizer-Logo direkt HTML eingeben kannst, nimm: 
   ELITE FOOTBALL <span class="lime">ACADEMY</span>
   Falls nicht, helfen die nächsten zwei CSS-Tricks. */

/* Trick 1: Wenn Logo-Text im Customizer als reines Wort 'ACADEMY' am Ende eingetragen ist 
   (nicht mit Span), kann CSS allein das nicht stylen. Daher zweite Möglichkeit: */

/* Trick 2: lime-Klasse für inline span – funktioniert SOBALD du im YOOtheme-Logo-Feld 
   den HTML-Code mit Span einträgst */
.uk-logo .lime,
.tm-logo .lime,
.efa-logo .green,
.efa-logo .lime {
  color: var(--efa-lime, #b8ff3e) !important;
}

/* ---------- Buttons: Glow-Halo aus circle:black-green entfernen ---------- */
/* circle:black-green legt einen conic-gradient hinter Primary-Buttons. Weg damit. */
.uk-button,
.uk-button-primary,
.uk-button-default,
.uk-button-secondary,
a.uk-button,
.tm-header .uk-button,
.tm-header a[href*="call"],
.efa-btn {
  box-shadow: none !important;
  filter: none !important;
}
.uk-button::before,
.uk-button::after,
.uk-button-primary::before,
.uk-button-primary::after,
.uk-button-default::before,
.uk-button-default::after {
  display: none !important;
  background: none !important;
  background-image: none !important;
  filter: none !important;
  box-shadow: none !important;
  content: none !important;
}



/* Header-CTA-Button speziell – kein Glow, klare Lime-Optik */
.tm-header .uk-button,
.tm-header a.uk-button-primary, .tm-header-mobile .uk-button,
.tm-header a.uk-button-primary,
.tm-header a[class*="button"] {
  background: var(--efa-lime, #b8ff3e) !important;
  background-image: none !important;
  color: var(--efa-dark, #0b1f1f) !important;
  border: 0 !important;
  box-shadow: none !important;
  filter: none !important;
  font-family: 'Barlow Condensed', sans-serif !important;
  font-weight: 700 !important;
  font-size: 12px !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  padding: 0px 24px !important;
  border-radius: 0 !important;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}
.tm-header .uk-button::before,
.tm-header a.uk-button-primary::before,
.tm-header a[class*="button"]::before {
  display: none !important;
  background: none !important;
  content: none !important;
}
.uk-navbar-center-left, .uk-navbar-center:not(:has([class*=uk-navbar-center])), .uk-navbar-left, .uk-navbar-right {
    border-left: none;
}

/* Hero-Buttons: auch Glow weg, wir setzen unseren EFA-Stil hart durch */
.efa-hero .uk-button,
.efa-hero a.uk-button-primary,
.efa-hero a.uk-button-default,
.efa-hero .efa-btn {
  box-shadow: none !important;
  filter: none !important;
  background-image: none !important;
}
.efa-hero .uk-button::before,
.efa-hero .uk-button::after,
.efa-hero a.uk-button-primary::before,
.efa-hero a.uk-button-primary::after,
.efa-hero a.uk-button-default::before,
.efa-hero a.uk-button-default::after,
.efa-hero .efa-btn::before,
.efa-hero .efa-btn::after {
  display: none !important;
  content: none !important;
  background: none !important;
}

/* Hero-Primary "BOOK FREE 30-MIN SCOUT CALL" – purer Lime, kein Halo */
.efa-hero .uk-button-primary,
.efa-hero .efa-btn-primary {
  background: var(--efa-lime, #b8ff3e) !important;
  background-image: none !important;
  color: var(--efa-dark, #0b1f1f) !important;
  border: 0 !important;
  box-shadow: none !important;
  filter: none !important;
}

/* Hero-Ghost "SEE PACKAGES" – transparent mit Border, kein Glow */
.efa-hero .uk-button-default,
.efa-hero .efa-btn-ghost {
  background: transparent !important;
  background-image: none !important;
  color: var(--efa-white, #f5f5f0) !important;
  border: 1px solid rgba(255,255,255,0.4) !important;
  box-shadow: none !important;
  filter: none !important;
}
.efa-hero .uk-button-default:hover,
.efa-hero .efa-btn-ghost:hover {
  border-color: var(--efa-lime, #b8ff3e) !important;
  color: var(--efa-lime, #b8ff3e) !important;
  background: transparent !important;
}

/* Globale Button-Glow-Killer (wirkt in allen Sections) */
a.uk-button::before,
a.uk-button::after,
.uk-button-group::before,
.uk-button-group::after {
  display: none !important;
  content: none !important;
  background: none !important;
  filter: none !important;
}

/* circle:black-green verwendet manchmal `glow`-Filter via `--internal-...-glow-gradient`. 
   Wir setzen diese Variablen lokal auf none, falls noch was durchsickert. */
.tm-header,
.efa-hero,
.efa-hero * {
  --internal-icon-button-glow-gradient: none;
  --internal-button-default-glow-gradient: none;
  --internal-button-primary-glow-gradient: none;
  --internal-button-secondary-glow-gradient: none;
}

/* ---------- Nav-Items im Header: ohne Underline, Hover-Lime ---------- */
.tm-header .uk-navbar-nav > li > a,
.tm-headerbar .uk-navbar-nav > li > a,
.tm-header nav a,
.tm-header .uk-subnav > li > a {
  font-family: 'Barlow Condensed', sans-serif !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  color: rgba(255,255,255,0.7) !important;
  text-decoration: none !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  text-shadow: none !important;
}
.tm-header .uk-navbar-nav > li > a:hover,
.tm-header .uk-navbar-nav > li.uk-active > a,
.tm-header nav a:hover {
  color: var(--efa-lime, #b8ff3e) !important;
  background: transparent !important;
  box-shadow: none !important;
  text-shadow: none !important;
}
.tm-header .uk-navbar-nav > li > a::before,
.tm-header .uk-navbar-nav > li > a::after {
  display: none !important;
  content: none !important;
}



/* ---------- Mobile-Tweaks (V2 wieder eingefügt) ---------- */
@media (max-width: 767px) {
  .efa-h-hero,
  .efa-h-hero h1, .efa-h-hero h2 {
    font-size: clamp(56px, 14vw, 80px) !important;
  }
  .efa-h-xl,
  .efa-h-xl h2, .efa-h-xl h3 {
    font-size: clamp(40px, 9vw, 64px) !important;
  }
  .efa-h-l,
  .efa-h-l h2, .efa-h-l h3 {
    font-size: clamp(36px, 8vw, 56px) !important;
  }
  .efa-stats { flex-direction: column; }
  .efa-stat {
    border-right: 0 !important;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .efa-stat:last-child { border-bottom: 0; }
  .efa-form { padding: 24px !important; }
  .efa-card { padding: 24px !important; }
  .efa-testimonial { padding: 36px 24px 28px !important; }
}

/* ==========================================================================
   ELITE FOOTBALL ACADEMY – V4 PATCH
   Mobile-Header: harte Linien-Killer + CTA-Button-Styling
   ========================================================================== */

/* ---------- NUKE: alle vertikalen Borders/Dividers im Header (Mobile + Desktop) ---------- */
/* circle:black-green nutzt uk-grid-divider auf den Header-Cells. */

.tm-header,
.tm-header *,
.tm-headerbar,
.tm-headerbar *,
header.tm-header,
header.tm-header * {
  border-right: 0 !important;
  border-left: 0 !important;
  border-image: none !important;
}

/* uk-grid-divider erzeugt Linien per ::before — die müssen weg */
.tm-header .uk-grid-divider > :not(.uk-first-column)::before,
.tm-header .uk-grid > :not(.uk-first-column)::before,
.tm-headerbar .uk-grid-divider > :not(.uk-first-column)::before,
.tm-headerbar .uk-grid > :not(.uk-first-column)::before,
header .uk-grid-divider > :not(.uk-first-column)::before,
header .uk-grid > * + *::before {
  display: none !important;
  content: none !important;
  border: 0 !important;
  background: none !important;
  background-image: none !important;
  width: 0 !important;
  height: 0 !important;
}

/* Headerbar-Borders auch via direkter Klasse */
.tm-headerbar-top,
.tm-headerbar-bottom,
.tm-headerbar > div,
.tm-header-mobile,
.tm-header-mobile > div,
.tm-headerbar [class*="uk-section"],
.tm-headerbar [class*="uk-grid"] > * {
  border: 0 !important;
  border-right: 0 !important;
  border-left: 0 !important;
  box-shadow: none !important;
}

/* Falls die Linien aus uk-divider-Klasse kommen (yootheme nutzt das gerne): */
.tm-header .uk-divider-icon,
.tm-header [class*="divider"],
.tm-headerbar [class*="divider"] {
  display: none !important;
}

/* ---------- Mobile Header: "Book Free Call" als richtiger Button ---------- */
/* Im Mobile-Header rendert YOOtheme den CTA oft als <a> ohne uk-button-Klasse.
   Wir targeten ihn über href + Position. */

.tm-header-mobile a[href*="call"],
.tm-headerbar-bottom a[href*="call"],
.tm-header-mobile a[href*="#call"],
.tm-header a[href*="#call"]:not(.uk-logo) {
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  background: var(--efa-lime, #b8ff3e) !important;
  color: var(--efa-dark, #0b1f1f) !important;
  font-family: 'Barlow Condensed', sans-serif !important;
  font-weight: 700 !important;
  font-size: 12px !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase !important;
  padding: 10px 18px !important;
  text-decoration: none !important;
  border: 0 !important;
  box-shadow: none !important;
  filter: none !important;
  background-image: none !important;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}
.tm-header-mobile a[href*="call"]:hover,
.tm-headerbar-bottom a[href*="call"]:hover,
.tm-header-mobile a[href*="#call"]:hover,
.tm-header a[href*="#call"]:not(.uk-logo):hover {
  background: var(--efa-lime-d, #8fd42a) !important;
  color: var(--efa-dark, #0b1f1f) !important;
}

/* Telefon-Icon im Mobile-CTA (falls als <span uk-icon>) auch dunkel */
.tm-header-mobile a[href*="call"] [uk-icon],
.tm-header-mobile a[href*="call"] svg,
.tm-header a[href*="#call"]:not(.uk-logo) [uk-icon],
.tm-header a[href*="#call"]:not(.uk-logo) svg {
  color: var(--efa-dark, #0b1f1f) !important;
}

/* Burger-Toggle: keine Box, transparent, Lime-Hover */
.tm-header .uk-navbar-toggle,
.tm-header-mobile .uk-navbar-toggle {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  color: var(--efa-white, #f5f5f0) !important;
}
.tm-header .uk-navbar-toggle:hover,
.tm-header-mobile .uk-navbar-toggle:hover {
  color: var(--efa-lime, #b8ff3e) !important;
}

/* ---------- "SEE PACKAGES" – Glow-Rest weg ---------- */
/* Falls der schwache grüne Schimmer noch sichtbar ist: kompletter Reset des Default-Buttons */

a.uk-button-default,
.uk-button-default {
  background: transparent !important;
  background-image: none !important;
  border: 1px solid rgba(255,255,255,0.4) !important;
  color: var(--efa-white, #f5f5f0) !important;
  box-shadow: none !important;
  filter: none !important;
  -webkit-filter: none !important;
}

/* Auch das Pseudo-Halo unter dem Button: gone */
a.uk-button-default::before,
a.uk-button-default::after,
.uk-button-default::before,
.uk-button-default::after,
.uk-button::before,
.uk-button::after {
  display: none !important;
  content: none !important;
  background: none !important;
  background-image: none !important;
  filter: none !important;
  -webkit-filter: none !important;
  box-shadow: none !important;
  opacity: 0 !important;
}

/* circle:black-green setzt --internal-button-default-glow-gradient auf den Body. 
   Wir setzen ihn auf der :root override aus, damit nichts mehr glüht. */
:root,
html,
body {
  --internal-button-default-glow-gradient: none !important;
  --internal-button-primary-glow-gradient: none !important;
  --internal-button-secondary-glow-gradient: none !important;
  --internal-icon-button-glow-gradient: none !important;
  --internal-card-secondary-glow-gradient: none !important;
  --internal-subnav-pill-item-glow-gradient: none !important;
  --internal-pagination-item-glow-gradient: none !important;
}

/* ==========================================================================
   ELITE FOOTBALL ACADEMY – V5 PATCH
   Exakter Header-Linien-Killer (DevTools-bestätigt)
   ========================================================================== */

/* Die Trennlinien kommen aus diesen drei UIkit-Klassen.
   Hier mit identischer Spezifität gekillt: */
.uk-navbar-item,
.uk-navbar-nav > li > a,
.uk-navbar-toggle {
  border-right: 0 !important;
  border-left: 0 !important;
}

/* ==========================================================================
   ELITE FOOTBALL ACADEMY – V6 PATCH
   Mobile-Header Final-Fix (DevTools-HTML-bestätigt)
   ========================================================================== */

/* ---------- Linien-Killer (auch border-left) auf den exakten Klassen ---------- */
/* V5 hatte border-right gekillt. Jetzt auch border-left auf allen drei Klassen. */
.uk-navbar-item,
.uk-navbar-nav > li > a,
.uk-navbar-toggle {
  border-right: 0 !important;
  border-left: 0 !important;
}

/* Plus: in der Mobile-Header-Variante (.tm-header-mobile) doppelt sicher */
.tm-header-mobile .uk-navbar-item,
.tm-header-mobile .uk-navbar-nav > li > a,
.tm-header-mobile .uk-navbar-toggle,
.tm-header-mobile .uk-navbar-right > * {
  border: 0 !important;
}

/* ---------- Mobile CTA "Book Free Call" als richtiger Lime-Button ---------- */
/* HTML-Pfad: .tm-header-mobile .uk-navbar-item .widget_builderwidget a.el-content.uk-button
   Wir targeten über die Builder-Widget-Klasse + uk-button kombiniert. */

.tm-header-mobile .widget_builderwidget a.uk-button,
.tm-header-mobile .widget_builderwidget a.uk-button-default,
.tm-header-mobile .uk-navbar-item a.el-content.uk-button {
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  background: var(--efa-lime, #b8ff3e) !important;
  background-image: none !important;
  color: var(--efa-dark, #0b1f1f) !important;
  font-family: 'Barlow Condensed', sans-serif !important;
  font-weight: 700 !important;
  font-size: 12px !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase !important;
  padding: 10px 18px !important;
  text-decoration: none !important;
  border: 0 !important;
  box-shadow: none !important;
  filter: none !important;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
  transition: background-color .2s ease;
}

.tm-header-mobile .widget_builderwidget a.uk-button:hover,
.tm-header-mobile .widget_builderwidget a.uk-button-default:hover,
.tm-header-mobile .uk-navbar-item a.el-content.uk-button:hover {
  background: var(--efa-lime-d, #8fd42a) !important;
  color: var(--efa-dark, #0b1f1f) !important;
}

/* Pseudo-Layer (Glow von circle:black-green) plattmachen */
.tm-header-mobile .widget_builderwidget a.uk-button::before,
.tm-header-mobile .widget_builderwidget a.uk-button::after,
.tm-header-mobile .uk-navbar-item a.el-content.uk-button::before,
.tm-header-mobile .uk-navbar-item a.el-content.uk-button::after {
  display: none !important;
  content: none !important;
  background: none !important;
  filter: none !important;
  box-shadow: none !important;
}

/* Emoji-Img (📞) im Mobile-CTA: nicht zu groß, vertikal zentrieren */
.tm-header-mobile .widget_builderwidget a.uk-button img.emoji,
.tm-header-mobile .uk-navbar-item a.el-content.uk-button img.emoji {
  width: 14px !important;
  height: 14px !important;
  margin: 0 !important;
  vertical-align: middle;
}

/* Wrapper .uk-margin innerhalb des Widgets: Margin entfernen, sonst rutscht der Button */
.tm-header-mobile .widget_builderwidget .uk-margin,
.tm-header-mobile .widget_builderwidget .uk-grid {
  margin: 0 !important;
}
.tm-header-mobile .widget_builderwidget .uk-grid > * {
  padding: 0 !important;
}

/* Padding im umschließenden navbar-item kürzen, sonst zu viel Luft links/rechts */
.tm-header-mobile .uk-navbar-item.widget {
  padding-left: 12px !important;
  padding-right: 0 !important;
  min-height: auto !important;
}

/* ---------- WICHTIG: V4 a.uk-button-default Override darf den Mobile-CTA NICHT mehr treffen ---------- */
/* In V4 hatte ich allgemein .uk-button-default auf transparent + Border gesetzt.
   Das macht den Mobile-CTA kaputt. Jetzt einschränken: nur außerhalb des Headers. */

/* Re-Override: Mobile-CTA ist jetzt überall sicher Lime, egal welche Klasse */
.tm-header-mobile a.uk-button-default,
.tm-header-mobile a.uk-button {
  background: var(--efa-lime, #b8ff3e) !important;
  color: var(--efa-dark, #0b1f1f) !important;
  border: 0 !important;
}



/* ==========================================================================
   ELITE FOOTBALL ACADEMY – ZOOLANDERS FORM STYLING
   An die efa-custom.css unten anfügen
   ========================================================================== */

/* ---------- Form-Wrapper: Head + Form + Foot zusammen in eine "Box" ---------- */
/* Die rechte Spalte wird zur Box. Wir stylen die Column als visuellen Container,
   nicht das Form-Element selbst. So sind Head, Form und Foot in einem Rahmen. */

/*.efa-section-freecall .uk-grid > .uk-width-1-2\@m:last-child,
#call .uk-grid > div:last-child {
  position: relative;
}*/

/* Visuelle Box um die rechte Column-Inhalte */
/*#call .uk-grid > div:last-child > .uk-margin:first-child,
#call .uk-grid > div:last-child {
  /* hier kein Background, der kommt unten via inneren Wrapper }*/

/*
/* Wir nutzen einen Trick: Box-Look auf das ganze rechte Column-Inner
#call .uk-grid > div:nth-child(2) {
  position: relative;
}

#call .uk-grid > div:nth-child(2)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--efa-glass, rgba(255,255,255,0.04));
  border: 1px solid var(--efa-lime-glow, rgba(184,255,62,0.25));
  pointer-events: none;
  z-index: 0;
}

#call .uk-grid > div:nth-child(2)::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--efa-lime, #b8ff3e);
  pointer-events: none;
  z-index: 1;
}



#call .uk-grid > div:nth-child(2) > * {
  position: relative;
  z-index: 2;
  padding-left: 40px;
  padding-right: 40px;
}*/

#call .uk-grid > div:nth-child(2) > .uk-margin:first-child {
  padding-top: 36px;
}

#call .uk-grid > div:nth-child(2) > .uk-margin:last-child {
  padding-bottom: 32px;
}

@media (max-width: 767px) {
  #call .uk-grid > div:nth-child(2) > * {
    padding-left: 24px;
    padding-right: 24px;
  }
}

/* Old .efa-form border/background ausschalten (war für HTML-Variante) — 
   damit kein doppelter Rahmen entsteht */
#call .efa-form,
#call .yooessentials-form,
#call form.uk-form-stacked {
  background: transparent !important;
  border: 0 !important;
  padding: 0 !important;
}
#call .efa-form::before,
#call .yooessentials-form::before {
  display: none !important;
  content: none !important;
}

/* ---------- Form-Head Trennlinie (war ::after der alten .efa-form-head, nun direkt) ---------- */
#call .efa-form-head {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 24px;
}

/* ---------- Form-Felder: eckig, dezent, Lime-Focus ---------- */
#call .uk-input,
#call .uk-select,
#call .uk-textarea,
#call input[type="text"],
#call input[type="email"],
#call input[type="tel"],
#call input[type="number"],
#call select,
#call textarea {
  background: rgba(255,255,255,0.05) !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  border-radius: 0 !important;
  color: var(--efa-white, #f5f5f0) !important;
  font-family: 'Barlow', sans-serif !important;
  font-size: 14px !important;
  padding: 14px 18px !important;
  height: auto !important;
  box-shadow: none !important;
  transition: border-color .2s ease, background .2s ease !important;
  outline: none !important;
}

#call .uk-input:focus,
#call .uk-select:focus,
#call .uk-textarea:focus,
#call input:focus,
#call select:focus,
#call textarea:focus {
  border-color: var(--efa-lime, #b8ff3e) !important;
  background: rgba(255,255,255,0.07) !important;
  box-shadow: none !important;
  outline: none !important;
}

#call ::placeholder {
  color: rgba(255,255,255,0.32) !important;
  opacity: 1 !important;
}

/* Falls Inputs in einem Icon-Wrapper liegen (uk-inline / uk-form-icon) */
#call .uk-form-icon {
  color: rgba(255,255,255,0.4) !important;
  width: 44px !important;
}
#call .uk-form-icon ~ .uk-input {
  padding-left: 44px !important;
}

/* Labels darüber, wenn show_label aktiv */
#call .uk-form-label,
#call label {
  font-family: 'Barlow Condensed', sans-serif !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  color: rgba(255,255,255,0.55) !important;
  margin-bottom: 6px !important;
  display: block;
}

/* Select-Pfeil hellgrau / Lime on focus */
#call select {
  appearance: none !important;
  -webkit-appearance: none !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14' fill='none' stroke='%23b8ff3e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='3 5 7 9 11 5'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 18px center !important;
  background-size: 14px !important;
  padding-right: 44px !important;
}

/* Required-Star hinter Label dezent färben */
#call .uk-form-label .uk-text-danger,
#call label .required {
  color: var(--efa-lime, #b8ff3e) !important;
}

/* ---------- Submit-Button: Lime, eckig, polygon-clip, hover-lift ---------- */
#call button[type="submit"],
#call .uk-button[type="submit"],
#call .yooessentials_form_button_submit,
#call .uk-form button.uk-button-primary,
#call form button.uk-button {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100% !important;
  background: var(--efa-lime, #b8ff3e) !important;
  background-image: none !important;
  color: var(--efa-dark, #0b1f1f) !important;
  font-family: 'Bebas Neue', sans-serif !important;
  font-size: 20px !important;
  letter-spacing: 2px !important;
  font-weight: 400 !important;
  text-transform: uppercase !important;
  padding: 18px 24px !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  filter: none !important;
  cursor: pointer !important;
  transition: background-color .2s ease, transform .2s ease !important;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

#call button[type="submit"]:hover,
#call .uk-button[type="submit"]:hover,
#call form button.uk-button:hover {
  background: var(--efa-lime-d, #8fd42a) !important;
  color: var(--efa-dark, #0b1f1f) !important;
  transform: translateY(-2px);
}

#call button[type="submit"]::before,
#call button[type="submit"]::after,
#call .uk-button[type="submit"]::before,
#call .uk-button[type="submit"]::after {
  display: none !important;
  content: none !important;
  background: none !important;
  filter: none !important;
}

/* Icon im Submit-Button (UIkit-Icon) */
#call button[type="submit"] [uk-icon],
#call button[type="submit"] svg {
  color: var(--efa-dark, #0b1f1f) !important;
  flex-shrink: 0;
}

/* ---------- Form-Foot ---------- */
#call .efa-form-foot {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}

/* ---------- Honeypot-Field unsichtbar machen (falls Zoolanders es rendert) ---------- */
#call [name*="honeypot"],
#call .yooessentials-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

/* ---------- Confirmation-Message-Styling (success-status) ---------- */
#call .uk-alert-success,
#call .yooessentials-form-message-success {
  background: rgba(184,255,62,0.1) !important;
  border: 1px solid var(--efa-lime, #b8ff3e) !important;
  color: var(--efa-white, #f5f5f0) !important;
  padding: 20px !important;
  border-radius: 0 !important;
}
.formpanel > .uk-panel {

    padding: 25px;
    background: var(--efa-glass, rgba(255, 255, 255, 0.04));
    border: 1px solid var(--efa-lime-glow, rgba(184, 255, 62, 0.25));
    border-top: solid var(--efa-lime) 5px;

    z-index: 0;
}








.bggreen .uk-container {border: 1px solid rgba(174, 255, 42, 0.45) !important;

  background:
    linear-gradient(
      180deg,
      rgba(22, 55, 48, 0.72) 0%,
      rgba(14, 43, 38, 0.62) 100%
    ) !important;

  box-shadow:
    inset 0 7px 0 #adff2f,
    inset 0 0 80px rgba(174, 255, 42, 0.035),
    0 0 60px rgba(0, 0, 0, 0.18) !important;

padding: 60px;
}













.el-row {
  --card-x: 120px;
  --content-shift: 18px;
  --box-right-extra: 42px;

  position: relative;
  isolation: isolate;

  max-width: 1200px;
  margin-left: auto !important;
  margin-right: auto !important;

  padding: 56px var(--card-x) 42px var(--card-x) !important;

  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;

  box-sizing: border-box;
  overflow: visible !important;
}

/* Green background box behind the content */
.el-row::before {
  content: "";
  position: absolute;

  top: 0;
  bottom: 0;
  left: 0;
  right: calc(var(--box-right-extra) * -1);

  border: 1px solid rgba(174, 255, 42, 0.45) !important;

  background:
    linear-gradient(
      180deg,
      rgba(22, 55, 48, 0.72) 0%,
      rgba(14, 43, 38, 0.62) 100%
    ) !important;

  box-shadow:
    inset 0 7px 0 #adff2f,
    inset 0 0 80px rgba(174, 255, 42, 0.035),
    0 0 60px rgba(0, 0, 0, 0.18) !important;

  z-index: -1;
  pointer-events: none;
}

/* remove only the outer YOOtheme row offset */
.el-row > .uk-grid {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.el-row > .uk-grid > * {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* move the whole inner content slightly left without changing its width */
.el-row > * {
  position: relative;
  z-index: 1;

  width: 100% !important;
  max-width: 100% !important;

  transform: translateX(calc(var(--content-shift) * -1));
}

/* keep form itself normal */
.el-row form,
.el-row .uk-form {
  width: 100% !important;
  max-width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* do NOT destroy the first-name / last-name grid */
.el-row form .uk-grid {
  margin-left: -24px !important;
  margin-right: 0 !important;
}

.el-row form .uk-grid > * {
  padding-left: 24px !important;
  padding-right: 0 !important;
}

/* form fields */
.el-row input,
.el-row select,
.el-row textarea {
  width: 100% !important;
  box-sizing: border-box;
}

/* mobile */
@media (max-width: 800px) {
  .el-row {
    --card-x: 24px;
    --content-shift: 0px;
    --box-right-extra: 0px;

    padding: 44px var(--card-x) 36px var(--card-x) !important;
  }

  .el-row > * {
    transform: none;
  }

  .el-row form .uk-grid {
    margin-left: 0 !important;
  }

  .el-row form .uk-grid > * {
    padding-left: 0 !important;
  }
}