/* ============================================
   XACTA AUTOMOTIVE - Main Stylesheet
   Professional SaaS Design System
   ============================================ */

/* CSS Variables */
:root {
  /* Primary Colors */
  --primary: #0066cc;
  --primary-dark: #004d99;
  --primary-light: #3399ff;
  
  /* Secondary Colors */
  --secondary: #1a1a2e;
  --secondary-light: #16213e;
  
  /* Accent Colors */
  --accent: #ff6b35;
  --accent-light: #ff8c5a;
  --success: #10b981;
  --warning: #f59e0b;
  
  /* Neutrals */
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  
  /* Typography */
  --font-display: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-arabic: 'Tajawal', sans-serif;
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  
  /* Border Radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-full: 9999px;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 500ms ease;
}

/* RTL Support */
[dir="rtl"] {
  --font-body: var(--font-arabic);
  --font-display: var(--font-arabic);
}

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

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

body {
  font-family: var(--font-body);
  line-height: 1.6;
  color: var(--gray-800);
  background: var(--white);
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--gray-900);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

p {
  color: var(--gray-600);
  font-size: 1.125rem;
}

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

a:hover {
  color: var(--primary-dark);
}

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.container-lg {
  max-width: 1440px;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-200);
  transition: all var(--transition-base);
}

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

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.logo img {
  height: 45px;
  width: auto;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  list-style: none;
}

.nav-link {
  font-weight: 500;
  color: var(--gray-700);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.nav-link:hover {
  color: var(--primary);
  background: var(--gray-100);
}

.nav-link.active {
  color: var(--primary);
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: var(--space-sm);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-fast);
}

[dir="rtl"] .dropdown-menu {
  left: auto;
  right: 0;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  padding: var(--space-md);
  color: var(--gray-700);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.dropdown-item:hover {
  background: var(--gray-100);
  color: var(--primary);
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

/* Language Dropdown with Flags */
.lang-dropdown {
  position: relative;
  z-index: 100;
}

.lang-dropdown-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: all 0.2s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.lang-dropdown-btn:hover {
  border-color: var(--gray-300);
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.lang-dropdown-btn .flag {
  width: 22px;
  height: 16px;
  border-radius: 2px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.1);
}

.lang-dropdown-btn svg {
  width: 14px;
  height: 14px;
  color: var(--gray-500);
  transition: transform 0.2s;
}

.lang-dropdown.open .lang-dropdown-btn svg {
  transform: rotate(180deg);
}

.lang-dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 6px;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s ease;
  min-width: 150px;
}

html[dir="rtl"] .lang-dropdown-menu {
  right: auto;
  left: 0;
}

.lang-dropdown.open .lang-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  cursor: pointer;
  transition: background 0.15s;
  font-size: 0.9rem;
  color: var(--gray-700);
}

.lang-option:hover {
  background: var(--gray-50);
}

.lang-option.active {
  background: rgba(0,102,204,0.05);
  color: var(--primary);
  font-weight: 500;
}

.lang-option .flag {
  width: 22px;
  height: 16px;
  border-radius: 2px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.1);
}

/* Old lang-switch for backward compatibility */
.lang-switch {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-sm) var(--space-md);
  background: var(--gray-100);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.lang-switch:hover {
  background: var(--gray-200);
}

/* Mobile Menu */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-sm);
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-xl);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-base);
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: var(--white);
  color: var(--primary);
  border-color: var(--primary);
}

.btn-secondary:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-accent {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.btn-accent:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
}

.btn-white {
  background: var(--white);
  color: var(--secondary);
  border-color: var(--white);
}

.btn-white:hover {
  background: var(--gray-100);
  border-color: var(--gray-100);
}

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

.btn-outline-white:hover {
  background: var(--white);
  color: var(--primary);
}

.btn-lg {
  padding: var(--space-lg) var(--space-2xl);
  font-size: 1.125rem;
}

.btn-sm {
  padding: var(--space-sm) var(--space-md);
  font-size: 0.875rem;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.hero-text {
  color: var(--white);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  margin-bottom: var(--space-lg);
  backdrop-filter: blur(10px);
}

.hero-title {
  color: var(--white);
  margin-bottom: var(--space-lg);
  line-height: 1.1;
}

.hero-title span {
  color: var(--primary-light);
}

.hero-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.25rem;
  margin-bottom: var(--space-2xl);
  max-width: 540px;
}

