/* ============================
   TURBO — FUTURISTIC AUTOMOTIVE
   Color Palette from Brand:
   - Dark: #1e2535 (dark slate)
   - Yellow: #f5c000 (brand gold)
   - Red: #cc0000 (accent red)
   - White: #ffffff
   - Bg dark: #141820
============================ */

:root {
  --gold: #f5c000;
  --gold-light: #ffd93d;
  --gold-dark: #c49a00;
  --red: #cc0000;
  --dark: #141820;
  --dark-2: #1e2535;
  --dark-3: #252d3f;
  --white: #ffffff;
  --gray: #8892a4;
  --light-gray: #c5cdd8;
  --font-en: 'Exo 2', 'Rajdhani', sans-serif;
  --font-ar: 'Cairo', sans-serif;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-gold: 0 0 30px rgba(245, 192, 0, 0.25);
  --shadow-dark: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--font-en);
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
  cursor: none;
}
body[lang="ar"] { font-family: var(--font-ar); direction: rtl; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── CUSTOM CURSOR ── */
.cursor-dot {
  position: fixed; top: 0; left: 0; width: 8px; height: 8px;
  background: var(--gold); border-radius: 50%; pointer-events: none;
  z-index: 9999; transform: translate(-50%, -50%);
  transition: transform 0.1s, background 0.2s;
}
.cursor-ring {
  position: fixed; top: 0; left: 0; width: 36px; height: 36px;
  border: 2px solid rgba(245, 192, 0, 0.5); border-radius: 50%;
  pointer-events: none; z-index: 9998; transform: translate(-50%, -50%);
  transition: transform 0.15s ease, width 0.2s, height 0.2s, border-color 0.2s;
}
.cursor-ring.hover { width: 52px; height: 52px; border-color: var(--gold); }

/* ── PRELOADER ── */
.preloader {
  position: fixed; inset: 0; background: var(--dark);
  display: flex; align-items: center; justify-content: center;
  z-index: 10000; transition: opacity 0.6s, visibility 0.6s;
}
.preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-inner { position: relative; width: 100px; height: 100px; }
.turbo-spinner {
  position: absolute; inset: 0;
  border: 3px solid rgba(245, 192, 0, 0.15);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
.preloader-logo {
  position: absolute; inset: 15px; overflow: hidden; border-radius: 50%;
}
.preloader-logo img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
@keyframes spin { to { transform: rotate(360deg); } }

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

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000; padding: 16px 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(20, 24, 32, 0.95);
  backdrop-filter: blur(20px);
  padding: 10px 0;
  box-shadow: 0 1px 0 rgba(245, 192, 0, 0.2), 0 4px 30px rgba(0,0,0,0.3);
}
.nav-container {
  max-width: 1180px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; gap: 32px;
}
.nav-logo img { height: 44px; width: 44px; object-fit: cover; border-radius: 8px; }
.nav-links {
  display: flex; gap: 4px; margin-left: auto;
  list-style: none;
}
.nav-links a {
  padding: 8px 14px; font-size: 0.88rem; font-weight: 600;
  letter-spacing: 0.05em; text-transform: uppercase; color: var(--light-gray);
  border-radius: 6px; transition: var(--transition); position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 4px; left: 50%; right: 50%;
  height: 2px; background: var(--gold); border-radius: 2px;
  transition: left 0.3s, right 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { left: 14px; right: 14px; }
body[lang="ar"] .nav-links a:hover::after { left: 14px; right: 14px; }
.nav-actions { display: flex; gap: 12px; align-items: center; }
.lang-toggle {
  background: rgba(245, 192, 0, 0.12); border: 1px solid rgba(245, 192, 0, 0.3);
  color: var(--gold); padding: 7px 16px; border-radius: 30px;
  font-family: var(--font-en); font-weight: 700; font-size: 0.8rem;
  cursor: pointer; transition: var(--transition); letter-spacing: 0.08em;
}
.lang-toggle:hover { background: var(--gold); color: var(--dark); }
.hamburger {
  display: none; flex-direction: column; gap: 5px; background: none;
  border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px; background: var(--white);
  border-radius: 2px; transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: var(--dark);
  padding: 13px 28px; border-radius: 8px; font-weight: 800;
  font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.06em;
  transition: var(--transition); border: none; cursor: pointer;
  position: relative; overflow: hidden;
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.25) 50%, transparent 70%);
  transform: translateX(-100%); transition: transform 0.5s;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.btn-primary:hover::before { transform: translateX(100%); }
.btn-primary.full-width { width: 100%; justify-content: center; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--white);
  padding: 12px 28px; border-radius: 8px; font-weight: 700;
  font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.06em;
  border: 1.5px solid rgba(255,255,255,0.25); transition: var(--transition);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

/* ── SECTION HEADERS ── */
.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
  display: inline-block; background: rgba(245, 192, 0, 0.12);
  border: 1px solid rgba(245, 192, 0, 0.3);
  color: var(--gold); padding: 5px 16px; border-radius: 30px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 14px;
}
.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 800;
  background: linear-gradient(135deg, var(--white) 30%, var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 16px;
}
.header-line {
  width: 60px; height: 3px; background: var(--gold);
  margin: 0 auto; border-radius: 2px;
}

