/* ─────────────────────────────────────────
   M&M Trade · mmtrade.net/new/ · style.css
   ───────────────────────────────────────── */

:root {
  --brand-red:        #C0202A;
  --brand-red-hover:  #D93040;
  --brand-red-dark:   #8B1520;
  --brand-black:      #1A1A1A;
  --bg-primary:       #000000;
  --bg-secondary:     #0E0E0E;
  --bg-card:          #141414;
  --bg-elevated:      #1C1C1C;
  --bg-red-deep:      #160406;
  --text-primary:     #F2F2EE;
  --text-secondary:   #9A9A94;
  --text-muted:       #848480;
  --border-default:   rgba(192, 32, 42, 0.12);
  --border-accent:    rgba(192, 32, 42, 0.40);
  --border-subtle:    rgba(255, 255, 255, 0.18);
  --glow-red:         0 0 28px rgba(192, 32, 42, 0.22);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── RTL ── */
body.rtl { font-family: 'Tajawal', sans-serif; }
body.rtl h1, body.rtl h2, body.rtl h3 {
  font-family: 'Cairo', sans-serif;
  font-weight: 700;
  letter-spacing: 0;
}
body.rtl .nav-links    { flex-direction: row-reverse; }
body.rtl .nav-right    { flex-direction: row-reverse; }
body.rtl .hero-content { text-align: right; }
body.rtl .product-section { direction: rtl; }
body.rtl .wa-float { right: auto; left: 28px; }
body.rtl .portal-inner { direction: rtl; }
body.rtl .footer-main  { direction: rtl; }
body.rtl .hero-btns    { justify-content: flex-end; }
body.rtl .contact-grid { direction: rtl; }
body.rtl .about-grid   { direction: rtl; }
body.rtl .hero-content h1 { line-height: 1.25; }

/* ══════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 90px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background 0.3s, border-bottom 0.3s;
}
#navbar.scrolled {
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border-accent);
}
.nav-left { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo {
  display: block;
  width: 108px;
  height: 72px;
  min-width: 108px;
  min-height: 72px;
  object-fit: contain;
  flex-shrink: 0;
}
.footer-logo {
  display: block;
  width: 72px;
  height: 72px;
  min-width: 72px;
  object-fit: contain;
  flex-shrink: 0;
}
.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: var(--text-muted);
  border: 1px solid var(--border-subtle);
  padding: 5px 10px;
  transition: color 0.2s, border-color 0.2s;
  text-decoration: none;
  letter-spacing: 0.5px;
}
.footer-social a:hover {
  color: var(--text-primary);
  border-color: rgba(255,255,255,0.18);
}
.footer-social a i { font-size: 15px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text-primary); }
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.btn-lang {
  font-family: 'Rajdhani', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--text-secondary);
  border: 1px solid var(--border-subtle);
  padding: 6px 12px;
  transition: color 0.2s, border-color 0.2s;
}
.btn-lang:hover { color: var(--text-primary); border-color: var(--border-accent); }
.btn-portal {
  font-family: 'Rajdhani', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 1px solid var(--brand-red);
  color: var(--brand-red);
  padding: 7px 16px;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s;
}
.btn-portal:hover { background: var(--brand-red); color: #fff; }
.btn-cta {
  font-family: 'Rajdhani', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: var(--brand-red);
  color: #fff;
  padding: 8px 18px;
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s;
}
.btn-cta:hover { background: var(--brand-red-hover); }
.hamburger {
  display: none;
  font-size: 22px;
  color: var(--text-primary);
}

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1617788138017-80ad40651399?w=1920&q=85') center/cover no-repeat;
  animation: kenburns 20s ease-in-out infinite alternate;
  opacity: 0.30;
  aspect-ratio: 16/9;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(8,8,8,0.97) 35%, rgba(8,8,8,0.60) 70%, rgba(8,8,8,0.25) 100%);
}
@keyframes kenburns {
  from { transform: scale(1.00); }
  to   { transform: scale(1.10); }
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 140px 80px 80px;
  max-width: 720px;
}
.hero-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--brand-red);
  margin-bottom: 20px;
}
.hero-content h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 88px;
  line-height: 0.92;
  letter-spacing: 2px;
  color: var(--text-primary);
  margin-bottom: 28px;
}
.hero-content p {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-cta.lg, .btn-outline.lg {
  font-size: 13px;
  padding: 13px 26px;
}
.btn-outline {
  font-family: 'Rajdhani', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 1px solid var(--border-accent);
  color: var(--text-primary);
  padding: 8px 18px;
  border-radius: 2px;
  transition: border-color 0.2s, color 0.2s;
}
.btn-outline:hover { border-color: var(--brand-red); color: var(--brand-red); }
.hero-stats {
  position: absolute;
  bottom: 48px;
  right: 80px;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
[dir="rtl"] .hero-stats { right: auto; left: 80px; }
.hero-stat {
  background: rgba(20,20,20,0.85);
  border: 1px solid var(--border-accent);
  backdrop-filter: blur(8px);
  padding: 16px 20px;
  text-align: center;
  border-radius: 3px;
}
.hero-stat .stat-big {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  color: var(--brand-red);
  line-height: 1;
}
.hero-stat .stat-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--brand-red);
  font-size: 22px;
  animation: bounce 1.8s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ══════════════════════════════════════════
   SECTION UTILITIES
══════════════════════════════════════════ */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 80px;
}
.section-header { text-align: center; margin-bottom: 56px; }
.section-header.left { text-align: left; }
.section-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--brand-red);
  margin-bottom: 12px;
}
.section-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 46px;
  font-weight: 600;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 16px;
}

