/*
Theme Name: Al Ertiqaa Furniture Moving
Theme URI: https://ertiqaa.com
Author: Al Ertiqaa
Author URI: https://ertiqaa.com
Description: ثيم احترافي مخصص لشركة الارتقاء لنقل العفش بالرياض - تصميم عصري مع RTL ودارك مود
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ertiqaa
Tags: rtl-language-support, custom-logo, custom-menu, featured-images
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
*/
/* ============================================
   AL ERTIQAA FURNITURE MOVING - DESIGN SYSTEM
   ============================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@300;400;500;700;800;900&display=swap');

/* ============================================
   CSS CUSTOM PROPERTIES (DESIGN TOKENS)
   ============================================ */
:root {
  /* Primary Colors */
  --primary: #1a73e8;
  --primary-light: #4a9af5;
  --primary-dark: #0d47a1;
  --primary-gradient: linear-gradient(135deg, #1a73e8 0%, #0d47a1 100%);

  /* Accent Colors */
  --accent: #00c853;
  --accent-light: #5efc82;
  --accent-dark: #009624;
  --accent-gradient: linear-gradient(135deg, #00c853 0%, #009624 100%);

  /* WhatsApp Green */
  --whatsapp: #25D366;
  --whatsapp-dark: #128C7E;

  /* Special Gradients */
  --hero-gradient: linear-gradient(135deg, #1a73e8 0%, #0d47a1 50%, #00c853 100%);
  --card-glow: 0 0 40px rgba(26, 115, 232, 0.15);
  --card-glow-hover: 0 0 60px rgba(26, 115, 232, 0.25);

  /* Light Mode Colors */
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-tertiary: #f1f5f9;
  --bg-card: #ffffff;
  --bg-card-hover: #f8fafc;
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-tertiary: #94a3b8;
  --border-color: #e2e8f0;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.05), 0 10px 15px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.08), 0 20px 40px rgba(0, 0, 0, 0.06);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.1), 0 30px 60px rgba(0, 0, 0, 0.08);
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(255, 255, 255, 0.4);

  /* Typography */
  --font-family: 'Tajawal', sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
  --font-size-5xl: 3rem;
  --font-size-6xl: 3.75rem;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Header height */
  --header-height: 80px;
}

/* ============================================
   DARK MODE
   ============================================ */
[data-theme="dark"] {
  --bg-primary: #0f172a;
  --bg-secondary: #1e293b;
  --bg-tertiary: #334155;
  --bg-card: #1e293b;
  --bg-card-hover: #334155;
  --text-primary: #f1f5f9;
  --text-secondary: #cbd5e1;
  --text-tertiary: #64748b;
  --border-color: #334155;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.5);
  --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.6);
  --glass-bg: rgba(30, 41, 59, 0.8);
  --glass-border: rgba(51, 65, 85, 0.5);
  --card-glow: 0 0 40px rgba(26, 115, 232, 0.1);
  --card-glow-hover: 0 0 60px rgba(26, 115, 232, 0.2);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul, ol {
  list-style: none;
}

button {
  border: none;
  outline: none;
  cursor: pointer;
  font-family: var(--font-family);
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.section {
  padding: var(--space-20) 0;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-16);
}

.section-badge {
  display: inline-block;
  padding: var(--space-2) var(--space-6);
  background: linear-gradient(135deg, rgba(26, 115, 232, 0.1), rgba(0, 200, 83, 0.1));
  border: 1px solid rgba(26, 115, 232, 0.2);
  border-radius: var(--radius-full);
  color: var(--primary);
  font-size: var(--font-size-sm);
  font-weight: 700;
  margin-bottom: var(--space-4);
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.section-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

[data-theme="dark"] .section-badge {
  background: linear-gradient(135deg, rgba(26, 115, 232, 0.2), rgba(0, 200, 83, 0.2));
  border-color: rgba(26, 115, 232, 0.3);
}

.section-title {
  font-size: var(--font-size-4xl);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: var(--space-4);
  line-height: 1.3;
}

.section-subtitle {
  font-size: var(--font-size-lg);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-8);
  border-radius: var(--radius-xl);
  font-size: var(--font-size-lg);
  font-weight: 700;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.btn:hover::before {
  opacity: 1;
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, #128C7E, #075E54);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
}

.btn-whatsapp:active {
  transform: translateY(-1px) scale(0.98);
}

.btn-call {
  background: var(--primary-gradient);
  color: #fff;
  box-shadow: 0 4px 15px rgba(26, 115, 232, 0.4);
}

.btn-call:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 30px rgba(26, 115, 232, 0.5);
}

.btn-call:active {
  transform: translateY(-1px) scale(0.98);
}

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

.btn-outline:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-4px);
}

.btn-lg {
  padding: var(--space-5) var(--space-10);
  font-size: var(--font-size-xl);
}

.btn i, .btn svg {
  font-size: 1.2em;
  transition: transform var(--transition-base);
}

.btn:hover i, .btn:hover svg {
  transform: scale(1.15);
}

/* Button pulse animation */
.btn-pulse {
  animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7), 0 0 80px rgba(37, 211, 102, 0.2); }
}