/* ── HERO ── */
.hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden; padding-top: 80px;
}
.hero-bg {
  position: absolute; inset: 0;
}
.hero-bg-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center center;
  background-repeat: no-repeat;
  transform: scale(1.04);
  animation: heroZoom 18s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1.12); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(20,24,32,0.88) 0%,
    rgba(20,24,32,0.72) 40%,
    rgba(20,24,32,0.55) 70%,
    rgba(20,24,32,0.75) 100%
  );
}
.scanline {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(0deg, rgba(0,0,0,0.03) 0px, rgba(0,0,0,0.03) 1px, transparent 1px, transparent 4px);
  pointer-events: none;
}
.hero-content {
  position: relative; z-index: 2; max-width: 640px;
  padding: 0 24px; text-align: center; animation: fadeUp 1s ease both;
}
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

.badge-3m {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(204,0,0,0.15); border: 1px solid rgba(204,0,0,0.4);
  padding: 7px 18px; border-radius: 30px; margin-bottom: 28px;
  animation: fadeUp 1s 0.2s ease both;
}
.badge-3m span { color: var(--red); font-weight: 900; font-size: 1.1rem; }
.badge-3m small { color: var(--light-gray); font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }

.hero-title { margin-bottom: 20px; animation: fadeUp 1s 0.3s ease both; }
.title-line {
  display: block; font-size: clamp(3.5rem, 9vw, 7rem); font-weight: 900;
  line-height: 1.3; letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold-dark) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  text-shadow: none;
}
.title-sub {
  display: block; font-size: clamp(1rem, 2.5vw, 1.4rem); font-weight: 400;
  color: var(--gray); letter-spacing: 0.15em; text-transform: uppercase; margin-top: 4px;
}

.hero-desc {
  font-size: 1.05rem; color: var(--light-gray); line-height: 1.7;
  margin-bottom: 36px; animation: fadeUp 1s 0.4s ease both;
}
.hero-cta {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  animation: fadeUp 1s 0.5s ease both;
}

