/* ============================================
   LUMA XR - Main Stylesheet
   Extended Reality Interactive Experiences
   ============================================ */

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

/* CSS Variables - LIGHTER THEME */
:root {
  /* Colors - Lighter Background */
  --bg-primary: #0F172A;        /* Lighter blue-dark */
  --bg-secondary: #1E293B;      /* Slate 800 */
  --bg-card: #334155;           /* Slate 700 - lighter cards */
  --bg-light: #475569;          /* Slate 600 */
  
  /* Accent Colors - More Vibrant */
  --accent-cyan: #22D3EE;       /* Brighter cyan */
  --accent-blue: #3B82F6;       /* Blue */
  --accent-purple: #A855F7;     /* Purple */
  --accent-pink: #EC4899;       /* Pink accent */
  --accent-orange: #F97316;     /* Orange for sale */
  
  /* Text Colors - Better Contrast */
  --text-primary: #F8FAFC;      /* Almost white */
  --text-secondary: #CBD5E1;    /* Light gray */
  --text-muted: #94A3B8;        /* Muted text */
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-blue) 50%, var(--accent-purple) 100%);
  --gradient-glow: linear-gradient(135deg, rgba(34, 211, 238, 0.2) 0%, rgba(168, 85, 247, 0.2) 100%);
  
  /* Border */
  --border-color: rgba(148, 163, 184, 0.15);
  
  /* Typography */
  --font-arabic: 'Cairo', sans-serif;
  --font-english: 'Outfit', sans-serif;
  
  /* Spacing */
  --section-padding: 100px;
  --container-max: 1400px;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Border Radius */
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-english);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

body[dir="rtl"] {
  font-family: var(--font-arabic);
}

/* Background Pattern - Subtle Grid */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 25% 25%, rgba(34, 211, 238, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(168, 85, 247, 0.03) 0%, transparent 50%),
    linear-gradient(rgba(148, 163, 184, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.02) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 60px 60px, 60px 60px;
  pointer-events: none;
  z-index: -1;
}

/* Container */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   Navigation - Enhanced
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition-normal);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  border-bottom: 1px solid var(--border-color);
}

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

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

.logo-icon {
  width: 45px;
  height: 45px;
  background: var(--gradient-primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  color: white;
  box-shadow: 0 0 30px rgba(34, 211, 238, 0.4);
}

.logo-text {
  font-size: 26px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: 1px;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: var(--transition-fast);
  position: relative;
}

.nav-links a:hover {
  color: var(--accent-cyan);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: var(--transition-fast);
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lang-toggle {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition-fast);
}

.lang-toggle:hover {
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
  background: rgba(34, 211, 238, 0.1);
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: var(--transition-fast);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 20px rgba(34, 211, 238, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(34, 211, 238, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition-fast);
  border: 1px solid var(--border-color);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-secondary:hover {
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
  background: rgba(34, 211, 238, 0.1);
}

.mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 24px;
  cursor: pointer;
}

/* ============================================
   Hero Section - With Video Support
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-top: 100px;
  overflow: hidden;
}

.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.85) 0%,
    rgba(15, 23, 42, 0.7) 50%,
    rgba(30, 41, 59, 0.8) 100%
  );
  z-index: 1;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, transparent 0%, var(--bg-primary) 70%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 24px;
}

.hero-tagline {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  display: block;
}

.hero-title {
  font-size: clamp(52px, 9vw, 90px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--text-primary);
  text-shadow: 0 0 60px rgba(34, 211, 238, 0.3);
}

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

.hero-subtitle {
  font-size: clamp(18px, 2.5vw, 24px);
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Floating Particles Animation */
.particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--accent-cyan);
  border-radius: 50%;
  opacity: 0.6;
  animation: float 15s infinite;
  box-shadow: 0 0 10px var(--accent-cyan);
}

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

/* ============================================
   Section Styles - Enhanced
   ============================================ */