/* ══════════════════════════════════════════
   CAR BRANDS
══════════════════════════════════════════ */
#brands {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-default);
  border-bottom: 1px solid var(--border-default);
  padding: 80px 0;
}
.brands-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1px;
  background: var(--border-default);
  border: 1px solid var(--border-default);
  margin-bottom: 32px;
}
.brand-cell {
  background: var(--bg-card);
  padding: 28px 12px;
  min-width: 110px;
  flex: 0 0 calc(100% / 7 - 1px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0.80;
  transition: opacity 0.25s, box-shadow 0.25s;
}
.brand-cell:hover { opacity: 1; box-shadow: var(--glow-red); }
.brand-cell img {
  height: 36px;
  width: auto;
  filter: grayscale(1) invert(1);
  opacity: 1.0;
  transition: filter 0.3s, opacity 0.3s;
}
.brand-cell:hover img {
  filter: none;
  opacity: 1;
}
.brand-cell .brand-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-secondary);
}
.land-rover-text {
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-primary);
  height: 36px;
  display: flex;
  align-items: center;
}
.brands-subtext {
  text-align: center;
  color: var(--text-secondary);
  font-size: 14px;
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ══════════════════════════════════════════
   PRODUCT SECTIONS (MODIKA / SUSPENTEK)
══════════════════════════════════════════ */
.product-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
}
#modika    { background: var(--bg-primary); }
#suspentek { background: var(--bg-secondary); }
.product-text {
  padding: 72px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}
