/* ═══════════════════════════════════════════════
   פורום מקדמי המדיניות — style.css
   RTL / Hebrew — Dark Professional Theme
════════════════════════════════════════════════ */

/* ── Reset & Base ──────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:         #05101f;
  --bg-2:       #081829;
  --bg-card:    rgba(255,255,255,0.045);
  --gold:       #c8a84b;
  --gold-light: #e2c97a;
  --gold-dark:  #9a7c30;
  --text:       #f0f4ff;
  --text-2:     rgba(240,244,255,0.72);
  --text-3:     rgba(240,244,255,0.45);
  --border:     rgba(255,255,255,0.08);
  --nav-h:      72px;
  --radius:     12px;
  --radius-lg:  20px;
  --trans:      0.3s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Heebo', sans-serif;
  background: var(--bg);
  color: var(--text);
  direction: rtl;
  overflow-x: hidden;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Scroll reveal ─────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── Section Headers ───────────────────────────── */
.section-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(200,168,75,0.12);
  border: 1px solid rgba(200,168,75,0.25);
  padding: 5px 14px;
  border-radius: 99px;
  margin-bottom: 16px;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.25;
}
.section-sub {
  margin-top: 12px;
  color: var(--text-2);
  font-size: 1.05rem;
}

/* ══════════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; right: 0; left: 0;
  z-index: 999;
  height: var(--nav-h);
  transition: background var(--trans), box-shadow var(--trans);
}
#navbar.scrolled {
  background: rgba(5,16,31,0.96);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--border);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1rem;
  white-space: nowrap;
  color: var(--text);
}
.logo-icon { font-size: 1.3rem; }
.logo-fallback { display: flex; align-items: center; gap: 8px; }

/* Real logo image — white rounded pill so colours read on dark bg */
.nav-logo-img {
  height: 44px;
  width: auto;
  background: #ffffff;
  padding: 5px 12px;
  border-radius: 10px;
  display: block;
  object-fit: contain;
}

/* Footer logo — slightly smaller */
.footer-logo-img {
  height: 36px;
  width: auto;
  background: #ffffff;
  padding: 4px 10px;
  border-radius: 8px;
  display: block;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-right: auto;
  margin-left: 0;
}
.nav-links a {
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  color: rgba(240,244,255,0.78);
  transition: color var(--trans), background var(--trans);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  background: rgba(255,255,255,0.06);
}

.nav-cta {
  background: var(--gold);
  color: #070d1a;
  padding: 9px 22px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.88rem;
  transition: background var(--trans), transform 0.18s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-right: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--trans);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(5,16,31,0.98);
  padding: 20px 24px;
  border-top: 1px solid var(--border);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 1rem;
  color: var(--text-2);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-cta {
  margin-top: 12px;
  background: var(--gold) !important;
  color: #070d1a !important;
  text-align: center;
  padding: 12px !important;
  border-radius: 8px;
  font-weight: 700;
  border-bottom: none !important;
}

@media (max-width: 820px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  #navbar { height: auto; position: sticky; background: rgba(5,16,31,0.98); }
}

/* ══════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://media.landy-ai.com/Landy-Media/691b7cec8c69d6975e3100dd/8jyqfaih2s-5343.png')
              center / cover no-repeat;
  transform: scale(1.04);
  transition: transform 0.12s linear;
  will-change: transform;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    155deg,
    rgba(4,8,20,0.90) 0%,
    rgba(6,16,38,0.80) 50%,
    rgba(4,8,20,0.93) 100%
  );
}

/* animated orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.18;
  pointer-events: none;
}
.orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #c8a84b 0%, transparent 70%);
  top: -100px; right: -80px;
  animation: orbFloat 14s ease-in-out infinite;
}
.orb-2 {
  width: 360px; height: 360px;
  background: radial-gradient(circle, #3a7bd5 0%, transparent 70%);
  bottom: 60px; left: -60px;
  animation: orbFloat 18s ease-in-out infinite reverse;
}
@keyframes orbFloat {
  0%,100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(18px,-22px) scale(1.06); }
  66%      { transform: translate(-14px,16px) scale(0.96); }
}

/* grid overlay */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200,168,75,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,168,75,0.035) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridDrift 30s linear infinite;
}
@keyframes gridDrift {
  from { background-position: 0 0; }
  to   { background-position: 60px 60px; }
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 80px 24px 60px;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(200,168,75,0.4);
  padding: 6px 18px;
  border-radius: 99px;
  margin-bottom: 22px;
  background: rgba(200,168,75,0.08);
  backdrop-filter: blur(6px);
}