.section {
  padding: var(--section-padding) 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 60px;
}

.section-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
  display: block;
}

.section-title {
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--text-primary);
}

.section-desc {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================
   Services Grid - Enhanced Cards
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: var(--transition-normal);
  cursor: pointer;
  text-decoration: none;
  display: block;
  position: relative;
}

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

.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(34, 211, 238, 0.3);
  box-shadow: 0 25px 60px rgba(34, 211, 238, 0.15),
              0 0 0 1px rgba(34, 211, 238, 0.1);
}

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

.service-card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: var(--transition-normal);
}

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

.service-card-content {
  padding: 28px;
}

.service-card-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.service-card-title-ar {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
  font-family: var(--font-arabic);
}

.service-card-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

.service-card-arrow {
  margin-top: 16px;
  color: var(--accent-cyan);
  font-size: 20px;
  transition: var(--transition-fast);
}

.service-card:hover .service-card-arrow {
  transform: translateX(5px);
}

/* ============================================
   Client Types
   ============================================ */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  margin-top: 60px;
}

.client-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 35px 20px;
  text-align: center;
  border: 1px solid var(--border-color);
  transition: var(--transition-normal);
}

.client-card:hover {
  border-color: var(--accent-cyan);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(34, 211, 238, 0.1);
}

.client-icon {
  width: 65px;
  height: 65px;
  background: var(--gradient-glow);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 30px;
  border: 1px solid rgba(34, 211, 238, 0.2);
}

.client-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.client-title-ar {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
  font-family: var(--font-arabic);
}

/* ============================================
   How It Works - Enhanced Steps
   ============================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.step-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 45px 30px;
  border: 1px solid var(--border-color);
  position: relative;
  transition: var(--transition-normal);
  text-align: center;
}

.step-card:hover {
  border-color: var(--accent-cyan);
  transform: translateY(-5px);
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  color: white;
  margin: 0 auto 25px;
  box-shadow: 0 10px 30px rgba(34, 211, 238, 0.3);
}

.step-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--text-primary);
}

.step-title-ar {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--text-primary);
  font-family: var(--font-arabic);
}

.step-desc {
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 15px;
}

/* ============================================
   Stats Counter
   ============================================ */
.stats-section {
  padding: 80px 0;
  background: var(--gradient-glow);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  text-align: center;
}

.stat-item {
  padding: 20px;
}

.stat-number {
  font-size: 56px;
  font-weight: 900;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
  line-height: 1;
}

.stat-label {
  font-size: 16px;
  color: var(--text-secondary);
  font-weight: 500;
}

.stat-label-ar {
  font-size: 16px;
  color: var(--text-secondary);
  font-weight: 500;
  font-family: var(--font-arabic);
}

/* ============================================
   CTA Banner - Enhanced
   ============================================ */
.cta-banner {
  background: var(--gradient-glow);
  border-radius: var(--radius-xl);
  padding: 80px 40px;
  text-align: center;
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.08) 0%, transparent 50%);
  animation: rotate 25s linear infinite;
}

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

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-title {
  font-size: clamp(30px, 4.5vw, 44px);
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.cta-desc {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   Service Page Template - Enhanced
   ============================================ */
.service-hero {
  min-height: 75vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 120px;
  padding-bottom: 60px;
  overflow: hidden;
}

.service-hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.service-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  z-index: 0;
}

.service-hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
}

.service-hero-title {
  font-size: clamp(40px, 6.5vw, 62px);
  font-weight: 900;
  margin-bottom: 16px;
  line-height: 1.15;
  color: var(--text-primary);
  text-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
}

.service-hero-title-ar {
  font-size: clamp(36px, 5.5vw, 54px);
  font-weight: 900;
  margin-bottom: 16px;
  line-height: 1.25;
  color: var(--text-primary);
  font-family: var(--font-arabic);
  text-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
}