.hero-buttons {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: var(--space-2xl);
  margin-top: var(--space-3xl);
  padding-top: var(--space-2xl);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.hero-stat-value {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
}

.hero-stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  max-width: 600px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-2xl);
}

.hero-float {
  overflow: visible;
  position: absolute;
  background: var(--white);
  padding: var(--space-md) var(--space-lg);
  border-radius: 0;
  box-shadow: var(--shadow-xl);
  animation: float 3s ease-in-out infinite;
}

.hero-float-1 {
  top: 10%;
  right: -20px;
  animation-delay: 0s;
}

.hero-float-2 {
  bottom: 20%;
  left: -30px;
  animation-delay: 1s;
}

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

/* ============================================
   PRODUCT SPLIT SECTION
   ============================================ */
.products-split {
  padding: var(--space-4xl) 0;
  background: var(--gray-50);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-3xl);
}

.section-header h2 {
  margin-bottom: var(--space-md);
}

.section-header p {
  font-size: 1.125rem;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-2xl);
}

.product-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-base);
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary);
}

.product-card.connect::before {
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-2xl);
}

.product-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-lg);
}

.product-card.connect .product-icon {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
}

.product-icon svg {
  width: 32px;
  height: 32px;
  color: var(--white);
}

.product-label {
  display: inline-block;
  padding: var(--space-xs) var(--space-md);
  background: var(--gray-100);
  color: var(--gray-600);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-md);
}

.product-card.connect .product-label {
  background: rgba(255, 107, 53, 0.1);
  color: var(--accent);
}

.product-card h3 {
  margin-bottom: var(--space-md);
}

.product-card p {
  margin-bottom: var(--space-lg);
}

.product-features {
  list-style: none;
  margin-bottom: var(--space-xl);
}

.product-features li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  color: var(--gray-600);
}

.product-features li::before {
  content: '✓';
  color: var(--success);
  font-weight: 700;
}

/* ============================================
   CLIENTS / TRUST SECTION
   ============================================ */
.clients {
  padding: var(--space-3xl) 0;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

.clients-title {
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-xl);
}

.clients-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3xl);
  flex-wrap: wrap;
}

.clients-logos img {
  height: 55px;
  
  width: auto;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all var(--transition-base);
}

.clients-logos img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features {
  padding: var(--space-4xl) 0;
}

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

.feature-card {
  text-align: center;
  padding: var(--space-2xl);
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-200);
  transition: all var(--transition-base);
}

.feature-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.feature-card:hover .feature-icon {
  background: var(--primary);
}

.feature-icon svg {
  width: 36px;
  height: 36px;
  color: var(--primary);
  transition: all var(--transition-base);
}

.feature-card:hover .feature-icon svg {
  color: var(--white);
}

.feature-card h4 {
  margin-bottom: var(--space-sm);
}

.feature-card p {
  font-size: 1rem;
}

/* ============================================
   MODULES SECTION
   ============================================ */
.modules {
  padding: var(--space-4xl) 0;
  background: var(--secondary);
  color: var(--white);
}

.modules .section-header h2 {
  color: var(--white);
}

.modules .section-header p {
  color: rgba(255, 255, 255, 0.7);
}

.modules-tabs {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  margin-bottom: var(--space-3xl);
  flex-wrap: wrap;
}

.module-tab {
  padding: var(--space-md) var(--space-xl);
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: var(--radius-full);
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.module-tab:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

.module-tab.active {
  background: var(--primary);
  color: var(--white);
}

.module-content {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.module-content.active {
  display: grid;
}

.module-text h3 {
  color: var(--white);
  margin-bottom: var(--space-lg);
}

.module-text p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--space-xl);
}

.module-features {
  list-style: none;
}

.module-features li {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-sm) 0;
  color: rgba(255, 255, 255, 0.8);
}

.module-features li svg {
  width: 20px;
  height: 20px;
  color: var(--success);
}

.module-image img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-2xl);
}

