/* ============================================================
   AISF 2026 — B2B Landing Page
   Brand: deep purple primary · blue secondary · orange & magenta accents
============================================================ */

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

:root {
  --c-purple: #5B1A8A;
  --c-purple-dark: #2a0c47;
  --c-blue: #1A87DC;
  --c-cyan: #5BC0E5;
  --c-orange: #E89B2C;
  --c-magenta: #F02E6E;
  --c-ink: #3a3d52;
  --c-text: #4a4d63;
  --c-muted: #7a7e90;
  --c-border: #e6e8ef;
  --c-bg-soft: #f6f7fb;
  --c-white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(17,19,42,.06);
  --shadow-md: 0 8px 28px rgba(17,19,42,.08);
  --shadow-lg: 0 18px 50px rgba(17,19,42,.12);
  --radius: 12px;
  --radius-lg: 18px;
  --container: 1200px;
  --gold-grad: linear-gradient(180deg, #ffd66b 0%, #E89B2C 55%, #b76d12 100%);
}

body {
  font-family: 'Cairo', 'Tajawal', system-ui, -apple-system, sans-serif;
  color: var(--c-text);
  background: var(--c-white);
  line-height: 1.6;
  direction: rtl;
  -webkit-font-smoothing: antialiased;
}
html[dir="ltr"] body {
  font-family: 'Inter', 'Roboto', system-ui, -apple-system, sans-serif;
  direction: ltr;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--c-magenta);
  margin-bottom: 12px;
}
.eyebrow.on-dark { color: var(--c-cyan); }

