/* =====================================================
   naif.sa — SEO Expert Website
   Modern Dark Theme with Gold Accents
   ===================================================== */

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

:root {
  --bg-primary: #050810;
  --bg-secondary: #0c1124;
  --bg-card: #0f1629;
  --bg-card-hover: #141d35;
  --gold: #f59e0b;
  --gold-light: #fbbf24;
  --gold-dark: #d97706;
  --purple: #7c3aed;
  --purple-light: #a855f7;
  --blue: #3b82f6;
  --green: #10b981;
  --red: #ef4444;
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #475569;
  --border: rgba(255,255,255,0.07);
  --border-gold: rgba(245,158,11,0.3);
  --glow-gold: 0 0 30px rgba(245,158,11,0.2);
  --glow-gold-strong: 0 0 60px rgba(245,158,11,0.35);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  --font: 'Tajawal', sans-serif;
}

html { scroll-behavior: smooth; }

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

/* --- Scrollbar --- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 99px; }

/* --- Container --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 99px; font-family: var(--font);
  font-size: 1rem; font-weight: 700;
  cursor: pointer; text-decoration: none;
  transition: var(--transition);
  border: none; white-space: nowrap;
}
.btn-lg { padding: 1rem 2.25rem; font-size: 1.1rem; }
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #0a0800;
  box-shadow: 0 4px 20px rgba(245,158,11,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 35px rgba(245,158,11,0.5);
}
.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.2); }
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--border-gold);
}
.btn-outline:hover {
  background: rgba(245,158,11,0.08);
  border-color: var(--gold);
  transform: translateY(-2px);
}

/* --- Typography --- */
.gradient-text {
  background: linear-gradient(135deg, var(--gold), var(--gold-light), #fde68a);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.highlight-text {
  position: relative;
  display: inline-block;
}
.highlight-text::after {
  content: '';
  position: absolute; bottom: -4px; right: 0;
  width: 100%; height: 3px;
  background: linear-gradient(to left, var(--gold), transparent);
  border-radius: 99px;
}
.section-tag {
  display: inline-flex; align-items: center;
  background: rgba(245,158,11,0.1);
  border: 1px solid var(--border-gold);
  color: var(--gold);
  padding: 0.35rem 1rem;
  border-radius: 99px;
  font-size: 0.85rem; font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: 0.3px;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900; line-height: 1.3;
  margin-bottom: 1rem;
}
.section-desc {
  color: var(--text-secondary); font-size: 1.1rem;
  max-width: 600px; margin: 0 auto 3rem;
}
.section-desc:not(.contact-desc) { text-align: center; }

/* ========================
   NAVBAR
   ======================== */
.navbar {
  position: fixed; top: 0; right: 0; left: 0; z-index: 1000;
  padding: 1rem 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(5,8,16,0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0.7rem 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.nav-inner {
  display: flex; align-items: center; gap: 2rem;
}
.logo {
  display: flex; align-items: center; gap: 0.5rem;
  text-decoration: none; flex-shrink: 0;
}
.logo-icon {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 1.1rem;
  color: #0a0800;
}
.logo-text { font-size: 1.1rem; font-weight: 900; color: var(--text-primary); }
.logo-accent { color: var(--gold); }
.nav-links { display: flex; list-style: none; gap: 0.25rem; margin: 0 auto; }
.nav-link {
  color: var(--text-secondary); text-decoration: none;
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius-sm);
  transition: var(--transition); font-size: 0.95rem; font-weight: 500;
}
.nav-link:hover { color: var(--text-primary); background: rgba(255,255,255,0.05); }
.nav-cta { flex-shrink: 0; padding: 0.6rem 1.25rem; font-size: 0.95rem; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 5px; margin-right: auto;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text-primary); border-radius: 99px;
  transition: var(--transition);
}

/* ========================
   HERO
   ======================== */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
  padding: 8rem 0 4rem;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 30%, rgba(245,158,11,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(124,58,237,0.06) 0%, transparent 60%);
}
.hero-particles {
  position: absolute; inset: 0;
  overflow: hidden; pointer-events: none;
}
.particle {
  position: absolute;
  border-radius: 50%;
  animation: float-particle linear infinite;
  opacity: 0;
}
@keyframes float-particle {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.4; }
  100% { transform: translateY(-100px) rotate(720deg); opacity: 0; }
}
.hero-content {
  position: relative; z-index: 1;
  text-align: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(245,158,11,0.08);
  border: 1px solid rgba(245,158,11,0.25);
  color: var(--gold-light);
  padding: 0.4rem 1.1rem; border-radius: 99px;
  font-size: 0.9rem; font-weight: 600;
  margin-bottom: 1.5rem;
}
.badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.7; }
}
.hero-title {
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 1.5rem;
}
.hero-desc {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 580px; margin: 0 auto 2.5rem;
}
.hero-actions {
  display: flex; flex-wrap: wrap; gap: 1rem;
  justify-content: center;
  margin-bottom: 3.5rem;
}
.hero-stats {
  display: flex; flex-wrap: wrap; justify-content: center;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  backdrop-filter: blur(10px);
  max-width: 750px; margin: 0 auto;
}
.stat-item {
  flex: 1; min-width: 140px;
  display: flex; flex-direction: column; align-items: center;
  gap: 0.25rem; padding: 0.5rem 1rem;
}
.stat-number {
  font-size: 2rem; font-weight: 900;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; line-height: 1;
}
.stat-suffix {
  font-size: 1.5rem; font-weight: 900;
  color: var(--gold); line-height: 1;
  margin-top: -0.5rem;
  display: inline-block;
  -webkit-text-fill-color: var(--gold);
}
.stat-label { font-size: 0.8rem; color: var(--text-muted); font-weight: 500; text-align: center; }
.stat-divider { width: 1px; height: 40px; background: var(--border); flex-shrink: 0; }
.hero-scroll { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); }
.scroll-indicator {
  width: 28px; height: 48px;
  border: 2px solid rgba(255,255,255,0.15);
  border-radius: 99px;
  display: flex; justify-content: center;
  padding-top: 8px;
}
.scroll-dot {
  width: 5px; height: 10px;
  background: var(--gold); border-radius: 99px;
  animation: scroll-anim 2s ease-in-out infinite;
}
@keyframes scroll-anim {
  0%, 100% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(14px); opacity: 0; }
}

