/* ============================================================
   GRM KSA — Global Rewinding Motors Saudi Arabia
   Main Stylesheet — Bilingual EN/AR with RTL Support
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Syne:wght@700;800&family=Cairo:wght@300;400;600;700;800&display=swap');

/* ── DESIGN TOKENS ─────────────────────────────────────────── */
:root {
  --primary:        #0077FF;
  --primary-dark:   #005FCE;
  --primary-glow:   rgba(0,119,255,0.18);
  --primary-glow2:  rgba(0,119,255,0.08);

  --dark-bg:        #070E1A;
  --dark-mid:       #0A1628;
  --dark-card:      #0F1E35;
  --dark-border:    rgba(0,119,255,0.15);
  --dark-nav:       #0D2040;

  --light-bg:       #E8F3FF;
  --light-card:     #F4F8FF;

  --text-white:     #FFFFFF;
  --text-light:     #BDC8DB;
  --text-muted:     #7A8CA3;
  --text-dark:      #0A1628;

  --gradient-hero:  linear-gradient(135deg, rgba(7,14,26,0.55) 0%, rgba(0,77,160,0.25) 100%);
  --gradient-card:  linear-gradient(180deg, transparent 50%, rgba(7,14,26,0.96) 100%);
  --gradient-blue:  linear-gradient(135deg, #0077FF 0%, #0044BB 100%);
  --gradient-dark:  linear-gradient(135deg, #0A1628 0%, #0F2448 100%);

  --shadow-sm:   0 4px 20px rgba(0,0,0,0.2);
  --shadow-md:   0 8px 40px rgba(0,0,0,0.35);
  --shadow-glow: 0 0 30px rgba(0,119,255,0.3);
  --shadow-card: 0 4px 30px rgba(0,0,0,0.25);

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  --transition: all 0.35s cubic-bezier(0.4,0,0.2,1);

  --font-en: 'Inter', sans-serif;
  --font-ar: 'Cairo', sans-serif;
  --font-display: 'Syne', sans-serif;

  --container-width: 1200px;
  --header-height: 88px;
}

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

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

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

html[dir="ltr"] {
  font-family: var(--font-en);
}

body {
  background-color: var(--dark-bg);
  color: var(--text-white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; }

/* ── LANGUAGE VISIBILITY ────────────────────────────────────── */
html[dir="ltr"] .lang-ar { display: none !important; }
html[dir="rtl"] .lang-en { display: none !important; }
html[dir="rtl"] .lang-ar { display: block; }
html[dir="rtl"] span.lang-ar { display: inline; }
html[dir="rtl"] li.lang-ar { display: list-item; }

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

/* ── PRELOADER ──────────────────────────────────────────────── */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--dark-bg);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  transition: opacity 0.6s ease;
}

#preloader.hidden {
  opacity: 0;
  pointer-events: none;
}

.preloader-ring {
  width: 64px;
  height: 64px;
  border: 3px solid var(--dark-border);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}

.preloader-logo {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* ── TOP BAR ─────────────────────────────────────────────────── */
.top-bar {
  background: var(--dark-nav);
  padding: 12px 0;
  border-bottom: 1px solid var(--dark-border);
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  min-height: 40px;
}

.top-bar-contacts {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--text-light);
  line-height: 1.5;
}

.top-bar-item i {
  color: var(--primary);
  font-size: 14px;
}

.top-bar-item a {
  color: var(--text-light);
  transition: var(--transition);
}
.top-bar-item a:hover { color: var(--primary); }

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

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

.social-links a {
  width: 28px;
  height: 28px;
  border: 1px solid var(--dark-border);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 12px;
  transition: var(--transition);
}
.social-links a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

/* ── LANGUAGE TOGGLE ────────────────────────────────────────── */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--dark-border);
  border-radius: 20px;
  padding: 3px;
}

.lang-btn {
  padding: 4px 12px;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.5px;
  border: none;
  background: none;
}

.lang-btn.active {
  background: var(--primary);
  color: #fff;
}

/* ── NAVBAR ─────────────────────────────────────────────────── */
#navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 22, 40, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,119,255,0.2);
  height: var(--header-height);
  transition: var(--transition);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

#navbar.scrolled {
  background: rgba(7, 14, 26, 0.98);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

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

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