.hero-visual {
  position: absolute; right: 8%; top: 50%; transform: translateY(-50%);
  width: 320px; height: 320px; z-index: 1;
}
.rotating-ring {
  position: absolute; top: 50%; left: 50%; border-radius: 50%;
  transform: translate(-50%, -50%);
}
.ring-1 { width: 300px; height: 300px; border: 1px solid rgba(245,192,0,0.15); animation: rotateRing 20s linear infinite; }
.ring-2 { width: 220px; height: 220px; border: 1px dashed rgba(245,192,0,0.25); animation: rotateRing 14s linear infinite reverse; }
.ring-3 { width: 140px; height: 140px; border: 2px solid rgba(245,192,0,0.3); animation: rotateRing 8s linear infinite; }
.ring-1::after, .ring-2::after, .ring-3::after {
  content: ''; position: absolute; top: -4px; left: 50%; width: 8px; height: 8px;
  background: var(--gold); border-radius: 50%; transform: translateX(-50%);
}
@keyframes rotateRing { to { transform: translate(-50%, -50%) rotate(360deg); } }
.turbo-icon-hero {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  font-size: 4rem; animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { transform: translate(-50%,-50%) scale(1); } 50% { transform: translate(-50%,-50%) scale(1.1); } }

.scroll-hint {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--gray); font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase;
  animation: fadeIn 2s 1.5s ease both;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.scroll-line { width: 1px; height: 40px; background: linear-gradient(var(--gold), transparent); animation: scrollLine 2s ease-in-out infinite; }
@keyframes scrollLine { 0%,100% { opacity: 1; transform: scaleY(1); } 50% { opacity: 0.4; transform: scaleY(0.5); } }