/* Animations */
.animate-fade-up {
  opacity: 0; transform: translateY(30px);
  animation: fadeUp 0.7s ease forwards;
}
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ========================
   GOOGLE PREVIEW
   ======================== */
.google-preview-section {
  padding: 5rem 0;
  background: linear-gradient(180deg, var(--bg-primary), var(--bg-secondary));
  text-align: center;
}
.google-mockup {
  max-width: 700px; margin: 0 auto;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.05);
  text-align: right;
  direction: rtl;
}
.google-header {
  background: #fff;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #e0e0e0;
  display: flex; align-items: center; gap: 1rem;
}
.google-logo-text {
  font-size: 1.5rem; font-weight: 700;
  font-family: 'Arial', sans-serif;
  background: linear-gradient(90deg, #4285f4, #ea4335, #fbbc05, #34a853);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.google-search-bar {
  flex: 1;
  background: #f8f9fa;
  border: 1px solid #dfe1e5;
  border-radius: 24px;
  padding: 0.5rem 1rem;
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.9rem; color: #202124;
  font-family: Arial, sans-serif; direction: ltr;
}
.search-icon { width: 18px; color: #9aa0a6; }
.search-query { font-size: 0.9rem; color: #202124; }
.cursor-blink { animation: blink 1s step-end infinite; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }
.google-results { padding: 1rem 1.5rem; background: #fff; }
.result-item {
  padding: 1rem 0;
  border-bottom: 1px solid #f0f0f0;
  animation: none;
}
.result-item:last-child { border-bottom: none; }
.result-url {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.8rem; color: #202124;
  font-family: Arial, sans-serif;
  margin-bottom: 0.3rem;
}
.result-favicon { font-size: 0.9rem; }
.result-badge {
  background: #e4f0d9;
  color: #006621;
  padding: 1px 6px; border-radius: 3px;
  font-size: 0.7rem; margin-right: auto;
  font-family: Arial, sans-serif;
}
.result-title-link {
  font-size: 1rem; color: #1a0dab;
  font-family: Arial, sans-serif; cursor: pointer;
  margin-bottom: 0.25rem; font-weight: 400;
}
.result-snippet { font-size: 0.85rem; color: #4d5156; font-family: Arial, sans-serif; line-height: 1.5; }
.result-top .result-title-link { font-weight: 700; color: #1a0dab; }

/* ========================
   ABOUT
   ======================== */
.about-section {
  padding: 6rem 0;
  background: var(--bg-secondary);
}
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.about-visual {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  min-height: 400px;
}
.about-card-3d {
  position: relative; width: 280px; height: 280px;
  display: flex; align-items: center; justify-content: center;
}
.profile-ring {
  position: absolute; inset: -20px;
  border-radius: 50%;
  border: 2px dashed rgba(245,158,11,0.3);
  animation: spin-slow 20s linear infinite;
}
@keyframes spin-slow { to { transform: rotate(360deg); } }
.profile-avatar {
  width: 200px; height: 200px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem; font-weight: 900; color: #0a0800;
  box-shadow: 0 0 60px rgba(245,158,11,0.3), 0 0 120px rgba(245,158,11,0.1);
  position: relative; z-index: 1;
}
.avatar-letter { line-height: 1; }
.floating-badge {
  position: absolute;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.875rem;
  font-size: 0.8rem; font-weight: 700;
  display: flex; align-items: center; gap: 0.4rem;
  white-space: nowrap;
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}
.badge-1 { top: 10%; right: -10%; animation: float1 4s ease-in-out infinite; }
.badge-2 { bottom: 20%; right: -15%; animation: float2 5s ease-in-out infinite; }
.badge-3 { top: 20%; left: -15%; animation: float1 4.5s ease-in-out infinite reverse; }
@keyframes float1 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
@keyframes float2 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(10px)} }

.about-text { color: var(--text-secondary); margin-bottom: 1rem; font-size: 1.05rem; }
.skills-grid { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.skill-item { display: grid; grid-template-columns: 28px 150px 1fr; align-items: center; gap: 0.75rem; }
.skill-icon { font-size: 1.1rem; }
.skill-name { font-size: 0.9rem; font-weight: 600; color: var(--text-secondary); }
.skill-bar { height: 6px; background: rgba(255,255,255,0.07); border-radius: 99px; overflow: hidden; }
.skill-fill {
  height: 100%; width: 0;
  background: linear-gradient(to left, var(--gold), var(--gold-light));
  border-radius: 99px;
  transition: width 1.5s cubic-bezier(0.4,0,0.2,1);
}

/* ========================
   SERVICES
   ======================== */
.services-section { padding: 6rem 0; text-align: center; }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-top: 1rem;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: right;
  position: relative; overflow: hidden;
  transition: var(--transition);
}
.service-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(245,158,11,0.04), transparent);
  opacity: 0; transition: var(--transition);
}
.service-card:hover { transform: translateY(-6px); border-color: rgba(245,158,11,0.2); background: var(--bg-card-hover); box-shadow: var(--glow-gold); }
.service-card:hover::before { opacity: 1; }
.service-card.featured { border-color: var(--border-gold); background: linear-gradient(135deg, rgba(245,158,11,0.05), var(--bg-card)); }
.featured-badge {
  position: absolute; top: 1rem; left: 1rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #0a0800; font-size: 0.75rem; font-weight: 800;
  padding: 0.3rem 0.75rem; border-radius: 99px;
}
.service-icon-wrap {
  width: 56px; height: 56px;
  background: rgba(var(--clr-rgb, 245,158,11), 0.1);
  border: 1px solid rgba(var(--clr-rgb, 245,158,11), 0.2);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--clr, var(--gold));
}
.service-icon-wrap svg { width: 26px; height: 26px; }
.service-title { font-size: 1.1rem; font-weight: 800; margin-bottom: 0.75rem; }
.service-desc { color: var(--text-secondary); font-size: 0.9rem; margin-bottom: 1.25rem; line-height: 1.6; }
.service-features { list-style: none; display: flex; flex-direction: column; gap: 0.45rem; }
.service-features li { font-size: 0.875rem; color: var(--text-secondary); display: flex; align-items: center; gap: 0.4rem; }
.service-features li::before { content: '✓'; color: var(--gold); font-weight: 900; flex-shrink: 0; }

/* ========================
   RESULTS
   ======================== */
.results-section {
  padding: 6rem 0;
  background: var(--bg-secondary);
  text-align: center;
}
.results-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-top: 1rem;
}
.result-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.result-card::after {
  content: '';
  position: absolute; bottom: 0; right: 0; left: 0;
  height: 3px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0; transition: var(--transition);
}
.result-card:hover { transform: translateY(-5px); border-color: var(--border-gold); box-shadow: var(--glow-gold); }
.result-card:hover::after { opacity: 1; }
.result-icon { font-size: 2.5rem; margin-bottom: 0.75rem; }
.result-industry { font-size: 0.85rem; color: var(--text-muted); font-weight: 600; margin-bottom: 1.25rem; }
.result-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.result-metric { display: flex; flex-direction: column; gap: 0.25rem; }
.metric-value { font-size: 1.5rem; font-weight: 900; }
.metric-value.positive { color: var(--green); }
.metric-label { font-size: 0.8rem; color: var(--text-muted); }
.result-time {
  background: rgba(245,158,11,0.08);
  border: 1px solid var(--border-gold);
  color: var(--gold-light); font-size: 0.8rem; font-weight: 700;
  padding: 0.35rem 0.875rem; border-radius: 99px;
  display: inline-block;
}
.result-domain {
  color: var(--gold-light); font-weight: 700;
  font-size: 0.82rem;
}
.testimonial-site-badge {
  margin-bottom: 0.75rem;
}
.testimonial-site-badge a {
  display: inline-flex; align-items: center; gap: 0.35rem;
  background: rgba(245,158,11,0.08);
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  padding: 0.25rem 0.75rem; border-radius: 99px;
  font-size: 0.8rem; font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
}
.testimonial-site-badge a:hover {
  background: rgba(245,158,11,0.18);
  color: var(--gold);
}

