/* ============================================================
   Darbak Info Site — Premium Landing Page
   ============================================================ */

:root {
  --primary: #F5941E;
  --primary-dark: #D47B0F;
  --primary-light: #FFB347;
  --primary-glow: rgba(245, 148, 30, 0.35);
  --secondary: #E86B2E;
  --secondary-light: #F5884A;
  --secondary-glow: rgba(232, 107, 46, 0.3);
  --dark-1: #0b1119;
  --dark-2: #0f1923;
  --dark-3: #162231;
  --dark-4: #1e2d3d;
  --text-on-dark: #e8edf2;
  --text-muted-dark: #8899aa;
  --text-dark: #1a1f2e;
  --text-muted: #64748b;
  --bg-light: #f6f8fb;
  --bg-white: #ffffff;
  --glass-bg: rgba(255, 255, 255, 0.06);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-bg-light: rgba(255, 255, 255, 0.85);
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
  --shadow-glow: 0 0 40px var(--primary-glow);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --nav-height: 72px;
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { line-height: 1.7; color: var(--text-dark); background: var(--bg-white); overflow-x: hidden; }
img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button, input, textarea { font: inherit; border: none; outline: none; background: none; }
ul { list-style: none; }

/* === Typography by language === */
[lang="ar"] { font-family: 'Cairo', 'Segoe UI', sans-serif; }
[lang="he"] { font-family: 'Rubik', 'Segoe UI', sans-serif; }
[lang="en"] { font-family: 'Inter', 'Segoe UI', sans-serif; }

/* === Container === */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: 24px;
}

/* === Section base === */
.section {
  padding: 100px 0;
  position: relative;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.3;
}
.section-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  max-width: 620px;
  line-height: 1.8;
}
.section--dark { background: var(--dark-2); color: var(--text-on-dark); }
.section--dark .section-subtitle { color: var(--text-muted-dark); }
.section--light { background: var(--bg-light); }
.section--white { background: var(--bg-white); }
.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }

/* === Wave divider === */
.wave-divider {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 2;
}
.wave-divider svg { width: 100%; height: 60px; }
.wave-divider--top { bottom: auto; top: -1px; transform: rotate(180deg); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
}
.navbar.scrolled {
  background: rgba(15, 25, 35, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img {
  height: 42px;
  width: auto;
}
.nav-logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}
.nav-logo-text span { color: var(--primary); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: color 0.3s, background 0.3s;
}
.nav-links a:hover,
.nav-links a.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.lang-btn {
  padding: 6px 12px;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s var(--ease);
  position: relative;
}
.lang-btn.active {
  color: #fff;
  background: var(--primary);
}
.lang-btn:hover:not(.active) {
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.06);
}

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(160deg, var(--dark-1) 0%, var(--dark-2) 40%, #25190d 100%);
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-height);
}

/* Animated gradient orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  pointer-events: none;
}
.hero-orb--1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--primary-glow), transparent 70%);
  top: -15%; right: -10%;
  animation: orb-float 18s ease-in-out infinite;
}
.hero-orb--2 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, var(--secondary-glow), transparent 70%);
  bottom: -10%; left: -5%;
  animation: orb-float 22s ease-in-out infinite reverse;
}
.hero-orb--3 {
  width: 250px; height: 250px;
  background: radial-gradient(circle, rgba(245, 148, 30, 0.15), transparent 70%);
  top: 40%; left: 30%;
  animation: orb-float 15s ease-in-out infinite 3s;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: 40px 24px;
}
.hero-logo {
  width: 100px;
  height: 100px;
  margin: 0 auto 32px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.hero-logo img { width: 100%; height: 100%; object-fit: contain; }
.hero-title {
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 900;
  line-height: 1.1;
  background: linear-gradient(135deg, #fff 0%, var(--primary-light) 40%, var(--secondary) 80%, #fff 100%);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient-flow 8s ease infinite;
  margin-bottom: 16px;
}
.hero-tagline {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: var(--primary-light);
  font-weight: 600;
  margin-bottom: 20px;
}
.hero-desc {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: var(--text-muted-dark);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.9;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all 0.3s var(--ease);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.btn--primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  box-shadow: 0 4px 20px var(--primary-glow);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--primary-glow);
}
.btn--outline {
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: #fff;
}
.btn--outline:hover {
  border-color: var(--primary);
  background: rgba(245, 148, 30, 0.1);
  transform: translateY(-2px);
}
.btn--secondary {
  background: linear-gradient(135deg, var(--secondary), #d4842a);
  color: #fff;
  box-shadow: 0 4px 20px var(--secondary-glow);
}
.btn--secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--secondary-glow);
}
.btn--dark {
  background: var(--dark-3);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.btn--dark:hover {
  background: var(--dark-4);
  transform: translateY(-2px);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s ease-in-out infinite;
  z-index: 2;
}
.hero-scroll-indicator svg { width: 28px; height: 28px; color: rgba(255,255,255,0.4); }

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-text p {
  color: var(--text-muted);
  margin-top: 20px;
  font-size: 1.05rem;
  line-height: 1.9;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.stat-card {
  text-align: center;
  padding: 32px 16px;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, var(--bg-white), var(--bg-light));
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: var(--shadow-sm);
  transition: all 0.4s var(--ease);
}
.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px;
  font-weight: 500;
}

/* ============================================================
   APPS
   ============================================================ */
