/* ============================================
   GLORY PRO — Free Fire Glory Boost Service
   Dark Gaming Theme
   ============================================ */

:root {
  --bg-dark: #0b0e17;
  --bg-card: #131829;
  --bg-card-hover: #1a2038;
  --border: #1e2744;
  --text: #e4e8f1;
  --text-muted: #8892a8;
  --primary: #ff6a00;
  --primary-glow: rgba(255, 106, 0, 0.35);
  --gold: #ffd700;
  --gold-glow: rgba(255, 215, 0, 0.25);
  --green: #25d366;
  --green-glow: rgba(37, 211, 102, 0.3);
  --purple: #7c3aed;
  --gradient-hero: linear-gradient(135deg, #ff6a00 0%, #ff9a44 50%, #ffd700 100%);
  --gradient-card: linear-gradient(180deg, #1a2038 0%, #131829 100%);
  --font: 'Cairo', 'Inter', sans-serif;
  --radius: 16px;
  --radius-sm: 10px;
}

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

body {
  font-family: var(--font);
  background: var(--bg-dark);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

body[dir="ltr"] {
  font-family: 'Inter', 'Cairo', sans-serif;
}

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

/* ============ NAVBAR ============ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.3s ease;
  background: rgba(11, 14, 23, 0.7);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  background: rgba(11, 14, 23, 0.95);
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
}

.logo-highlight {
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 28px;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; right: 0;
  width: 0; height: 2px;
  background: var(--primary);
  transition: width 0.3s;
}

.nav-links a:hover { color: var(--primary); }
.nav-links a:hover::after { width: 100%; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-toggle {
  background: rgba(255, 106, 0, 0.1);
  border: 1px solid rgba(255, 106, 0, 0.3);
  color: var(--primary);
  padding: 6px 16px;
  border-radius: 50px;
  font-family: var(--font);
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
}

.lang-toggle:hover {
  background: var(--primary);
  color: #fff;
}

.lang-toggle .lang-en { display: none; }
body[dir="ltr"] .lang-toggle .lang-ar { display: none; }
body[dir="ltr"] .lang-toggle .lang-en { display: inline; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  width: 26px; height: 3px;
  background: var(--text);
  border-radius: 3px;
  transition: all 0.3s;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero-bg-glow {
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  animation: pulse-glow 4s ease-in-out infinite alternate;
}

.hero-bg-glow.glow-2 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.15) 0%, transparent 70%);
  top: auto; bottom: 10%;
  left: 10%;
  transform: none;
  animation-delay: 2s;
}

@keyframes pulse-glow {
  from { opacity: 0.5; transform: translateX(-50%) scale(1); }
  to { opacity: 1; transform: translateX(-50%) scale(1.15); }
}

.hero-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 106, 0, 0.12);
  color: var(--primary);
  border: 1px solid rgba(255, 106, 0, 0.25);
  padding: 8px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.8rem;
  margin-bottom: 28px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 24px;
}

.highlight {
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto 32px;
}

.hero-sub strong { color: var(--text); }

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-ff-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 211, 102, 0.08);
  border: 1px solid rgba(37, 211, 102, 0.2);
  color: var(--green);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 48px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  gap: 8px;
}

.btn-lg { padding: 16px 40px; font-size: 1.05rem; }

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 25px var(--primary-glow);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 35px var(--primary-glow);
}

.btn-whatsapp {
  background: var(--green);
  color: #fff;
  box-shadow: 0 4px 25px var(--green-glow);
}
.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 35px var(--green-glow);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, #ffaa00 100%);
  color: #1a1a2e;
  box-shadow: 0 4px 25px var(--gold-glow);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 35px var(--gold-glow);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

.btn-premium {
  background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
  color: #fff;
  box-shadow: 0 4px 25px rgba(124, 58, 237, 0.3);
}
.btn-premium:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 35px rgba(124, 58, 237, 0.4);
}

.btn-full { width: 100%; }

/* Stats */
.hero-stats {
  display: flex;
  gap: 60px;
  justify-content: center;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-num {
  font-size: 2.5rem;
  font-weight: 900;
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-plus {
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 4px;
}

/* ============ SECTIONS ============ */
.section-title {
  text-align: center;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  margin-bottom: 12px;
}

.section-desc {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 60px;
}

/* ============ ABOUT / STEPS ============ */
.about { padding: 100px 0; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.step-card {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.step-card:hover {
  border-color: var(--primary);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(255, 106, 0, 0.1);
}

.step-num {
  position: absolute;
  top: -18px; right: 32px;
  width: 36px; height: 36px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
}

.step-icon {
  margin-bottom: 20px;
  color: var(--primary);
}

.step-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.step-card p {
  color: var(--text-muted);
  font-size: 0.93rem;
}

/* ============ FF INFO ============ */
.ff-info {
  padding: 0 0 80px;
}

.ff-card {
  background: linear-gradient(135deg, rgba(255, 106, 0, 0.08) 0%, rgba(255, 215, 0, 0.05) 100%);
  border: 1px solid rgba(255, 106, 0, 0.2);
  border-radius: var(--radius);
  padding: 48px 40px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.ff-card-icon {
  margin-bottom: 16px;
  color: var(--primary);
}

.ff-card h2 {
  font-size: 1.6rem;
  font-weight: 900;
  margin-bottom: 16px;
}

.ff-card p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.9;
}

/* ============ PRICING ============ */
.pricing {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bg-dark) 0%, #0d1220 100%);
}

.pricing-grid-2x2 {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.price-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.price-card {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.price-card:hover {
  border-color: rgba(255, 106, 0, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.price-card.featured {
  border-color: var(--primary);
  background: linear-gradient(180deg, rgba(255, 106, 0, 0.06) 0%, var(--bg-card) 100%);
  box-shadow: 0 0 40px rgba(255, 106, 0, 0.08);
}

.price-card.featured:hover {
  box-shadow: 0 16px 48px rgba(255, 106, 0, 0.15);
}

.price-card.premium {
  border-color: var(--purple);
  background: linear-gradient(180deg, rgba(124, 58, 237, 0.06) 0%, var(--bg-card) 100%);
  box-shadow: 0 0 40px rgba(124, 58, 237, 0.06);
}

.price-card.premium:hover {
  border-color: #a855f7;
  box-shadow: 0 16px 48px rgba(124, 58, 237, 0.12);
}

.price-popular {
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--primary);
  color: #fff;
  padding: 3px 16px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  white-space: nowrap;
}

body[dir="ltr"] .price-popular {
  right: auto;
  left: 24px;
}

.price-premium-tag {
  position: absolute;
  top: -12px;
  right: 24px;
  background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
  color: #fff;
  padding: 3px 16px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  white-space: nowrap;
}

body[dir="ltr"] .price-premium-tag {
  right: auto;
  left: 24px;
}

.price-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.price-gloriy {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.2;
}

.price-gloriy span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
}

.price-divider {
  width: 100%;
  height: 1px;
  background: var(--border);
  margin-bottom: 16px;
}

.price-features {
  list-style: none;
  margin-bottom: 24px;
  flex: 1;
}

body[dir="ltr"] .price-features { text-align: left; }

.price-features li {
  padding: 7px 0;
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.price-features li:last-child { border-bottom: none; }

.check {
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
  font-size: 0.9rem;
}

.price-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.price-tag-price {
  font-size: 2rem;
  font-weight: 900;
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  white-space: nowrap;
}

.price-card.featured .price-tag-price {
  background: linear-gradient(135deg, var(--gold) 0%, #ffaa00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.price-card.premium .price-tag-price {
  background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.price-bottom .btn {
  padding: 10px 24px;
  font-size: 0.85rem;
}

/* ============ PAYMENT ============ */
.payment { padding: 100px 0; }

.payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.payment-card {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: all 0.3s ease;
}

.payment-card:hover {
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

.payment-icon-wrap {
  width: 72px; height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.payment-icon-wrap.egypt {
  background: rgba(37, 211, 102, 0.08);
  color: var(--green);
  border: 2px solid rgba(37, 211, 102, 0.2);
}

.payment-icon-wrap.intl {
  background: rgba(124, 58, 237, 0.08);
  color: var(--purple);
  border: 2px solid rgba(124, 58, 237, 0.2);
}

.payment-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.payment-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.payment-tag {
  display: inline-block;
  background: rgba(37, 211, 102, 0.1);
  color: var(--green);
  padding: 4px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
}

.payment-tag.intl-tag {
  background: rgba(124, 58, 237, 0.1);
  color: #a78bfa;
}

/* ============ FAQ ============ */
.faq {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bg-dark) 0%, #0d1220 100%);
}

.faq-list {
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq-item.active { border-color: var(--primary); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  text-align: right;
  direction: rtl;
  gap: 12px;
}

body[dir="ltr"] .faq-question {
  text-align: left;
  direction: ltr;
}

.faq-question span:first-child { flex: 1; }

.faq-arrow {
  font-size: 0.7rem;
  color: var(--primary);
  transition: transform 0.3s;
}

.faq-item.active .faq-arrow { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer { max-height: 200px; }

.faq-answer p {
  padding: 0 24px 20px;
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.8;
}

/* ============ CONTACT ============ */
.contact { padding: 100px 0; }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 700px;
  margin: 0 auto;
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 40px 28px;
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--text);
  transition: all 0.3s ease;
}

.contact-card:hover { transform: translateY(-6px); }

.whatsapp-card { border-color: rgba(37, 211, 102, 0.2); }
.whatsapp-card:hover {
  border-color: var(--green);
  box-shadow: 0 20px 60px rgba(37, 211, 102, 0.12);
}
.whatsapp-card svg { color: var(--green); }

.instagram-card { border-color: rgba(124, 58, 237, 0.2); }
.instagram-card:hover {
  border-color: #c084fc;
  box-shadow: 0 20px 60px rgba(124, 58, 237, 0.12);
}
.instagram-card svg { color: #c084fc; }

.contact-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
}

.contact-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 600;
  direction: ltr;
}

/* ============ FOOTER ============ */
.footer {
  padding: 36px 0;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-brand {
  font-size: 1.3rem;
  font-weight: 900;
  margin-bottom: 8px;
}

.footer-brand span {
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-content p {
  color: var(--text-muted);
  font-size: 0.82rem;
}

/* ============ SCROLL ANIMATIONS ============ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ LTR ============ */
body[dir="ltr"] .nav-links a::after {
  right: auto;
  left: 0;
}

body[dir="ltr"] .step-num {
  right: auto;
  left: 32px;
}

/* ============ MOBILE ============ */
@media (max-width: 700px) {
  .price-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    height: 100vh;
    background: rgba(11, 14, 23, 0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    transition: right 0.3s ease;
    backdrop-filter: blur(20px);
    border-left: 1px solid var(--border);
  }

  body[dir="ltr"] .nav-links {
    right: auto;
    left: -100%;
    border-left: none;
    border-right: 1px solid var(--border);
  }

  body[dir="ltr"] .nav-links.open { left: 0; }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 1.15rem; }

  .hamburger { display: flex; z-index: 1001; }

  .hero h1 { font-size: 2.2rem; }
  .hero-stats { gap: 32px; }
  .stat-num { font-size: 2rem; }
  .steps-grid { grid-template-columns: 1fr; }
  .payment-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .ff-card { padding: 32px 24px; }
  .price-bottom { flex-direction: column; gap: 12px; }
  .price-bottom .btn { width: 100%; }
}

@media (max-width: 480px) {
  .btn-lg { padding: 14px 28px; font-size: 0.95rem; }
  .hero { padding: 100px 0 60px; }
  .section-title { font-size: 1.6rem; }
  .price-amount { font-size: 2.8rem; }
}