/* Ripple effect on buttons */
.btn::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: radial-gradient(circle, rgba(255,255,255,0.3) 10%, transparent 10%);
  transform: scale(10);
  opacity: 0;
  transition: transform 0.5s, opacity 0.5s;
}

.btn:active::after {
  transform: scale(0);
  opacity: 1;
  transition: 0s;
}

/* ============================================
   HEADER / NAVBAR
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  transition: all var(--transition-base);
  height: var(--header-height);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--font-size-xl);
  font-weight: 800;
  color: var(--text-primary);
}

.logo-icon {
  width: 45px;
  height: 45px;
  background: var(--primary-gradient);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
}

.logo-text span {
  color: var(--primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.nav-links a {
  font-size: var(--font-size-base);
  font-weight: 600;
  color: var(--text-secondary);
  position: relative;
  padding: var(--space-2) 0;
  transition: color var(--transition-fast);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 2px;
  background: var(--primary-gradient);
  transition: width var(--transition-base);
  border-radius: var(--radius-full);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.header-phone {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--primary);
  font-weight: 700;
  font-size: var(--font-size-sm);
  direction: ltr;
}

/* Dark mode toggle */
.theme-toggle {
  width: 50px;
  height: 26px;
  background: var(--bg-tertiary);
  border-radius: var(--radius-full);
  position: relative;
  cursor: pointer;
  transition: background var(--transition-base);
  border: 2px solid var(--border-color);
}

.theme-toggle::before {
  content: '☀️';
  position: absolute;
  top: 50%;
  right: 4px;
  transform: translateY(-50%);
  font-size: 14px;
  transition: all var(--transition-base);
}

[data-theme="dark"] .theme-toggle::before {
  content: '🌙';
  right: auto;
  left: 4px;
}

.theme-toggle-knob {
  width: 20px;
  height: 20px;
  background: var(--primary);
  border-radius: 50%;
  position: absolute;
  top: 1px;
  right: 2px;
  transition: all var(--transition-base);
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

[data-theme="dark"] .theme-toggle-knob {
  right: auto;
  left: 2px;
}

/* Mobile menu */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: var(--space-2);
}

.mobile-menu-btn span {
  width: 25px;
  height: 2px;
  background: var(--text-primary);
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--header-height);
}

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.92) 0%, rgba(15, 23, 42, 0.75) 50%, rgba(26, 115, 232, 0.4) 100%);
}

[data-theme="dark"] .hero-overlay {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.85) 50%, rgba(26, 115, 232, 0.3) 100%);
}

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

.hero-content {
  max-width: 700px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(0, 200, 83, 0.15);
  border: 1px solid rgba(0, 200, 83, 0.3);
  color: var(--accent-light);
  padding: var(--space-2) var(--space-5);
  border-radius: var(--radius-full);
  font-size: var(--font-size-sm);
  font-weight: 700;
  margin-bottom: var(--space-6);
  animation: fadeInDown 0.8s ease forwards;
}

.hero-badge .pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

.hero-title {
  font-size: var(--font-size-5xl);
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  margin-bottom: var(--space-6);
  animation: fadeInUp 0.8s ease 0.2s forwards;
  opacity: 0;
}

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

.hero-subtitle {
  font-size: var(--font-size-xl);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  margin-bottom: var(--space-8);
  animation: fadeInUp 0.8s ease 0.4s forwards;
  opacity: 0;
}

.hero-offer {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  background: linear-gradient(135deg, rgba(255, 183, 0, 0.2), rgba(255, 107, 0, 0.2));
  border: 1px solid rgba(255, 183, 0, 0.4);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-xl);
  margin-bottom: var(--space-8);
  animation: fadeInUp 0.8s ease 0.5s forwards;
  opacity: 0;
}

.hero-offer .offer-icon {
  font-size: 1.5rem;
}

