/* ═══════════ ROOT & BASE ═══════════ */
:root {
  --gold: #B8860B;
  --gold-light: #D4A017;
  --gold-bright: #F0C040;
  --gold-dark: #8B6508;
  --gold-subtle: #F5E6B0;
  --dark: #0D0D0D;
  --dark-800: #1A1A1A;
  --dark-700: #222222;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
@font-face {
  font-family: 'EnglishNumbers';
  src: local('Arial'), local('Helvetica'), local('system-ui'), local('sans-serif');
  unicode-range: U+0030-0039;
}

body {
  background: var(--dark);
  color: #fff;
  font-family: 'EnglishNumbers', 'Tajawal', sans-serif;
  font-variant-numeric: lining-nums;
  -webkit-font-feature-settings: "locl" 0;
  font-feature-settings: "locl" 0;
  font-size: 1.05rem;
  direction: rtl;
  text-align: right;
}
img { display: block; max-width: 100%; }

/* ═══════════ SCROLLBAR ═══════════ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ═══════════ TYPOGRAPHY ═══════════ */
.gold-gradient-text {
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold-light) 50%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
/* أشرطة ذهبية للـ RTL — تبدأ من اليمين */
.gold-bar-rtl {
  width: 60px; height: 4px;
  background: linear-gradient(270deg, var(--gold-bright), var(--gold-dark));
  border-radius: 2px;
  margin-right: 0; margin-left: auto;
}
.gold-bar-sm-rtl {
  width: 40px; height: 3px;
  background: linear-gradient(270deg, var(--gold-bright), var(--gold-dark));
  border-radius: 2px;
   margin: 0 auto 16px;
}
.gold-bar-sm-dark-rtl {
  width: 40px; height: 3px;
  background: linear-gradient(270deg, var(--gold-dark), var(--gold-bright));
  border-radius: 2px;
  margin-right: 0; margin-left: auto;
}
.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.05em;
  color: var(--gold-light);
  padding: 6px 16px; border-radius: 999px;
  background: rgba(184, 134, 11, 0.1); border: 1px solid rgba(184, 134, 11, 0.3);
  font-family: 'Tajawal', sans-serif;
}

/* ═══════════ NAVBAR ═══════════ */
#navbar { background: transparent; }
#navbar.scrolled {
  background: rgba(13,13,13,0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.logo-badge {
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s; cursor: pointer;
  flex-shrink: 0;
}
.logo-badge img {
  height: 45px;
  width: auto;
  object-fit: contain;
  filter: brightness(1.1);
  transition: filter 0.3s;
}
.logo-badge:hover { transform: scale(1.05); }
.logo-badge:hover img { filter: brightness(1.25); }
.logo-badge-sm img { height: 35px; }
.logo-badge-footer img { height: 38px; }
.nav-link {
  color: #ccc; text-decoration: none; font-size: 0.95rem; font-weight: 500;
  transition: color 0.3s; position: relative; padding-bottom: 2px;
  font-family: 'Tajawal', sans-serif;
}
.nav-link::after {
  content: ''; position: absolute; bottom: -2px; right: 0; width: 0; height: 2px;
  background: var(--gold-bright); border-radius: 1px; transition: width 0.3s;
}
.nav-link:hover { color: var(--gold-bright); }
.nav-link:hover::after { width: 100%; }
.nav-link-active { color: var(--gold-bright) !important; }
.nav-link-active::after { width: 100% !important; }

.cta-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 24px; border-radius: 8px; font-weight: 700; font-size: 0.9rem;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-bright));
  color: #0D0D0D; text-decoration: none; border: none; cursor: pointer;
  transition: all 0.3s; box-shadow: 0 4px 15px rgba(184,134,11,0.3);
  font-family: 'Tajawal', sans-serif;
}
.cta-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(184,134,11,0.5); }