.logo-icon {
  width: 46px;
  height: 46px;
  background: var(--gradient-blue);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: var(--shadow-glow);
  flex-shrink: 0;
}

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

.logo-title {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: var(--text-white);
  letter-spacing: 1.5px;
}

.logo-sub {
  font-size: 9.5px;
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

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

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

.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 16px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}

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

.nav-links li a:hover::after,
.nav-links li a.active::after {
  transform: translateX(-50%) scaleX(1);
}

/* CTA Button */
.btn-quote {
  background: var(--gradient-blue);
  color: #fff !important;
  padding: 10px 22px !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 15px rgba(0,119,255,0.35);
  transition: var(--transition) !important;
  white-space: nowrap;
}

.btn-quote::after { display: none !important; }

.btn-quote:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 25px rgba(0,119,255,0.5) !important;
}

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text-light);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile nav open */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(7, 14, 26, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  padding: 32px 24px;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  padding: 14px 16px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-light);
  border-bottom: 1px solid var(--dark-border);
  transition: var(--transition);
}

.mobile-nav a:hover { color: var(--primary); padding-left: 24px; }

html[dir="rtl"] .mobile-nav a:hover { padding-left: 16px; padding-right: 24px; }

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  border: none;
  letter-spacing: 0.3px;
}

.btn-primary {
  background: var(--gradient-blue);
  color: #fff;
  box-shadow: 0 4px 20px rgba(0,119,255,0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,119,255,0.5);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.4);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
  transform: translateY(-2px);
}

.btn-white {
  background: #fff;
  color: var(--primary);
  box-shadow: var(--shadow-md);
}

.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

/* ── HERO SLIDESHOW ──────────────────────────────────────────── */
#hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.hero-slider {
  position: relative;
  height: 100%;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.slide.active { opacity: 1; }

.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.slide.active .slide-bg {
  transform: scale(1);
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
}

.slide-overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(7,14,26,0.88) 35%, rgba(7,14,26,0.25) 100%);
}

html[dir="rtl"] .slide-overlay-gradient {
  background: linear-gradient(to left, rgba(7,14,26,0.88) 35%, rgba(7,14,26,0.25) 100%);
}

.slide-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
}

.slide-text {
  max-width: 620px;
}

.slide-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,119,255,0.25);
  border: 1px solid rgba(0,119,255,0.5);
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 600;
  color: #60AAFF;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease 0.3s, transform 0.6s ease 0.3s;
}

.slide.active .slide-badge {
  opacity: 1;
  transform: translateY(0);
}

.slide-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(28px, 2.8vw, 48px);
  font-weight: 800;
  line-height: 1.2;
  color: #FFFFFF;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease 0.5s, transform 0.7s ease 0.5s;
}

html[dir="rtl"] .slide-title {
  font-family: 'Cairo', sans-serif;
  font-size: clamp(26px, 2.6vw, 44px);
  font-weight: 800;
  letter-spacing: 0;
}

.slide.active .slide-title {
  opacity: 1;
  transform: translateY(0);
}

.slide-title span { color: #60AAFF; }

.slide-desc {
  font-size: 17px;
  color: var(--text-light);
  line-height: 1.8;
  max-width: 560px;
  margin-bottom: 36px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease 0.7s, transform 0.6s ease 0.7s;
}

html[dir="rtl"] .slide-desc {
  font-family: var(--font-ar);
}

.slide.active .slide-desc {
  opacity: 1;
  transform: translateY(0);
}

.slide-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease 0.9s, transform 0.6s ease 0.9s;
}

.slide.active .slide-actions {
  opacity: 1;
  transform: translateY(0);
}

/* Hero controls */
.hero-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  padding: 0;
}

.hero-dot.active {
  width: 28px;
  border-radius: 4px;
  background: var(--primary);
}

.hero-arrows {
  position: absolute;
  bottom: 40px;
  right: 40px;
  z-index: 10;
  display: flex;
  gap: 10px;
}

html[dir="rtl"] .hero-arrows {
  right: auto;
  left: 40px;
}

.hero-arrow {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  transition: var(--transition);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
}

.hero-arrow:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: scale(1.1);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 6px;
}