/* ============================================
   B2B NETWORK HIGHLIGHT
   ============================================ */
.b2b-highlight {
  padding: var(--space-4xl) 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.b2b-highlight::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.b2b-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.b2b-text h2 {
  color: var(--white);
  margin-bottom: var(--space-lg);
}

.b2b-text p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  margin-bottom: var(--space-xl);
}

.b2b-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.b2b-feature {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md);
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
}

.b2b-feature svg {
  width: 24px;
  height: 24px;
  color: var(--accent);
}

.b2b-visual {
  position: relative;
}

.b2b-network-diagram {
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  backdrop-filter: blur(10px);
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing {
  padding: var(--space-4xl) 0;
  background: var(--gray-50);
}

.pricing-toggle {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-3xl);
}

.pricing-toggle span {
  font-weight: 500;
  color: var(--gray-600);
}

.pricing-toggle span.active {
  color: var(--primary);
}

.toggle-switch {
  position: relative;
  width: 60px;
  height: 32px;
  background: var(--gray-300);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.toggle-switch.active {
  background: var(--primary);
}

.toggle-switch::after {
  content: '';
  position: absolute;
  top: 4px;
  left: 4px;
  width: 24px;
  height: 24px;
  background: var(--white);
  border-radius: 50%;
  transition: all var(--transition-fast);
}

.toggle-switch.active::after {
  left: 32px;
}

.pricing-save {
  background: var(--success);
  color: var(--white);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  border: 2px solid var(--gray-200);
  transition: all var(--transition-base);
  position: relative;
}

.pricing-card.popular {
  border-color: var(--primary);
  transform: scale(1.05);
  box-shadow: var(--shadow-xl);
}

.pricing-card.popular::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--white);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
}

.pricing-card:hover {
  border-color: var(--primary);
}

.pricing-name {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.pricing-desc {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin-bottom: var(--space-lg);
}

.pricing-price {
  margin-bottom: var(--space-lg);
}

.pricing-amount {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gray-900);
}

.pricing-period {
  color: var(--gray-500);
  font-size: 0.875rem;
}

.pricing-features {
  list-style: none;
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid var(--gray-200);
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  font-size: 0.9rem;
  color: var(--gray-600);
}

.pricing-features li svg {
  width: 18px;
  height: 18px;
  color: var(--success);
  flex-shrink: 0;
}

.pricing-features li.disabled {
  color: var(--gray-400);
}

.pricing-features li.disabled svg {
  color: var(--gray-300);
}

.pricing-card .btn {
  width: 100%;
}

/* Currency Toggle */
.currency-toggle {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}

.currency-btn {
  padding: var(--space-sm) var(--space-lg);
  background: var(--white);
  border: 2px solid var(--gray-300);
  border-radius: var(--radius-md);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.currency-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  padding: var(--space-4xl) 0;
}

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

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
}

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

.testimonial-stars svg {
  width: 20px;
  height: 20px;
  color: var(--warning);
  fill: var(--warning);
}

.testimonial-text {
  font-size: 1rem;
  color: var(--gray-700);
  margin-bottom: var(--space-lg);
  font-style: italic;
}

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

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-name {
  font-weight: 600;
  color: var(--gray-900);
}

.testimonial-role {
  font-size: 0.875rem;
  color: var(--gray-500);
}

/* ============================================
   REGIONS MAP (legacy, kept for compatibility with about.html-style markup)
   ============================================ */
.regions:not(.presence-section) {
  padding: var(--space-4xl) 0;
  background: var(--gray-50);
}

.regions-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.regions-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.region-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

img.region-flag {
  font-size: 2rem;
}

.region-name {
  font-weight: 600;
  color: var(--gray-800);
}

/* ============================================
   GLOBAL PRESENCE / MENA MAP (homepage)
   Dark themed interactive SVG map of MENA region
   ============================================ */