.apps-header {
  text-align: center;
  margin-bottom: 60px;
}
.apps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.app-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--bg-white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: var(--shadow-sm);
  transition: all 0.5s var(--ease);
  position: relative;
}
.app-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.12);
}
.app-card-header {
  padding: 40px 28px 28px;
  position: relative;
  overflow: hidden;
}
.app-card--delivery .app-card-header { background: linear-gradient(135deg, #fef3e2, #fde8c8); }
.app-card--driver .app-card-header { background: linear-gradient(135deg, #e0f0ff, #cce5ff); }
.app-card--partner .app-card-header { background: linear-gradient(135deg, #fff3e0, #ffe8cc); }

.app-card-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.8rem;
}
.app-card--delivery .app-card-icon { background: var(--primary); color: #fff; }
.app-card--driver .app-card-icon { background: #3b82f6; color: #fff; }
.app-card--partner .app-card-icon { background: var(--secondary); color: #fff; }

.app-card-name {
  font-size: 1.35rem;
  font-weight: 800;
}
.app-card-body {
  padding: 24px 28px 32px;
}
.app-card-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.8;
}
.app-card-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.app-card-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-dark);
}
.app-card-feature svg {
  width: 18px;
  height: 18px;
  color: var(--primary);
  flex-shrink: 0;
}
.app-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  background: var(--bg-light);
  color: var(--text-muted);
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.app-badge svg { width: 16px; height: 16px; }

/* ============================================================
   MANAGEMENT DASHBOARD
   ============================================================ */
.dashboard-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.dashboard-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.dashboard-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  border-radius: var(--radius-md);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  transition: all 0.3s var(--ease);
}
.dashboard-feature:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--primary);
}
.dashboard-feature svg {
  width: 22px;
  height: 22px;
  color: var(--primary-light);
  flex-shrink: 0;
  margin-top: 2px;
}
.dashboard-feature-text {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-on-dark);
}

/* Dashboard mock visual */
.dashboard-visual {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--dark-4);
  border: 1px solid var(--glass-border);
  padding: 24px;
  box-shadow: var(--shadow-lg);
}
.dashboard-mockup {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.mockup-bar {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
}
.mockup-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.mockup-dot:nth-child(1) { background: #ff5f57; }
.mockup-dot:nth-child(2) { background: #ffbd2e; }
.mockup-dot:nth-child(3) { background: #28c841; }
.mockup-row {
  display: flex;
  gap: 12px;
}
.mockup-card {
  flex: 1;
  border-radius: var(--radius-sm);
  padding: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.mockup-card-value {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary-light);
}
.mockup-card-label {
  font-size: 0.75rem;
  color: var(--text-muted-dark);
  margin-top: 4px;
}
.mockup-chart {
  height: 80px;
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, rgba(245, 148, 30, 0.15) 0%, transparent 100%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}
.mockup-chart::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(245, 148, 30, 0.3) 15%,
    rgba(245, 148, 30, 0.6) 30%,
    rgba(245, 148, 30, 0.4) 50%,
    rgba(245, 148, 30, 0.7) 65%,
    rgba(245, 148, 30, 0.3) 80%,
    rgba(245, 148, 30, 0.5) 100%
  );
  clip-path: polygon(0% 80%, 10% 55%, 20% 65%, 30% 30%, 40% 40%, 50% 20%, 60% 35%, 70% 15%, 80% 25%, 90% 10%, 100% 30%, 100% 100%, 0% 100%);
}
.mockup-table {
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.mockup-table-row {
  display: flex;
  padding: 10px 14px;
  font-size: 0.75rem;
  color: var(--text-muted-dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.mockup-table-row:first-child {
  background: rgba(255, 255, 255, 0.04);
  font-weight: 700;
  color: var(--text-on-dark);
}
.mockup-table-row span { flex: 1; }
.mockup-status {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-inline-end: 6px;
}
.mockup-status--green { background: var(--primary); }
.mockup-status--orange { background: var(--secondary); }
.mockup-status--blue { background: #3b82f6; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps-header {
  text-align: center;
  margin-bottom: 64px;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 48px;
  left: 12.5%;
  right: 12.5%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 2px;
  z-index: 0;
}
[dir="rtl"] .steps-grid::before {
  background: linear-gradient(270deg, var(--primary), var(--secondary));
}
.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-number {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 1.2rem;
  font-weight: 800;
  position: relative;
  background: var(--bg-white);
  border: 3px solid var(--primary);
  color: var(--primary);
  box-shadow: 0 0 0 8px var(--bg-light), var(--shadow-sm);
  transition: all 0.4s var(--ease);
}
.step-card:hover .step-number {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 0 0 8px var(--bg-light), var(--shadow-glow);
}
.step-number svg {
  width: 36px;
  height: 36px;
}
.step-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.step-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  padding: 0 8px;
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-section {
  background: linear-gradient(160deg, var(--dark-2) 0%, #25190d 100%);
}
.why-header {
  text-align: center;
  margin-bottom: 60px;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  opacity: 0;
  transition: opacity 0.4s;
}
.why-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(245, 148, 30, 0.3);
  transform: translateY(-4px);
}
.why-card:hover::before { opacity: 1; }
.why-card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 148, 30, 0.15);
  color: var(--primary-light);
  margin-bottom: 20px;
}
.why-card-icon svg { width: 24px; height: 24px; }
.why-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-on-dark);
  margin-bottom: 10px;
}
.why-card-desc {
  font-size: 0.9rem;
  color: var(--text-muted-dark);
  line-height: 1.8;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
}
.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}
.contact-info-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  border-radius: var(--radius-md);
  background: var(--bg-white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s var(--ease);
}
.contact-info-card:hover {
  transform: translateX(-4px);
  box-shadow: var(--shadow-md);
}
[dir="rtl"] .contact-info-card:hover { transform: translateX(4px); }
.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon--phone { background: rgba(245, 148, 30, 0.12); color: var(--primary); }
.contact-info-icon--whatsapp { background: rgba(37, 211, 102, 0.12); color: #25d366; }
.contact-info-icon--email { background: rgba(59, 130, 246, 0.12); color: #3b82f6; }
.contact-info-icon svg { width: 22px; height: 22px; }
.contact-info-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}
.contact-info-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-top: 2px;
}