.hero-title {
  font-size: clamp(2.2rem, 5.5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.18;
  margin-bottom: 24px;
  color: #fff;
}
.hero-title-accent {
  background: linear-gradient(130deg, var(--gold) 0%, var(--gold-light) 55%, #f5dfa0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(240,244,255,0.82);
  max-width: 660px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: #060d1c;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 36px;
  border-radius: var(--radius);
  transition: background var(--trans), transform 0.18s, box-shadow var(--trans);
  box-shadow: 0 4px 20px rgba(200,168,75,0.3);
  cursor: pointer;
  border: none;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200,168,75,0.4);
}
.btn-primary.btn-full { width: 100%; text-align: center; }

.btn-secondary {
  display: inline-block;
  border: 1.5px solid rgba(200,168,75,0.55);
  color: var(--gold);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 28px;
  border-radius: var(--radius);
  transition: background var(--trans), color var(--trans), transform 0.18s;
}
.btn-secondary:hover {
  background: rgba(200,168,75,0.1);
  transform: translateY(-2px);
}

.hero-note {
  font-size: 0.85rem;
  color: var(--text-3);
}

/* Stats */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.hero-stat {
  text-align: center;
  position: relative;
}
.hero-stat + .hero-stat::after {
  content: '';
  position: absolute;
  right: 0; top: 10%; height: 80%;
  border-right: 1px solid rgba(255,255,255,0.15);
}

/* RTL: separator goes to the left */
html[dir="rtl"] .hero-stat + .hero-stat::after {
  right: auto;
  left: -24px;
}

.stat-num {
  display: block;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  display: block;
  font-size: 0.82rem;
  color: var(--text-2);
  max-width: 120px;
  margin: 0 auto;
  line-height: 1.4;
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--text-3);
  font-size: 0.75rem;
}
.scroll-arrow {
  width: 20px; height: 20px;
  border-left: 2px solid rgba(255,255,255,0.25);
  border-bottom: 2px solid rgba(255,255,255,0.25);
  transform: rotate(-45deg);
  animation: scrollBounce 1.8s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%,100% { transform: rotate(-45deg) translateY(0); opacity: 0.4; }
  50%      { transform: rotate(-45deg) translateY(5px); opacity: 0.9; }
}

/* ══════════════════════════════════════════════════
   LAUNCH STRIP
══════════════════════════════════════════════════ */
.launch-strip {
  padding: 80px 0;
  background: var(--bg-2);
}
.launch-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.launch-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.launch-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.launch-img-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  padding: 24px 20px 16px;
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
}
.launch-text h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.3;
}
.launch-text p {
  color: var(--text-2);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 28px;
}

@media (max-width: 780px) {
  .launch-inner { grid-template-columns: 1fr; gap: 32px; }
}

/* ══════════════════════════════════════════════════
   ABOUT / WHY WE FOUNDED
══════════════════════════════════════════════════ */
.about-section {
  padding: 100px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}
.about-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform var(--trans), border-color var(--trans);
}
.about-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200,168,75,0.25);
}
.about-card-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}
.about-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--gold-light);
}
.about-card p {
  color: var(--text-2);
  font-size: 0.93rem;
  line-height: 1.75;
}

/* Vision */
.vision-block {
  background: linear-gradient(135deg, rgba(200,168,75,0.06), rgba(58,123,213,0.06));
  border: 1px solid rgba(200,168,75,0.18);
  border-radius: var(--radius-lg);
  padding: 52px 56px;
  position: relative;
  overflow: hidden;
}
.ghost-quote {
  position: absolute;
  top: -20px;
  right: 30px;
  font-size: 14rem;
  font-weight: 900;
  color: rgba(200,168,75,0.06);
  line-height: 1;
  font-family: Georgia, serif;
  user-select: none;
}
.vision-quote p {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--text-2);
  line-height: 1.8;
  position: relative;
  z-index: 1;
  max-width: 800px;
}