.scroll-wheel {
  width: 3px;
  height: 8px;
  background: var(--primary);
  border-radius: 2px;
  animation: scrollWheel 2s infinite;
}

/* ── SECTION COMMON ──────────────────────────────────────────── */
.section {
  padding: 100px 0;
}

.section-sm { padding: 60px 0; }

.section-dark { background: var(--dark-mid); }
.section-darker { background: var(--dark-bg); }
.section-light { background: var(--light-bg); }
.section-blue { background: var(--primary); }

.section-header {
  margin-bottom: 60px;
}

.section-header.center { text-align: center; }

html[dir="rtl"] .section-header { text-align: right; }
html[dir="rtl"] .section-header.center { text-align: center; }

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-badge::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

html[dir="rtl"] .section-badge::before {
  display: none;
}

html[dir="rtl"] .section-badge::after {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

.section-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(26px, 2.6vw, 40px);
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.25;
  margin-bottom: 16px;
  letter-spacing: -0.3px;
}

html[dir="rtl"] .section-title {
  font-family: 'Cairo', sans-serif;
  font-size: clamp(24px, 2.5vw, 38px);
  letter-spacing: 0;
}

.section-title.dark { color: var(--text-dark); }
.section-title span { color: var(--primary); }

.section-desc {
  font-size: 16px;
  color: var(--text-light);
  max-width: 600px;
  line-height: 1.8;
}

.section-header.center .section-desc { margin: 0 auto; }

.section-title.dark + .section-desc,
.section-desc.dark-text { color: #555; }

/* ── ABOUT SECTION ───────────────────────────────────────────── */
#about {
  background: var(--dark-bg);
}

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

html[dir="rtl"] .about-grid { direction: rtl; }

.about-image-wrap {
  position: relative;
}

.about-img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-md);
}

.about-experience {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--gradient-blue);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow-glow);
  min-width: 140px;
}

html[dir="rtl"] .about-experience {
  right: auto;
  left: -24px;
}

.about-experience .exp-number {
  font-family: 'Inter', sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: -1px;
}

.about-experience .exp-label {
  font-size: 12px;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
  margin-top: 4px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-light);
  font-weight: 500;
}

.about-feature i {
  width: 28px;
  height: 28px;
  background: var(--primary-glow);
  border: 1px solid rgba(0,119,255,0.25);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 13px;
  flex-shrink: 0;
}

/* ── SERVICES ────────────────────────────────────────────────── */
#services {
  background: var(--dark-mid);
}

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

.service-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  group: true;
}

.service-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

.service-card:hover .service-card-bg {
  transform: scale(1.08);
}

.service-card-overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-card);
  transition: var(--transition);
}

.service-card:hover .service-card-overlay {
  background: linear-gradient(180deg, rgba(0,77,160,0.5) 0%, rgba(7,14,26,0.97) 60%);
}

.service-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 24px;
  transition: var(--transition);
}

.service-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-blue);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 14px;
  box-shadow: var(--shadow-glow);
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
}

.service-card:hover .service-icon {
  opacity: 1;
  transform: translateY(0);
}

.service-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 10px;
  font-family: 'Inter', sans-serif;
  letter-spacing: -0.2px;
}

html[dir="rtl"] .service-title { font-family: 'Cairo', sans-serif; }

.service-desc {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.4s ease;
  opacity: 0;
}

.service-card:hover .service-desc {
  max-height: 120px;
  opacity: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  margin-top: 14px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s;
}

.service-card:hover .service-link {
  opacity: 1;
  transform: translateY(0);
}

.service-link:hover { gap: 10px; }

/* ── CTA BANNER ──────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, #0D2040 0%, #001850 100%);
  border-top: 1px solid var(--dark-border);
  border-bottom: 1px solid var(--dark-border);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0,119,255,0.12) 0%, transparent 70%);
  pointer-events: none;
}

html[dir="rtl"] .cta-banner::before {
  right: auto;
  left: -10%;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  padding: 60px 0;
}

.cta-text h2 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(22px, 2.2vw, 34px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.25;
  letter-spacing: -0.3px;
}

html[dir="rtl"] .cta-text h2 { font-family: 'Cairo', sans-serif; }

.cta-text p {
  color: var(--text-light);
  font-size: 15px;
}

/* ── WHY CHOOSE US ───────────────────────────────────────────── */
#why-us {
  background: var(--dark-bg);
}

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

