/* =====================
   RESET & CSS VARIABLES
===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cyan: #00b4d8;
  --cyan-light: #48cae4;
  --cyan-dark: #0077b6;
  --navy: #03045e;
  --dark: #060c1a;
  --dark2: #0a1428;
  --dark3: #0f1e38;
  --dark4: #162447;
  --white: #ffffff;
  --off-white: #f0f4f8;
  --text-muted: #7a8fa6;
  --text-light: #b8cad9;
  --border: rgba(0,180,216,0.15);
  --border-light: rgba(255,255,255,0.08);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --shadow: 0 10px 40px rgba(0,0,0,0.4);
  --shadow-cyan: 0 4px 24px rgba(0,180,216,0.3);
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Tajawal', sans-serif;
  background: var(--off-white);
  color: var(--dark);
  direction: rtl;
  text-align: right;
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

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

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

.section { padding: 96px 0; }

/* =====================
   SCROLL REVEAL
===================== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--delay, 0s);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =====================
   TYPOGRAPHY SYSTEM
===================== */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
  position: relative;
  padding-right: 20px;
}
.eyebrow::before {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 2px;
  background: var(--cyan);
}
.eyebrow.light { color: var(--cyan-light); }
.eyebrow.light::before { background: var(--cyan-light); }

.section-heading {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-heading.light { color: var(--white); }

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header .eyebrow {
  display: inline-flex;
  padding-right: 0;
  padding-left: 20px;
}
.section-header .eyebrow::before {
  right: auto;
  left: 0;
}
.section-sub {
  color: var(--text-muted);
  font-size: 16px;
  max-width: 560px;
  margin: 0 auto;
}

/* =====================
   NAVBAR
===================== */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(6,12,26,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(6,12,26,0.98);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  text-decoration: none;
}

.logo-img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 10px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.logo-main {
  font-size: 18px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.5px;
}

.logo-sub {
  font-size: 11px;
  color: var(--cyan);
  font-weight: 500;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 4px;
  align-items: center;
}

.nav-links a {
  color: var(--text-light);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--cyan);
  background: rgba(0,180,216,0.1);
}

.btn-whatsapp {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  transition: var(--transition);
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(37,211,102,0.3);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 1px solid var(--border);
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--cyan);
  transition: var(--transition);
  transform-origin: center;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =====================
   HERO
===================== */
.hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(145deg, #030712 0%, #060c1a 40%, #030d1f 70%, #020810 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 76px;
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}
.hero-glow-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0,119,182,0.2) 0%, transparent 70%);
  top: -100px;
  left: -100px;
  animation: pulse-glow 6s ease-in-out infinite;
}
.hero-glow-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0,180,216,0.12) 0%, transparent 70%);
  bottom: 0;
  right: 15%;
  animation: pulse-glow 8s ease-in-out infinite 2s;
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 0 60px;
  max-width: 620px;
}

.hero-badge-top {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,180,216,0.12);
  border: 1px solid rgba(0,180,216,0.25);
  color: var(--cyan-light);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: #25D366;
  border-radius: 50%;
  display: block;
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0.4); }
  50% { box-shadow: 0 0 0 8px rgba(37,211,102,0); }
}

.hero-title {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
}

.title-line-1 {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -1px;
}

.title-line-2 {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -1px;
}

.title-line-2 em {
  font-style: normal;
  color: transparent;
  background: linear-gradient(135deg, var(--cyan), var(--cyan-light));
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-sub {
  font-size: 17px;
  color: var(--text-light);
  margin-bottom: 40px;
  line-height: 1.9;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--cyan-dark), var(--cyan));
  color: var(--white);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 15px;
  transition: var(--transition);
  box-shadow: var(--shadow-cyan);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(0,180,216,0.45);
  background: linear-gradient(135deg, var(--cyan), var(--cyan-light));
}

.btn-outline-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 2px solid rgba(255,255,255,0.2);
  color: var(--white);
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.btn-outline-hero:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  background: rgba(0,180,216,0.08);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 28px;
}