@media (max-width: 780px) {
  .about-grid { grid-template-columns: 1fr; }
  .vision-block { padding: 32px 28px; }
}

/* ══════════════════════════════════════════════════
   BENEFITS
══════════════════════════════════════════════════ */
.benefits-section {
  padding: 100px 0;
  background: var(--bg-2);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.benefit-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: transform var(--trans), box-shadow var(--trans), border-color var(--trans);
}
.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  border-color: rgba(200,168,75,0.3);
}
.benefit-icon-wrap {
  width: 60px; height: 60px;
  background: rgba(200,168,75,0.1);
  border: 1px solid rgba(200,168,75,0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.benefit-icon { font-size: 1.6rem; }
.benefit-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 12px;
}
.benefit-card > p {
  color: var(--text-2);
  font-size: 0.92rem;
  line-height: 1.75;
  margin-bottom: 20px;
}
.benefit-list { border-top: 1px solid var(--border); padding-top: 18px; }
.benefit-list li {
  font-size: 0.88rem;
  color: var(--text-3);
  padding: 5px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.benefit-list li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}

@media (max-width: 880px) {
  .benefits-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

/* ══════════════════════════════════════════════════
   FOUNDERS
══════════════════════════════════════════════════ */
.founders-section {
  padding: 100px 0;
}
.founders-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.founder-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  transition: border-color var(--trans), transform var(--trans);
}
.founder-card:hover { border-color: rgba(200,168,75,0.3); transform: translateY(-3px); }

.founder-avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.founder-photo {
  width: 100%; height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.founder-initials {
  font-size: 1.2rem;
  font-weight: 700;
  color: #060d1c;
}
.founder-info { flex: 1; }
.founder-info h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 4px; }
.founder-role {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.founder-title {
  display: block;
  font-size: 0.82rem;
  color: var(--text-3);
  line-height: 1.5;
  margin-bottom: 14px;
}
.founder-info blockquote {
  font-size: 0.88rem;
  color: var(--text-2);
  line-height: 1.7;
  border-right: 3px solid var(--gold-dark);
  padding-right: 14px;
  font-style: italic;
}

@media (max-width: 880px) {
  .founders-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════
   GALLERY STRIP (decorative / atmosphere photos)
══════════════════════════════════════════════════ */
.gallery-strip {
  width: 100%;
  overflow: hidden;
  background: var(--bg);
}
.gallery-inner {
  display: flex;
  gap: 0;
}
.gallery-item {
  flex: 1 1 25%;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.78) saturate(0.9);
  transition: filter 0.4s ease, transform 0.5s ease;
}
.gallery-item:hover img {
  filter: brightness(0.95) saturate(1.1);
  transform: scale(1.03);
}

@media (max-width: 640px) {
  .gallery-item:nth-child(3),
  .gallery-item:nth-child(4) { display: none; }
  .gallery-item { flex: 1 1 50%; }
}

/* ══════════════════════════════════════════════════
   UPCOMING EVENTS
══════════════════════════════════════════════════ */
.events-section {
  padding: 100px 0;
  background: var(--bg-2);
}

/* 2-up grid for upcoming event posters */
.upcoming-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 880px;
  margin: 0 auto;
}
.upcoming-poster {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: block;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: transform var(--trans), box-shadow var(--trans), border-color var(--trans);
  box-shadow: 0 6px 24px rgba(0,0,0,0.3);
}
.upcoming-poster:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.45);
  border-color: rgba(200,168,75,0.4);
}
.upcoming-poster img {
  width: 100%;
  display: block;
  object-fit: cover;
}
.upcoming-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 24px 20px;
  background: linear-gradient(transparent, rgba(4,8,20,0.85));
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity var(--trans), transform var(--trans);
}
.upcoming-poster:hover .upcoming-overlay {
  opacity: 1;
  transform: none;
}
.upcoming-overlay span {
  background: var(--gold);
  color: #060d1c;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 9px 28px;
  border-radius: 8px;
}