.service-hero-tagline {
  font-size: 22px;
  color: var(--accent-cyan);
  margin-bottom: 28px;
  font-weight: 500;
}

.service-hero-tagline-ar {
  font-size: 20px;
  color: var(--accent-cyan);
  margin-bottom: 28px;
  font-weight: 500;
  font-family: var(--font-arabic);
}

/* Video Section */
.video-section {
  padding: 80px 0;
  background: var(--bg-secondary);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  background: var(--bg-card);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-primary);
  text-align: center;
}

.video-title-ar {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-primary);
  text-align: center;
  font-family: var(--font-arabic);
}

/* Info Section */
.info-section {
  padding: 90px 0;
}

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

.info-content h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 24px;
  color: var(--text-primary);
}

.info-content h2.ar {
  font-family: var(--font-arabic);
  font-size: 32px;
}

.info-content p {
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 18px;
  font-size: 16px;
}

.info-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.info-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Perfect For Section */
.perfect-for-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  margin-top: 45px;
}

.perfect-item {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  border: 1px solid var(--border-color);
  transition: var(--transition-normal);
}

.perfect-item:hover {
  border-color: var(--accent-cyan);
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(34, 211, 238, 0.1);
}

.perfect-icon {
  font-size: 36px;
  margin-bottom: 14px;
}

.perfect-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
}

.perfect-title-ar {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  font-family: var(--font-arabic);
}

/* Sales & Rental Cards */
.sales-rental-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 45px;
}

.sales-rental-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 45px 35px;
  border: 2px solid var(--border-color);
  text-align: center;
  transition: var(--transition-normal);
}

.sales-rental-card:hover {
  transform: translateY(-8px);
}

.sales-rental-card.sale {
  border-color: var(--accent-orange);
}

.sales-rental-card.sale:hover {
  box-shadow: 0 25px 60px rgba(249, 115, 22, 0.15);
}

.sales-rental-card.rental {
  border-color: var(--accent-cyan);
}

.sales-rental-card.rental:hover {
  box-shadow: 0 25px 60px rgba(34, 211, 238, 0.15);
}

.sales-rental-icon {
  width: 85px;
  height: 85px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 40px;
}

.sales-rental-card.sale .sales-rental-icon {
  background: rgba(249, 115, 22, 0.15);
}

.sales-rental-card.rental .sales-rental-icon {
  background: rgba(34, 211, 238, 0.15);
}

.sales-rental-title {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 14px;
  color: var(--text-primary);
}

.sales-rental-title-ar {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 14px;
  color: var(--text-primary);
  font-family: var(--font-arabic);
}

.sales-rental-desc {
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.7;
  font-size: 15px;
}

/* Related Services */
.related-services {
  padding: 90px 0;
}

/* ============================================
   Contact Page - Enhanced
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 70px;
  align-items: start;
}

.contact-info h2 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 24px;
  color: var(--text-primary);
}

.contact-info h2.ar {
  font-family: var(--font-arabic);
  font-size: 36px;
}

.contact-info p {
  color: var(--text-secondary);
  margin-bottom: 35px;
  line-height: 1.8;
  font-size: 16px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 40px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 18px;
}

.contact-method-icon {
  width: 55px;
  height: 55px;
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  border: 1px solid var(--border-color);
  transition: var(--transition-fast);
}

.contact-method:hover .contact-method-icon {
  border-color: var(--accent-cyan);
  background: rgba(34, 211, 238, 0.1);
}

.contact-method-text {
  font-size: 16px;
  color: var(--text-secondary);
}

.contact-method-text strong {
  color: var(--text-primary);
  display: block;
  margin-bottom: 4px;
  font-size: 15px;
}

.whatsapp-btn {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  padding: 18px 36px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: var(--transition-fast);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
}

/* Contact Form */
.contact-form {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 45px;
  border: 1px solid var(--border-color);
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-secondary);
}