/* keep numbers, phone/email links in LTR even on RTL pages */
a[href^="tel:"], a[href^="mailto:"],
.ltr, .stat-num, .tier-price, .pkg-table .price {
  direction: ltr;
  unicode-bidi: isolate;
}
.section-title {
  font-size: clamp(1.75rem, 3.4vw, 2.5rem);
  font-weight: 900;
  color: var(--c-purple);
  line-height: 1.2;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.section-title.on-dark { color: var(--c-white); }
.section-lede {
  font-size: 1.05rem;
  color: var(--c-muted);
  max-width: 720px;
  margin-bottom: 40px;
}
.section-lede.on-dark { color: rgba(255,255,255,.82); }
.section-head { margin-bottom: 48px; }
.section-head.center { text-align: center; }
.section-head.center .section-lede { margin-inline: auto; }
section { padding: 88px 0; }

/* ============================================================
   HEADER
============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--c-white);
  border-bottom: 1px solid var(--c-border);
}
.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand img { height: 56px; width: auto; display: block; }
.site-nav { display: flex; align-items: center; gap: 6px; }
.site-nav a {
  padding: 10px 14px;
  font-weight: 700;
  font-size: .95rem;
  color: var(--c-ink);
  border-radius: 8px;
  position: relative;
  transition: color .15s;
}
.site-nav a::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px;
  height: 2px; background: var(--c-magenta);
  transform: scaleX(0); transform-origin: center;
  transition: transform .25s ease;
}
.site-nav a:hover { color: var(--c-purple); }
.site-nav a:hover::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; gap: 10px; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  font-size: .95rem;
  font-weight: 800;
  border-radius: 999px;
  border: 1.5px solid transparent;
  transition: transform .15s ease, box-shadow .2s ease, background .15s, color .15s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--c-magenta);
  color: var(--c-white);
  box-shadow: 0 8px 22px rgba(240,46,110,.32);
}
.btn-primary:hover { transform: translateY(-2px); background: #d61e5b; box-shadow: 0 12px 28px rgba(240,46,110,.45); }
.btn-secondary {
  background: transparent;
  color: var(--c-white);
  border-color: rgba(255,255,255,.55);
  backdrop-filter: blur(2px);
}
.btn-secondary:hover { background: rgba(255,255,255,.12); border-color: var(--c-white); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--c-purple);
  border-color: var(--c-purple);
}
.btn-outline:hover { background: var(--c-purple); color: var(--c-white); }
.btn-lang {
  padding: 9px 14px;
  background: var(--c-bg-soft);
  color: var(--c-ink);
  border-radius: 999px;
  font-weight: 800;
  font-size: .8rem;
  border: 1px solid var(--c-border);
  letter-spacing: .04em;
  transition: background .15s, color .15s, border-color .15s;
}
.btn-lang:hover { background: var(--c-purple); color: var(--c-white); border-color: var(--c-purple); }
.menu-toggle {
  display: none;
  width: 42px; height: 42px;
  background: var(--c-bg-soft);
  border: 1px solid var(--c-border);
  border-radius: 10px;
  font-size: 22px;
  color: var(--c-ink);
  align-items: center;
  justify-content: center;
}

/* ============================================================
   HERO  — full-bleed venue photo + dark overlay (PDF reference)
============================================================ */
.hero {
  position: relative;
  color: var(--c-white);
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("assets/hero-bg.webp");
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  animation: heroZoom 24s ease-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.0); }
  to   { transform: scale(1.12); }
}
.hero::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(20,8,31,.55) 0%, rgba(42,12,71,.78) 60%, rgba(20,8,31,.92) 100%),
    linear-gradient(135deg, rgba(91,26,138,.55), rgba(26,135,220,.35));
}
.hero-inner {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  padding: 70px 24px 56px;
  text-align: center;
}
.hero-lockup {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  margin-bottom: 26px;
  animation: fadeUp .7s ease-out both;
}
.hero-lockup .festival-logo {
  height: 110px;
  width: auto;
  filter: drop-shadow(0 6px 22px rgba(0,0,0,.35));
}
.hero-lockup .years-badge {
  height: 100px;
  width: auto;
  filter: drop-shadow(0 6px 22px rgba(0,0,0,.45));
}
.hero-lockup .divider {
  width: 1px;
  height: 70px;
  background: rgba(255,255,255,.25);
}
@media (max-width: 640px) {
  .hero-lockup { gap: 14px; }
  .hero-lockup .festival-logo { height: 78px; }
  .hero-lockup .years-badge { height: 70px; }
  .hero-lockup .divider { height: 50px; }
}
.hero-eyebrow {
  display: inline-block;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.3);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: 26px;
  letter-spacing: .04em;
  backdrop-filter: blur(6px);
  animation: fadeUp .8s ease-out both;
}
.hero-title {
  font-size: clamp(2rem, 5.4vw, 4rem);
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  text-shadow: 0 4px 30px rgba(0,0,0,.45);
  animation: fadeUp .9s .1s ease-out both;
}
.hero-title .accent { color: var(--c-cyan); }
.hero-title .small { display: block; font-size: .82em; font-weight: 800; }
.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,.88);
  margin-bottom: 32px;
  max-width: 700px;
  margin-inline: auto;
  animation: fadeUp 1s .2s ease-out both;
}
.hero-ctas {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  animation: fadeUp 1.1s .3s ease-out both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* event info bar — flat row, no colored icon boxes */
.event-bar {
  position: relative;
  border-top: 1px solid rgba(255,255,255,.18);
  border-bottom: 1px solid rgba(255,255,255,.18);
  background: rgba(20,8,31,.55);
  backdrop-filter: blur(6px);
}
.event-bar-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.event-bar-cell {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 22px 22px;
  color: var(--c-white);
  border-inline-end: 1px solid rgba(255,255,255,.14);
  font-size: .98rem;
  font-weight: 600;
}
.event-bar-cell:last-child { border-inline-end: none; }
.event-bar-cell .material-icons {
  font-size: 22px;
  color: var(--c-cyan);
}

/* ============================================================
   STATS — clean PDF-style counter row, scroll-triggered count-up
============================================================ */
.stats {
  background: var(--c-bg-soft);
  padding: 80px 0;
  border-bottom: 1px solid var(--c-border);
}
.stats-eyebrow {
  display: block;
  text-align: center;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: 8px;
}
.stats-title {
  text-align: center;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  font-weight: 900;
  color: var(--c-purple);
  margin-bottom: 50px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-card {
  position: relative;
  padding: 30px 18px;
  border-radius: var(--radius-lg);
  background: var(--c-white);
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.stat-num {
  font-family: 'Inter', 'Cairo', sans-serif;
  font-size: clamp(2.8rem, 5.2vw, 4rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--c-text);
  display: inline-block;
}
.stat-label {
  margin-top: 14px;
  font-size: .95rem;
  color: var(--c-muted);
  font-weight: 600;
  line-height: 1.5;
}

/* ============================================================
   ABOUT — text + single venue photo (no playful tile mosaic)
============================================================ */
.about { background: var(--c-white); }
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}
.about-text p { margin-bottom: 16px; font-size: 1.05rem; color: var(--c-text); }
.about-pills { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 22px; }
.about-pills span {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--c-bg-soft);
  border: 1px solid var(--c-border);
  border-radius: 999px;
  padding: 8px 16px;
  font-weight: 700;
  font-size: .9rem;
  color: var(--c-purple);
}
.about-pills span::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--c-magenta);
}
.about-pills span:nth-child(2)::before { background: var(--c-blue); }
.about-pills span:nth-child(3)::before { background: var(--c-orange); }
.about-photo {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #1a1a2e;
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.about-photo:hover img { transform: scale(1.05); }
.about-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(20,8,31,.45));
  pointer-events: none;
}

