/* ============================================================
   EJMEL TRUCK — Design System
   Primary: #1A3A5C | Medium: #2E6DA4 | Accent: #E67E22
   ============================================================ */

/* ── Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800;900&family=Inter:wght@300;400;500;600&family=Noto+Sans+Arabic:wght@400;600;700;800&display=swap');

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

:root {
  --blue-dark:   #1A3A5C;
  --blue-mid:    #2E6DA4;
  --blue-light:  #4A90C4;
  --orange:      #E67E22;
  --orange-dark: #C0621A;
  --white:       #FFFFFF;
  --off-white:   #F4F6F9;
  --gray-100:    #E8ECF0;
  --gray-300:    #B0BAC8;
  --gray-500:    #6B7A8D;
  --dark-bg:     #0D1F35;
  --darker-bg:   #081525;

  --font-head:   'Montserrat', sans-serif;
  --font-body:   'Inter', sans-serif;
  --font-arabic: 'Noto Sans Arabic', sans-serif;

  --radius:      8px;
  --radius-lg:   16px;
  --shadow:      0 4px 24px rgba(13,31,53,0.12);
  --shadow-lg:   0 12px 48px rgba(13,31,53,0.22);
  --transition:  0.3s ease;
}

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

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

/* Arabic mode */
body.lang-ar {
  direction: rtl;
  font-family: var(--font-arabic);
}

body.lang-ar .nav-links { flex-direction: row-reverse; }
body.lang-ar .hero-content { text-align: right; }
body.lang-ar .hero-btns { justify-content: flex-end; }
body.lang-ar .section-tag { text-align: right; }
body.lang-ar .section-header { text-align: right; }

/* ── Typography ── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.15;
  color: var(--blue-dark);
}

.lang-ar h1, .lang-ar h2, .lang-ar h3 {
  font-family: var(--font-arabic);
}

h1 { font-size: clamp(2.4rem, 5.5vw, 5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }

p { color: var(--gray-500); line-height: 1.75; }

a { text-decoration: none; color: inherit; }

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

/* ── Utility ── */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-wide {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

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

.section-dark {
  background: var(--dark-bg);
  color: var(--white);
}

.section-dark h2, .section-dark h3 {
  color: var(--white);
}

.section-dark p {
  color: var(--gray-300);
}

.section-deeper {
  background: var(--darker-bg);
}

.section-off {
  background: var(--off-white);
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}

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

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  max-width: 600px;
  font-size: 1.1rem;
}

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

.section-header.centered p {
  margin: 0 auto;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(230,126,34,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-blue {
  background: var(--blue-mid);
  color: var(--white);
  border-color: var(--blue-mid);
}
.btn-blue:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(46,109,164,0.35);
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1.05rem;
}

/* ── Navigation ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.navbar.scrolled {
  background: rgba(13,31,53,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.3);
}

.navbar.solid {
  background: var(--dark-bg);
}

.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo-text {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--white);
  letter-spacing: 0.04em;
}

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

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

.nav-links a {
  color: rgba(255,255,255,0.8);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

.nav-cta {
  background: var(--orange) !important;
  color: var(--white) !important;
  padding: 8px 18px !important;
}

.nav-cta:hover {
  background: var(--orange-dark) !important;
}

.lang-toggle {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 3px;
  gap: 2px;
  margin-left: 12px;
}

.lang-btn {
  padding: 5px 14px;
  border-radius: 16px;
  font-size: 0.78rem;
  font-weight: 700;
  font-family: var(--font-head);
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  transition: var(--transition);
  background: transparent;
  border: none;
  letter-spacing: 0.05em;
}

.lang-btn.active {
  background: var(--orange);
  color: var(--white);
}

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

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

.mobile-menu {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: var(--darker-bg);
  padding: 24px;
  flex-direction: column;
  gap: 4px;
  z-index: 999;
  border-top: 1px solid rgba(255,255,255,0.1);
}

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

.mobile-menu a {
  color: rgba(255,255,255,0.85);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 16px;
  border-radius: var(--radius);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: var(--transition);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.mobile-menu a:hover { background: rgba(255,255,255,0.06); }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--darker-bg);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(46,109,164,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(230,126,34,0.08) 0%, transparent 50%);
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(46,109,164,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46,109,164,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  padding-top: 72px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(230,126,34,0.12);
  border: 1px solid rgba(230,126,34,0.25);
  color: var(--orange);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.hero-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  animation: pulse 2s infinite;
}

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

.hero h1 {
  color: var(--white);
  margin-bottom: 12px;
  max-width: 800px;
}

.hero h1 span {
  color: var(--orange);
  position: relative;
}

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  color: rgba(255,255,255,0.6);
  max-width: 560px;
  margin-bottom: 48px;
  font-weight: 300;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-truck-svg {
  position: absolute;
  right: -40px;
  bottom: 0;
  width: 58%;
  max-width: 820px;
  opacity: 0.06;
  pointer-events: none;
}

.hero-truck-right {
  position: absolute;
  right: 0;
  bottom: 60px;
  width: 52%;
  max-width: 760px;
  pointer-events: none;
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 1.2s ease 0.6s, transform 1.2s ease 0.6s;
}

.hero-truck-right.visible {
  opacity: 0.9;
  transform: translateX(0);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.35);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: scrollBounce 2.5s ease infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
}

/* ── Stats Bar ── */
.stats-bar {
  background: var(--blue-dark);
  padding: 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.stat-item {
  padding: 40px 32px;
  border-right: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}

.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  color: var(--orange);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* ── Products Preview ── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2px;
}

.product-card {
  position: relative;
  background: var(--dark-bg);
  padding: 48px 32px;
  overflow: hidden;
  cursor: pointer;
  transition: background var(--transition);
  border: 1px solid rgba(255,255,255,0.04);
}

.product-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.product-card:hover::after {
  transform: scaleX(1);
}

.product-card:hover {
  background: #162C47;
}

.product-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 24px;
}