.trust-item { display: flex; flex-direction: column; }
.trust-item strong {
  font-size: 22px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.trust-item span { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.trust-sep { width: 1px; height: 36px; background: var(--border-light); }

/* Hero Logo Float */
.hero-logo-float {
  position: absolute;
  left: 8%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo-img {
  width: 260px;
  height: 260px;
  object-fit: contain;
  position: relative;
  z-index: 2;
  animation: float 6s ease-in-out infinite;
  filter: drop-shadow(0 0 40px rgba(0,180,216,0.3));
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-12px) rotate(1deg); }
  66% { transform: translateY(-6px) rotate(-1deg); }
}

.logo-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(0,180,216,0.2);
  animation: ring-pulse 3s ease-in-out infinite;
}
.logo-ring-1 { width: 310px; height: 310px; animation-delay: 0s; }
.logo-ring-2 { width: 380px; height: 380px; animation-delay: 0.5s; border-color: rgba(0,180,216,0.12); }
.logo-ring-3 { width: 450px; height: 450px; animation-delay: 1s; border-color: rgba(0,180,216,0.06); }

@keyframes ring-pulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.03); opacity: 1; }
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 12px;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--cyan));
  animation: scroll-bounce 2s ease-in-out infinite;
}
@keyframes scroll-bounce {
  0%, 100% { transform: scaleY(1); opacity: 0.6; }
  50% { transform: scaleY(1.3); opacity: 1; }
}

/* =====================
   FEATURES STRIP
===================== */
.features-strip {
  background: var(--dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.features-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px 0;
  color: var(--text-light);
  flex: 1;
  min-width: 200px;
}

.feature-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(0,180,216,0.12);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  font-size: 18px;
  flex-shrink: 0;
}

.feature-item strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
}

.feature-item span {
  font-size: 12px;
  color: var(--text-muted);
}

.feature-sep {
  width: 1px;
  height: 50px;
  background: var(--border);
  margin: 0 16px;
  flex-shrink: 0;
}

/* =====================
   ABOUT
===================== */
.about { background: var(--off-white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 70px;
  align-items: center;
}

.about-text .section-heading { margin-bottom: 20px; }

.about-text p {
  color: #4a5568;
  font-size: 16px;
  line-height: 1.9;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.stat-card {
  background: white;
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border: 1px solid rgba(0,0,0,0.07);
  transition: var(--transition);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  position: relative;
  overflow: hidden;
}
.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--cyan), var(--cyan-dark));
  border-radius: 0 var(--radius) var(--radius) 0;
}
.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
  border-color: var(--cyan);
}

.stat-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(0,180,216,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  font-size: 16px;
  margin-bottom: 8px;
}

.stat-num {
  font-size: 36px;
  font-weight: 900;
  color: var(--dark);
  line-height: 1;
}

.stat-label {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark3);
}

.stat-desc {
  font-size: 12px;
  color: var(--text-muted);
}

/* =====================
   SERVICES
===================== */
.services { background: white; }

.tab-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--dark);
  color: var(--cyan);
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 32px;
  border: 1px solid var(--border);
}

/* Packages */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pkg-card {
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.pkg-card.basic {
  background: var(--dark2);
  border: 1px solid var(--border);
}
.pkg-card.featured {
  background: linear-gradient(145deg, var(--dark3), var(--dark4));
  border: 1px solid rgba(0,180,216,0.4);
  box-shadow: 0 0 0 1px rgba(0,180,216,0.15), var(--shadow-cyan);
}
.pkg-card.premium {
  background: linear-gradient(145deg, #0a1428, #162447);
  border: 1px solid rgba(0,119,182,0.4);
}

.pkg-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.35), 0 0 0 1px rgba(0,180,216,0.3);
}

.pkg-badge {
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(90deg, var(--cyan-dark), var(--cyan));
  color: white;
  font-size: 11px;
  font-weight: 800;
  padding: 6px 18px;
  border-radius: 0 0 var(--radius-sm) 0;
  letter-spacing: 0.5px;
}

.pkg-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(0,180,216,0.12);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}

.pkg-icon {
  font-size: 24px;
  color: var(--cyan);
}

.pkg-name {
  font-size: 26px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.5px;
}

.pkg-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

.pkg-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 4px 0;
  flex: 1;
}

.pkg-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-light);
  font-size: 14px;
}

.pkg-features li i {
  color: var(--cyan);
  font-size: 11px;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  background: rgba(0,180,216,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-pkg {
  display: inline-block;
  background: transparent;
  border: 1.5px solid rgba(0,180,216,0.4);
  color: var(--cyan);
  padding: 11px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  transition: var(--transition);
  margin-top: 4px;
}

.btn-pkg:hover {
  background: var(--cyan);
  color: white;
  border-color: var(--cyan);
  box-shadow: var(--shadow-cyan);
}

/* Marketing */
.marketing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.mkt-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid rgba(0,0,0,0.07);
  transition: var(--transition);
}

.mkt-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
  border-color: var(--cyan);
}

.mkt-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}