/* ═══════════ HERO ═══════════ */
.hero-bg {
  background-image: url('assets/images/hero-trucks.png');
  transform-origin: center;
  animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom { from { transform: scale(1); } to { transform: scale(1.08); } }
.hero-overlay {
  background: linear-gradient(135deg, rgba(13,13,13,0.92) 0%, rgba(13,13,13,0.7) 50%, rgba(13,13,13,0.85) 100%);
}
.badge-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 20px; border-radius: 999px; font-size: 0.85rem; font-weight: 600;
  background: rgba(240,192,64,0.1); border: 1px solid rgba(240,192,64,0.3); color: var(--gold-bright);
  animation: fadeSlideDown 0.8s ease forwards;
}
.breadcrumb {
  display: flex; align-items: center; gap: 8px; font-size: 0.95rem; font-weight: 600; color: #9ca3af;
  margin-bottom: 20px;
}
.breadcrumb a { color: #fff; transition: color 0.3s; }
.breadcrumb a:hover { color: var(--gold-bright); }
.hero-content { animation: fadeSlideUp 1s ease forwards; }
#hero h1 { letter-spacing: 0; }
.cta-btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 10px; font-weight: 700; font-size: 1rem;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-bright));
  color: #0D0D0D; text-decoration: none; border: none; cursor: pointer;
  transition: all 0.3s; box-shadow: 0 6px 25px rgba(184,134,11,0.5);
  font-family: 'Tajawal', sans-serif;
}
.cta-btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 35px rgba(184,134,11,0.6); }
.cta-btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 10px; font-weight: 700; font-size: 1rem;
  background: transparent; color: #fff; text-decoration: none;
  border: 2px solid rgba(240,192,64,0.4); transition: all 0.3s;
  font-family: 'Tajawal', sans-serif;
}
.cta-btn-outline:hover { border-color: var(--gold-bright); color: var(--gold-bright); transform: translateY(-3px); }
.hero-stat { text-align: center; }
.stat-num { font-size: 2.5rem; font-weight: 900; color: var(--gold-bright); font-family: 'Outfit', sans-serif; }
.stat-divider { width: 1px; background: rgba(240,192,64,0.2); height: 50px; align-self: center; }

/* Hero Badge Circle */
.hero-badge-circle {
  width: 340px; height: 340px; border-radius: 50%;
  position: relative; display: flex; align-items: center; justify-content: center;
  animation: rotateBadge 30s linear infinite;
}
@keyframes rotateBadge { to { transform: rotate(360deg); } }
.badge-ring-outer {
  position: absolute; inset: 0; border-radius: 50%;
  border: 2px dashed rgba(240,192,64,0.3);
}
.badge-ring-inner {
  position: absolute; inset: 20px; border-radius: 50%;
  border: 1px solid rgba(240,192,64,0.15);
  background: rgba(13,13,13,0.8); backdrop-filter: blur(10px);
}
.badge-content {
  position: relative; z-index: 2; text-align: center;
  animation: rotateBadge 30s linear infinite reverse;
}

/* Particles */
.particles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.particle {
  position: absolute; border-radius: 50%; background: var(--gold-bright);
  animation: floatParticle var(--dur, 8s) ease-in-out infinite;
  opacity: 0;
}
@keyframes floatParticle {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.2; }
  100% { transform: translateY(-20px) scale(1); opacity: 0; }
}

/* Scroll indicator */
.scroll-indicator { width: 24px; height: 40px; border: 2px solid rgba(240,192,64,0.4); border-radius: 12px; display: flex; justify-content: center; padding-top: 6px; }
.scroll-dot { width: 4px; height: 8px; background: var(--gold-bright); border-radius: 2px; animation: scrollBounce 1.5s ease-in-out infinite; }
@keyframes scrollBounce { 0%,100% { transform: translateY(0); opacity: 1; } 50% { transform: translateY(10px); opacity: 0.3; } }

/* ═══════════ TICKER — RTL ═══════════ */
.ticker-bar { background: rgba(184,134,11,0.08); }
.ticker-track {
  font-size: 0.9rem; font-weight: 600; color: #aaa;
  /* يتحرك من اليسار لليمين ليبدو طبيعياً في RTL */
}
@keyframes ticker-rtl { from { transform: translateX(0); } to { transform: translateX(50%); } }
.ticker-track { animation: ticker-rtl 30s linear infinite; direction: ltr; }

