  
    :root {
      --black: #0a0a0a;
      --dark: #111111;
      --dark2: #1a1a1a;
      --dark3: #222222;
      --gold: #c9a84c;
      --gold2: #e8c96a;
      --gold-light: #f5e4a8;
      --silver: #8a8a8a;
      --white: #f5f5f0;
      --off-white: #e8e4dc;
      --accent: #d4882a;
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Cairo', 'Tajawal', sans-serif;
      background: var(--black);
      color: var(--white);
      overflow-x: hidden;
    }

    body.en-mode {
      font-family: 'Barlow Condensed', sans-serif;
      direction: ltr;
      text-align: left;
    }

    /* ===== CURSOR ===== */
    .cursor {
      width: 12px; height: 12px;
      background: var(--gold);
      border-radius: 50%;
      position: fixed;
      pointer-events: none;
      z-index: 99999;
      transform: translate(-50%, -50%);
      transition: transform 0.1s, width 0.3s, height 0.3s, background 0.3s;
      mix-blend-mode: difference;
    }
    .cursor-ring {
      width: 40px; height: 40px;
      border: 1.5px solid var(--gold);
      border-radius: 50%;
      position: fixed;
      pointer-events: none;
      z-index: 99998;
      transform: translate(-50%, -50%);
      transition: transform 0.15s ease-out, width 0.3s, height 0.3s;
      opacity: 0.6;
    }

    /* ===== NAVBAR ===== */
    #mainNav {
      background: rgba(10,10,10,0.95);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(201,168,76,0.15);
      padding: 0;
      transition: all 0.4s;
      z-index: 1000;
    }
    #mainNav.scrolled {
      background: rgba(10,10,10,0.99);
      border-bottom-color: rgba(201,168,76,0.35);
    }
    .navbar-brand-wrap {
      display: flex; align-items: center; gap: 12px;
    }
    .brand-icon {
      width: 48px; height: 48px;
      background: linear-gradient(135deg, var(--gold), var(--accent));
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      font-size: 22px;
      color: var(--black);
      font-weight: 900;
      flex-shrink: 0;
    }
    .brand-text-ar { font-family: 'Cairo', sans-serif; font-size: 1.1rem; font-weight: 900; line-height: 1.1; color: var(--white); }
    .brand-text-en { font-family: 'Bebas Neue', sans-serif; font-size: 0.85rem; letter-spacing: 3px; color: var(--gold); line-height: 1; }

    .nav-link {
      font-family: 'Cairo', sans-serif;
      font-weight: 600;
      font-size: 0.88rem;
      color: rgba(245,245,240,0.75) !important;
      padding: 28px 14px !important;
      position: relative;
      transition: color 0.3s;
      letter-spacing: 0.5px;
    }
    .en-mode .nav-link { font-family: 'Barlow Condensed', sans-serif; font-size: 1rem; letter-spacing: 2px; text-transform: uppercase; }
    .nav-link::after {
      content: '';
      position: absolute;
      bottom: 0; left: 14px; right: 14px;
      height: 2px;
      background: linear-gradient(90deg, var(--gold), var(--accent));
      transform: scaleX(0);
      transition: transform 0.3s ease;
    }
    .nav-link:hover { color: var(--gold) !important; }
    .nav-link:hover::after { transform: scaleX(1); }

    .lang-btn {
      background: transparent;
      border: 1.5px solid var(--gold);
      color: var(--gold);
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.85rem;
      letter-spacing: 2px;
      padding: 7px 18px;
      border-radius: 3px;
      cursor: pointer;
      transition: all 0.3s;
      text-transform: uppercase;
      font-weight: 700;
    }
    .lang-btn:hover { background: var(--gold); color: var(--black); }

    /* ===== HERO ===== */
    #hero {
      min-height: 100vh;
      background: var(--black);
      position: relative;
      overflow: hidden;
      display: flex; align-items: center;
    }
    .hero-bg-grid {
      position: absolute; inset: 0;
      background-image:
        linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
      background-size: 60px 60px;
      animation: gridMove 20s linear infinite;
    }
    @keyframes gridMove { 0%{transform:translateY(0)} 100%{transform:translateY(60px)} }

    .hero-accent-line {
      position: absolute; top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, transparent, var(--gold), var(--accent), transparent);
    }
    .hero-glow {
      position: absolute;
      width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
      top: -100px; right: -100px;
      animation: glowPulse 4s ease-in-out infinite;
    }
    @keyframes glowPulse { 0%,100%{opacity:0.5;transform:scale(1)} 50%{opacity:1;transform:scale(1.1)} }

    .hero-number {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(120px, 20vw, 260px);
      color: rgba(201,168,76,0.04);
      position: absolute;
      left: -20px; bottom: -20px;
      line-height: 1;
      user-select: none;
      letter-spacing: -5px;
    }

    .hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(201,168,76,0.1);
      border: 1px solid rgba(201,168,76,0.3);
      border-radius: 50px;
      padding: 8px 20px;
      font-size: 0.82rem;
      font-weight: 600;
      color: var(--gold);
      margin-bottom: 24px;
      animation: fadeInDown 0.6s ease forwards;
      opacity: 0;
    }
    .hero-badge .dot {
      width: 7px; height: 7px;
      background: var(--gold);
      border-radius: 50%;
      animation: blink 1.5s ease-in-out infinite;
    }
    @keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.2} }

    .hero-title-ar {
      font-family: 'Cairo', sans-serif;
      font-size: clamp(42px, 8vw, 88px);
      font-weight: 900;
      line-height: 1.05;
      color: var(--white);
      animation: fadeInUp 0.8s 0.2s ease forwards;
      opacity: 0;
    }
    .hero-title-en {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(42px, 8vw, 88px);
      line-height: 1;
      letter-spacing: 3px;
      color: var(--white);
      display: none;
    }
    .en-mode .hero-title-ar { display: none; }
    .en-mode .hero-title-en { display: block; animation: fadeInUp 0.8s 0.2s ease forwards; opacity: 0; }

    .hero-title-gold { color: var(--gold); }

    .hero-sub {
      font-size: clamp(16px, 2.5vw, 20px);
      color: rgba(245,245,240,0.6);
      font-weight: 300;
      max-width: 560px;
      line-height: 1.8;
      animation: fadeInUp 0.8s 0.4s ease forwards;
      opacity: 0;
    }
    .en-mode .hero-sub { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(16px, 2.5vw, 22px); letter-spacing: 1px; }

    .hero-ctas { animation: fadeInUp 0.8s 0.6s ease forwards; opacity: 0; }

    .btn-gold {
      background: linear-gradient(135deg, var(--gold), var(--accent));
      color: var(--black);
      font-family: 'Cairo', sans-serif;
      font-weight: 800;
      font-size: 1rem;
      padding: 14px 36px;
      border: none;
      border-radius: 4px;
      transition: all 0.3s;
      position: relative;
      overflow: hidden;
      display: inline-flex; align-items: center; gap: 10px;
      text-decoration: none;
    }
    .en-mode .btn-gold { font-family: 'Barlow Condensed', sans-serif; letter-spacing: 2px; text-transform: uppercase; font-size: 1.1rem; }
    .btn-gold::before {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(135deg, var(--gold2), var(--gold));
      opacity: 0;
      transition: opacity 0.3s;
    }
    .btn-gold:hover::before { opacity: 1; }
    .btn-gold:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(201,168,76,0.35); color: var(--black); }
    .btn-gold span { position: relative; z-index: 1; }

    .btn-outline-gold {
      background: transparent;
      color: var(--gold);
      font-family: 'Cairo', sans-serif;
      font-weight: 700;
      font-size: 1rem;
      padding: 13px 36px;
      border: 1.5px solid var(--gold);
      border-radius: 4px;
      transition: all 0.3s;
      display: inline-flex; align-items: center; gap: 10px;
      text-decoration: none;
    }
    .en-mode .btn-outline-gold { font-family: 'Barlow Condensed', sans-serif; letter-spacing: 2px; text-transform: uppercase; font-size: 1.1rem; }
    .btn-outline-gold:hover { background: rgba(201,168,76,0.1); color: var(--gold2); transform: translateY(-2px); }

    .hero-stats {
      animation: fadeInUp 0.8s 0.8s ease forwards;
      opacity: 0;
      border-top: 1px solid rgba(201,168,76,0.15);
      padding-top: 32px;
    }
    .stat-item { text-align: center; }
    .stat-num {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 3rem;
      color: var(--gold);
      line-height: 1;
    }
    .stat-label { font-size: 0.8rem; color: var(--silver); font-weight: 400; margin-top: 4px; }

    .hero-truck-visual {
      position: relative;
      animation: fadeInRight 1s 0.4s ease forwards;
      opacity: 0;
    }
    .truck-card {
      background: var(--dark2);
      border: 1px solid rgba(201,168,76,0.2);
      border-radius: 16px;
      padding: 40px;
      position: relative;
      overflow: hidden;
    }
    .truck-card::before {
      content: '';
      position: absolute;
      top: -50%; left: -50%;
      width: 200%; height: 200%;
      background: conic-gradient(from 0deg, transparent 0%, rgba(201,168,76,0.03) 50%, transparent 100%);
      animation: rotateBg 8s linear infinite;
    }
    @keyframes rotateBg { 0%{transform:rotate(0deg)} 100%{transform:rotate(360deg)} }
    .truck-icon-big {
      font-size: 80px;
      color: var(--gold);
      display: block;
      text-align: center;
      margin-bottom: 20px;
      animation: truckMove 3s ease-in-out infinite;
    }
    @keyframes truckMove {
      0%,100%{transform:translateX(0)} 50%{transform:translateX(10px)}
    }
    .availability-badge {
      background: rgba(40,200,100,0.1);
      border: 1px solid rgba(40,200,100,0.3);
      color: #4ade80;
      border-radius: 50px;
      padding: 8px 20px;
      font-size: 0.82rem;
      font-weight: 600;
      display: inline-flex; align-items: center; gap: 8px;
      margin-bottom: 20px;
    }
    .availability-badge::before {
      content: '';
      width: 8px; height: 8px;
      background: #4ade80;
      border-radius: 50%;
      animation: blink 1.5s ease-in-out infinite;
    }
    .truck-features { list-style: none; }
    .truck-features li {
      padding: 10px 0;
      border-bottom: 1px solid rgba(255,255,255,0.05);
      display: flex; align-items: center; gap: 12px;
      font-size: 0.9rem;
      color: rgba(245,245,240,0.8);
    }
    .truck-features li:last-child { border-bottom: none; }
    .truck-features li i { color: var(--gold); font-size: 1rem; }

    /* ===== SECTIONS BASE ===== */
    section { padding: 100px 0; }
    .section-label {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 0.85rem;
      letter-spacing: 4px;
      color: var(--gold);
      text-transform: uppercase;
      margin-bottom: 12px;
      display: flex; align-items: center; gap: 12px;
    }
    .section-label::before {
      content: '';
      width: 40px; height: 2px;
      background: linear-gradient(90deg, var(--gold), var(--accent));
      display: block;
    }
    .section-title-ar {
      font-family: 'Cairo', sans-serif;
      font-size: clamp(32px, 5vw, 56px);
      font-weight: 900;
      line-height: 1.1;
      color: var(--white);
    }
    .section-title-en {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(32px, 5vw, 56px);
      letter-spacing: 3px;
      color: var(--white);
      display: none;
    }
    .en-mode .section-title-ar { display: none; }
    .en-mode .section-title-en { display: block; }

    .gold-text { color: var(--gold); }

    /* ===== ABOUT ===== */
    #about { background: var(--dark); }
    .about-visual {
      position: relative;
    }
    .about-main-block {
      background: var(--dark2);
      border: 1px solid rgba(201,168,76,0.15);
      border-radius: 12px;
      padding: 48px;
      position: relative;
      overflow: hidden;
    }
    .about-main-block::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--gold), var(--accent), transparent);
    }
    .about-num {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 6rem;
      color: rgba(201,168,76,0.08);
      position: absolute;
      top: -10px; right: 20px;
      line-height: 1;
      user-select: none;
    }
    .about-icon-row {
      display: flex; gap: 16px; flex-wrap: wrap; margin-top: 24px;
    }
    .about-chip {
      background: rgba(201,168,76,0.08);
      border: 1px solid rgba(201,168,76,0.2);
      border-radius: 50px;
      padding: 8px 20px;
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--gold);
      display: flex; align-items: center; gap: 8px;
      transition: all 0.3s;
    }
    .about-chip:hover { background: rgba(201,168,76,0.15); transform: translateY(-2px); }

    .about-text {
      font-size: 1.05rem;
      color: rgba(245,245,240,0.7);
      line-height: 2;
      font-weight: 300;
    }
    .en-mode .about-text { font-family: 'Barlow Condensed', sans-serif; font-size: 1.1rem; letter-spacing: 0.5px; line-height: 1.8; }

    /* ===== SERVICES ===== */
    #services { background: var(--black); }
    .service-card {
      background: var(--dark2);
      border: 1px solid rgba(201,168,76,0.1);
      border-radius: 12px;
      padding: 36px 28px;
      position: relative;
      overflow: hidden;
      transition: all 0.4s;
      height: 100%;
    }
    .service-card::before {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(135deg, rgba(201,168,76,0.05), transparent);
      opacity: 0;
      transition: opacity 0.4s;
    }
    .service-card:hover { border-color: rgba(201,168,76,0.35); transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
    .service-card:hover::before { opacity: 1; }
    .service-card-num {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 4rem;
      color: rgba(201,168,76,0.08);
      position: absolute;
      top: 10px; left: 20px;
      line-height: 1;
    }
    .service-icon {
      width: 60px; height: 60px;
      background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(212,136,42,0.1));
      border: 1px solid rgba(201,168,76,0.25);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      font-size: 26px;
      color: var(--gold);
      margin-bottom: 20px;
      transition: all 0.3s;
    }
    .service-card:hover .service-icon { background: linear-gradient(135deg, var(--gold), var(--accent)); color: var(--black); }
    .service-title-ar { font-family: 'Cairo', sans-serif; font-size: 1.25rem; font-weight: 800; color: var(--white); margin-bottom: 12px; }
    .service-title-en { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; letter-spacing: 2px; color: var(--white); margin-bottom: 12px; display: none; }
    .en-mode .service-title-ar { display: none; }
    .en-mode .service-title-en { display: block; }
    .service-desc { font-size: 0.88rem; color: rgba(245,245,240,0.55); line-height: 1.8; }
    .en-mode .service-desc { font-family: 'Barlow Condensed', sans-serif; font-size: 0.95rem; letter-spacing: 0.5px; }

    /* ===== WORK / PORTFOLIO ===== */
    #work { background: var(--dark); }
    .work-filter-btns { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 40px; }
    .filter-btn {
      background: transparent;
      border: 1px solid rgba(201,168,76,0.2);
      color: rgba(245,245,240,0.6);
      padding: 8px 22px;
      border-radius: 50px;
      font-family: 'Cairo', sans-serif;
      font-size: 0.85rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s;
    }
    .en-mode .filter-btn { font-family: 'Barlow Condensed', sans-serif; letter-spacing: 1.5px; text-transform: uppercase; }
    .filter-btn.active, .filter-btn:hover { background: rgba(201,168,76,0.12); border-color: var(--gold); color: var(--gold); }

    .work-card {
      border-radius: 12px;
      overflow: hidden;
      position: relative;
      background: var(--dark2);
      border: 1px solid rgba(201,168,76,0.1);
      transition: all 0.4s;
      aspect-ratio: 4/3;
      display: flex; align-items: center; justify-content: center;
    }
    .work-card:hover { transform: scale(1.02); border-color: rgba(201,168,76,0.3); }
    .work-card-bg {
      position: absolute; inset: 0;
      display: flex; align-items: center; justify-content: center;
      font-size: 80px;
      color: rgba(201,168,76,0.08);
    }
    .work-card-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(10,10,10,0.95) 0%, transparent 50%);
      display: flex; flex-direction: column; justify-content: flex-end;
      padding: 24px;
      opacity: 0;
      transition: opacity 0.4s;
    }
    .work-card:hover .work-card-overlay { opacity: 1; }
    .work-tag {
      background: var(--gold);
      color: var(--black);
      font-size: 0.75rem;
      font-weight: 700;
      padding: 4px 12px;
      border-radius: 4px;
      display: inline-block;
      margin-bottom: 8px;
    }
    .work-card-title { font-family: 'Cairo', sans-serif; font-weight: 800; font-size: 1.1rem; color: var(--white); }
    .en-mode .work-card-title { font-family: 'Bebas Neue', sans-serif; font-size: 1.4rem; letter-spacing: 2px; }

    /* Show overlay always on mobile */
    @media (max-width: 768px) {
      .work-card-overlay { opacity: 1; }
    }

    /* ===== BLOG ===== */
    #blog { background: var(--black); }
    .blog-card {
      background: var(--dark2);
      border: 1px solid rgba(201,168,76,0.1);
      border-radius: 12px;
      overflow: hidden;
      transition: all 0.4s;
      height: 100%;
    }
    .blog-card:hover { border-color: rgba(201,168,76,0.3); transform: translateY(-4px); }
    .blog-img {
      height: 180px;
      background: linear-gradient(135deg, var(--dark3), var(--dark2));
      display: flex; align-items: center; justify-content: center;
      font-size: 64px;
      color: rgba(201,168,76,0.2);
      position: relative;
      overflow: hidden;
    }
    .blog-img::after {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(to bottom, transparent 60%, var(--dark2));
    }
    .blog-content { padding: 24px; }
    .blog-date { font-size: 0.78rem; color: var(--gold); font-weight: 600; margin-bottom: 10px; }
    .blog-title-ar { font-family: 'Cairo', sans-serif; font-size: 1rem; font-weight: 800; color: var(--white); margin-bottom: 10px; line-height: 1.5; }
    .blog-title-en { font-family: 'Bebas Neue', sans-serif; font-size: 1.2rem; letter-spacing: 1.5px; color: var(--white); margin-bottom: 10px; display: none; }
    .en-mode .blog-title-ar { display: none; }
    .en-mode .blog-title-en { display: block; }
    .blog-excerpt { font-size: 0.83rem; color: rgba(245,245,240,0.5); line-height: 1.8; }
    .en-mode .blog-excerpt { font-family: 'Barlow Condensed', sans-serif; letter-spacing: 0.3px; font-size: 0.9rem; }
    .blog-read-more {
      color: var(--gold);
      font-size: 0.85rem;
      font-weight: 700;
      text-decoration: none;
      display: inline-flex; align-items: center; gap: 6px;
      margin-top: 16px;
      transition: gap 0.3s;
    }
    .blog-read-more:hover { gap: 12px; color: var(--gold2); }

    /* ===== WHY US ===== */
    #why { background: var(--dark); position: relative; overflow: hidden; }
    .why-bg-text {
      position: absolute;
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(80px, 15vw, 180px);
      color: rgba(201,168,76,0.03);
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      white-space: nowrap;
      letter-spacing: 10px;
      user-select: none;
      pointer-events: none;
    }
    .why-item {
      display: flex; gap: 20px; align-items: flex-start;
      padding: 28px;
      border-radius: 12px;
      border: 1px solid transparent;
      transition: all 0.4s;
      background: rgba(201,168,76,0.02);
    }
    .why-item:hover { border-color: rgba(201,168,76,0.2); background: rgba(201,168,76,0.05); }
    .why-num {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 3rem;
      color: rgba(201,168,76,0.2);
      line-height: 1;
      min-width: 55px;
      transition: color 0.3s;
    }
    .why-item:hover .why-num { color: var(--gold); }
    .why-title-ar { font-family: 'Cairo', sans-serif; font-size: 1.15rem; font-weight: 800; color: var(--white); margin-bottom: 8px; }
    .why-title-en { font-family: 'Bebas Neue', sans-serif; font-size: 1.35rem; letter-spacing: 2px; color: var(--white); margin-bottom: 8px; display: none; }
    .en-mode .why-title-ar { display: none; }
    .en-mode .why-title-en { display: block; }
    .why-desc { font-size: 0.875rem; color: rgba(245,245,240,0.55); line-height: 1.8; }
    .en-mode .why-desc { font-family: 'Barlow Condensed', sans-serif; font-size: 0.95rem; letter-spacing: 0.3px; }

    .why-cta-block {
      background: linear-gradient(135deg, rgba(201,168,76,0.1), rgba(212,136,42,0.05));
      border: 1px solid rgba(201,168,76,0.2);
      border-radius: 16px;
      padding: 48px 40px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .why-cta-block::before {
      content: '';
      position: absolute;
      top: -2px; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, transparent, var(--gold), var(--accent), transparent);
    }

    /* ===== TESTIMONIALS ===== */
    #testimonials { background: var(--black); }
    .testimonial-card {
      background: var(--dark2);
      border: 1px solid rgba(201,168,76,0.1);
      border-radius: 12px;
      padding: 32px;
      position: relative;
      transition: all 0.4s;
      height: 100%;
    }
    .testimonial-card:hover { border-color: rgba(201,168,76,0.3); transform: translateY(-4px); }
    .testimonial-card::before {
      content: '\275D';
      font-size: 60px;
      color: rgba(201,168,76,0.08);
      position: absolute;
      top: 10px; right: 20px;
      line-height: 1;
    }
    .stars { color: var(--gold); font-size: 1rem; margin-bottom: 16px; letter-spacing: 3px; }
    .testimonial-text { font-size: 0.92rem; color: rgba(245,245,240,0.75); line-height: 1.9; margin-bottom: 24px; font-style: italic; }
    .en-mode .testimonial-text { font-family: 'Barlow Condensed', sans-serif; font-size: 1rem; letter-spacing: 0.3px; font-style: normal; }
    .testimonial-author { display: flex; align-items: center; gap: 14px; }
    .author-avatar {
      width: 46px; height: 46px;
      background: linear-gradient(135deg, var(--gold), var(--accent));
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-family: 'Cairo', sans-serif;
      font-weight: 900;
      color: var(--black);
      font-size: 1.1rem;
    }
    .author-name-ar { font-family: 'Cairo', sans-serif; font-weight: 700; font-size: 0.95rem; color: var(--white); }
    .author-name-en { font-family: 'Barlow Condensed', sans-serif; font-size: 1rem; letter-spacing: 1px; font-weight: 700; color: var(--white); display: none; }
    .en-mode .author-name-ar { display: none; }
    .en-mode .author-name-en { display: block; }
    .author-loc { font-size: 0.78rem; color: var(--silver); margin-top: 2px; }

    /* ===== CONTACT ===== */
    #contact { background: var(--dark); }
    .contact-form-wrap {
      background: var(--dark2);
      border: 1px solid rgba(201,168,76,0.15);
      border-radius: 16px;
      padding: 48px;
      position: relative;
      overflow: hidden;
    }
    .contact-form-wrap::before {
      content: '';
      position: absolute; top: -2px; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, transparent, var(--gold), var(--accent), transparent);
    }
    .form-label { font-family: 'Cairo', sans-serif; font-size: 0.85rem; font-weight: 600; color: rgba(245,245,240,0.6); margin-bottom: 8px; }
    .en-mode .form-label { font-family: 'Barlow Condensed', sans-serif; letter-spacing: 1px; text-transform: uppercase; font-size: 0.8rem; }
    .form-control, .form-select {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      color: var(--white);
      border-radius: 8px;
      padding: 12px 16px;
      font-family: 'Cairo', sans-serif;
      font-size: 0.9rem;
      transition: all 0.3s;
    }
    .form-control:focus, .form-select:focus {
      background: rgba(201,168,76,0.05);
      border-color: rgba(201,168,76,0.4);
      box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
      color: var(--white);
    }
    .form-control::placeholder { color: rgba(245,245,240,0.25); }
    .form-select option { background: var(--dark2); }

    .contact-info-item {
      display: flex; align-items: flex-start; gap: 16px;
      padding: 20px;
      border-radius: 10px;
      border: 1px solid rgba(201,168,76,0.1);
      transition: all 0.3s;
      background: rgba(201,168,76,0.02);
    }
    .contact-info-item:hover { border-color: rgba(201,168,76,0.3); background: rgba(201,168,76,0.05); }
    .contact-icon {
      width: 48px; height: 48px;
      background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(212,136,42,0.1));
      border: 1px solid rgba(201,168,76,0.25);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      font-size: 20px; color: var(--gold);
      flex-shrink: 0;
    }
    .contact-info-label { font-size: 0.78rem; color: var(--silver); margin-bottom: 4px; }
    .contact-info-value { font-family: 'Cairo', sans-serif; font-weight: 700; font-size: 1.05rem; color: var(--white); }
    .en-mode .contact-info-value { font-family: 'Barlow Condensed', sans-serif; font-size: 1.2rem; letter-spacing: 1px; }

    .whatsapp-btn {
      background: #25D366;
      color: white;
      font-family: 'Cairo', sans-serif;
      font-weight: 800;
      font-size: 1.1rem;
      padding: 16px 36px;
      border: none;
      border-radius: 8px;
      display: inline-flex; align-items: center; gap: 12px;
      text-decoration: none;
      transition: all 0.3s;
      width: 100%;
      justify-content: center;
    }
    .en-mode .whatsapp-btn { font-family: 'Barlow Condensed', sans-serif; letter-spacing: 2px; text-transform: uppercase; }
    .whatsapp-btn:hover { background: #22c55e; transform: translateY(-2px); box-shadow: 0 12px 40px rgba(37,211,102,0.3); color: white; }
    .call-btn {
      background: transparent;
      color: var(--gold);
      font-family: 'Cairo', sans-serif;
      font-weight: 800;
      font-size: 1.1rem;
      padding: 16px 36px;
      border: 1.5px solid var(--gold);
      border-radius: 8px;
      display: inline-flex; align-items: center; gap: 12px;
      text-decoration: none;
      transition: all 0.3s;
      width: 100%;
      justify-content: center;
    }
    .en-mode .call-btn { font-family: 'Barlow Condensed', sans-serif; letter-spacing: 2px; text-transform: uppercase; }
    .call-btn:hover { background: rgba(201,168,76,0.1); color: var(--gold2); transform: translateY(-2px); }

    /* ===== FOOTER ===== */
    footer {
      background: var(--dark);
      border-top: 1px solid rgba(201,168,76,0.1);
    }
    .footer-main { padding: 72px 0 48px; }
    .footer-brand-text {
      font-family: 'Cairo', sans-serif;
      font-size: 1.3rem;
      font-weight: 900;
      color: var(--white);
    }
    .footer-desc { font-size: 0.875rem; color: rgba(245,245,240,0.5); line-height: 1.9; margin-top: 14px; }
    .en-mode .footer-desc { font-family: 'Barlow Condensed', sans-serif; font-size: 0.95rem; letter-spacing: 0.3px; }
    .footer-heading {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1rem;
      letter-spacing: 3px;
      color: var(--gold);
      text-transform: uppercase;
      margin-bottom: 20px;
      padding-bottom: 10px;
      border-bottom: 1px solid rgba(201,168,76,0.15);
    }
    .footer-links { list-style: none; }
    .footer-links li { margin-bottom: 10px; }
    .footer-links a {
      color: rgba(245,245,240,0.5);
      text-decoration: none;
      font-size: 0.875rem;
      transition: all 0.3s;
      display: inline-flex; align-items: center; gap: 8px;
    }
    .en-mode .footer-links a { font-family: 'Barlow Condensed', sans-serif; font-size: 0.95rem; letter-spacing: 0.5px; }
    .footer-links a:hover { color: var(--gold); padding-inline-start: 6px; }
    .footer-links a::before { content: '›'; color: var(--gold); font-size: 1rem; }
    .footer-contact-item { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
    .footer-contact-item i { color: var(--gold); font-size: 1rem; }
    .footer-contact-item a { color: rgba(245,245,240,0.6); text-decoration: none; font-size: 0.875rem; transition: color 0.3s; }
    .footer-contact-item a:hover { color: var(--gold); }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.05);
      padding: 20px 0;
      display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
    }
    .footer-copy { font-size: 0.8rem; color: rgba(245,245,240,0.3); }
    .footer-gmtweb a {
      color: var(--gold);
      text-decoration: none;
      font-size: 0.8rem;
      font-weight: 700;
      transition: color 0.3s;
      display: inline-flex; align-items: center; gap: 6px;
    }
    .footer-gmtweb a:hover { color: var(--gold2); }

    /* ===== FLOATING WHATSAPP ===== */
    .float-wa {
      position: fixed;
      bottom: 30px;
      left: 30px;
      width: 58px; height: 58px;
      background: #25D366;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 26px;
      color: white;
      text-decoration: none;
      z-index: 999;
      box-shadow: 0 6px 30px rgba(37,211,102,0.4);
      animation: waPulse 2.5s ease-in-out infinite;
      transition: transform 0.3s;
    }
    .float-wa:hover { transform: scale(1.1); color: white; }
    @keyframes waPulse {
      0%,100%{box-shadow: 0 6px 30px rgba(37,211,102,0.4)}
      50%{box-shadow: 0 6px 50px rgba(37,211,102,0.7)}
    }

    /* ===== SCROLL PROGRESS ===== */
    .scroll-progress {
      position: fixed; top: 0; left: 0;
      height: 3px; z-index: 9999;
      background: linear-gradient(90deg, var(--gold), var(--accent));
      width: 0%;
      transition: width 0.1s;
    }

    /* ===== ANIMATIONS ===== */
    @keyframes fadeInUp {
      0%{opacity:0;transform:translateY(30px)} 100%{opacity:1;transform:translateY(0)}
    }
    @keyframes fadeInDown {
      0%{opacity:0;transform:translateY(-20px)} 100%{opacity:1;transform:translateY(0)}
    }
    @keyframes fadeInRight {
      0%{opacity:0;transform:translateX(40px)} 100%{opacity:1;transform:translateX(0)}
    }

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

    /* ===== DIVIDER ===== */
    .gold-divider {
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(201,168,76,0.3), transparent);
      margin: 0;
    }

    /* ===== COUNTER SECTION ===== */
    .counter-section {
      background: linear-gradient(135deg, rgba(201,168,76,0.06), rgba(212,136,42,0.03));
      border-top: 1px solid rgba(201,168,76,0.1);
      border-bottom: 1px solid rgba(201,168,76,0.1);
      padding: 60px 0;
    }
    .counter-item { text-align: center; }
    .counter-num {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 4rem;
      color: var(--gold);
      line-height: 1;
      display: block;
    }
    .counter-label { font-size: 0.85rem; color: var(--silver); margin-top: 6px; }
    .en-mode .counter-label { font-family: 'Barlow Condensed', sans-serif; letter-spacing: 1px; text-transform: uppercase; }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 991px) {
      section { padding: 72px 0; }
      .hero-truck-visual { margin-top: 48px; }
    }
    @media (max-width: 767px) {
      .cursor, .cursor-ring { display: none; }
      section { padding: 56px 0; }
      .contact-form-wrap { padding: 28px 20px; }
      .about-main-block { padding: 28px 20px; }
      .footer-bottom { flex-direction: column; text-align: center; }
    }

    /* ===== NAVBAR TOGGLER ===== */
    .navbar-toggler { border-color: rgba(201,168,76,0.3); }
    .navbar-toggler-icon {
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28201,168,76,0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }

    /* LTR adjustments for nav */
    .en-mode .section-label::before { order: -1; }
    .en-mode #mainNav { direction: ltr; }
   
    .wanyetna-fleet {
            background: radial-gradient(circle at top right, var(--dark2), var(--black));
            color: var(--white);
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            direction: rtl; /* اتجاه الكتابة عربي */
        }

        .wanyetna-fleet .gold-gradient-text {
            background: linear-gradient(to right, var(--gold2), var(--gold-light));
            -webkit-text-fill-color: transparent;
            font-weight: 800;
        }

        .fleet-card {
            position: relative;
            height: 300px;
            border-radius: 15px;
            overflow: hidden;
            border: 1px solid var(--dark3);
            transition: all 0.5s ease;
        }

        .fleet-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: grayscale(40%);
            transition: 0.6s;
        }

        .fleet-card:hover {
            border-color: var(--gold);
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(201, 168, 76, 0.15);
        }

        .fleet-card:hover img {
            filter: grayscale(0%);
            transform: scale(1.1);
        }

        .fleet-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, var(--black) 10%, transparent 90%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 20px;
            text-align: right; /* محاذاة النص لليمين */
        }

        .fleet-badge {
            background: var(--gold);
            color: var(--black);
            font-size: 11px;
            font-weight: bold;
            padding: 4px 12px;
            border-radius: 50px;
            width: fit-content;
            margin-bottom: 8px;
            text-transform: uppercase;
        }

        .location-tag {
            color: var(--silver);
            font-size: 0.85rem;
        }

        .accent-line {
            width: 60px;
            height: 4px;
            background: var(--accent);
            margin: 15px auto;
        }