/* ============================================================
   REASONS (6 cards)
============================================================ */
.reasons { background: var(--c-bg-soft); }
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.reason-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.reason-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--c-purple);
}
.reason-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: rgba(91,26,138,.1);
  color: var(--c-purple);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  margin-bottom: 18px;
  transition: background .2s, color .2s;
}
.reason-card:hover .reason-icon { background: var(--c-purple); color: var(--c-white); }
.reason-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--c-ink);
  margin-bottom: 10px;
  line-height: 1.4;
}
.reason-card p { color: var(--c-muted); font-size: .96rem; line-height: 1.7; }

/* ============================================================
   PACKAGES (booth size table)
============================================================ */
.packages { background: var(--c-white); }
.unit-price-bar {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(91,26,138,.06);
  border: 1.5px solid var(--c-purple);
  color: var(--c-purple);
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 800;
  margin-bottom: 36px;
}
.pkg-table-wrap {
  background: var(--c-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  border: 1px solid var(--c-border);
}
.pkg-table { width: 100%; border-collapse: collapse; }
.pkg-table thead {
  background: linear-gradient(135deg, var(--c-purple), var(--c-purple-dark));
  color: var(--c-white);
}
.pkg-table th {
  padding: 18px 20px;
  text-align: start;
  font-size: .85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.pkg-table td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--c-border);
  font-size: .98rem;
  color: var(--c-text);
}
.pkg-table tbody tr:last-child td { border-bottom: none; }
.pkg-table tbody tr { transition: background .15s; }
.pkg-table tbody tr:hover { background: var(--c-bg-soft); }
.pkg-table .size {
  font-weight: 800; color: var(--c-ink); font-size: 1.05rem; white-space: nowrap;
}
.pkg-table .price {
  font-weight: 800; color: var(--c-purple); font-size: 1.05rem; white-space: nowrap;
}
.badge {
  display: inline-block;
  font-size: .68rem;
  font-weight: 800;
  padding: 3px 9px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-inline-start: 8px;
  vertical-align: middle;
}
.badge-popular { background: var(--c-orange); color: var(--c-white); }
.badge-largest { background: var(--c-magenta); color: var(--c-white); }
.pkg-table tr.highlight td { background: rgba(232,155,44,.06); }
.pkg-table tr.highlight-magenta td { background: rgba(240,46,110,.05); }

.pkg-includes {
  margin-top: 32px;
  background: var(--c-bg-soft);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
}
.pkg-includes h4 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--c-purple);
  margin-bottom: 16px;
}
.pkg-includes ul { list-style: none; display: grid; grid-template-columns: repeat(2,1fr); gap: 10px 28px; }
.pkg-includes li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: .95rem; color: var(--c-text);
}
.pkg-includes li .material-icons { color: var(--c-purple); font-size: 18px; margin-top: 2px; }