/* ═══════════ ABOUT SECTION ═══════════ */
.section-bg-pattern { background-image: url('assets/images/pattern-bg.png'); background-size: cover; }
.about-card {
  padding: 16px; border-radius: 12px; text-align: center;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.3s;
}
.about-card:hover { background: rgba(184,134,11,0.08); border-color: rgba(184,134,11,0.3); transform: translateY(-4px); }
.about-icon { font-size: 1.75rem; }
.about-image-frame {
  position: relative; border-radius: 20px;
  height: 450px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  z-index: 1;
}
.about-image-frame::before {
  content: '';
  position: absolute;
  top: -24px;
  right: -24px;
  bottom: 24px;
  left: 24px;
  border: 2px solid #D4B056;
  border-radius: 20px;
  z-index: -1;
}
.about-image-frame img {
  border-radius: 20px;
  position: relative;
  z-index: 2;
}
.about-image-badge {
  position: absolute; bottom: -20px; left: -20px;
  background: #D4B056; /* لون ذهبي مقارب للصورة */
  color: #111;
  border-radius: 16px;
  padding: 20px 30px;
  display: flex; align-items: center; gap: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  z-index: 10;
}
.about-badge-num {
  font-size: 3.5rem; font-weight: 900; line-height: 1; font-family: 'Outfit', sans-serif;
}
.about-badge-text {
  display: flex; flex-direction: column; text-align: right; font-weight: 800; font-size: 1.2rem; line-height: 1.3;
}

/* ═══════════ VMG CARDS ═══════════ */
.vmg-bg { background: radial-gradient(ellipse at center, rgba(184,134,11,0.04) 0%, transparent 70%); }
.vmg-card {
  padding: 40px 32px; border-radius: 20px;
  background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.08);
  position: relative; overflow: hidden; transition: all 0.4s;
  animation-delay: var(--delay, 0ms);
  text-align: right;
}
.vmg-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.vmg-card:hover { border-color: rgba(184,134,11,0.3); transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.4); }
.vmg-card:hover::before { opacity: 1; }
.vmg-card-featured {
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold-light) 60%, var(--gold-dark) 100%);
  border-color: var(--gold); box-shadow: 0 20px 50px rgba(184,134,11,0.3);
  transform: translateY(-8px) scale(1.02);
}
.vmg-card-featured:hover { transform: translateY(-14px) scale(1.04); box-shadow: 0 30px 60px rgba(184,134,11,0.4); }
.vmg-card-featured * { color: #111 !important; }
.vmg-icon-wrap {
  width: 56px; height: 56px; border-radius: 14px;
  background: rgba(184,134,11,0.12); border: 1px solid rgba(184,134,11,0.25);
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
  /* في RTL: نحاذي الأيكون ليبقى على اليمين */
  margin-right: 0; margin-left: auto;
}
.vmg-icon-featured { background: rgba(0,0,0,0.15); border-color: rgba(0,0,0,0.2); }
.vmg-number {
  font-size: 5rem; font-weight: 900; line-height: 1;
  color: rgba(255,255,255,0.04); position: absolute; top: 16px; left: 20px;
  font-family: 'Outfit', sans-serif;
}
.vmg-number-featured { color: rgba(0,0,0,0.08); }

/* ═══════════ SERVICES ═══════════ */
/* ═══════════ NEW SERVICES ═══════════ */
.new-service-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 480px;
  display: block;
  background-color: #1A1A1A;
  border: 1px solid rgba(255,255,255,0.05);
  transition: transform 0.4s, border-color 0.4s, box-shadow 0.4s;
}
.new-service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(184,134,11,0.4);
  box-shadow: 0 16px 40px rgba(0,0,0,0.6);
}
.new-service-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s;
}
.new-service-card:hover .new-service-bg {
  transform: scale(1.08);
}
.new-service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(20,20,20,0) 0%, rgba(20,20,20,0.5) 40%, rgba(20,20,20,0.95) 60%, #141414 100%);
  pointer-events: none;
}
.new-service-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px 24px 28px 24px;
  z-index: 2;
  text-align: right;
  direction: rtl;
}
.new-service-icon-wrap {
  width: 54px; height: 54px;
  background: #D4B056;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  position: absolute;
  top: -27px;
  right: 24px;
  color: #111;
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
  transition: transform 0.3s;
}
.new-service-card:hover .new-service-icon-wrap {
  transform: scale(1.1) rotate(5deg);
}
.new-service-icon-wrap svg {
  width: 26px; height: 26px;
}