.product-img {
  position: relative;
  overflow: hidden;
  min-height: 480px;
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.modika-img-wrap   { aspect-ratio: 1/1; }
.suspentek-img-wrap{ aspect-ratio: 1/1; }
.modika-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--bg-primary) 0%, transparent 45%);
}
.suspentek-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(270deg, var(--bg-secondary) 0%, transparent 45%);
}
.brand-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--text-secondary);
}
.brand-name-display {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 72px;
  line-height: 0.9;
  color: var(--text-primary);
  letter-spacing: 3px;
}
.brand-category {
  font-family: 'Rajdhani', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--brand-red);
}
.product-text p {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 480px;
}
.product-cats { display: flex; flex-direction: column; gap: 14px; }
.cat-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.cat-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-red);
  margin-top: 8px;
  flex-shrink: 0;
}
.cat-row strong {
  display: block;
  font-weight: 500;
  font-size: 14px;
  color: var(--text-primary);
  margin-bottom: 2px;
}
.cat-row span {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}
.quality-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.quality-tags span {
  font-family: 'Rajdhani', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--text-secondary);
  border: 1px solid var(--border-subtle);
  padding: 5px 12px;
}
.btn-outline-red {
  display: inline-flex;
  align-items: center;
  font-family: 'Rajdhani', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid var(--brand-red);
  color: var(--brand-red);
  padding: 10px 22px;
  border-radius: 2px;
  align-self: flex-start;
  transition: background 0.2s, color 0.2s;
}
.btn-outline-red:hover { background: var(--brand-red); color: #fff; }

/* ══════════════════════════════════════════
   WHY M&M
══════════════════════════════════════════ */
#why {
  background: var(--bg-primary);
  padding: 100px 0 0;
  position: relative;
  overflow: hidden;
}
#why::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 50%;
  background: var(--brand-red);
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border-default);
  border: 1px solid var(--border-default);
  margin-top: 56px;
}
.pillar {
  background: var(--bg-card);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background 0.25s;
}
.pillar:hover { background: var(--bg-elevated); }
.pillar i {
  font-size: 28px;
  color: var(--brand-red);
}
.pillar h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--text-primary);
}
.pillar p {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.7;
}
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border-default);
  border: 1px solid var(--border-default);
  border-top: none;
}
.stat-cell {
  background: var(--bg-secondary);
  padding: 32px 24px;
  text-align: center;
}
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  line-height: 1;
  color: var(--brand-red);
}
.stat-sfx {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  color: var(--brand-red);
}
.stat-lbl {
  display: block;
  font-family: 'Rajdhani', sans-serif;
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 6px;
}

/* ══════════════════════════════════════════
   ABOUT
══════════════════════════════════════════ */
#about {
  background: var(--bg-secondary);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.about-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 280px;
  color: var(--brand-red);
  opacity: 0.025;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  line-height: 1;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  margin-bottom: 56px;
}
.about-grid p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
}
.highlights-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border-default);
  border: 1px solid var(--border-default);
}
.highlight-item {
  background: var(--bg-card);
  padding: 24px 20px;
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.6;
  transition: background 0.2s;
}
.highlight-item:hover { background: var(--bg-elevated); }
.highlight-emoji { font-size: 22px; margin-bottom: 10px; display: block; }

/* ══════════════════════════════════════════
   PORTAL BANNER
══════════════════════════════════════════ */
#portal-banner {
  background: linear-gradient(135deg, #160406 0%, #1E0508 50%, #140304 100%);
  border-top: 2px solid var(--brand-red);
  border-bottom: 1px solid var(--border-accent);
}
.portal-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.portal-text h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.portal-text p {
  font-size: 14px;
  color: #C8C8C2;
  max-width: 540px;
}
.btn-portal-lg {
  background: var(--brand-red);
  color: white;
  padding: 15px 30px;
  border-radius: 3px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
}
.btn-portal-lg:hover { background: var(--brand-red-hover); transform: translateY(-1px); }

/* ══════════════════════════════════════════
   CONTACT
══════════════════════════════════════════ */
#contact {
  background: var(--bg-primary);
  padding: 100px 0;
  border-top: 2px solid var(--brand-red);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
}
.contact-sub {
  font-size: 14.5px;
  color: var(--text-secondary);
  margin-top: 12px;
  line-height: 1.7;
}
#inquiry-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
#inquiry-form input,
#inquiry-form select,
#inquiry-form textarea {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  color: var(--text-primary);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  padding: 12px 16px;
  border-radius: 2px;
  width: 100%;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}