@media (max-width: 600px) {
  .upcoming-grid { grid-template-columns: 1fr; max-width: 400px; }
}

/* ══════════════════════════════════════════════════
   TESTIMONIALS CAROUSEL
══════════════════════════════════════════════════ */
.testimonials-section {
  padding: 100px 0 80px;
}

.carousel-wrapper {
  position: relative;
  display: flex;
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}

.carousel-track-outer {
  overflow: hidden;
  flex: 1;
  border-radius: var(--radius-lg);
}

.carousel-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.testimonial-slide {
  flex: 0 0 33.333%;
  padding: 0 10px;
  box-sizing: border-box;
}

.slide-inner {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: border-color var(--trans);
}
.slide-inner:hover { border-color: rgba(200,168,75,0.3); }

.slide-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: top center;
  flex-shrink: 0;
}
.slide-photo-initials {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, #1a2d55, #2a4a7f);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(200,168,75,0.9);
  flex-shrink: 0;
}

.slide-content {
  padding: 24px 22px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
  position: relative;
}
.slide-quote-mark {
  font-family: Georgia, serif;
  font-size: 4rem;
  color: var(--gold);
  line-height: 0.6;
  margin-bottom: 10px;
  opacity: 0.6;
}
.slide-text {
  font-size: 0.88rem;
  line-height: 1.78;
  color: var(--text-2);
  flex: 1;
  margin-bottom: 18px;
}
.slide-author {
  border-top: 1px solid var(--border);
  padding-top: 14px;
}
.slide-author strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}
.slide-author span {
  font-size: 0.8rem;
  color: var(--gold);
}

/* Carousel buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(200,168,75,0.12);
  border: 1.5px solid rgba(200,168,75,0.3);
  color: var(--gold);
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--trans), transform var(--trans);
  line-height: 1;
  padding-bottom: 2px;
}
.carousel-btn:hover { background: rgba(200,168,75,0.25); transform: translateY(-50%) scale(1.08); }
.carousel-btn-prev { right: 8px; }
.carousel-btn-next { left: 8px; }

/* Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
}
.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(200,168,75,0.25);
  cursor: pointer;
  transition: background var(--trans), transform var(--trans);
  border: none;
}
.carousel-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

/* Responsive carousel */
@media (max-width: 960px) {
  .testimonial-slide { flex: 0 0 50%; }
}
@media (max-width: 620px) {
  .testimonial-slide { flex: 0 0 100%; }
  .carousel-wrapper { padding: 0 44px; }
}

/* ══════════════════════════════════════════════════
   CONTACT / JOIN
══════════════════════════════════════════════════ */
.contact-section {
  padding: 100px 0;
  background: var(--bg-2);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.3;
}
.contact-text > p {
  color: var(--text-2);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 28px;
}
.contact-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.contact-badges span {
  background: rgba(200,168,75,0.1);
  border: 1px solid rgba(200,168,75,0.25);
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 99px;
}

/* Form */
.join-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-2);
}
.form-group input {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 11px 14px;
  color: var(--text);
  font-size: 0.93rem;
  font-family: 'Heebo', sans-serif;
  direction: rtl;
  transition: border-color var(--trans);
  outline: none;
}
.form-group input:focus { border-color: rgba(200,168,75,0.5); }
.form-group input::placeholder { color: var(--text-3); }

.form-privacy {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-3);
  margin-top: 12px;
}
.form-status {
  margin-top: 14px;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
}
.form-status.success { background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.3); color: #4ade80; }
.form-status.error   { background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.3); color: #f87171; }

@media (max-width: 780px) {
  .contact-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════ */
.site-footer {
  background: #020a15;
  padding: 48px 0 32px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 28px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-2);
}
.footer-links, .footer-legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-links a, .footer-legal a {
  font-size: 0.85rem;
  color: var(--text-3);
  transition: color var(--trans);
}
.footer-links a:hover, .footer-legal a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-3);
}

@media (max-width: 640px) {
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

/* ══════════════════════════════════════════════════
   LOADED ANIMATION
══════════════════════════════════════════════════ */
body { opacity: 0; transition: opacity 0.4s; }
body.loaded { opacity: 1; }