/* Contact Form */
.contact-form {
  padding: 36px;
  border-radius: var(--radius-xl);
  background: var(--bg-white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: var(--shadow-md);
}
.form-group {
  margin-bottom: 20px;
}
.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.form-input,
.form-textarea {
  width: 100%;
  padding: 14px 18px;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  border: 2px solid rgba(0, 0, 0, 0.08);
  background: var(--bg-light);
  color: var(--text-dark);
  transition: all 0.3s var(--ease);
}
.form-input:focus,
.form-textarea:focus {
  border-color: var(--primary);
  background: var(--bg-white);
  box-shadow: 0 0 0 4px var(--primary-glow);
}
.form-textarea {
  min-height: 130px;
  resize: vertical;
}
.form-submit {
  width: 100%;
  padding: 16px;
  font-size: 1rem;
  font-weight: 700;
}
.form-message {
  margin-top: 16px;
  padding: 14px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  display: none;
}
.form-message--success {
  display: block;
  background: rgba(245, 148, 30, 0.1);
  color: var(--primary-dark);
  border: 1px solid rgba(245, 148, 30, 0.2);
}
.form-message--error {
  display: block;
  background: rgba(239, 68, 68, 0.1);
  color: #dc2626;
  border: 1px solid rgba(239, 68, 68, 0.2);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark-1);
  color: var(--text-muted-dark);
  padding: 60px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand-text {
  font-size: 0.9rem;
  line-height: 1.8;
  margin-top: 16px;
  max-width: 360px;
}
.footer-heading {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-on-dark);
  margin-bottom: 20px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  font-size: 0.88rem;
  color: var(--text-muted-dark);
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--primary-light); }
.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  margin-bottom: 24px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
}
.footer-bottom a { color: var(--primary-light); }
.footer-bottom a:hover { text-decoration: underline; }

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s var(--ease);
  animation: pulse-ring 2.5s ease-out infinite;
}
[dir="rtl"] .whatsapp-float { right: auto; left: 28px; }
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}
.whatsapp-float svg { width: 30px; height: 30px; color: #fff; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes gradient-flow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
@keyframes orb-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -40px) scale(1.1); }
  50% { transform: translate(-20px, 20px) scale(0.95); }
  75% { transform: translate(15px, 30px) scale(1.05); }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}
@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .about-grid,
  .dashboard-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .apps-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .dashboard-features { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  /* Mobile menu */
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 25, 35, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: calc(var(--nav-height) + 32px) 32px 32px;
    gap: 4px;
    z-index: 999;
  }
  .nav-links.open a {
    font-size: 1.2rem;
    padding: 14px 20px;
    text-align: center;
  }

  .apps-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .steps-grid::before { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .stat-card { padding: 20px 8px; }
  .stat-number { font-size: 1.8rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .hero-title { margin-bottom: 12px; }
}

@media (max-width: 480px) {
  .container { padding-inline: 16px; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
  .steps-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr; }
  .contact-form { padding: 24px 20px; }
  .dashboard-features { grid-template-columns: 1fr; }
}