html[dir="rtl"] .why-grid { direction: rtl; }

.why-image-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-glow-circle {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,119,255,0.15) 0%, transparent 70%);
  animation: pulseGlow 3s ease-in-out infinite;
}

.why-img-main {
  width: 100%;
  border-radius: var(--radius-lg);
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-md);
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.why-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: var(--transition);
}

.why-card:hover {
  border-color: rgba(0,119,255,0.4);
  transform: translateX(8px);
  box-shadow: var(--shadow-glow);
}

html[dir="rtl"] .why-card:hover {
  transform: translateX(-8px);
}

.why-icon {
  width: 54px;
  height: 54px;
  background: var(--primary-glow);
  border: 1px solid rgba(0,119,255,0.25);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--primary);
  flex-shrink: 0;
}

.why-info h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 6px;
}

html[dir="rtl"] .why-info h4 { font-family: var(--font-ar); }

.why-info p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
}

/* ── STATS COUNTERS ──────────────────────────────────────────── */
#stats {
  background: linear-gradient(135deg, #0077FF 0%, #004AAD 100%);
  position: relative;
  overflow: hidden;
}

#stats::before {
  content: '';
  position: absolute;
  inset: 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.04'%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");
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.stat-item {
  padding: 20px;
}

.stat-icon {
  width: 64px;
  height: 64px;
  background: rgba(255,255,255,0.15);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 16px;
  backdrop-filter: blur(10px);
}

.stat-number {
  font-family: 'Inter', sans-serif;
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  letter-spacing: -2px;
}

.stat-suffix {
  font-size: 0.55em;
  align-self: flex-start;
  margin-top: 8px;
}

.stat-label {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
  letter-spacing: 0.5px;
}

html[dir="rtl"] .stat-label { font-family: var(--font-ar); }

/* ── TEAM ────────────────────────────────────────────────────── */
#team {
  background: var(--dark-mid);
}

.team-slider {
  overflow: hidden;
  position: relative;
}

.team-track {
  display: flex;
  gap: 24px;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}

.team-card {
  min-width: calc(33.333% - 16px);
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), var(--shadow-glow);
  border-color: rgba(0,119,255,0.3);
}

.team-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.team-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-card:hover .team-img { transform: scale(1.05); }

.team-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,77,160,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.team-card:hover .team-overlay { opacity: 1; }

.team-social {
  display: flex;
  gap: 12px;
}

.team-social a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.team-social a:hover { background: var(--primary); transform: translateY(-3px); }

.team-info {
  padding: 20px 24px;
}

.team-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 4px;
  font-family: 'Inter', sans-serif;
}

html[dir="rtl"] .team-name { font-family: 'Cairo', sans-serif; }

.team-role {
  font-size: 13px;
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Slider controls */
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border: 1px solid var(--dark-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
  background: var(--dark-card);
}

.slider-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: scale(1.1);
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--dark-border);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.slider-dot.active {
  background: var(--primary);
  transform: scale(1.3);
}

/* ── TESTIMONIALS ────────────────────────────────────────────── */
#testimonials {
  background: var(--dark-bg);
  position: relative;
}

#testimonials::before {
  content: '"';
  position: absolute;
  top: 40px;
  right: 10%;
  font-family: Georgia, serif;
  font-size: 280px;
  color: rgba(0,119,255,0.04);
  line-height: 1;
  pointer-events: none;
}

html[dir="rtl"] #testimonials::before {
  right: auto;
  left: 10%;
}

.testimonials-slider {
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}

.testimonial-card {
  min-width: calc(33.333% - 16px);
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
  position: relative;
}

.testimonial-card:hover {
  border-color: rgba(0,119,255,0.3);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.testimonial-quote {
  font-size: 40px;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.6;
  font-family: Georgia, serif;
}

.testimonial-text {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

html[dir="rtl"] .testimonial-text { font-family: var(--font-ar); font-style: normal; }

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
  color: #FFB400;
  font-size: 14px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--dark-border);
  padding-top: 20px;
}