/* ============================================================
   SPONSORSHIP
============================================================ */
.sponsorship { background: var(--c-bg-soft); }
.sponsorship-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.tier-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .2s, box-shadow .2s;
  overflow: hidden;
}
.tier-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.tier-card .tier-bar {
  position: absolute; top: 0; inset-inline-start: 0; inset-inline-end: 0;
  height: 5px;
}
.tier-diamond .tier-bar { background: linear-gradient(90deg, #b8c6e0, #6b7794); }
.tier-platinum .tier-bar { background: linear-gradient(90deg, #d6d8de, #8d92a1); }
.tier-gold .tier-bar { background: linear-gradient(90deg, #ffd66b, #c97f12); }
.tier-silver .tier-bar { background: linear-gradient(90deg, #cfd3dc, #97a0b1); }
.tier-name {
  font-size: 1.1rem; font-weight: 800; color: var(--c-purple);
  margin-bottom: 6px; padding-top: 14px;
}
.tier-price { font-size: 1.9rem; font-weight: 900; color: var(--c-ink); line-height: 1; }
.tier-price small { font-size: .9rem; color: var(--c-muted); font-weight: 600; }
.tier-meta {
  display: flex; flex-direction: column; gap: 6px;
  margin: 18px 0; padding: 16px 0;
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  font-size: .92rem; color: var(--c-text);
}
.tier-meta strong { color: var(--c-purple); }
.tier-benefit { font-size: .9rem; color: var(--c-muted); line-height: 1.7; }

/* ============================================================
   MARKETING (dark)
============================================================ */
.marketing {
  background: linear-gradient(135deg, var(--c-purple-dark) 0%, var(--c-purple) 70%, var(--c-purple-dark) 100%);
  color: var(--c-white);
  position: relative;
  overflow: hidden;
}
.marketing::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(800px 400px at 10% 10%, rgba(26,135,220,.28), transparent 60%),
    radial-gradient(800px 400px at 90% 90%, rgba(240,46,110,.22), transparent 60%);
  pointer-events: none;
}
.marketing .container { position: relative; }
.mkt-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.mkt-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: start;
  transition: background .2s, transform .2s, border-color .2s;
}
.mkt-card:hover {
  background: rgba(255,255,255,.1);
  transform: translateY(-4px);
  border-color: rgba(255,255,255,.3);
}
.mkt-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  color: var(--c-white);
  font-size: 22px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.mkt-card h3 { font-size: 1.05rem; font-weight: 800; color: var(--c-white); margin-bottom: 6px; }
.mkt-card p { color: rgba(255,255,255,.78); font-size: .92rem; }

/* ============================================================
   VENUE
============================================================ */
.venue { background: var(--c-white); }
.venue-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.venue-card, .floor-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.venue-map {
  width: 100%; aspect-ratio: 16/10; border: 0; display: block;
}
.venue-info { padding: 24px 26px; }
.venue-info h3 { font-size: 1.15rem; font-weight: 800; color: var(--c-ink); margin-bottom: 10px; }
.venue-line {
  display: flex; gap: 10px; align-items: flex-start;
  margin-bottom: 8px; font-size: .95rem; color: var(--c-text);
}
.venue-line .material-icons { color: var(--c-purple); font-size: 18px; margin-top: 3px; }
.venue-info .map-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 12px; color: var(--c-purple); font-weight: 800;
}
.floor-card { padding: 0; }
.floor-image-area {
  padding: 50px 24px;
  text-align: center;
  background: linear-gradient(135deg, #f6f7fb, #ecedf3);
  color: var(--c-muted);
  flex: 1;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  gap: 12px;
}
.floor-image-area img { max-width: 100%; max-height: 320px; }
.floor-image-area .material-icons { font-size: 48px; color: var(--c-purple); opacity: .5; }
.floor-image-area p { font-size: .9rem; }
.floor-title { padding: 18px 24px; border-top: 1px solid var(--c-border); font-weight: 800; color: var(--c-ink); }

/* ============================================================
   REGISTRATION
============================================================ */
.registration {
  background: linear-gradient(135deg, var(--c-purple) 0%, #3d0e60 60%, var(--c-purple-dark) 100%);
  color: var(--c-white);
  position: relative;
  overflow: hidden;
}
.registration::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(800px 400px at 50% 0%, rgba(26,135,220,.25), transparent 60%);
  pointer-events: none;
}
.reg-wrap { max-width: 920px; margin: 0 auto; text-align: center; position: relative; }
.reg-wrap .section-title { color: var(--c-white); }
.reg-wrap .section-lede { color: rgba(255,255,255,.85); margin: 0 auto 36px; }
.reg-form {
  background: var(--c-white);
  border-radius: var(--radius-lg);
  padding: 36px;
  text-align: start;
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.reg-form .full { grid-column: 1 / -1; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: .88rem; font-weight: 700; color: var(--c-ink); }
.field input,
.field textarea {
  border: 1.5px solid var(--c-border);
  border-radius: 10px;
  padding: 12px 14px;
  font-family: inherit;
  font-size: .96rem;
  color: var(--c-ink);
  transition: border-color .15s, box-shadow .15s;
  background: var(--c-white);
}
.field textarea { min-height: 96px; resize: vertical; }
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--c-purple);
  box-shadow: 0 0 0 3px rgba(91,26,138,.15);
}
.reg-form .submit-row { display: flex; justify-content: center; padding-top: 8px; }
.reg-form .btn-primary { padding: 14px 36px; font-size: 1rem; }
.form-success {
  display: none;
  grid-column: 1 / -1;
  background: rgba(91,26,138,.08);
  color: var(--c-purple);
  padding: 14px 18px;
  border-radius: 10px;
  font-weight: 700;
  text-align: center;
}
.form-success.show { display: block; }
.form-success.error { background: rgba(240,46,110,.1); color: var(--c-magenta); }

/* ============================================================
   CONTACT
============================================================ */
.contact { background: var(--c-bg-soft); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.contact-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.contact-card .org-ar { font-weight: 800; color: var(--c-ink); margin-bottom: 4px; }
.contact-card .org-en { color: var(--c-muted); font-size: .9rem; margin-bottom: 22px; }
.contact-row {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 12px 0;
  border-top: 1px solid var(--c-border);
  font-size: .96rem;
}
.contact-row .icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(91,26,138,.1);
  color: var(--c-purple);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.contact-row .label { font-size: .8rem; color: var(--c-muted); margin-bottom: 2px; }
.contact-row .value,
.contact-row .value a { font-weight: 700; color: var(--c-text); }
.contact-row .value a:hover { color: var(--c-purple); }

.cta-block {
  background: linear-gradient(135deg, var(--c-purple), var(--c-blue));
  color: var(--c-white);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
}
.cta-block::before {
  content: ""; position: absolute;
  inset-inline-end: -60px; top: -60px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.18), transparent 70%);
}
.cta-block h3 {
  font-size: 1.6rem; font-weight: 900; color: var(--c-white);
  margin-bottom: 10px; position: relative;
}
.cta-block p { color: rgba(255,255,255,.85); margin-bottom: 22px; position: relative; }
.cta-block .btn { position: relative; margin-inline-end: auto; }

/* ============================================================
   FOOTER
============================================================ */
.site-footer {
  background: var(--c-purple-dark);
  color: rgba(255,255,255,.7);
  padding: 56px 0 24px;
  font-size: .92rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1fr;
  gap: 32px;
  margin-bottom: 36px;
}
.footer-grid h4 {
  color: var(--c-white);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-brand img { height: 70px; margin-bottom: 14px; background: rgba(255,255,255,.04); padding: 6px 10px; border-radius: 10px; }
.footer-tag { color: rgba(255,255,255,.85); font-weight: 700; font-size: .9rem; }
.footer-grid ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-grid ul a { color: rgba(255,255,255,.78); transition: color .15s; }
.footer-grid ul a:hover { color: var(--c-white); }
.footer-contact div { margin-bottom: 8px; display: flex; gap: 8px; align-items: center; }
.footer-contact .material-icons { font-size: 16px; color: rgba(255,255,255,.6); }
.footer-social { display: flex; gap: 10px; }
.footer-social svg { width: 18px; height: 18px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,.06);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  transition: background .15s;
}
.footer-social a:hover { background: var(--c-magenta); color: var(--c-white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 20px;
  text-align: center;
  font-size: .82rem;
  color: rgba(255,255,255,.55);
}

/* ============================================================
   Reveal-on-scroll utility
============================================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-in { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .reasons-grid { grid-template-columns: repeat(2, 1fr); }
  .sponsorship-grid { grid-template-columns: repeat(2, 1fr); }
  .mkt-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 820px) {
  .site-nav, .header-actions .btn:not(.btn-lang):not(.menu-toggle) { display: none; }
  .menu-toggle { display: flex; }
  .site-nav.open {
    display: flex; flex-direction: column; align-items: stretch;
    position: absolute; top: 100%; inset-inline-start: 0; inset-inline-end: 0;
    background: var(--c-white); border-bottom: 1px solid var(--c-border);
    padding: 12px 16px; gap: 4px;
    box-shadow: var(--shadow-md);
  }
  .header-inner { padding: 10px 16px; gap: 10px; }
  .brand img { height: 44px; }
  .event-bar-inner { grid-template-columns: 1fr; }
  .event-bar-cell { border-inline-end: none; border-bottom: 1px solid rgba(255,255,255,.14); justify-content: center; text-align: center; padding: 16px 18px; font-size: .92rem; }
  .event-bar-cell:last-child { border-bottom: none; }
  .about-grid, .venue-grid, .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .pkg-includes ul { grid-template-columns: 1fr; }
  .reg-form { grid-template-columns: 1fr; padding: 22px; }
  section { padding: 56px 0; }
  .hero-inner { padding: 60px 20px 44px; }
  .container { padding: 0 18px; }
  .section-head { margin-bottom: 32px; }
  .hero-subtitle { font-size: 1rem; }
  .cta-block { padding: 28px 24px; }
  .contact-card { padding: 24px; }
  .pkg-includes { padding: 22px; }
  .pkg-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
}
@media (max-width: 520px) {
  .reasons-grid { grid-template-columns: 1fr; }
  .sponsorship-grid { grid-template-columns: 1fr; }
  .mkt-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; text-align: center; }
  .footer-grid ul { align-items: center; }
  .footer-social { justify-content: center; }
  .footer-contact div { justify-content: center; }
  .footer-brand img { margin-inline: auto; }
  .pkg-table th, .pkg-table td { padding: 12px 14px; font-size: .88rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .stat-card { padding: 22px 14px; }
  .stat-num { font-size: 2.4rem; }
  .stats-title { margin-bottom: 32px; }
  .reasons-grid { gap: 14px; }
  .reason-card { padding: 22px; }
  .hero-title { font-size: 2rem; line-height: 1.22; }
  .hero-eyebrow { font-size: .72rem; padding: 6px 14px; margin-bottom: 18px; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .hero-ctas { width: 100%; flex-direction: column; }
  .header-actions .btn-lang { padding: 8px 12px; font-size: .75rem; }
  .menu-toggle { width: 40px; height: 40px; }
  .tier-card { padding: 24px 22px; }
  .tier-price { font-size: 1.6rem; }
  .contact-row { padding: 10px 0; gap: 10px; }
  .contact-row .icon { width: 32px; height: 32px; font-size: 16px; }
  .field input, .field textarea { font-size: 16px; } /* prevents iOS zoom */
  .reg-form .btn-primary { width: 100%; }
  .cta-block h3 { font-size: 1.3rem; }
  .venue-info { padding: 20px; }
  .pkg-includes h4 { font-size: .95rem; }
}
@media (max-width: 380px) {
  .hero-title { font-size: 1.7rem; }
  .section-title { font-size: 1.5rem; }
  .stat-num { font-size: 2rem; }
  .hero-lockup { gap: 10px; }
  .hero-lockup .festival-logo { height: 64px; }
  .hero-lockup .years-badge { height: 58px; }
  .hero-lockup .divider { height: 42px; }
}
