/* landing.css — Arabic RTL landing page styles */

html {
  scroll-behavior: smooth;
}

body.landing {
  font-family: 'Cairo', 'Segoe UI', Arial, sans-serif;
}

/* ── Hero gradient ────────────────────────────────────────────────────── */
.hero-gradient {
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(99, 102, 241, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 90% 80%, rgba(16, 185, 129, 0.06) 0%, transparent 50%),
    #0f172a;
}

/* ── Section alternating background ──────────────────────────────────── */
.section-alt {
  background: linear-gradient(180deg, #0d1424 0%, #0f172a 100%);
}

/* ── Sticky navbar ────────────────────────────────────────────────────── */
.navbar {
  background-color: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.navbar-scrolled {
  background-color: rgba(15, 23, 42, 0.98);
  box-shadow: 0 1px 0 rgba(99, 102, 241, 0.12);
}

/* ── Tool cards ───────────────────────────────────────────────────────── */
.tool-card {
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.tool-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
  border-color: rgba(99, 102, 241, 0.38);
}

/* ── Status badges ────────────────────────────────────────────────────── */
.badge-available {
  background: rgba(22, 163, 74, 0.15);
  color: #4ade80;
  border: 1px solid rgba(22, 163, 74, 0.3);
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.75rem;
  border-radius: 9999px;
}

.badge-soon {
  background: rgba(100, 116, 139, 0.18);
  color: #94a3b8;
  border: 1px solid rgba(100, 116, 139, 0.28);
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.75rem;
  border-radius: 9999px;
}

/* ── How-it-works step numbers ────────────────────────────────────────── */
.step-number {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  width: 3rem;
  height: 3rem;
  min-width: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.125rem;
  color: #fff;
  box-shadow: 0 4px 14px rgba(99, 102, 241, 0.4);
}

/* ── Package cards ────────────────────────────────────────────────────── */
.package-card {
  background: rgba(30, 41, 59, 0.55);
  border: 1px solid rgba(71, 85, 105, 0.4);
  border-radius: 1.25rem;
  padding: 2rem;
  transition: border-color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}
.package-card:hover {
  border-color: rgba(99, 102, 241, 0.32);
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
}

/* Tool name pill inside package */
.tool-tag {
  display: inline-flex;
  align-items: center;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.2);
  color: #a5b4fc;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.78rem;
  font-weight: 600;
}

/* ── Payment cards ────────────────────────────────────────────────────── */
.payment-card {
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid rgba(71, 85, 105, 0.38);
  border-radius: 1rem;
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.payment-card:hover {
  border-color: rgba(99, 102, 241, 0.25);
  transform: translateY(-2px);
}

/* ── FAQ accordion ────────────────────────────────────────────────────── */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s ease;
}
.faq-icon {
  transition: transform 0.28s ease;
  flex-shrink: 0;
  font-size: 1.35rem;
  line-height: 1;
  color: #818cf8;
  font-weight: 300;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

/* ── Contact buttons ──────────────────────────────────────────────────── */
.contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  border-radius: 0.875rem;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  text-decoration: none;
}
.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}
.contact-btn-instagram {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #fff;
}
.contact-btn-telegram {
  background: #229ed9;
  color: #fff;
}

/* ── Mobile navbar menu ───────────────────────────────────────────────── */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.75rem 1rem 1rem;
  background: rgba(13, 20, 36, 0.98);
  border-top: 1px solid rgba(71, 85, 105, 0.3);
}
.mobile-menu.open {
  display: flex;
}

@media (min-width: 768px) {
  .mobile-menu-btn { display: none !important; }
}

/* ── Pulse animation for "live" dot ──────────────────────────────────── */
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.5; }
}
.pulse-dot {
  animation: pulse-dot 1.8s ease-in-out infinite;
}

/* ── Hero title two-tier sizing ───────────────────────────────────────── */
.hero-title {
  font-weight: 900;
  color: white;
}
.hero-line-1 {
  display: block;
  font-size: clamp(2.3rem, 6vw, 3.8rem);
  line-height: 1.1;
}
.hero-line-2 {
  display: block;
  font-size: clamp(1.4rem, 3.8vw, 2.4rem);
  font-weight: 700;
  color: #cbd5e1;
  line-height: 1.15;
  margin-top: 0.15em;
}

/* ── Hero feature micro-pills ──────────────────────────────────────────── */
.feat-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(99,102,241,0.08);
  border: 1px solid rgba(99,102,241,0.18);
  color: #c7d2fe;
  padding: 0.35rem 0.9rem;
  border-radius: 9999px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* ── Trust strip ───────────────────────────────────────────────────────── */
.trust-strip {
  border-top: 1px solid rgba(71,85,105,0.25);
  border-bottom: 1px solid rgba(71,85,105,0.25);
  background: rgba(13,20,36,0.45);
}

.trust-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #475569;
}

.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.85rem;
  border-radius: 9999px;
  font-size: 0.78rem;
  font-weight: 600;
  border: 1px solid;
  white-space: nowrap;
  transition: opacity 0.18s ease, transform 0.18s ease;
}
.trust-chip:hover { opacity: 0.75; transform: translateY(-1px); }

.trust-chip-orange   { background: rgba(249,115,22,0.09);  color: #fb923c; border-color: rgba(249,115,22,0.22); }
.trust-chip-teal     { background: rgba(20,184,166,0.09);  color: #2dd4bf; border-color: rgba(20,184,166,0.22); }
.trust-chip-purple   { background: rgba(139,92,246,0.09);  color: #a78bfa; border-color: rgba(139,92,246,0.22); }
.trust-chip-blue     { background: rgba(59,130,246,0.09);  color: #60a5fa; border-color: rgba(59,130,246,0.22); }
.trust-chip-cyan     { background: rgba(6,182,212,0.09);   color: #22d3ee; border-color: rgba(6,182,212,0.22);  }
.trust-chip-sky      { background: rgba(14,165,233,0.09);  color: #38bdf8; border-color: rgba(14,165,233,0.22); }
.trust-chip-green    { background: rgba(34,197,94,0.09);   color: #4ade80; border-color: rgba(34,197,94,0.22);  }
.trust-chip-darkblue { background: rgba(37,99,235,0.09);   color: #93c5fd; border-color: rgba(37,99,235,0.22);  }
.trust-chip-neutral  { background: rgba(71,85,105,0.12);   color: #94a3b8; border-color: rgba(71,85,105,0.28);  }

/* ── Logo tiles (image-based trust strip) ────────────────────────────── */
.logo-tile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: rgba(30, 41, 59, 0.65);
  border: 1px solid rgba(71, 85, 105, 0.32);
  border-radius: 0.875rem;
  padding: 0.6rem 1.1rem;
  transition: border-color 0.2s ease, background 0.2s ease;
  min-width: 68px;
}
.logo-tile:hover {
  border-color: rgba(99, 102, 241, 0.3);
  background: rgba(30, 41, 59, 0.9);
}
.logo-img {
  height: 26px;
  width: auto;
  max-width: 136px;
  object-fit: contain;
  display: block;
}
.logo-img-icon {
  height: 22px;
  width: auto;
  object-fit: contain;
}