.product-card h3 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.product-card p {
  font-size: 0.87rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.45);
}

.product-arrow {
  position: absolute;
  top: 48px;
  right: 32px;
  opacity: 0;
  transform: translateX(-8px);
  transition: var(--transition);
  color: var(--orange);
}

.product-card:hover .product-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ── Brands ── */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.brand-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  transition: var(--transition);
  cursor: default;
}

.brand-card:hover {
  border-color: var(--blue-mid);
  box-shadow: 0 0 0 1px var(--blue-mid);
  transform: translateY(-2px);
}

.brand-logo-placeholder {
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-logo-text {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--blue-dark);
  letter-spacing: 0.04em;
}

.brand-exclusive {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(230,126,34,0.08);
  padding: 3px 10px;
  border-radius: 100px;
}

/* ── Why Us ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.why-card {
  padding: 40px 36px;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 0;
  background: var(--orange);
  transition: height 0.4s ease;
}

.why-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: transparent;
  transform: translateY(-4px);
}

.why-card:hover::before {
  height: 100%;
}

.why-icon {
  width: 52px;
  height: 52px;
  background: rgba(46,109,164,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--blue-mid);
}

.why-card h3 {
  margin-bottom: 12px;
  font-size: 1.15rem;
}

/* ── About Page ── */
.about-hero {
  background: var(--dark-bg);
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
}

.about-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 80% 50%, rgba(46,109,164,0.15) 0%, transparent 60%);
}

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

.about-hero p {
  color: rgba(255,255,255,0.6);
  font-size: 1.1rem;
}

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

.about-text h2 {
  margin-bottom: 24px;
}

.about-text p {
  margin-bottom: 20px;
  font-size: 1.02rem;
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.highlight-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  background: var(--off-white);
  border-radius: var(--radius-lg);
}

.highlight-num {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 2rem;
  color: var(--orange);
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

/* ── Products Page ── */
.products-hero {
  background: var(--dark-bg);
  padding: 160px 0 100px;
}

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

.category-section {
  padding: 80px 0;
  border-bottom: 1px solid var(--gray-100);
}

.category-section:last-child { border-bottom: none; }

.category-header {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 48px;
}

.category-icon-wrap {
  width: 72px;
  height: 72px;
  background: var(--blue-dark);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.category-header h2 {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.products-subgrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

.product-tag {
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  padding: 16px 20px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--blue-dark);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
}

.product-tag:hover {
  border-color: var(--orange);
  background: rgba(230,126,34,0.05);
  color: var(--orange);
}

.product-tag::before {
  content: '›';
  color: var(--orange);
  font-size: 1.1rem;
  font-weight: 900;
}

.cta-banner {
  background: var(--blue-dark);
  border-radius: var(--radius-lg);
  padding: 60px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-banner h2 { color: var(--white); margin-bottom: 12px; }
.cta-banner p { color: rgba(255,255,255,0.6); }

/* ── Brands Page ── */
.brands-hero {
  background: var(--dark-bg);
  padding: 160px 0 100px;
}

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

.brands-exclusive-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}

.brand-full-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 48px 32px;
  text-align: center;
  transition: var(--transition);
}

.brand-full-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-mid);
  transform: translateY(-4px);
}

.brand-full-logo {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.brand-full-name {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--blue-dark);
  margin-bottom: 8px;
}

.brand-desc {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 16px;
}

.badge-exclusive {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
}

/* ── Contact Page ── */
.contact-hero {
  background: var(--dark-bg);
  padding: 160px 0 100px;
}

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

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: start;
}