/* ========================
   PRICING
   ======================== */
.pricing-section { padding: 6rem 0; text-align: center; }
.pricing-toggle {
  display: flex; align-items: center; justify-content: center;
  gap: 0.875rem; margin-bottom: 3rem;
  font-size: 0.95rem; font-weight: 600;
}
.toggle-switch { position: relative; width: 52px; height: 28px; }
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-slider {
  position: absolute; cursor: pointer;
  inset: 0;
  background: rgba(255,255,255,0.1);
  border-radius: 99px;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.toggle-slider::before {
  content: '';
  position: absolute; left: 3px; top: 3px;
  width: 20px; height: 20px;
  background: var(--gold);
  border-radius: 50%;
  transition: var(--transition);
}
input:checked + .toggle-slider { background: rgba(245,158,11,0.15); }
input:checked + .toggle-slider::before { transform: translateX(24px); }
.save-badge {
  background: var(--green); color: #fff;
  font-size: 0.7rem; padding: 0.2rem 0.5rem;
  border-radius: 99px; font-weight: 800;
}
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; align-items: stretch;
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.75rem;
  position: relative; overflow: hidden;
  transition: var(--transition);
  display: flex; flex-direction: column;
}
.pricing-card:hover { transform: translateY(-6px); border-color: var(--border-gold); box-shadow: var(--glow-gold); }
.pricing-card.popular {
  border-color: var(--gold);
  background: linear-gradient(160deg, rgba(245,158,11,0.08) 0%, var(--bg-card) 50%);
  box-shadow: var(--glow-gold);
}
.popular-badge {
  position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #0a0800; font-size: 0.8rem; font-weight: 900;
  padding: 0.35rem 1.25rem; border-radius: 0 0 12px 12px;
  white-space: nowrap;
}
.plan-name { font-size: 1.1rem; font-weight: 800; color: var(--text-secondary); margin-bottom: 1rem; }
.plan-price {
  display: flex; align-items: baseline; gap: 0.3rem;
  margin-bottom: 0.5rem;
}
.currency { font-size: 1.5rem; color: var(--gold); font-weight: 900; }
.amount { font-size: 3rem; font-weight: 900; line-height: 1; }
.period { font-size: 0.9rem; color: var(--text-muted); }
.plan-desc { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.plan-features {
  list-style: none; display: flex; flex-direction: column;
  gap: 0.65rem; flex: 1; margin-bottom: 1.75rem;
}
.plan-features li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; }
.plan-features li svg { width: 17px; height: 17px; flex-shrink: 0; }
.plan-features li.included svg { color: var(--green); }
.plan-features li.excluded { color: var(--text-muted); text-decoration: line-through; opacity: 0.6; }
.plan-features li.excluded svg { color: var(--text-muted); }
.plan-btn { width: 100%; justify-content: center; }
.pricing-note { color: var(--text-muted); font-size: 0.9rem; margin-top: 2rem; }

