:root {
  --primary: #55B9F4;
  --primary-dark: #002D56;
  --primary-light: #EBF4FF;
  --accent: #FF6B35;
  --accent-light: #FFF0E8;
  --dark: #1A1A2E;
  --dark-soft: #2D2D44;
  --text: #333340;
  --text-light: #6B6B80;
  --bg: #FAFBFD;
  --white: #FFFFFF;
  --gold: #D4A843;
  --gold-light: #FFF8E7;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  --radius: 16px;
  --radius-sm: 10px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Heebo', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  direction: rtl;
}
.en { font-family: 'Poppins', sans-serif; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-family: 'Heebo', sans-serif;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}
.btn-primary { background: var(--primary); color: white; box-shadow: 0 4px 15px rgba(85,185,244,0.3); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); }
.btn-accent { background: var(--accent); color: white; box-shadow: 0 4px 15px rgba(255,107,53,0.3); }
.btn-accent:hover { background: #e55a28; transform: translateY(-2px); }
.btn-lg { font-size: 18px; padding: 16px 36px; }
.btn-disabled { opacity: 0.5; cursor: not-allowed; pointer-events: none; }

/* === Sticky mobile CTA bar (mobile only, appears after hero scroll) === */
.sticky-cta {
  position: fixed;
  inset: auto 0 0 0;
  background: linear-gradient(135deg, #0d3b66 0%, #1e5a8e 100%);
  color: #fff;
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
  transform: translateY(100%);
  transition: transform 0.3s ease;
  z-index: 100;
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta__text { font-size: 14px; font-weight: 600; flex: 1; }
.sticky-cta__btn {
  background: #fcd34d;
  color: #0d3b66;
  border: none;
  border-radius: 8px;
  padding: 10px 18px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  font-size: 14px;
  white-space: nowrap;
}
.sticky-cta__btn:hover { background: #fbbf24; }
@media (min-width: 768px) {
  .sticky-cta { display: none !important; }
}