.contact-info-card {
  background: var(--dark-bg);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  color: var(--white);
}

.contact-info-card h2 { color: var(--white); margin-bottom: 32px; }

.contact-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.contact-item:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  background: rgba(46,109,164,0.2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--blue-light);
}

.contact-item-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 6px;
}

.contact-item-value {
  color: var(--white);
  font-size: 1rem;
  font-weight: 500;
}

.contact-item-value a {
  color: var(--orange);
  transition: var(--transition);
}

.contact-item-value a:hover { color: var(--orange-dark); }

.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
}

.contact-form-wrap h2 { margin-bottom: 8px; }
.contact-form-wrap > p { margin-bottom: 36px; }

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

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

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--blue-dark);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--blue-dark);
  background: var(--off-white);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--blue-mid);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(46,109,164,0.1);
}

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

.map-section {
  padding: 0 0 100px;
}

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 400px;
  border: 1px solid var(--gray-100);
}

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

/* ── WhatsApp Float ── */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,0.45);
  transition: transform var(--transition), box-shadow var(--transition);
  animation: waFloat 3s ease infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 36px rgba(37,211,102,0.6);
  animation: none;
}

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

.whatsapp-float svg { color: white; }

.whatsapp-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--dark-bg);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: var(--radius);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
}

/* ── Footer ── */
footer {
  background: var(--darker-bg);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand p {
  color: rgba(255,255,255,0.45);
  font-size: 0.9rem;
  margin: 16px 0 24px;
  max-width: 280px;
}

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

.social-icon {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}

.social-icon:hover {
  background: var(--orange);
  color: var(--white);
}

.footer-col h4 {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-col ul li a:hover { color: var(--orange); }

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

.footer-contact-item svg {
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item span {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  line-height: 1.6;
}

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

.footer-bottom p {
  color: rgba(255,255,255,0.3);
  font-size: 0.82rem;
}

.footer-bottom a {
  color: rgba(255,255,255,0.45);
  font-size: 0.82rem;
  transition: var(--transition);
}

.footer-bottom a:hover { color: var(--orange); }

/* ── Animations ── */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transition: opacity 0.8s ease;
}

.fade-in.visible { opacity: 1; }

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

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

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

.slide-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; }
.delay-7 { transition-delay: 0.7s !important; }
.delay-8 { transition-delay: 0.8s !important; }

/* ── Form Success / Error ── */
.form-alert {
  padding: 14px 20px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 20px;
  display: none;
}

.form-alert.success {
  background: rgba(46,164,46,0.1);
  border: 1px solid rgba(46,164,46,0.3);
  color: #1a8c1a;
  display: block;
}

.form-alert.error {
  background: rgba(220,50,50,0.1);
  border: 1px solid rgba(220,50,50,0.3);
  color: #c02020;
  display: block;
}

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

@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .lang-toggle { display: none; }

  .about-body { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; }
  .brands-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .stat-item:last-child { border-bottom: none; }

  .cta-banner { flex-direction: column; text-align: center; }
  .hero-truck-right { display: none; }
}

@media (max-width: 680px) {
  .section { padding: 64px 0; }
  .hero { min-height: 100svh; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
  .brands-exclusive-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .whatsapp-float { bottom: 20px; right: 20px; }
  .contact-form-wrap, .contact-info-card { padding: 32px 24px; }
  .brands-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Arabic RTL adjustments */
body.lang-ar .contact-item { flex-direction: row-reverse; }
body.lang-ar .footer-contact-item { flex-direction: row-reverse; }
body.lang-ar .why-card::before { left: auto; right: 0; }
body.lang-ar .product-arrow { right: auto; left: 32px; transform: translateX(8px) scaleX(-1); }
body.lang-ar .product-card:hover .product-arrow { transform: translateX(0) scaleX(-1); }
body.lang-ar .btn { flex-direction: row-reverse; }
body.lang-ar .hero-eyebrow { flex-direction: row-reverse; }
body.lang-ar .highlight-item { flex-direction: row-reverse; text-align: right; }
body.lang-ar .footer-col ul li a { flex-direction: row-reverse; }

/* ── Arabic hero: truck goes LEFT, text stays RIGHT ── */
body.lang-ar .hero-truck-right {
  right: auto;
  left: -20px;
  transform: translateX(-60px);   /* slide in from left */
}
body.lang-ar .hero-truck-right.visible {
  opacity: 0.9;
  transform: translateX(0);
}
body.lang-ar .hero-truck-svg {
  right: auto;
  left: -40px;
}
/* Push AR hero text to occupy only the right half */
body.lang-ar .hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding-left: 54%;          /* leave left half free for truck */
  padding-right: 24px;
}
@media (max-width: 900px) {
  body.lang-ar .hero-content { padding-left: 24px; }
}