/* ========================
   TESTIMONIALS
   ======================== */
.testimonials-section {
  padding: 6rem 0;
  background: var(--bg-secondary);
  text-align: center; overflow: hidden;
}
.testimonials-track {
  display: flex; gap: 1.5rem;
  padding-bottom: 1rem;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.testimonial-card {
  min-width: calc(33.333% - 1rem);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: right;
  transition: var(--transition);
  flex-shrink: 0;
}
.testimonial-card:hover { border-color: var(--border-gold); transform: translateY(-4px); }
.stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; margin-bottom: 1rem; }
.testimonial-text { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.7; margin-bottom: 1.5rem; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 900; color: #0a0800;
  flex-shrink: 0;
}
.author-name { font-weight: 700; font-size: 0.95rem; }
.author-title { font-size: 0.8rem; color: var(--text-muted); }
.testimonials-nav {
  display: flex; align-items: center; justify-content: center;
  gap: 1rem; margin-top: 2rem;
}
.nav-btn {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--transition); color: var(--text-secondary);
}
.nav-btn svg { width: 18px; }
.nav-btn:hover { background: rgba(245,158,11,0.1); border-color: var(--border-gold); color: var(--gold); }
.testimonials-dots { display: flex; gap: 0.4rem; }
.dot {
  width: 8px; height: 8px; border-radius: 99px;
  background: var(--border); cursor: pointer;
  transition: var(--transition);
}
.dot.active { background: var(--gold); width: 24px; }