/* ═══════════ TIMELINE RTL ═══════════ */
.timeline-visual { padding: 20px 40px 20px 0; position: relative; }
/* الخط على اليمين */
.tl-line-rtl {
  position: absolute; right: 47px; top: 20px; bottom: 20px; width: 2px;
  background: linear-gradient(to bottom, transparent, var(--gold-dark), var(--gold-bright), transparent);
  z-index: 0;
}
/* العناصر من اليمين */
.tl-item-rtl {
  display: flex; flex-direction: row; align-items: flex-start;
  gap: 20px; margin-bottom: 36px; position: relative;
  z-index: 1;
}
.tl-content { flex: 1; text-align: right; }
.tl-dot {
  width: 16px; height: 16px; border-radius: 50%; flex-shrink: 0; margin-top: 3px;
  background: rgba(184,134,11,0.3); border: 2px solid var(--gold-dark);
  transition: all 0.3s;
}
.tl-dot-active { background: var(--gold-bright); border-color: var(--gold-bright); box-shadow: 0 0 12px var(--gold-bright); }
.est-badge {
  padding: 16px 24px; border-radius: 12px; text-align: center;
  background: rgba(184,134,11,0.08); border: 1px solid rgba(184,134,11,0.2);
  min-width: 90px;
}

/* ═══════════ COVERAGE ═══════════ */
.city-route-card {
  display: flex; align-items: center; gap: 16px; padding: 16px 20px; border-radius: 12px;
  background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.07);
  transition: all 0.3s;
}
.city-route-card:hover {
  border-color: rgba(184,134,11,0.3); background: rgba(184,134,11,0.05);
  transform: translateX(-6px); /* في RTL الحركة لليسار */
}
.city-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--gold-bright); flex-shrink: 0; box-shadow: 0 0 8px var(--gold-bright); }

/* ═══════════ STATS BANNER ═══════════ */
.stats-section { background-image: url('assets/images/hero-trucks.png'); background-size: cover; background-position: center 60%; background-attachment: fixed; }
.stats-overlay { background: rgba(13,13,13,0.88); }
.stat-big-num { font-size: 3.5rem; font-weight: 900; color: var(--gold-bright); line-height: 1; font-family: 'Outfit', sans-serif; }
.stat-item { animation-delay: var(--delay, 0ms); }

/* ═══════════ FLEET MARQUEE ═══════════ */
.marquee-container {
  overflow: hidden;
  width: 100%;
  position: relative;
  direction: ltr; /* Force LTR for smooth infinite translation math */
  padding: 20px 0;
}
.marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: marqueeLTR 40s linear infinite;
}
.marquee-track img {
  height: 400px;
  width: auto;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.05);
  transition: transform 0.3s;
}
.marquee-track img:hover {
  transform: scale(1.02);
}
@keyframes marqueeLTR {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* ═══════════ WHY CARDS ═══════════ */
.why-card {
  padding: 32px 24px; border-radius: 16px; text-align: center;
  background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.07);
  transition: all 0.4s; animation-delay: var(--delay, 0ms);
}
.why-card:hover { border-color: rgba(184,134,11,0.3); transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.3); background: rgba(184,134,11,0.05); }
.why-icon { font-size: 2.5rem; margin-bottom: 16px; }

/* ═══════════ CONTACT ═══════════ */
.contact-glow { background: radial-gradient(circle, rgba(184,134,11,0.06) 0%, transparent 70%); }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.85rem; font-weight: 700; color: #aaa; text-align: right; }
.form-group input, .form-group select, .form-group textarea {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px; padding: 12px 16px; color: #fff;
  font-family: 'Tajawal', sans-serif; font-size: 1rem;
  outline: none; transition: border-color 0.3s, box-shadow 0.3s;
  text-align: right; direction: rtl;
  -webkit-appearance: none; appearance: none;
}
.form-group select option { background: #1A1A1A; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: rgba(184,134,11,0.5); box-shadow: 0 0 0 3px rgba(184,134,11,0.1);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: #555; }
.contact-info-card {
  display: flex; align-items: center; gap: 16px; padding: 20px; border-radius: 14px;
  background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.07);
  transition: all 0.3s; direction: rtl; text-align: right;
}
.contact-info-card:hover { border-color: rgba(184,134,11,0.3); background: rgba(184,134,11,0.05); }
.contact-info-icon { font-size: 1.5rem; flex-shrink: 0; }