/* ── STATS BAR ── */
.stats-bar {
  background: var(--dark-2);
  border-top: 1px solid rgba(245,192,0,0.15); border-bottom: 1px solid rgba(245,192,0,0.15);
  padding: 36px 24px;
  display: flex; justify-content: center; align-items: center;
  gap: 0; flex-wrap: wrap;
}
.stat-item {
  flex: 1; min-width: 150px; text-align: center; padding: 16px 24px;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.stat-item span:first-child {
  font-size: 2.8rem; font-weight: 900; color: var(--gold); line-height: 1;
  font-family: var(--font-en);
}
.stat-item > span:nth-child(2) { font-size: 2rem; font-weight: 900; color: var(--gold); line-height: 1; margin-left: -4px; }
.stat-label { font-size: 0.78rem; color: var(--gray); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 4px; }
.stat-divider { width: 1px; height: 60px; background: rgba(245,192,0,0.2); }

/* ── SERVICES ── */
.services { padding: 100px 0; background: var(--dark); }
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--dark-2); border: 1px solid rgba(245,192,0,0.1);
  padding: 36px 30px; border-radius: 16px;
  position: relative; overflow: hidden; cursor: default;
  transition: var(--transition);
  animation: fadeUp 0.6s ease both;
}
.service-card:nth-child(2) { animation-delay: 0.1s; }
.service-card:nth-child(3) { animation-delay: 0.2s; }
.service-card:nth-child(4) { animation-delay: 0.3s; }
.service-card:nth-child(5) { animation-delay: 0.4s; }
.service-card:nth-child(6) { animation-delay: 0.5s; }
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.service-card:hover { transform: translateY(-6px); border-color: rgba(245,192,0,0.35); box-shadow: var(--shadow-gold); }
.service-card:hover::before { opacity: 1; }
.service-icon { font-size: 2.4rem; margin-bottom: 16px; }
.service-card h3 { font-size: 1.15rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.service-card p { color: var(--gray); font-size: 0.9rem; line-height: 1.65; }
.card-accent {
  position: absolute; bottom: 0; right: 0;
  width: 80px; height: 80px;
  background: radial-gradient(circle at bottom right, rgba(245,192,0,0.08), transparent);
  border-radius: 50%;
}

/* ── 3M SECTION ── */
.section-3m {
  padding: 100px 0;
  background: var(--dark-2);
  position: relative; overflow: hidden;
}
.m3-bg-pattern {
  position: absolute; inset: 0; opacity: 0.03;
  background-image: repeating-linear-gradient(45deg, var(--gold) 0, var(--gold) 1px, transparent 0, transparent 50%);
  background-size: 24px 24px;
}
.m3-content {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 72px; align-items: center;
}
.m3-badge-wrap { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.m3-authorized-badge {
  position: relative; width: 220px; height: 220px;
  border-radius: 50%; overflow: hidden;
}
.badge-inner {
  position: relative; z-index: 2; width: 100%; height: 100%;
  border: 3px solid var(--gold); border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: radial-gradient(circle, rgba(245,192,0,0.08), transparent);
  gap: 4px;
}
.badge-3m-text {
  font-size: 3.5rem; font-weight: 900; color: var(--red);
  font-family: var(--font-en); line-height: 1;
}
.badge-lines { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.badge-lines span { font-size: 0.75rem; color: var(--white); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }
.badge-glow {
  position: absolute; inset: -20px; border-radius: 50%;
  background: radial-gradient(circle, rgba(245,192,0,0.15), transparent 70%);
  animation: glowPulse 3s ease-in-out infinite;
}
@keyframes glowPulse { 0%,100% { opacity: 0.5; } 50% { opacity: 1; } }
.certification-note {
  text-align: center; color: var(--gray); font-size: 0.82rem;
  max-width: 180px; line-height: 1.5;
}
.m3-text h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800; margin-bottom: 20px;
  background: linear-gradient(135deg, var(--white), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.m3-text p { color: var(--gray); line-height: 1.75; font-size: 0.97rem; margin-bottom: 28px; }
.m3-features { margin-bottom: 36px; display: flex; flex-direction: column; gap: 12px; }
.m3-features li {
  display: flex; align-items: center; gap: 12px;
  color: var(--light-gray); font-size: 0.9rem;
}
.m3-features li::before {
  content: ''; width: 20px; height: 20px; border-radius: 50%;
  background: rgba(245,192,0,0.15); border: 1.5px solid var(--gold);
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f5c000' stroke-width='3'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
  background-size: 12px; background-repeat: no-repeat; background-position: center;
}

/* ── GALLERY ── */
.gallery { padding: 100px 0; background: var(--dark); }
.gallery-filters {
  display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px;
}
.filter-btn {
  padding: 8px 20px; border-radius: 30px; border: 1.5px solid rgba(245,192,0,0.25);
  background: transparent; color: var(--gray); font-family: var(--font-en); font-size: 0.85rem;
  font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  cursor: pointer; transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--gold); border-color: var(--gold); color: var(--dark);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.gallery-item {
  position: relative; border-radius: 12px; overflow: hidden;
  aspect-ratio: 4/3; cursor: pointer; background: var(--dark-2);
  transition: var(--transition);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,24,32,0.9) 0%, transparent 50%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 20px; opacity: 0; transition: opacity 0.3s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-tag {
  display: inline-block; padding: 3px 10px; border-radius: 20px;
  background: var(--gold); color: var(--dark); font-size: 0.72rem;
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 6px; align-self: flex-start;
}
.gallery-title { color: var(--white); font-size: 0.95rem; font-weight: 600; }

/* Placeholder car images for gallery (colored gradients) */
.gallery-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
}

/* ── LIGHTBOX ── */
.lightbox {
  position: fixed; inset: 0; background: rgba(0,0,0,0.95);
  z-index: 2000; display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: opacity 0.3s, visibility 0.3s;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox-content { max-width: 90vw; max-height: 90vh; text-align: center; }
.lightbox-content img { max-width: 100%; max-height: 80vh; border-radius: 8px; }
.lightbox-close {
  position: absolute; top: 24px; right: 24px;
  background: rgba(255,255,255,0.1); border: none; color: var(--white);
  width: 44px; height: 44px; border-radius: 50%; font-size: 1rem;
  cursor: pointer; transition: var(--transition);
}
.lightbox-close:hover { background: var(--red); }
.lightbox-caption { color: var(--gray); margin-top: 16px; font-size: 0.9rem; }

/* ── PARTNERS ── */
.partners { padding: 80px 0; background: var(--dark-2); overflow: hidden; }
.partners-track-wrap { overflow: hidden; position: relative; }
.partners-track-wrap::before,
.partners-track-wrap::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2;
}
.partners-track-wrap::before { left: 0; background: linear-gradient(to right, var(--dark-2), transparent); }
.partners-track-wrap::after { right: 0; background: linear-gradient(to left, var(--dark-2), transparent); }
.partners-track {
  display: flex; gap: 32px; animation: scrollTrack 15s linear infinite;
  width: max-content;
}
@keyframes scrollTrack { to { transform: translateX(-50%); } }
.partners-track:hover { animation-play-state: paused; }
.partner-card {
  flex-shrink: 0; background: var(--dark-3); border: 1px solid rgba(245,192,0,0.12);
  border-radius: 16px; padding: 28px 40px;
  display: flex; align-items: center; justify-content: center; min-width: 180px;
  transition: var(--transition);
}
.partner-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.partner-logo { font-weight: 900; text-align: center; }
.p-3m { display: flex; flex-direction: column; align-items: center; }
.p3m-text { font-size: 2.5rem; color: var(--red); font-family: var(--font-en); line-height: 1; }
.p3m-sub { font-size: 0.65rem; color: var(--gray); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 2px; }
.p-revlimit { color: var(--white); font-size: 1.1rem; line-height: 1.4; font-family: var(--font-en); }
.p-revlimit small { color: var(--red); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.08em; }
.p-apr { color: var(--red); font-size: 2.2rem; font-style: italic; font-family: var(--font-en); letter-spacing: -0.05em; }

/* ── CONTACT ── */
.contact { padding: 100px 0; background: var(--dark); }
.contact-wrap {
  display: grid; grid-template-columns: 1fr 1.6fr; gap: 64px; align-items: start;
}
.contact-item {
  display: flex; gap: 16px; align-items: flex-start; margin-bottom: 32px;
}
.contact-icon { font-size: 1.6rem; flex-shrink: 0; }
.contact-label {
  display: block; color: var(--gold); font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 6px;
}
.contact-value {
  display: block; color: var(--light-gray); font-size: 0.92rem; margin-bottom: 4px;
  transition: color 0.2s;
}
a.contact-value:hover { color: var(--gold); }
.social-links { display: flex; gap: 12px; margin-top: 8px; }
.social-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px; border-radius: 8px; font-size: 0.82rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em; transition: var(--transition); border: 1.5px solid;
}
.social-btn.tiktok { border-color: rgba(255,255,255,0.2); color: var(--white); }
.social-btn.tiktok:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.social-btn.facebook { border-color: rgba(24,119,242,0.4); color: #4a90d9; }
.social-btn.facebook:hover { border-color: #1877f2; background: rgba(24,119,242,0.1); }

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 0.8rem; font-weight: 700; color: var(--gray);
  text-transform: uppercase; letter-spacing: 0.08em;
}
.form-group input, .form-group select, .form-group textarea {
  background: var(--dark-2); border: 1.5px solid rgba(245,192,0,0.15);
  color: var(--white); padding: 13px 16px; border-radius: 8px;
  font-family: var(--font-en); font-size: 0.92rem; transition: border-color 0.25s;
  outline: none; resize: none;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--gray); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--gold);
}
.form-group select option { background: var(--dark-2); }
.form-success {
  text-align: center; padding: 20px;
  background: rgba(245,192,0,0.1); border: 1px solid var(--gold);
  border-radius: 8px; color: var(--gold); font-weight: 700;
  display: none;
}
.form-success.show { display: block; }

/* ── FOOTER ── */
.footer { background: var(--dark-2); padding: 64px 0 0; position: relative; overflow: hidden; }
.footer-glow {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 600px; height: 2px; background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: 48px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand img { height: 50px; width: 50px; object-fit: cover; border-radius: 8px; margin-bottom: 16px; }
.footer-brand p { color: var(--gray); font-size: 0.88rem; line-height: 1.7; }
.footer-links h4, .footer-contact h4 {
  color: var(--gold); font-size: 0.8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 20px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: var(--gray); font-size: 0.88rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-contact p { color: var(--gray); font-size: 0.88rem; margin-bottom: 8px; }
.footer-bottom {
  padding: 20px 0; text-align: center; color: var(--gray); font-size: 0.82rem;
}

/* ── ARABIC OVERRIDES ── */
body[lang="ar"] {
  font-family: var(--font-ar);
}
body[lang="ar"] .nav-links { margin-left: 0; margin-right: auto; }
body[lang="ar"] .hero-content { direction: rtl; }
body[lang="ar"] .title-line { font-family: var(--font-ar); font-size: clamp(3rem, 8vw, 6rem); }
body[lang="ar"] .badge-3m { flex-direction: row-reverse; }
body[lang="ar"] .contact-wrap { direction: rtl; }
body[lang="ar"] .m3-content { direction: rtl; }
body[lang="ar"] .m3-features li::before { margin-left: 0; margin-right: 0; }
body[lang="ar"] .form-group label { text-align: right; }
body[lang="ar"] .footer-top { direction: rtl; }
body[lang="ar"] .section-header { direction: rtl; }
body[lang="ar"] .services-grid { direction: rtl; }
body[lang="ar"] .btn-primary, body[lang="ar"] .btn-ghost { font-family: var(--font-ar); }
body[lang="ar"] .hero-cta { direction: rtl; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-visual { display: none; }
  .m3-content { grid-template-columns: 1fr; text-align: center; }
  .m3-badge-wrap { flex-direction: row; align-items: center; justify-content: center; }
  .contact-wrap { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed; top: 0; left: -100%; width: 280px; height: 100vh;
    background: var(--dark-2); flex-direction: column; padding: 100px 24px 24px;
    gap: 8px; transition: left 0.35s cubic-bezier(0.4,0,0.2,1);
    border-right: 1px solid rgba(245,192,0,0.1);
  }
  .nav-links.open { left: 0; }
  body[lang="ar"] .nav-links { left: auto; right: -100%; }
  body[lang="ar"] .nav-links.open { right: 0; }
  .hamburger { display: flex; }
  .stats-bar { flex-direction: column; gap: 24px; }
  .stat-divider { width: 60px; height: 1px; }
  .footer-top { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .m3-badge-wrap { flex-direction: column; }
  .cursor-dot, .cursor-ring { display: none; }
  body { cursor: auto; }
  .hero-cta { flex-direction: column; align-items: center; }
  .gallery-filters { gap: 8px; }
  .filter-btn { padding: 6px 14px; font-size: 0.78rem; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
}

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

/* ── LIGHTBOX NAV ── */
.lightbox-prev, .lightbox-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.1); border: none; color: var(--white);
  width: 50px; height: 50px; border-radius: 50%; font-size: 1.8rem;
  cursor: pointer; transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-prev:hover, .lightbox-next:hover { background: var(--gold); color: var(--dark); }

/* ── FORM NOTE & SUCCESS ── */
.form-note { text-align: center; color: var(--gray); font-size: 0.78rem; margin-top: 10px; }
.form-success { display: none; text-align: center; padding: 14px; background: rgba(34,197,94,0.1); border: 1px solid #22c55e; border-radius: 8px; color: #22c55e; font-weight: 600; margin-bottom: 12px; }
.form-success.show { display: block; }

/* ── GALLERY REAL IMAGES ── */
.gallery-item img { width:100%; height:100%; object-fit:cover; transition:transform 0.45s ease; }
.gallery-zoom { position:absolute; top:50%; left:50%; transform:translate(-50%,-50%) scale(0); font-size:2rem; transition:transform 0.25s; }
.gallery-item:hover .gallery-zoom { transform:translate(-50%,-50%) scale(1); }
.lightbox-content img { transition: opacity 0.2s ease; }