.mkt-card h4 {
  font-size: 18px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 6px;
}

.mkt-card p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.mkt-card ul li {
  font-size: 13px;
  color: #555;
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mkt-card ul li i {
  color: var(--cyan);
  font-size: 10px;
}

.btn-sm {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  border: 1.5px solid rgba(0,119,182,0.4);
  color: var(--cyan-dark);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  transition: var(--transition);
}

.btn-sm:hover {
  background: var(--cyan-dark);
  color: white;
  border-color: var(--cyan-dark);
}

/* Tech */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.tech-card {
  background: white;
  border-radius: var(--radius);
  padding: 28px 22px;
  border: 1px solid rgba(0,0,0,0.07);
  transition: var(--transition);
  text-align: center;
}

.tech-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
  border-color: var(--cyan);
}

.tech-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--dark2), var(--dark3));
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--cyan);
  margin: 0 auto 16px;
}

.tech-card h4 {
  font-size: 15px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
}

.tech-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* =====================
   WHY US
===================== */
.why {
  position: relative;
  overflow: hidden;
}

.why-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, var(--dark) 0%, var(--dark2) 50%, #060e20 100%);
  z-index: 0;
}

.why .container { position: relative; z-index: 1; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 22px;
  text-align: center;
  transition: var(--transition);
  transition-delay: var(--delay, 0s);
  backdrop-filter: blur(10px);
}

.why-card:hover {
  background: rgba(0,180,216,0.08);
  border-color: rgba(0,180,216,0.35);
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}

.why-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(0,180,216,0.12);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--cyan);
  margin: 0 auto 16px;
  transition: var(--transition);
}

.why-card:hover .why-icon-wrap {
  background: rgba(0,180,216,0.2);
  transform: scale(1.1);
}

.why-card h4 {
  font-size: 15px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}

.why-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* =====================
   HOW WE WORK
===================== */
.how { background: var(--off-white); }

.steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 20px;
}

.step-item {
  position: relative;
  text-align: center;
  padding: 0 20px;
}

.step-num {
  font-size: 11px;
  font-weight: 900;
  color: var(--cyan);
  letter-spacing: 1px;
  margin-bottom: 12px;
  display: block;
}

.step-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: var(--dark);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--cyan);
  margin: 0 auto 20px;
  transition: var(--transition);
  position: relative;
  z-index: 1;
}

.step-item:hover .step-icon-wrap {
  border-color: var(--cyan);
  box-shadow: var(--shadow-cyan);
  transform: scale(1.05);
}

.step-item h4 {
  font-size: 16px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
}

.step-item p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

.step-connector {
  position: absolute;
  top: 36px;
  left: -30px;
  width: 60px;
  color: var(--cyan);
  opacity: 0.4;
  z-index: 0;
}
.step-connector svg { width: 100%; }

/* =====================
   FAQ
===================== */
.faq { background: white; }

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}

.faq-left .section-heading { margin-bottom: 16px; }
.faq-left p { color: #4a5568; font-size: 15px; line-height: 1.8; }

.faq-item {
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}

.faq-item:hover {
  border-color: var(--cyan);
}

.faq-item.open {
  border-color: var(--cyan);
  box-shadow: 0 4px 20px rgba(0,180,216,0.1);
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  font-weight: 700;
  font-size: 15px;
  color: var(--dark);
  user-select: none;
}

.faq-toggle {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(0,180,216,0.08);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  flex-shrink: 0;
  transition: var(--transition);
}

.faq-item.open .faq-toggle {
  background: var(--cyan);
  color: white;
  transform: rotate(45deg);
}

.faq-a {
  display: none;
  padding: 0 20px 18px;
  font-size: 14px;
  color: #4a5568;
  line-height: 1.8;
  border-top: 1px solid rgba(0,0,0,0.06);
  padding-top: 14px;
}

.faq-item.open .faq-a { display: block; }

/* =====================
   CTA BAND
===================== */
.cta-band {
  background: linear-gradient(135deg, var(--cyan-dark), var(--cyan), var(--cyan-dark));
  background-size: 200% 200%;
  animation: gradient-shift 6s ease infinite;
  padding: 70px 0;
  text-align: center;
}

@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.cta-content h2 {
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 900;
  color: white;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.cta-content p {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
}

.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btns .btn-primary {
  background: white;
  color: var(--cyan-dark);
  box-shadow: 0 6px 24px rgba(0,0,0,0.2);
}

.cta-btns .btn-primary:hover {
  background: rgba(255,255,255,0.92);
  transform: translateY(-2px);
}

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 2px solid rgba(255,255,255,0.6);
  color: white;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  transition: var(--transition);
}

.btn-outline-light:hover {
  background: rgba(255,255,255,0.15);
  border-color: white;
}

/* =====================
   FOOTER
===================== */
.footer { background: var(--dark); }

.footer-top {
  padding: 72px 0 48px;
  border-bottom: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 1.4fr;
  gap: 56px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  text-decoration: none;
}

.footer-logo-img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 12px;
}