.related-card {
  display: flex; align-items: center; gap: 12px; padding: 16px 20px; border-radius: 12px;
  background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.07);
  transition: all 0.3s; text-decoration: none;
}
.related-card:hover {
  border-color: rgba(184,134,11,0.3); background: rgba(184,134,11,0.05);
  transform: translateY(-4px);
}
.related-card-icon { font-size: 1.5rem; flex-shrink: 0; }

/* ═══════════ FOOTER ═══════════ */
footer .flex { flex-direction: row; /* لا نعكسها، خليها طبيعية */ }

/* ═══════════ REVEAL ANIMATIONS (NATIVE JS HANDLED) ═══════════ */
.reveal {
  opacity: 0;
  will-change: transform, opacity;
}
.no-js .reveal {
  opacity: 1 !important;
  transform: none !important;
}

/* ═══════════ KEYFRAMES ═══════════ */
@keyframes fadeSlideUp { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeSlideDown { from { opacity:0; transform:translateY(-20px); } to { opacity:1; transform:translateY(0); } }

/* ═══════════ EST BACKGROUND ═══════════ */
.est-bg { background: url('assets/images/pattern-bg.png') center/cover no-repeat; }

/* ═══════════ FEATURE ITEMS ═══════════ */
.features-grid { display: grid; gap: 24px; }
.feature-item { display: flex; align-items: flex-start; gap: 16px; }
.feature-icon { font-size: 2rem; flex-shrink: 0; }
.feature-text h4 { font-weight: 700; color: #fff; margin-bottom: 4px; font-size: 1.1rem; }
.feature-text p { color: #9ca3af; font-size: 0.9rem; line-height: 1.6; }

/* ═══════════ FLOATING WIDGETS ═══════════ */
.floating-widgets {
  position: fixed; bottom: 30px; left: 30px; display: flex; flex-direction: column; gap: 16px; z-index: 9999;
}
.widget-btn {
  width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: #fff; box-shadow: 0 10px 25px rgba(0,0,0,0.5); transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.widget-btn:hover { transform: scale(1.1) translateY(-4px); box-shadow: 0 15px 30px rgba(0,0,0,0.6); color: #fff; }
.whatsapp-btn { background: #25D366; }
.whatsapp-btn:hover { background: #128C7E; }
.phone-btn { background: linear-gradient(135deg, var(--gold-bright), var(--gold-dark)); }
.phone-btn:hover { background: linear-gradient(135deg, var(--gold-light), var(--gold)); }

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 768px) {
  .hero-badge-circle { display: none; }
  .marquee-track img { height: 240px; border-radius: 12px; }
  .stat-big-num { font-size: 2.5rem; }
  .vmg-card-featured { transform: none; }
  .timeline-visual { padding: 20px 20px 20px 0; }
  .tl-line-rtl { right: 27px; }
}

/* ═══════════ PARTNERS MARQUEE ═══════════ */
.partners-section {
  background: var(--dark); /* Dark theme background */
  padding: 80px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.partners-marquee-container {
  overflow: hidden;
  width: 100%;
  position: relative;
  direction: ltr;
}
.partners-marquee-track {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: partnersMarquee 35s linear infinite;
  align-items: center;
  padding: 10px 0;
}
.partner-logo-card {
  background: #ffffff;
  padding: 15px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 90px;
  transition: all 0.3s ease;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.partner-logo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(184, 134, 11, 0.25);
  border-color: var(--gold-light);
}
.partner-logo-card img {
  max-width: 100%;
  max-height: 100%;
  height: auto;
  width: auto;
  object-fit: contain;
}
@keyframes partnersMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (max-width: 768px) {
  .partner-logo-card {
    width: 140px;
    height: 75px;
    padding: 10px 20px;
  }
  .partners-marquee-track { gap: 20px; }
}