.hero-offer .offer-text {
  color: #ffd54f;
  font-weight: 800;
  font-size: var(--font-size-xl);
}

.hero-buttons {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.6s forwards;
  opacity: 0;
}

.hero-stats {
  display: flex;
  gap: var(--space-10);
  margin-top: var(--space-12);
  animation: fadeInUp 0.8s ease 0.8s forwards;
  opacity: 0;
}

.hero-stat {
  text-align: center;
}

.hero-stat .stat-number {
  font-size: var(--font-size-3xl);
  font-weight: 900;
  color: #fff;
}

.hero-stat .stat-number span {
  color: var(--accent-light);
}

.hero-stat .stat-label {
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

/* Floating particles */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(26, 115, 232, 0.5);
  border-radius: 50%;
  animation: float-particle linear infinite;
}

@keyframes float-particle {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; }
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.features {
  background: var(--bg-secondary);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

.feature-card {
  background: var(--bg-card);
  border-radius: var(--radius-2xl);
  padding: var(--space-10);
  text-align: center;
  border: 1px solid var(--border-color);
  transition: all var(--transition-spring);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary-gradient);
  transform: scaleX(0);
  transition: transform var(--transition-base);
}

.feature-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-2xl);
  background: linear-gradient(135deg, rgba(26, 115, 232, 0.03), rgba(0, 200, 83, 0.03));
  opacity: 0;
  transition: opacity var(--transition-base);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg), var(--card-glow);
  border-color: rgba(26, 115, 232, 0.3);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover::after {
  opacity: 1;
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-6);
  background: linear-gradient(135deg, rgba(26, 115, 232, 0.1), rgba(0, 200, 83, 0.1));
  border-radius: var(--radius-2xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  transition: all var(--transition-spring);
  position: relative;
}

.feature-card:hover .feature-icon {
  background: var(--primary-gradient);
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 25px rgba(26, 115, 232, 0.3);
}

.feature-card:hover .feature-icon svg {
  filter: brightness(0) invert(1);
}

.feature-title {
  font-size: var(--font-size-xl);
  font-weight: 700;
  margin-bottom: var(--space-3);
  color: var(--text-primary);
  transition: color var(--transition-base);
}

.feature-card:hover .feature-title {
  color: var(--primary);
}

.feature-desc {
  font-size: var(--font-size-base);
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-8);
}

.service-card {
  background: var(--bg-card);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: all var(--transition-spring);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-12px) scale(1.01);
  box-shadow: var(--shadow-xl), var(--card-glow-hover);
  border-color: rgba(26, 115, 232, 0.3);
}

.service-card-image {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.service-card:hover .service-card-image img {
  transform: scale(1.1);
}

.service-card-image .service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.6), transparent);
}

.service-card-body {
  padding: var(--space-8);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card-icon {
  width: 55px;
  height: 55px;
  background: var(--primary-gradient);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
  margin-top: -45px;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-md);
}

.service-card-icon svg {
  width: 28px;
  height: 28px;
  color: white;
}

.service-card h3 {
  font-size: var(--font-size-xl);
  font-weight: 700;
  margin-bottom: var(--space-3);
  color: var(--text-primary);
}

.service-card p {
  color: var(--text-secondary);
  line-height: 1.8;
  flex: 1;
}

.service-card .btn {
  margin-top: var(--space-6);
  align-self: flex-start;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
  background: var(--bg-secondary);
}

.steps-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  position: relative;
}

.steps-wrapper::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 15%;
  right: 15%;
  height: 3px;
  background: var(--primary-gradient);
  opacity: 0.3;
  z-index: 0;
}

.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-6);
  background: var(--bg-card);
  border: 3px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-2xl);
  font-weight: 900;
  color: var(--primary);
  position: relative;
  transition: all var(--transition-spring);
}

.step-card:hover .step-number {
  background: var(--primary-gradient);
  color: white;
  transform: scale(1.15) rotate(-5deg);
  border-color: transparent;
  box-shadow: 0 0 30px rgba(26, 115, 232, 0.4);
}

.step-icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-4);
}

.step-title {
  font-size: var(--font-size-lg);
  font-weight: 700;
  margin-bottom: var(--space-2);
  color: var(--text-primary);
}