.footer-logo .logo-main {
  font-size: 20px;
  font-weight: 900;
  color: var(--white);
}

.footer-logo .logo-sub {
  font-size: 12px;
  color: var(--cyan);
}

.footer-desc {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 24px;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-light);
  font-size: 14px;
  transition: var(--transition);
}

a.footer-contact-item:hover { color: var(--cyan); }

.footer-contact-item i {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(0,180,216,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  font-size: 13px;
  flex-shrink: 0;
}

.social-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 15px;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--cyan);
  border-color: var(--cyan);
  color: white;
  transform: translateY(-2px);
}

.footer-links-col h4 {
  font-size: 15px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.footer-links-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 30px;
  height: 2px;
  background: var(--cyan);
  border-radius: 2px;
}

.footer-links-col ul li { margin-bottom: 12px; }

.footer-links-col ul li a {
  color: var(--text-muted);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.footer-links-col ul li a i {
  font-size: 10px;
  color: var(--cyan);
}

.footer-links-col ul li a:hover { color: var(--cyan); }

/* Contact Form */
.footer-form-wrap h4 {
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.footer-form-wrap h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 30px;
  height: 2px;
  background: var(--cyan);
  border-radius: 2px;
}

.contact-form { display: flex; flex-direction: column; gap: 12px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.input-group {
  position: relative;
}

.input-group i {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 14px;
  pointer-events: none;
  z-index: 1;
}

.input-group textarea ~ i {
  top: 16px;
  transform: none;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 44px 12px 16px;
  color: var(--white);
  font-family: 'Tajawal', sans-serif;
  font-size: 14px;
  transition: var(--transition);
  direction: rtl;
}

.contact-form textarea { resize: none; padding-top: 12px; }

.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--text-muted); }

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--cyan);
  background: rgba(0,180,216,0.06);
  box-shadow: 0 0 0 3px rgba(0,180,216,0.1);
}

.btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--cyan-dark), var(--cyan));
  color: white;
  border: none;
  padding: 14px;
  border-radius: var(--radius-sm);
  font-family: 'Tajawal', sans-serif;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-cyan);
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,180,216,0.4);
}

/* Footer Bottom */
.footer-bottom {
  padding: 22px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  color: var(--text-muted);
  font-size: 13px;
}

/* =====================
   WHATSAPP FLOAT
===================== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  left: 28px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 26px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 999;
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37,211,102,0.5);
}

.whatsapp-tooltip {
  position: absolute;
  right: 68px;
  background: var(--dark);
  color: var(--white);
  padding: 7px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
  border: 1px solid var(--border);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  right: 72px;
}

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .tech-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-logo-float { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-links-col { display: none; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }

  .hamburger { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 76px;
    right: 0;
    left: 0;
    background: var(--dark);
    flex-direction: column;
    padding: 20px 24px;
    gap: 4px;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .nav-cta { display: none; }

  .hero-content { max-width: 100%; padding: 60px 0 40px; }
  .hero-trust { gap: 20px; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 14px; }

  .packages-grid { grid-template-columns: 1fr; }
  .marketing-grid { grid-template-columns: 1fr; }
  .tech-grid { grid-template-columns: 1fr 1fr; }

  .why-grid { grid-template-columns: 1fr 1fr; }

  .steps-row { grid-template-columns: 1fr 1fr; gap: 24px; }
  .step-connector { display: none; }

  .faq-layout { grid-template-columns: 1fr; gap: 40px; }

  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-links-col { display: block; }
  .form-row { grid-template-columns: 1fr; }

  .features-row { flex-direction: column; align-items: flex-start; padding: 0; }
  .feature-item { width: 100%; border-bottom: 1px solid var(--border); }
  .feature-item:last-child { border-bottom: none; }
  .feature-sep { display: none; }

  .hero-btns { flex-direction: column; }
  .hero-btns a { text-align: center; justify-content: center; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .tech-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .steps-row { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .hero-trust { flex-direction: column; align-items: flex-start; }
  .trust-sep { display: none; }
}
