/* =========================================================
   Shkolla e Futbollit "Yjet e Mitrovicës"
   Ngjyrat kryesore ndryshohen te :root më poshtë
   ========================================================= */

:root {
  --bg:        #070b14;
  --bg-alt:    #0b1120;
  --surface:   #101829;
  --surface-2: #16203a;

  --line:      rgba(240,197,91,.13);
  --line-2:    rgba(240,197,91,.30);

  --text:      #f3f5f9;
  --muted:     #9aa5b8;
  --soft:      #c7d0de;

  --gold:      #f0c55b;
  --gold-2:    #c8951c;
  --gold-lite: #ffe9ab;
  --ink:       #0a0f1a;

  --radius:    16px;
  --radius-sm: 10px;
  --shadow:    0 18px 44px rgba(0,0,0,.55);
  --glow:      0 10px 30px rgba(240,197,91,.22);
  --maxw:      1180px;

  --font-head: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 86px; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg, iframe { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }

h1, h2, h3 {
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: .5px;
  margin: 0 0 .5em;
  text-transform: uppercase;
}

p { margin: 0 0 1em; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--gold); color: var(--ink); padding: 12px 18px; font-weight: 700;
}
.skip-link:focus { left: 12px; top: 12px; }

:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

/* ---------------- Butonat ---------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 26px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700; font-size: 15px; letter-spacing: .2px;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: linear-gradient(135deg, var(--gold-lite) 0%, var(--gold) 45%, var(--gold-2) 100%);
  color: var(--ink);
  box-shadow: var(--glow);
}
.btn--primary:hover { box-shadow: 0 16px 38px rgba(240,197,91,.36); }

.btn--ghost { background: transparent; border-color: var(--line-2); color: var(--text); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }

.btn--light { background: var(--ink); color: var(--gold); border-color: rgba(0,0,0,.4); }
.btn--light:hover { box-shadow: 0 16px 34px rgba(0,0,0,.4); }

.btn--wa { background: #25d366; color: #05301a; }

.btn--sm  { padding: 9px 18px; font-size: 14px; }
.btn--lg  { padding: 16px 34px; font-size: 16px; }
.btn--block { width: 100%; }

/* ---------------- Header ---------------- */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .3s ease, box-shadow .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
}
.header.is-stuck {
  background: rgba(7,11,20,.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px rgba(0,0,0,.5);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 78px; gap: 16px; }

.brand { display: flex; align-items: center; gap: 11px; }
.brand img { border-radius: 50%; }
.brand__text { display: flex; flex-direction: column; line-height: 1.12; }
.brand__text strong {
  font-family: var(--font-head); font-size: 20px; letter-spacing: 1px; text-transform: uppercase;
}
.brand__text small { color: var(--gold); font-size: 10.5px; letter-spacing: 2.4px; text-transform: uppercase; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav > a {
  padding: 9px 11px; font-size: 14px; font-weight: 500; color: var(--muted);
  border-radius: 999px; transition: color .18s ease, background .18s ease;
}
.nav > a:hover { color: var(--text); background: rgba(240,197,91,.09); }
.nav > a.is-active { color: var(--gold); }
.nav__cta { color: var(--ink) !important; margin-left: 6px; }
.nav__cta:hover { background: linear-gradient(135deg, var(--gold-lite), var(--gold-2)) !important; }

.burger {
  display: none; width: 44px; height: 44px; padding: 0;
  background: transparent; border: 1px solid var(--line-2); border-radius: 12px;
  cursor: pointer;
}
.burger span {
  display: block; width: 20px; height: 2px; background: var(--gold); border-radius: 2px;
  margin: 4px auto; transition: transform .25s ease, opacity .25s ease;
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------------- Hero ---------------- */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
  padding: 120px 0 90px;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(1100px 620px at 78% 10%, rgba(240,197,91,.20), transparent 62%),
    radial-gradient(820px 520px at 10% 92%, rgba(200,149,28,.16), transparent 60%),
    linear-gradient(180deg, #070b14 0%, #0c1322 55%, #070b14 100%);
}
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(240,197,91,.07) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(240,197,91,.07) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: radial-gradient(circle at 50% 45%, #000 15%, transparent 72%);
  -webkit-mask-image: radial-gradient(circle at 50% 45%, #000 15%, transparent 72%);
}
.hero__inner { position: relative; z-index: 1; text-align: center; }

.hero__crest { width: 116px; height: 116px; margin: 0 auto 22px; filter: drop-shadow(0 10px 26px rgba(240,197,91,.3)); }

.hero__eyebrow {
  display: inline-block;
  font-size: 12px; letter-spacing: 3.5px; text-transform: uppercase; font-weight: 700;
  color: var(--gold);
  border: 1px solid var(--line-2);
  border-radius: 999px; padding: 7px 18px; margin-bottom: 22px;
  background: rgba(240,197,91,.08);
}
.hero__title {
  font-size: clamp(3rem, 9.5vw, 6.6rem);
  margin-bottom: 20px;
  letter-spacing: 1px;
}
.grad {
  background: linear-gradient(100deg, var(--gold-2) 0%, var(--gold-lite) 42%, var(--gold) 70%, var(--gold-2) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__text {
  max-width: 640px; margin: 0 auto 34px;
  font-size: clamp(1rem, 2.1vw, 1.16rem); color: var(--muted);
}
.hero__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.hero__stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 14px; max-width: 820px; margin: 60px auto 0;
}
.hero__stats li {
  background: rgba(240,197,91,.05);
  border: 1px solid var(--line);
  border-radius: var(--radius); padding: 20px 12px;
  backdrop-filter: blur(6px);
}
.hero__stats strong {
  display: block; font-family: var(--font-head); font-size: 2.5rem; color: var(--gold); line-height: 1;
}
.hero__stats span { font-size: 12.5px; color: var(--muted); }

.hero__scroll {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 2;
  width: 26px; height: 42px; border: 2px solid var(--line-2); border-radius: 14px;
}
.hero__scroll span {
  position: absolute; top: 8px; left: 50%; margin-left: -2px;
  width: 4px; height: 8px; border-radius: 2px; background: var(--gold);
  animation: scrolldot 1.8s ease-in-out infinite;
}
@keyframes scrolldot { 0%,100% { transform: translateY(0); opacity: 1; } 50% { transform: translateY(14px); opacity: .2; } }

/* ---------------- Shiriti lëvizës ---------------- */
.ticker {
  overflow: hidden; border-block: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(200,149,28,.16), rgba(240,197,91,.09), rgba(200,149,28,.16));
  padding: 14px 0;
}
.ticker__track {
  display: flex; gap: 34px; align-items: center; width: max-content;
  animation: slide 26s linear infinite;
  font-family: var(--font-head); font-size: 1.35rem; letter-spacing: 3px; text-transform: uppercase;
}
.ticker__track i { color: var(--gold); font-style: normal; }
@keyframes slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------------- Seksionet ---------------- */
.section { padding: 96px 0; }
.section--alt { background: var(--bg-alt); }

.section__head { max-width: 720px; margin: 0 auto 54px; text-align: center; }
.eyebrow {
  font-size: 12px; letter-spacing: 3.2px; text-transform: uppercase;
  color: var(--gold-2); font-weight: 700; margin-bottom: 10px;
}
.h2 { font-size: clamp(2rem, 5vw, 3.1rem); }
.lead { color: var(--muted); font-size: 1.06rem; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.grid-2--form { align-items: start; }

.note { text-align: center; color: var(--muted); font-size: 14px; margin-top: 26px; }

.checklist { margin: 24px 0 30px; display: grid; gap: 11px; }
.checklist li { position: relative; padding-left: 32px; color: var(--soft); }
.checklist li::before {
  content: "✓"; position: absolute; left: 0; top: 1px;
  width: 21px; height: 21px; border-radius: 50%;
  background: rgba(240,197,91,.15); color: var(--gold);
  display: grid; place-items: center; font-size: 12px; font-weight: 700;
}

/* Vend-mbajtëset e fotove (zëvendësohen me <img>) */
.ph {
  position: relative; border-radius: var(--radius); overflow: hidden;
  background:
    repeating-linear-gradient(135deg, rgba(240,197,91,.035) 0 14px, transparent 14px 28px),
    linear-gradient(150deg, #16203a, #0d1526 60%, #1c2647);
  border: 1px solid var(--line);
  min-height: 200px;
}
.ph::before {
  content: "⚽"; position: absolute; inset: 0; display: grid; place-items: center;
  font-size: 2.6rem; opacity: .25;
}
.ph::after {
  content: attr(data-label);
  position: absolute; left: 12px; bottom: 12px;
  font-size: 11px; letter-spacing: 1.6px; text-transform: uppercase;
  color: var(--muted); background: rgba(0,0,0,.5);
  padding: 5px 11px; border-radius: 999px;
}
.ph--tall   { min-height: 460px; }
.ph--square { aspect-ratio: 1/1; min-height: 0; margin-bottom: 16px; }

/* ---------------- Foto nga stërvitja ---------------- */
.shots {
  display: grid; grid-template-columns: 1.3fr 1fr;
  grid-template-rows: repeat(2, 232px); gap: 18px;
}
.shot {
  position: relative; display: block; height: 100%; width: 100%;
  padding: 0; overflow: hidden; cursor: zoom-in;
  background: var(--bg-alt); border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.shot--lg { grid-row: span 2; }
.shot:hover { transform: translateY(-5px); border-color: var(--line-2); box-shadow: var(--shadow); }
.shot img {
  display: block; width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.shot:hover img { transform: scale(1.06); }
.shot::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to top, rgba(7,11,20,.78) 0%, rgba(7,11,20,.12) 42%, transparent 70%);
}
.shot__cap {
  position: absolute; left: 18px; bottom: 15px; z-index: 1;
  font-family: var(--font-head); font-size: 1.15rem; letter-spacing: 1.4px;
  text-transform: uppercase; color: #fff; text-align: left;
}
.shot__cap::before {
  content: ""; display: block; width: 26px; height: 3px; margin-bottom: 8px;
  border-radius: 2px; background: linear-gradient(90deg, var(--gold), var(--gold-2));
}
.shot__zoom {
  position: absolute; right: 12px; top: 12px; z-index: 1;
  background: rgba(7,11,20,.72); color: var(--gold);
  border: 1px solid var(--line-2); border-radius: 999px;
  font-size: 11px; letter-spacing: 1.2px; text-transform: uppercase;
  padding: 5px 12px; opacity: 0; transition: opacity .25s ease;
}
.shot:hover .shot__zoom, .shot:focus-visible .shot__zoom { opacity: 1; }

/* Videot e stërvitjes — korniza mbështillet saktësisht sipas videos */
.clips {
  display: flex; flex-wrap: wrap; justify-content: center;
  align-items: flex-start; gap: 18px; margin-top: 30px;
}
.clip {
  margin: 0; overflow: hidden; max-width: 100%;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color .25s ease, box-shadow .25s ease;
}
.clip:hover, .clip:focus-within { border-color: var(--line-2); box-shadow: var(--shadow); }
.clip video {
  display: block; height: 240px; width: auto; max-width: 100%;
  aspect-ratio: var(--ar, 16 / 9);
  background: #04070e; object-fit: contain;
}
/* Videot e filmuara me telefon (vertikale) shfaqen më të larta */
.clip--portrait video { height: 380px; }
.clip figcaption {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 17px; border-top: 1px solid var(--line);
  font-family: var(--font-head); font-size: 1.05rem;
  letter-spacing: 1.3px; text-transform: uppercase; color: var(--soft);
}
.clip figcaption::before {
  content: ""; flex: 0 0 18px; height: 3px; border-radius: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
}
/* Kartat vertikale janë të ngushta — titulli u përshtatet */
.clip--portrait figcaption { padding: 12px 14px; font-size: .95rem; letter-spacing: .8px; }

/* ---------------- Tabela e orarit ---------------- */
.table-wrap {
  overflow-x: auto; border: 1px solid var(--line);
  border-radius: var(--radius); background: var(--surface);
}
.table { width: 100%; border-collapse: collapse; min-width: 760px; }
.table th, .table td { padding: 15px 16px; text-align: left; border-bottom: 1px solid var(--line); }
.table thead th {
  font-family: var(--font-head); font-size: 15px; letter-spacing: 1.6px; text-transform: uppercase;
  color: var(--gold); background: rgba(240,197,91,.05); white-space: nowrap;
}
.table tbody tr:last-child td { border-bottom: 0; }
.table tbody tr:hover { background: rgba(240,197,91,.035); }
.table td { color: var(--muted); font-size: 14.5px; }
.table td strong { color: var(--text); }
.slot {
  display: inline-block; background: rgba(240,197,91,.12); color: var(--gold);
  border: 1px solid var(--line-2);
  padding: 4px 11px; border-radius: 8px; font-weight: 600; font-size: 13.5px; white-space: nowrap;
}
.slot--match { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.2); }

/* ---------------- Stafi (posterat) ---------------- */
.staff { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; max-width: 680px; margin: 0 auto; }
.member {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.member:hover { transform: translateY(-6px); border-color: var(--line-2); box-shadow: var(--shadow); }

.member__photo {
  position: relative; display: block; width: 100%;
  height: 330px; overflow: hidden; cursor: zoom-in;
  border: 0; padding: 16px 16px 0; background: transparent;
}
.member__photo img {
  width: auto; max-width: 100%; height: 100%;
  margin: 0 auto; object-fit: contain; border-radius: 8px;
}
.member__photo .ph { border: 0; border-radius: 8px; height: 100%; min-height: 0; }
.member__zoom {
  position: absolute; right: 12px; top: 12px;
  background: rgba(7,11,20,.72); color: var(--gold);
  border: 1px solid var(--line-2); border-radius: 999px;
  font-size: 11px; letter-spacing: 1.2px; text-transform: uppercase;
  padding: 5px 12px; pointer-events: none;
}
.member__body { padding: 22px 24px 26px; }
.member__body h3 { font-size: 1.55rem; margin-bottom: 2px; }
.member__role { color: var(--gold); font-size: 13px; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase; margin-bottom: 12px; }
.member__bio { color: var(--muted); font-size: 14.5px; margin: 0 0 16px; }
.member__tags { display: flex; flex-wrap: wrap; gap: 8px; }
.member__tags span {
  font-size: 12px; color: var(--soft);
  border: 1px solid var(--line); border-radius: 999px; padding: 4px 12px;
  background: rgba(240,197,91,.05);
}

/* ---------------- Stafi mjekësor ---------------- */
.medic { display: grid; grid-template-columns: .85fr 1.15fr; gap: 40px; align-items: center; }
.medic__name { font-size: 2.2rem; margin-bottom: 2px; }
.medic__photo {
  position: relative; display: block; width: 100%; max-width: 340px; margin: 0 auto;
  aspect-ratio: 2 / 3; border-radius: var(--radius); overflow: hidden; cursor: zoom-in;
  border: 1px solid var(--line-2); padding: 0; background: var(--bg-alt);
  box-shadow: var(--shadow);
}
.medic__photo img { width: 100%; height: 100%; object-fit: contain; }
.medic__photo .ph { border: 0; border-radius: 0; height: 100%; min-height: 0; }

.medic__facts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin: 24px 0 28px; }
.fact {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 16px 18px;
}
.fact strong { display: block; font-size: 14px; margin-bottom: 2px; }
.fact span { color: var(--muted); font-size: 13px; }

.medic__quote {
  border-left: 3px solid var(--gold);
  padding: 4px 0 4px 18px; margin: 0;
  font-family: var(--font-head); font-size: 1.5rem; letter-spacing: 1px;
  text-transform: uppercase; color: var(--gold-lite);
}

/* ---------------- Galeria ---------------- */
.gallery {
  display: grid; grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 190px; gap: 16px;
}
.gallery > * { min-height: 0; height: 100%; }
.ph--g1 { grid-column: span 2; grid-row: span 2; }
.ph--g4, .ph--g5, .ph--g6 { grid-column: span 2; }

/* ---------------- Tarifat ---------------- */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.price {
  position: relative; display: flex; flex-direction: column;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 34px 28px; text-align: center;
}
.price h3 { font-size: 1.5rem; color: var(--muted); margin-bottom: 12px; }
.price__amount { font-family: var(--font-head); font-size: 4rem; line-height: 1; margin: 0; color: var(--text); }
.price__amount span { font-size: 1.6rem; color: var(--gold); margin-left: 2px; }
.price__per { color: var(--muted); font-size: 13.5px; margin-bottom: 24px; }
.price ul { display: grid; gap: 11px; margin-bottom: 28px; text-align: left; }
.price ul li { position: relative; padding-left: 28px; font-size: 14.5px; color: var(--soft); }
.price ul li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
.price .btn { margin-top: auto; }
.price--featured {
  border-color: var(--line-2);
  background: linear-gradient(170deg, rgba(240,197,91,.12), var(--surface) 58%);
  transform: scale(1.03);
}
.price__flag {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold-lite), var(--gold-2)); color: var(--ink);
  font-size: 11px; font-weight: 800; letter-spacing: 1.4px; text-transform: uppercase;
  padding: 6px 16px; border-radius: 999px; white-space: nowrap;
}

/* ---------------- Dëshmitë ---------------- */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.quote {
  margin: 0; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 30px 26px; position: relative;
}
.quote::before {
  content: "”"; position: absolute; top: 6px; right: 22px;
  font-family: Georgia, serif; font-size: 5rem; color: rgba(240,197,91,.2); line-height: 1;
}
.quote blockquote { margin: 0 0 20px; font-size: 15.5px; color: var(--soft); font-style: italic; }
.quote figcaption { display: flex; flex-direction: column; border-top: 1px solid var(--line); padding-top: 15px; }
.quote figcaption strong { font-size: 15px; }
.quote figcaption span { font-size: 12.5px; color: var(--muted); }

/* ---------------- Hapat ---------------- */
.steps { display: grid; gap: 20px; margin: 28px 0 32px; }
.steps li { display: flex; gap: 16px; align-items: flex-start; }
.steps li > span {
  flex: 0 0 40px; width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(240,197,91,.13); color: var(--gold);
  font-family: var(--font-head); font-size: 1.25rem; font-weight: 800;
  border: 1px solid var(--line-2);
}
.steps strong { display: block; font-size: 15.5px; }
.steps p { margin: 2px 0 0; color: var(--muted); font-size: 14px; }

.callout {
  background: rgba(37,211,102,.07); border: 1px solid rgba(37,211,102,.26);
  border-radius: var(--radius); padding: 22px 24px;
}
.callout strong { display: block; margin-bottom: 4px; }
.callout p { color: var(--muted); font-size: 14px; margin-bottom: 16px; }

/* ---------------- Regjistrimi me WhatsApp ---------------- */
.join {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
  align-items: center; max-width: 940px; margin: 0 auto;
}
.join .steps { margin: 0; }
.join__cta {
  background: var(--surface); border: 1px solid rgba(37,211,102,.3);
  border-radius: var(--radius); padding: 34px 30px; text-align: center;
  box-shadow: var(--shadow);
}
.join__ico {
  display: grid; place-items: center;
  width: 58px; height: 58px; margin: 0 auto 14px;
  border-radius: 50%; font-size: 26px;
  background: rgba(37,211,102,.12); border: 1px solid rgba(37,211,102,.3);
}
.join__title {
  display: block; font-family: var(--font-head); font-size: 1.9rem;
  text-transform: uppercase; letter-spacing: 1px;
}
.join__text { color: var(--muted); font-size: 14.5px; margin-bottom: 22px; }
.join__or {
  color: var(--muted); font-size: 12.5px; letter-spacing: 1.4px; text-transform: uppercase;
  margin: 24px 0 12px; position: relative;
}
.join__or::before, .join__or::after {
  content: ""; position: absolute; top: 50%; width: 18%; height: 1px; background: var(--line-2);
}
.join__or::before { left: 0; }
.join__or::after  { right: 0; }
.join__tel {
  display: block; font-family: var(--font-head); font-size: 1.85rem;
  letter-spacing: 1.5px; color: var(--gold); line-height: 1.35;
}
.join__tel:hover { color: var(--gold-lite); }

/* ---------------- Formulari ---------------- */
.form {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow);
}
.field { margin-bottom: 18px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label {
  display: block; margin-bottom: 7px; font-size: 14px; font-weight: 600; color: #dfe5ee;
}
.field label small { color: var(--muted); font-weight: 400; }
.field label i, .check i { color: #ff6b6b; font-style: normal; }

.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px;
  background: var(--surface-2); color: var(--text);
  border: 1px solid var(--line-2); border-radius: var(--radius-sm);
  font-family: inherit; font-size: 15px;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.field textarea { resize: vertical; min-height: 84px; }
.field input::placeholder, .field textarea::placeholder { color: #71809a; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(240,197,91,.18);
}
.field input.is-invalid, .field select.is-invalid, .field textarea.is-invalid {
  border-color: #ff6b6b; box-shadow: 0 0 0 3px rgba(255,107,107,.14);
}
.field select { appearance: none; cursor: pointer; background-image: none; }
.field select option { background: var(--surface-2); color: var(--text); }

.error { display: block; min-height: 16px; color: #ff8e8e; font-size: 12.5px; margin-top: 5px; }

.check { display: flex; gap: 11px; align-items: flex-start; font-size: 14px; color: var(--soft); cursor: pointer; }
.check input { width: 19px; height: 19px; flex: 0 0 19px; margin-top: 2px; accent-color: var(--gold); cursor: pointer; }
.check input.is-invalid { outline: 2px solid #ff6b6b; outline-offset: 2px; border-radius: 3px; }

.form .btn--block { margin-top: 12px; }
.form__note { color: var(--muted); font-size: 12.5px; text-align: center; margin: 14px 0 0; }
.form__status { margin: 12px 0 0; font-size: 14.5px; text-align: center; font-weight: 600; }
.form__status.ok  { color: #5ee49f; }
.form__status.err { color: #ff8e8e; }

/* ---------------- CTA finale ---------------- */
.cta {
  padding: 84px 0;
  background: linear-gradient(135deg, var(--gold-2) 0%, var(--gold) 48%, var(--gold-lite) 100%);
  color: var(--ink);
}
.cta__inner { text-align: center; max-width: 720px; margin: 0 auto; }
.cta h2 { font-size: clamp(2rem, 5vw, 3.2rem); margin-bottom: 12px; color: var(--ink); }
.cta p { color: rgba(10,15,26,.78); margin-bottom: 28px; font-size: 1.05rem; font-weight: 500; }

/* ---------------- Footer ---------------- */
.footer { background: #04070e; border-top: 1px solid var(--line); padding: 54px 0 26px; }
.footer__inner {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 34px; flex-wrap: wrap; padding-bottom: 30px; border-bottom: 1px solid var(--line);
}
.footer__brand { display: flex; gap: 13px; align-items: center; }
.footer__brand img { border-radius: 50%; }
.footer__brand strong { font-family: var(--font-head); font-size: 1.3rem; letter-spacing: 1px; text-transform: uppercase; }
.footer__brand p { margin: 0; color: var(--muted); font-size: 13.5px; }
.footer__nav { display: flex; flex-wrap: wrap; gap: 8px 22px; }
.footer__nav a { color: var(--muted); font-size: 14px; }
.footer__nav a:hover { color: var(--gold); }
.footer__bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
  padding-top: 22px; color: #6d7a90; font-size: 13px;
}
.footer__bottom p { margin: 0; }

/* ---------------- Butoni pluskues i WhatsApp ---------------- */
.fab {
  position: fixed; right: 20px; bottom: 20px; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center;
  background: #25d366; color: #fff;
  box-shadow: 0 10px 26px rgba(37,211,102,.42);
  transition: transform .2s ease;
}
.fab:hover { transform: scale(1.08); }

/* ---------------- Lightbox ---------------- */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  display: none; place-items: center;
  background: rgba(4,7,14,.94);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  padding: 26px;
}
.lightbox.is-open { display: grid; }
.lightbox img {
  max-width: min(94vw, 780px); max-height: 92svh;
  width: auto; height: auto; object-fit: contain;
  border-radius: 12px; box-shadow: 0 30px 80px rgba(0,0,0,.7);
}
.lightbox__close {
  position: absolute; top: 18px; right: 18px;
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(240,197,91,.14); border: 1px solid var(--line-2);
  color: var(--gold); font-size: 24px; line-height: 1; cursor: pointer;
  display: grid; place-items: center;
}
.lightbox__close:hover { background: var(--gold); color: var(--ink); }

/* ---------------- Animacioni i shfaqjes ---------------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------------- Responsive ---------------- */
@media (max-width: 1024px) {
  .quotes { grid-template-columns: repeat(2, 1fr); }
  .medic { grid-template-columns: 1fr; gap: 30px; }
  .medic__photo { max-width: 420px; margin: 0 auto; }
}

@media (max-width: 880px) {
  .burger { display: block; }
  .nav {
    position: fixed; inset: 78px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 2px;
    background: rgba(7,11,20,.98);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
    padding: 16px 22px 26px;
    transform: translateY(-130%); opacity: 0; pointer-events: none;
    transition: transform .32s cubic-bezier(.4,0,.2,1), opacity .25s ease;
    max-height: calc(100svh - 78px); overflow-y: auto;
  }
  .nav.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav > a { padding: 14px 12px; font-size: 16px; border-radius: var(--radius-sm); }
  .nav__cta { margin: 10px 0 0; text-align: center; }

  .grid-2 { grid-template-columns: 1fr; gap: 44px; }
  .join { grid-template-columns: 1fr; gap: 30px; max-width: 480px; }
  .shots { grid-template-columns: 1fr 1fr; grid-template-rows: 300px 200px; gap: 14px; }
  .shot--lg { grid-column: span 2; grid-row: span 1; }
  .clips { gap: 14px; margin-top: 26px; }
  .clip video { height: 200px; }
  .clip--portrait video { height: 330px; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); }
  .hero__crest { width: 92px; height: 92px; }
  .ph--tall { min-height: 320px; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .ph--g1 { grid-column: span 2; grid-row: span 1; }
  .ph--g4, .ph--g5, .ph--g6 { grid-column: span 1; }
}

@media (max-width: 620px) {
  .section { padding: 68px 0; }
  .quotes { grid-template-columns: 1fr; }
  /* Trajnerët mbeten krah për krah edhe në telefon */
  .staff { gap: 12px; }
  .member__photo { height: 190px; padding: 10px 10px 0; }
  .member__body { padding: 14px 14px 18px; }
  .member__body h3 { font-size: 1.2rem; }
  .member__role { font-size: 11px; letter-spacing: 1px; }
  .member__bio { font-size: 13px; }
  .member__tags span { font-size: 11px; padding: 3px 9px; }
  .member__zoom { display: none; }
  .medic__facts { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .form { padding: 24px 20px; }
  .hero { min-height: auto; padding: 130px 0 70px; }
  .hero__actions .btn { width: 100%; }
  /* Në telefon videot horizontale zënë tërë gjerësinë, vertikalet matën me lartësi */
  .clip { width: 100%; }
  .clip video { width: 100%; height: auto; }
  .clip--portrait { width: auto; }
  .clip--portrait video { width: auto; height: 60vh; }

  .shots { grid-template-columns: 1fr; grid-template-rows: repeat(3, 210px); }
  .shot--lg { grid-column: span 1; }
  .shot__cap { left: 14px; bottom: 12px; font-size: 1rem; }
  .shot__zoom { display: none; }
  .footer__inner { flex-direction: column; }

  /* Tabela bëhet kartë në telefon */
  .table { min-width: 0; }
  .table thead { display: none; }
  .table, .table tbody, .table tr, .table td { display: block; width: 100%; }
  .table tr { border-bottom: 1px solid var(--line-2); padding: 8px 0; }
  .table td {
    display: flex; justify-content: space-between; align-items: center; gap: 14px;
    border-bottom: 0; padding: 8px 16px;
  }
  .table td::before {
    content: attr(data-th);
    font-size: 12px; letter-spacing: 1.2px; text-transform: uppercase;
    color: var(--gold); font-weight: 700;
  }
  .table td:first-child { background: rgba(240,197,91,.06); }
  .table td:first-child::before { content: ""; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
}