.form-group label.ar {
  font-family: var(--font-arabic);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 16px 20px;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 15px;
  transition: var(--transition-fast);
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-cyan);
  box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.1);
}

.form-group textarea {
  min-height: 130px;
  resize: vertical;
}

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

/* ============================================
   About Page - Enhanced
   ============================================ */
.about-hero {
  padding-top: 150px;
  padding-bottom: 90px;
  text-align: center;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-top: 70px;
}

.stat-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 45px 25px;
  border: 1px solid var(--border-color);
  text-align: center;
  transition: var(--transition-normal);
}

.stat-card:hover {
  border-color: var(--accent-cyan);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(34, 211, 238, 0.1);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.feature-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 35px;
  border: 1px solid var(--border-color);
  transition: var(--transition-normal);
}

.feature-card:hover {
  border-color: var(--accent-cyan);
  transform: translateY(-5px);
}

.feature-icon {
  width: 65px;
  height: 65px;
  background: var(--gradient-glow);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  font-size: 30px;
  border: 1px solid rgba(34, 211, 238, 0.2);
}

.feature-title {
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--text-primary);
}

.feature-title-ar {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--text-primary);
  font-family: var(--font-arabic);
}

.feature-desc {
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 15px;
}

/* ============================================
   Footer - Enhanced
   ============================================ */
.footer {
  background: var(--bg-secondary);
  padding: 90px 0 35px;
  border-top: 1px solid var(--border-color);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 70px;
}

.footer-brand .logo {
  margin-bottom: 22px;
}

.footer-brand p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 22px;
  font-size: 15px;
}

.footer-brand p.ar {
  font-family: var(--font-arabic);
}

.footer-title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 26px;
  color: var(--text-primary);
}

.footer-title.ar {
  font-family: var(--font-arabic);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 14px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 15px;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--accent-cyan);
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 35px;
  text-align: center;
  color: var(--text-muted);
  font-size: 15px;
}

.footer-bottom.ar {
  font-family: var(--font-arabic);
}

/* ============================================
   Filter Tabs - Enhanced
   ============================================ */
.filter-tabs {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.filter-tab {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition-fast);
  font-family: inherit;
}

.filter-tab:hover {
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
}

.filter-tab.active {
  background: var(--gradient-primary);
  color: white;
  border-color: transparent;
  box-shadow: 0 8px 25px rgba(34, 211, 238, 0.3);
}

.filter-tab.ar {
  font-family: var(--font-arabic);
}

/* ============================================
   Floating WhatsApp Button
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: white;
  text-decoration: none;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
  transition: var(--transition-fast);
  z-index: 999;
  animation: whatsapp-pulse 2s infinite;
}

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

[dir="rtl"] .whatsapp-float {
  right: auto;
  left: 30px;
}

@keyframes whatsapp-pulse {
  0%, 100% {
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 8px 40px rgba(37, 211, 102, 0.6);
  }
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
  .nav-links {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .info-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .sales-rental-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  
  .video-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 70px;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .clients-grid,
  .perfect-for-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .whatsapp-float {
    width: 55px;
    height: 55px;
    font-size: 28px;
    bottom: 20px;
    right: 20px;
  }
  
  [dir="rtl"] .whatsapp-float {
    left: 20px;
  }
}

@media (max-width: 480px) {
  .clients-grid,
  .perfect-for-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-form {
    padding: 28px;
  }
  
  .sales-rental-card {
    padding: 35px 25px;
  }
}

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

.fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}

/* Glow Effects */
.glow-cyan {
  box-shadow: 0 0 40px rgba(34, 211, 238, 0.4);
}

.glow-text {
  text-shadow: 0 0 30px rgba(34, 211, 238, 0.5);
}

/* Language Specific */
[dir="rtl"] .service-card-arrow {
  transform: rotate(180deg);
}

[dir="rtl"] .service-card:hover .service-card-arrow {
  transform: rotate(180deg) translateX(5px);
}