.author-avatar {
  width: 46px;
  height: 46px;
  background: var(--gradient-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.author-name {
  font-weight: 700;
  font-size: 15px;
  color: var(--text-white);
}

.author-company {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ── BLOG ────────────────────────────────────────────────────── */
#blog {
  background: var(--dark-mid);
}

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

.blog-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0,119,255,0.3);
}

.blog-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.blog-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-img { transform: scale(1.06); }

.blog-date {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--primary);
  color: #fff;
  border-radius: 8px;
  padding: 8px 12px;
  text-align: center;
  line-height: 1.2;
  box-shadow: var(--shadow-sm);
}

html[dir="rtl"] .blog-date { right: auto; left: 16px; }

.blog-date .day { font-size: 20px; font-weight: 800; font-family: var(--font-display); }
.blog-date .month { font-size: 11px; font-weight: 600; text-transform: uppercase; }

.blog-body {
  padding: 24px;
}

.blog-category {
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.blog-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.4;
  margin-bottom: 12px;
  transition: var(--transition);
  font-family: 'Inter', sans-serif;
}

html[dir="rtl"] .blog-title { font-family: 'Cairo', sans-serif; }

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

.blog-excerpt {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.blog-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-muted);
  padding-top: 16px;
  border-top: 1px solid var(--dark-border);
}

.blog-read-more {
  color: var(--primary);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s ease;
}

.blog-card:hover .blog-read-more { gap: 10px; }

/* ── FOOTER ──────────────────────────────────────────────────── */
footer {
  background: #070E1A;
  border-top: 1px solid var(--dark-border);
}

.footer-main {
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 60px;
}

html[dir="rtl"] .footer-grid { direction: rtl; }

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

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

html[dir="rtl"] .footer-about { font-family: var(--font-ar); }

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-social-link {
  width: 38px;
  height: 38px;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 15px;
  transition: var(--transition);
}

.footer-social-link:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-3px);
}

.footer-col h5 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

html[dir="rtl"] .footer-col h5 { font-family: var(--font-ar); }

.footer-col h5::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

html[dir="rtl"] .footer-col h5::after { left: auto; right: 0; }

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

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

.footer-links a::before {
  content: '→';
  font-size: 12px;
  color: var(--primary);
  opacity: 0;
  transform: translateX(-6px);
  transition: var(--transition);
}

html[dir="rtl"] .footer-links a::before {
  content: '←';
  transform: translateX(6px);
}

.footer-links a:hover {
  color: var(--text-white);
  padding-left: 6px;
}

html[dir="rtl"] .footer-links a:hover {
  padding-left: 0;
  padding-right: 6px;
}

.footer-links a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.footer-contact-item {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
}

.fc-icon {
  width: 38px;
  height: 38px;
  background: var(--primary-glow);
  border: 1px solid rgba(0,119,255,0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 15px;
  flex-shrink: 0;
  margin-top: 2px;
}

.fc-info p {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 3px;
}

.fc-info span, .fc-info a {
  font-size: 14px;
  color: var(--text-light);
  transition: var(--transition);
}

.fc-info a:hover { color: var(--primary); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 24px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.copyright {
  font-size: 13px;
  color: var(--text-muted);
}

.copyright a { color: var(--primary); }

/* ── PAGE BANNER ─────────────────────────────────────────────── */
.page-banner {
  min-height: 320px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--dark-mid);
}

.page-banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.3;
}

.page-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(7,14,26,0.95) 0%, rgba(0,77,160,0.4) 100%);
}

.page-banner-content {
  position: relative;
  z-index: 2;
}

.page-banner h1 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(28px, 3.5vw, 50px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

html[dir="rtl"] .page-banner h1 { font-family: 'Cairo', sans-serif; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-muted);
}

.breadcrumb a { color: var(--primary); }
.breadcrumb span { color: var(--text-muted); }