.step-desc {
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-wrapper {
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: var(--space-8);
  transition: transform 0.5s ease;
}

.testimonial-card {
  min-width: calc(33.333% - var(--space-8));
  background: var(--bg-card);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  border: 1px solid var(--border-color);
  flex-shrink: 0;
  transition: all var(--transition-spring);
  position: relative;
}

.testimonial-card:hover {
  border-color: rgba(26, 115, 232, 0.3);
  box-shadow: var(--shadow-lg), var(--card-glow);
  transform: translateY(-5px);
}

.testimonial-stars {
  display: flex;
  gap: var(--space-1);
  margin-bottom: var(--space-4);
}

.testimonial-stars svg {
  width: 20px;
  height: 20px;
  color: #fbbf24;
  fill: #fbbf24;
}

.testimonial-text {
  font-size: var(--font-size-base);
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: var(--space-6);
  font-style: italic;
  position: relative;
  padding-right: var(--space-6);
}

.testimonial-text::before {
  content: '"';
  position: absolute;
  right: 0;
  top: -5px;
  font-size: 3rem;
  color: var(--primary);
  opacity: 0.3;
  font-family: serif;
  line-height: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary);
}

.testimonial-name {
  font-weight: 700;
  color: var(--text-primary);
  font-size: var(--font-size-base);
}

.testimonial-role {
  font-size: var(--font-size-sm);
  color: var(--text-tertiary);
}

.testimonials-nav {
  display: flex;
  justify-content: center;
  gap: var(--space-4);
  margin-top: var(--space-10);
}

.testimonials-nav button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  transition: all var(--transition-base);
}

.testimonials-nav button:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

.testimonials-dots {
  display: flex;
  justify-content: center;
  gap: var(--space-2);
  margin-top: var(--space-6);
}

.testimonials-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border-color);
  cursor: pointer;
  transition: all var(--transition-base);
}

.testimonials-dots .dot.active {
  background: var(--primary);
  width: 30px;
  border-radius: var(--radius-full);
}

/* ============================================
   OFFER SECTION
   ============================================ */
.offer-section {
  background: linear-gradient(135deg, #1a73e8 0%, #0d47a1 50%, #00c853 100%);
  background-size: 200% 200%;
  animation: gradient-shift 8s ease infinite;
  position: relative;
  overflow: hidden;
}

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

.offer-section::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  top: -250px;
  left: -100px;
  animation: float-slow 15s ease-in-out infinite;
}

@keyframes float-slow {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, 30px); }
}

.offer-section::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  bottom: -200px;
  right: -50px;
  animation: float-slow 12s ease-in-out infinite reverse;
}

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

.offer-icon {
  font-size: 4rem;
  margin-bottom: var(--space-4);
  animation: bounce-gentle 2s infinite;
}

@keyframes bounce-gentle {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.offer-title {
  font-size: var(--font-size-5xl);
  font-weight: 900;
  color: #fff;
  margin-bottom: var(--space-4);
}

.offer-subtitle {
  font-size: var(--font-size-xl);
  color: rgba(255,255,255,0.9);
  margin-bottom: var(--space-3);
}

.offer-urgency {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(255, 183, 0, 0.2);
  border: 1px solid rgba(255, 183, 0, 0.4);
  padding: var(--space-2) var(--space-5);
  border-radius: var(--radius-full);
  color: #ffd54f;
  font-weight: 700;
  font-size: var(--font-size-base);
  margin-bottom: var(--space-8);
}

.offer-buttons {
  display: flex;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.offer-section .btn-whatsapp {
  background: #fff;
  color: var(--whatsapp-dark);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.offer-section .btn-whatsapp:hover {
  background: var(--whatsapp);
  color: white;
}

.offer-section .btn-call {
  background: rgba(255,255,255,0.2);
  border: 2px solid rgba(255,255,255,0.5);
  box-shadow: none;
}

.offer-section .btn-call:hover {
  background: rgba(255,255,255,0.3);
}

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
  background: var(--bg-secondary);
}

.cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-title {
  font-size: var(--font-size-4xl);
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: var(--space-4);
}

.cta-subtitle {
  font-size: var(--font-size-lg);
  color: var(--text-secondary);
  margin-bottom: var(--space-8);
  line-height: 1.8;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: var(--space-16) 0 var(--space-8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-10);
  margin-bottom: var(--space-12);
}

.footer-about p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-top: var(--space-4);
}

.footer-title {
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-6);
  position: relative;
  padding-bottom: var(--space-3);
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40px;
  height: 3px;
  background: var(--primary-gradient);
  border-radius: var(--radius-full);
}

.footer-links li {
  margin-bottom: var(--space-3);
}