/* ========================
   FAQ
   ======================== */
.faq-section { padding: 6rem 0; text-align: center; }
.faq-list { max-width: 750px; margin: 2rem auto 0; text-align: right; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.75rem; overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover { border-color: var(--border-gold); }
.faq-item.open { border-color: var(--border-gold); background: rgba(245,158,11,0.03); }
.faq-question {
  width: 100%; background: none; border: none;
  padding: 1.25rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer; font-family: var(--font);
  font-size: 1rem; font-weight: 700;
  color: var(--text-primary); text-align: right; gap: 1rem;
}
.faq-icon { width: 20px; flex-shrink: 0; transition: transform 0.3s ease; color: var(--gold); }
.faq-item.open .faq-icon { transform: rotate(180deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), padding 0.3s;
}
.faq-answer.open { max-height: 200px; }
.faq-answer p { padding: 0 1.5rem 1.25rem; color: var(--text-secondary); font-size: 0.95rem; line-height: 1.7; }

/* ========================
   CONTACT
   ======================== */
.contact-section {
  padding: 6rem 0;
  background: var(--bg-secondary);
}
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.contact-desc { color: var(--text-secondary); margin-bottom: 2.5rem; font-size: 1.05rem; }
.contact-methods { display: flex; flex-direction: column; gap: 1rem; }
.contact-method {
  display: flex; align-items: center; gap: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  text-decoration: none; color: var(--text-primary);
  transition: var(--transition);
}
.contact-method:hover { border-color: var(--border-gold); transform: translateX(-4px); box-shadow: var(--glow-gold); }
.contact-method-icon {
  width: 46px; height: 46px; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-method-icon svg { width: 22px; height: 22px; color: #fff; }
.contact-method-name { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 0.1rem; }
.contact-method-value { font-weight: 700; font-size: 0.95rem; }

.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
}
.form-title { font-size: 1.3rem; font-weight: 800; margin-bottom: 1.75rem; text-align: center; }
.form-group { margin-bottom: 1.1rem; }
.form-label { display: block; font-size: 0.875rem; font-weight: 600; color: var(--text-secondary); margin-bottom: 0.4rem; }
.form-input {
  width: 100%; background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 0.75rem 1rem;
  font-family: var(--font); font-size: 0.95rem;
  color: var(--text-primary); transition: var(--transition);
  direction: rtl;
}
.form-input::placeholder { color: var(--text-muted); }
.form-input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(245,158,11,0.1);
  background: rgba(245,158,11,0.03);
}
.form-select { cursor: pointer; }
.form-select option { background: var(--bg-card); }
.form-textarea { resize: vertical; min-height: 90px; }
.form-submit { width: 100%; justify-content: center; margin-top: 0.5rem; }
.btn-icon { width: 18px; transition: transform 0.3s; }
.btn:hover .btn-icon { transform: translateX(-4px); }
.form-note { text-align: center; font-size: 0.8rem; color: var(--text-muted); margin-top: 0.75rem; }

/* ========================
   FOOTER
   ======================== */
.footer {
  background: var(--bg-primary);
  border-top: 1px solid var(--border);
  padding: 3rem 0;
}
.footer-inner { text-align: center; }
.footer-logo { display: flex; align-items: center; justify-content: center; gap: 0.5rem; margin-bottom: 0.75rem; }
.footer-desc { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1.5rem; }
.footer-links { display: flex; justify-content: center; gap: 1.5rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
.footer-links a { color: var(--text-secondary); text-decoration: none; font-size: 0.9rem; transition: var(--transition); }
.footer-links a:hover { color: var(--gold); }
.footer-copy { color: var(--text-muted); font-size: 0.8rem; }

/* ========================
   SCROLL TO TOP
   ======================== */
.scroll-top {
  position: fixed; bottom: 2rem; left: 2rem;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(20px);
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(245,158,11,0.4);
  z-index: 999;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(245,158,11,0.5); }
.scroll-top svg { width: 20px; color: #0a0800; }

/* ========================
   RESPONSIVE
   ======================== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .results-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; inset: 0; top: 70px;
    background: rgba(5,8,16,0.98); backdrop-filter: blur(20px);
    padding: 2rem;
    z-index: 999;
    align-items: center; gap: 0.5rem;
  }
  .nav-links.open .nav-link { font-size: 1.2rem; padding: 1rem; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-visual { min-height: 300px; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .services-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 0.5rem; padding: 1rem; }
  .stat-divider { display: none; }
  .stat-item { min-width: auto; padding: 0.5rem; }
  .testimonial-card { min-width: 85vw; }
  .floating-badge { display: none; }
  .badge-1, .badge-2, .badge-3 { display: none; }
  .hero-title { font-size: 2.2rem; }
}

@media (max-width: 480px) {
  .section-title { font-size: 1.8rem; }
  .hero-title { font-size: 1.9rem; }
  .hero-desc { font-size: 1rem; }
  .hero-actions .btn-lg { padding: 0.875rem 1.5rem; font-size: 1rem; }
}

/* ========================
   SCROLL ANIMATIONS
   ======================== */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