body.rtl #inquiry-form input,
body.rtl #inquiry-form select,
body.rtl #inquiry-form textarea {
  font-family: 'Tajawal', sans-serif;
}
#inquiry-form input:focus,
#inquiry-form select:focus,
#inquiry-form textarea:focus {
  outline: none;
  border-color: var(--brand-red);
}
#inquiry-form input::placeholder,
#inquiry-form textarea::placeholder {
  color: var(--text-muted);
}
#inquiry-form select option { background: var(--bg-card); }
#inquiry-form textarea { resize: vertical; }
.form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 65px;
  background: var(--brand-red);
  color: #fff;
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 2px;
  cursor: pointer;
  border: none;
  transition: background 0.2s;
  align-self: flex-start;
}
.btn-submit:hover { background: var(--brand-red-hover); }
.form-msg {
  padding: 12px 16px;
  border-radius: 2px;
  font-size: 14px;
}
.form-msg.success { background: rgba(0,180,80,0.12); color: #4ade80; border: 1px solid rgba(0,180,80,0.3); }
.form-msg.error   { background: rgba(192,32,42,0.12); color: #f87171; border: 1px solid var(--border-accent); }
.contact-panel {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}
.ci-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.ci-item i {
  font-size: 20px;
  color: var(--brand-red);
  margin-top: 2px;
  flex-shrink: 0;
}
.ci-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 3px;
}
.ci-item a { color: var(--text-secondary); transition: color 0.2s; }
.ci-item a:hover { color: var(--brand-red); }
.wa-block {
  display: flex;
  gap: 14px;
  align-items: center;
  background: rgba(37,211,102,0.08);
  border: 1px solid rgba(37,211,102,0.25);
  padding: 16px 18px;
  border-radius: 3px;
  transition: background 0.2s, border-color 0.2s;
}
.wa-block:hover { background: rgba(37,211,102,0.14); border-color: rgba(37,211,102,0.45); }
.wa-block i { font-size: 24px; color: #25D366; flex-shrink: 0; }
.wa-block strong { display: block; font-size: 14px; color: var(--text-primary); margin-bottom: 2px; }
.wa-block span { font-size: 13px; color: var(--text-muted); }
.portal-shortcut {
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
}
.portal-shortcut a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--brand-red);
  transition: color 0.2s;
}
.portal-shortcut a:hover { color: var(--brand-red-hover); }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-default);
}
.footer-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 80px 40px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 40px;
}
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.brand-col img { margin-bottom: 8px; }
.brand-col p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.footer-col h4 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.footer-col a {
  font-size: 13px;
  color: var(--text-secondary);
  transition: color 0.2s;
  line-height: 1.4;
}
.footer-col a:hover { color: var(--brand-red); }
.brands-list {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 2;
}
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 80px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-subtle);
  font-size: 12px;
  color: var(--text-muted);
}
.btn-lang-footer {
  font-family: 'Rajdhani', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--text-muted);
  border: 1px solid var(--border-subtle);
  padding: 5px 12px;
  transition: color 0.2s;
}
.btn-lang-footer:hover { color: var(--text-primary); }

/* ══════════════════════════════════════════
   WHATSAPP FLOAT
══════════════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  text-decoration: none;
  animation: waPulse 2.8s ease-in-out infinite;
}
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 18px rgba(37,211,102,0.30); }
  50%       { box-shadow: 0 4px 36px rgba(37,211,102,0.60); }
}
body.rtl .wa-float { right: auto; left: 28px; }

/* ══════════════════════════════════════════
   MOBILE MENU OVERLAY
══════════════════════════════════════════ */
.nav-links.open {
  display: flex !important;
  flex-direction: column;
  position: absolute;
  top: 90px;
  left: 0;
  right: 0;
  background: var(--bg-primary);
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-accent);
  gap: 20px;
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .portal-inner { padding: 36px 40px; }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .highlights-strip { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  #navbar { padding: 0 24px; }
  .nav-links { display: none; }
  .hamburger { display: block; }
  .hero-content { padding: 130px 24px 60px; }
  .hero-content h1 { font-size: 44px; }
  .hero-stats { right: 24px; bottom: 64px; }
  [dir="rtl"] .hero-stats { right: auto; left: 24px; }
  .product-section { grid-template-columns: 1fr; }
  .product-img { min-height: 280px; order: -1 !important; }
  .product-text { padding: 40px 24px; }
  .section-inner { padding: 0 24px; }
  #brands, #why, #about, #contact { padding: 64px 0; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .portal-inner { flex-direction: column; padding: 32px 24px; text-align: center; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; padding: 48px 24px 32px; }
  .footer-bottom { padding: 16px 24px 24px; flex-direction: column; gap: 12px; text-align: center; }
  .about-grid { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 480px) {
  .pillars-grid { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .brands-grid .brand-cell { flex: 0 0 calc(100% / 3 - 1px); }
  .footer-main { grid-template-columns: 1fr; }
  .hero-content h1 { font-size: 36px; }
  .hero-stats { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .highlights-strip { grid-template-columns: 1fr; }
}