.footer-links a {
  color: var(--text-secondary);
  font-size: var(--font-size-base);
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.footer-links a:hover {
  color: var(--primary);
  padding-right: var(--space-2);
}

.footer-contact li {
  margin-bottom: var(--space-4);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--text-secondary);
}

.footer-contact li svg {
  color: var(--primary);
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: var(--space-8);
  text-align: center;
  color: var(--text-tertiary);
  font-size: var(--font-size-sm);
}

/* ============================================
   STICKY MOBILE CTA
   ============================================ */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--glass-border);
  padding: var(--space-3) var(--space-4);
  display: none;
  gap: var(--space-3);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
}

.sticky-cta .btn {
  flex: 1;
  padding: var(--space-3) var(--space-4);
  font-size: var(--font-size-base);
  border-radius: var(--radius-lg);
}

/* Floating WhatsApp Button */
.floating-whatsapp {
  position: fixed;
  bottom: 90px;
  left: 20px;
  z-index: 998;
  width: 60px;
  height: 60px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  animation: pulse-glow 2s infinite;
  transition: all var(--transition-base);
  color: white;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
}

.floating-whatsapp svg {
  width: 30px;
  height: 30px;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.page-hero {
  padding: calc(var(--header-height) + var(--space-16)) 0 var(--space-16);
  background: var(--primary-gradient);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-hero::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  top: -250px;
  right: -100px;
}

.page-hero h1 {
  font-size: var(--font-size-4xl);
  font-weight: 900;
  color: white;
  margin-bottom: var(--space-4);
}

.page-hero p {
  font-size: var(--font-size-lg);
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  margin: 0 auto;
}

.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}

.about-image {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.about-text h2 {
  font-size: var(--font-size-3xl);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: var(--space-6);
}

.about-text p {
  color: var(--text-secondary);
  line-height: 2;
  margin-bottom: var(--space-4);
}

.mission-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  margin-top: var(--space-16);
}

.mv-card {
  background: var(--bg-card);
  border-radius: var(--radius-2xl);
  padding: var(--space-10);
  border: 1px solid var(--border-color);
  text-align: center;
  transition: all var(--transition-base);
}

.mv-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.mv-card .mv-icon {
  font-size: 3rem;
  margin-bottom: var(--space-4);
}

.mv-card h3 {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-4);
}

.mv-card p {
  color: var(--text-secondary);
  line-height: 1.9;
}

/* ============================================
   SERVICES PAGE
   ============================================ */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
  padding: var(--space-12) 0;
  border-bottom: 1px solid var(--border-color);
}

.service-detail:nth-child(even) {
  direction: ltr;
}

.service-detail:nth-child(even) .service-detail-content {
  direction: rtl;
  text-align: right;
}

.service-detail:last-child {
  border-bottom: none;
}

.service-detail-image {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.service-detail-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.service-detail-image:hover img {
  transform: scale(1.05);
}

.service-detail-content h2 {
  font-size: var(--font-size-3xl);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: var(--space-4);
}

.service-detail-content p {
  color: var(--text-secondary);
  line-height: 2;
  margin-bottom: var(--space-6);
}

.service-features-list {
  margin-bottom: var(--space-6);
}

.service-features-list li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-2) 0;
  color: var(--text-secondary);
}