.presence-section {
  padding: var(--space-4xl) 0;
  background: #0f172a;
  color: var(--white);
  overflow: hidden;
}
.presence-section .section-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.presence-section .section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 16px;
}
.presence-section .section-header h2 {
  color: var(--white);
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}
.presence-section .section-desc {
  color: var(--gray-400);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

.presence-section .map-container {
  max-width: 800px;
  margin: 0 auto var(--space-3xl);
  position: relative;
  background: rgba(15, 23, 42, 0.6);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(37, 99, 235, 0.15);
  padding: 24px;
}
.presence-section .mena-map {
  width: 100%;
  height: auto;
  display: block;
}

.presence-section .map-land {
  fill: rgba(100, 130, 180, 0.12);
  stroke: rgba(100, 130, 180, 0.2);
  stroke-width: 0.5;
}
.presence-section .country-shape {
  fill: rgba(37, 99, 235, 0.15);
  stroke: rgba(37, 99, 235, 0.4);
  stroke-width: 1.5;
  transition: var(--transition-base);
}
.presence-section .country-shape:hover {
  fill: rgba(37, 99, 235, 0.25);
  stroke: rgba(37, 99, 235, 0.65);
}
.presence-section .country-shape.country-hq {
  fill: rgba(37, 99, 235, 0.22);
  stroke: rgba(37, 99, 235, 0.55);
  stroke-width: 2;
}

.presence-section .connection-line {
  stroke: rgba(37, 99, 235, 0.2);
  stroke-width: 1;
  stroke-dasharray: 6 4;
}

.presence-section .pin-glow {
  fill: url(#pinGlow);
  opacity: 0.5;
}
.presence-section .pin-pulse {
  fill: none;
  stroke: #2563eb;
  stroke-width: 1.5;
  opacity: 0.6;
  animation: pinPulse 2s ease-out infinite;
}
.presence-section .pin-dot { fill: #2563eb; }
.presence-section .pin-hq { fill: var(--accent); r: 7; }

@keyframes pinPulse {
  0% { r: 6; opacity: 0.6; }
  100% { r: 18; opacity: 0; }
}

.presence-section .map-label {
  fill: var(--gray-300);
  font-size: 13px;
  font-family: var(--font-body);
  text-anchor: middle;
}
.presence-section .map-label-hq {
  fill: var(--white);
  font-weight: 600;
  font-size: 14px;
}
.presence-section .map-label-sub {
  fill: var(--accent);
  font-size: 10px;
  font-weight: 700;
  text-anchor: middle;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.presence-section .country-cards {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}
.presence-section .country-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 12px;
  border-radius: var(--radius-md);
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid rgba(37, 99, 235, 0.1);
  transition: var(--transition-base);
  position: relative;
}
.presence-section .country-card:hover {
  background: rgba(37, 99, 235, 0.1);
  border-color: rgba(37, 99, 235, 0.3);
  transform: translateY(-4px);
}
.presence-section .country-flag {
  width: 56px;
  height: 38px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}
.presence-section .country-name {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
  text-align: center;
}
.presence-section .country-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: var(--accent);
  color: var(--white);
  font-size: 0.6rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
html[dir="rtl"] .presence-section .country-badge {
  right: auto;
  left: 8px;
}

@media (max-width: 1024px) {
  .presence-section .country-cards { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 768px) {
  .presence-section .country-cards { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .presence-section .country-flag { width: 48px; height: 32px; }
  .presence-section .map-container { padding: 12px; }
  .presence-section .section-header h2 { font-size: 1.75rem; }
}
@media (max-width: 480px) {
  .presence-section .country-cards { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta {
  padding: var(--space-4xl) 0;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
  text-align: center;
}

.cta h2 {
  color: var(--white);
  margin-bottom: var(--space-md);
}

.cta p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto var(--space-xl);
}

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

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--gray-900);
  color: var(--white);
  padding: var(--space-4xl) 0 var(--space-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-3xl);
  margin-bottom: var(--space-3xl);
  padding-bottom: var(--space-3xl);
  border-bottom: 1px solid var(--gray-800);
}

.footer-brand p {
  color: var(--gray-400);
  margin: var(--space-lg) 0;
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: var(--space-md);
}

.footer-social a {
  width: 40px;
  
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-800);
  border-radius: 50%;
  color: var(--gray-400);
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  background: var(--primary);
  color: var(--white);
}

.footer-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: var(--space-lg);
  color: var(--white);
}

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

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

.footer-links a {
  color: var(--gray-400);
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

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

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  color: var(--gray-400);
  font-size: 0.9rem;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--primary-light);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright {
  color: var(--gray-500);
  font-size: 0.875rem;
}

.footer-legal {
  display: flex;
  gap: var(--space-lg);
}

.footer-legal a {
  color: var(--gray-500);
  font-size: 0.875rem;
}

.footer-legal a:hover {
  color: var(--white);
}

/* ============================================
   DEMO FORM / CONTACT
   ============================================ */
.demo-section {
  padding: var(--space-4xl) 0;
}

.demo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

.demo-form {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-xl);
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-label {
  display: block;
  font-weight: 500;
  color: var(--gray-700);
  margin-bottom: var(--space-sm);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: var(--space-md);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 1rem;
  transition: all var(--transition-fast);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.security-question {
  background: #f0f7ff;
  border: 1px solid #d0e3f7;
  border-radius: 8px;
  padding: 12px 16px;
}
.security-question label { font-weight: 600; color: var(--dark); }
.security-question input { margin-top: 8px; }

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

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

/* ============================================
   UTILITIES
   ============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: var(--space-md); }
.mt-2 { margin-top: var(--space-lg); }
.mt-3 { margin-top: var(--space-xl); }
.mt-4 { margin-top: var(--space-2xl); }

.mb-1 { margin-bottom: var(--space-md); }
.mb-2 { margin-bottom: var(--space-lg); }
.mb-3 { margin-bottom: var(--space-xl); }
.mb-4 { margin-bottom: var(--space-2xl); }

.hidden { display: none !important; }
.visible { display: block !important; }

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

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

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

.animate-fade-in {
  animation: fadeIn 0.6s ease forwards;
}

.animate-slide-in-left {
  animation: slideInLeft 0.6s ease forwards;
}

.animate-slide-in-right {
  animation: slideInRight 0.6s ease forwards;
}

/* Stagger delays */
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .pricing-card.popular {
    transform: scale(1);
  }
}

@media (max-width: 992px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .hero-image {
    display: none;
  }
  
  .products-grid {
    grid-template-columns: 1fr;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .module-content {
    grid-template-columns: 1fr;
  }
  
  .b2b-content {
    grid-template-columns: 1fr;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .regions-content {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .demo-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .mobile-toggle {
    display: flex;
  }
  
  .header-actions .btn {
    display: none;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .b2b-features {
    grid-template-columns: 1fr;
  }
  
  .regions-list {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* ============================================
   RTL SPECIFIC STYLES
   ============================================ */
[dir="rtl"] .hero-stats {
  direction: rtl;
}

[dir="rtl"] .product-features li::before {
  margin-left: var(--space-sm);
  margin-right: 0;
}

[dir="rtl"] .footer-contact-item svg {
  margin-left: var(--space-sm);
  margin-right: 0;
}

[dir="rtl"] .form-input,
[dir="rtl"] .form-select,
[dir="rtl"] .form-textarea {
  text-align: right;
}

/* ============================================
   WHATSAPP FLOAT BUTTON
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
}

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

.whatsapp-float a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-base);
}

.whatsapp-float a:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-xl);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  color: var(--white);
}

/* ============================================
   LOADING STATES
   ============================================ */
.skeleton {
  background: linear-gradient(90deg, var(--gray-200) 25%, var(--gray-100) 50%, var(--gray-200) 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
}

@keyframes skeleton-loading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ============================================
   CONNECT PRODUCT SPECIFIC
   ============================================ */
.connect-hero {
  background: linear-gradient(135deg, #ff6b35 0%, #ff8c5a 100%);
}

.connect-badge {
  background: rgba(255, 255, 255, 0.2);
}

/* ============================================
   DMS PRODUCT SPECIFIC
   ============================================ */
.dms-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

  text-align: right;
}

}
.rotate-word.active {
  position: relative;
  opacity: 1;
  transform: translateY(0);
  left: auto;
  right: 0;
}

/* Rotating Text Animation */
.rotating-text {
  display: inline-block;
  position: relative;
  vertical-align: bottom;
}

.rotate-word {
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  color: var(--primary);
  white-space: nowrap;
}

.rotate-word.active {
  position: relative;
  opacity: 1;
  transform: translateY(0);
}

[dir="rtl"] .rotate-word {
  left: auto;
  right: 0;
}

/* Hero outline button */
.btn-outline-white {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-outline-white:hover {
  background: white;
  color: var(--primary);
}

/* Enhanced clients section for multiple logos */
.clients-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem 3rem;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.clients-logos img {
  height: 50px;
  max-width: 120px;
  width: auto;
  object-fit: contain;
}

/* Separate Brands and Clients sections */
.brands-section {
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-lg);
  background: var(--white);
}

.clients-section {
  padding-top: var(--space-lg);
  padding-bottom: var(--space-2xl);
  background: var(--gray-50);
}

.clients-section .clients-logos img {
  height: 60px;
  max-width: 150px;
}

/* Country Flag Images */
img.region-flag {
  width: 48px;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.region-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* WhatsApp Button */
.btn-whatsapp {
  background: #25D366;
  color: white !important;
  border: 2px solid #25D366;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-whatsapp:hover {
  background: #128C7E;
  border-color: #128C7E;
  color: white !important;
}

.btn-whatsapp svg {
  fill: white;
}



/* Hero Logo Floats - Same Size Containers */

/* Hero Logo Floats - Larger Containers for Full Logo Visibility */



/* Hero Overlay Logo - Positioned above image without shifting */
.hero-overlay-logo {
  position: relative;
  text-align: center;
  margin-bottom: 15px;
  width: 100%;
}

.hero-overlay-logo img {
  width: 75%;
  max-width: 450px;
  height: auto;
  object-fit: contain;
}

/* Product Logo Icons */
.product-logo {
  background: transparent !important;
  width: auto !important;
  height: auto !important;
}

.product-logo img {
  width: 260px;
  height: auto;
  object-fit: contain;
}

/* ============================================
   Video Demo & Brochure Download Section
   ============================================ */
.video-brochure-section {
  padding: 80px 0 60px;
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}

.video-wrapper {
  max-width: 720px;
  margin: 0 auto 48px;
}

.video-container {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  background: #000;
  aspect-ratio: 16/9;
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 102, 204, 0.7), rgba(255, 107, 53, 0.6));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.4s ease;
}

.video-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.play-btn {
  width: 72px;
  height: 72px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.video-overlay:hover .play-btn {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.play-btn svg {
  width: 30px;
  height: 30px;
  color: var(--accent);
  margin-left: 4px;
}

.play-label {
  color: #fff;
  font-size: 1.125rem;
  font-weight: 600;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Brochure Downloads */
.brochure-downloads {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.brochure-downloads h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 8px;
}

.brochure-subtitle {
  color: var(--gray-500);
  font-size: 1.05rem;
  margin-bottom: 32px;
}

.brochure-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 640px;
  margin: 0 auto;
}

.brochure-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: #fff;
  border: 2px solid var(--gray-100);
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.brochure-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(255, 107, 53, 0.12);
}

.brochure-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  border-radius: 10px;
}

.brochure-icon svg {
  width: 20px;
  height: 20px;
  color: #fff;
}

.brochure-info {
  flex: 1;
  text-align: left;
}

[dir="rtl"] .brochure-info {
  text-align: right;
}

.brochure-info h4 {
  font-size: 0.925rem;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 2px;
}

.brochure-info p {
  font-size: 0.8rem;
  color: var(--gray-500);
  margin: 0;
}

.brochure-download-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
  color: var(--accent);
  transition: transform 0.3s ease;
}

.brochure-card:hover .brochure-download-icon {
  transform: translateY(3px);
}

.brochure-download-icon svg {
  width: 20px;
  height: 20px;
}

.brochure-download-icon span {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .video-brochure-section {
    padding: 60px 0 48px;
  }
  .video-wrapper {
    margin-bottom: 40px;
  }
  .brochure-cards {
    grid-template-columns: 1fr;
  }
  .play-btn {
    width: 64px;
    height: 64px;
  }
  .play-btn svg {
    width: 28px;
    height: 28px;
  }
  .play-label {
    font-size: 0.95rem;
  }
}