/* ── CONTACT FORM ────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

html[dir="rtl"] .contact-grid { direction: rtl; }

.contact-info-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  align-items: flex-start;
}

.ci-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-glow);
  border: 1px solid rgba(0,119,255,0.25);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--primary);
  flex-shrink: 0;
}

.ci-details h5 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 4px;
}

html[dir="rtl"] .ci-details h5 { font-family: var(--font-ar); }

.ci-details p, .ci-details a {
  font-size: 14px;
  color: var(--text-muted);
  transition: var(--transition);
  line-height: 1.6;
}

.ci-details a:hover { color: var(--primary); }

.contact-form-wrap {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 40px;
}

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

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

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}

html[dir="rtl"] .form-group label { font-family: var(--font-ar); }

.form-control {
  width: 100%;
  padding: 13px 16px;
  background: var(--dark-mid);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-sm);
  color: var(--text-white);
  font-size: 15px;
  transition: var(--transition);
  outline: none;
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,119,255,0.1);
}

.form-control::placeholder { color: var(--text-muted); }

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

/* ── SCROLL TO TOP ───────────────────────────────────────────── */
#scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 100;
  box-shadow: var(--shadow-glow);
  border: none;
}

html[dir="rtl"] #scroll-top { right: auto; left: 30px; }

#scroll-top.visible { opacity: 1; transform: translateY(0); }
#scroll-top:hover { transform: translateY(-4px); box-shadow: 0 8px 25px rgba(0,119,255,0.5); }

/* ── ANIMATIONS ──────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

html[dir="rtl"] .reveal-left {
  transform: translateX(40px);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

html[dir="rtl"] .reveal-right {
  transform: translateX(-40px);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.delay-1 { transition-delay: 0.1s !important; }
.delay-2 { transition-delay: 0.2s !important; }
.delay-3 { transition-delay: 0.3s !important; }
.delay-4 { transition-delay: 0.4s !important; }
.delay-5 { transition-delay: 0.5s !important; }
.delay-6 { transition-delay: 0.6s !important; }

/* ── KEYFRAMES ───────────────────────────────────────────────── */
@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes scrollWheel {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(12px); opacity: 0; }
}

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

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

/* ── UTILITIES ───────────────────────────────────────────────── */
.text-primary { color: var(--primary) !important; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-left { text-align: left; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-4 { margin-bottom: 32px; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.gap-3 { gap: 24px; }
.w-100 { width: 100%; }

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 900px) {
  .about-grid, .why-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-experience { bottom: 16px; right: 16px; }
  html[dir="rtl"] .about-experience { right: auto; left: 16px; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .team-card { min-width: calc(50% - 12px); }
  .testimonial-card { min-width: calc(50% - 12px); }
}

@media (max-width: 768px) {
  :root { --header-height: 70px; }

  .top-bar-contacts { gap: 12px; }
  .top-bar-item { font-size: 12px; }
  .top-bar-item:last-child { display: none; }

  .nav-links { display: none; }
  .hamburger { display: flex; }

  .services-grid { grid-template-columns: 1fr; gap: 20px; }
  .service-card { aspect-ratio: 4/3; }

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

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

  .team-card { min-width: calc(100% - 0px); }
  .testimonial-card { min-width: calc(100% - 0px); }

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

  .slide-title { font-size: clamp(26px, 7vw, 40px); }
  .hero-arrows { display: none; }

  .cta-inner { flex-direction: column; text-align: center; }

  .section { padding: 70px 0; }
}

@media (max-width: 480px) {
  .slide-actions { flex-direction: column; }
  .slide-actions .btn { width: 100%; justify-content: center; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item:last-child { grid-column: span 2; }
}

/* ── RTL SPECIFIC OVERRIDES ──────────────────────────────────── */
html[dir="rtl"] .section-badge { flex-direction: row-reverse; }
html[dir="rtl"] .footer-links a { flex-direction: row-reverse; }
html[dir="rtl"] .blog-meta { flex-direction: row-reverse; }
html[dir="rtl"] .breadcrumb { flex-direction: row-reverse; }
html[dir="rtl"] .top-bar-inner { flex-direction: row-reverse; }
html[dir="rtl"] .top-bar-contacts { flex-direction: row-reverse; }
html[dir="rtl"] .about-features { direction: rtl; }
html[dir="rtl"] .why-features { direction: rtl; }
html[dir="rtl"] .form-row { direction: rtl; }
html[dir="rtl"] .contact-info-item { flex-direction: row; }
html[dir="rtl"] .testimonial-author { flex-direction: row; }
html[dir="rtl"] .team-social { direction: rtl; }
html[dir="rtl"] .footer-contact-item { direction: rtl; }