.service-features-list li svg {
  color: var(--accent);
  flex-shrink: 0;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.contact-card {
  background: var(--bg-card);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  gap: var(--space-6);
  transition: all var(--transition-base);
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(26, 115, 232, 0.3);
}

.contact-card-icon {
  width: 65px;
  height: 65px;
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-card-icon.whatsapp {
  background: rgba(37, 211, 102, 0.1);
  color: var(--whatsapp);
}

.contact-card-icon.phone {
  background: rgba(26, 115, 232, 0.1);
  color: var(--primary);
}

.contact-card-icon.location {
  background: rgba(255, 107, 0, 0.1);
  color: #ff6b00;
}

.contact-card-content h3 {
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-2);
}

.contact-card-content p {
  color: var(--text-secondary);
  font-size: var(--font-size-base);
}

.contact-card-content a {
  color: var(--primary);
  font-weight: 600;
  direction: ltr;
  display: inline-block;
}

.contact-map {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  height: 100%;
  min-height: 400px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.revealed {
  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; }

/* ============================================
   RESPONSIVE - TABLET
   ============================================ */
@media (max-width: 992px) {
  :root {
    --header-height: 70px;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    background: var(--bg-primary);
    flex-direction: column;
    padding: var(--space-8);
    gap: var(--space-6);
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
  }

  .nav-links.active {
    display: flex;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .steps-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-wrapper::before {
    display: none;
  }

  .testimonial-card {
    min-width: calc(50% - var(--space-4));
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
  }

  .about-intro {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .service-detail {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .service-detail:nth-child(even) {
    direction: rtl;
  }

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

  .mission-vision {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: var(--font-size-4xl);
  }

  .section-title {
    font-size: var(--font-size-3xl);
  }
}

/* ============================================
   RESPONSIVE - MOBILE
   ============================================ */
@media (max-width: 768px) {
  :root {
    --header-height: 65px;
  }

  .container {
    padding: 0 var(--space-4);
  }

  .section {
    padding: var(--space-16) 0;
  }

  .hero-title {
    font-size: var(--font-size-3xl);
  }

  .hero-subtitle {
    font-size: var(--font-size-base);
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    gap: var(--space-6);
  }

  .hero-stat .stat-number {
    font-size: var(--font-size-2xl);
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .feature-card {
    padding: var(--space-8);
  }

  .steps-wrapper {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .testimonial-card {
    min-width: 100%;
  }

  .offer-title {
    font-size: var(--font-size-3xl);
  }

  .section-title {
    font-size: var(--font-size-2xl);
  }

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

  .sticky-cta {
    display: flex;
  }

  .floating-whatsapp {
    bottom: 80px;
  }

  body {
    padding-bottom: 70px;
  }

  .header-phone {
    display: none;
  }

  .cta-title {
    font-size: var(--font-size-2xl);
  }

  .page-hero h1 {
    font-size: var(--font-size-3xl);
  }
}

/* ============================================
   RESPONSIVE - SMALL MOBILE
   ============================================ */
@media (max-width: 480px) {
  .hero-title {
    font-size: var(--font-size-2xl);
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: var(--space-4);
  }

  .hero-stat {
    flex: 1;
    min-width: 80px;
  }

  .offer-title {
    font-size: var(--font-size-2xl);
  }

  .offer-buttons {
    flex-direction: column;
    align-items: center;
  }

  .offer-buttons .btn {
    width: 100%;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-buttons .btn {
    width: 100%;
  }

  .section-title {
    font-size: var(--font-size-xl);
  }
}

/* ============================================
   SCROLLBAR
   ============================================ */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-gradient);
  border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}

/* ============================================
   SELECTION
   ============================================ */
::selection {
  background: var(--primary);
  color: white;
}

/* ============================================
   LOADING ANIMATION
   ============================================ */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: var(--space-4);
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid var(--border-color);
  border-top-color: var(--primary);
  border-right-color: #00c853;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Counter animation */
.counter-animated {
  display: inline-block;
}

/* ============================================
   ENHANCED FLOATING WHATSAPP
   ============================================ */
.floating-whatsapp::before {
  content: 'تواصل واتساب';
  position: absolute;
  right: 75px;
  background: var(--bg-card);
  color: var(--text-primary);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-lg);
  font-size: var(--font-size-sm);
  font-weight: 700;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateX(10px);
  transition: all var(--transition-base);
  pointer-events: none;
}

.floating-whatsapp:hover::before {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================
   CARD SHINE EFFECT
   ============================================ */
.feature-card:hover,
.service-card:hover,
.contact-card:hover {
  position: relative;
}

/* ============================================
   TEXT GRADIENT UTILITY
   ============================================ */
.text-gradient {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================
   STAGGERED CHILDREN ANIMATION
   ============================================ */
.stagger-children > * {
  opacity: 0;
  transform: translateY(20px);
  animation: stagger-in 0.6s ease forwards;
}

.stagger-children > *:nth-child(1) { animation-delay: 0.1s; }
.stagger-children > *:nth-child(2) { animation-delay: 0.2s; }
.stagger-children > *:nth-child(3) { animation-delay: 0.3s; }
.stagger-children > *:nth-child(4) { animation-delay: 0.4s; }
.stagger-children > *:nth-child(5) { animation-delay: 0.5s; }
.stagger-children > *:nth-child(6) { animation-delay: 0.6s; }

@keyframes stagger-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   FOCUS VISIBLE ACCESSIBILITY
   ============================================ */
.btn:focus-visible,
a:focus-visible {
  outline: 3px solid var(--primary-light);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
  .header, .sticky-cta, .floating-whatsapp, .page-loader {
    display: none !important;
  }
  body {
    padding: 0;
  }
}
