/* ═══════════ 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: linear-gradient(135deg, rgba(22, 22, 22, 0.95) 0%, rgba(15, 15, 15, 0.98) 100%);
  border-top: 1px solid rgba(184, 134, 11, 0.15);
  border-bottom: 1px solid rgba(184, 134, 11, 0.15);
  position: relative;
}
.stats-overlay {
  background: radial-gradient(circle at 50% 50%, rgba(184, 134, 11, 0.05) 0%, transparent 70%);
}
.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; }
}

/* ═══════════ CONTACT & MEETING FORMS STYLES ═══════════ */
.form-field-group {
  margin-bottom: 24px;
}

.form-field-group label,
.form-group label,
form label {
  display: block !important;
  font-size: 0.875rem !important;
  font-weight: 700 !important;
  color: #e5e7eb !important;
  margin-bottom: 12px !important;
  margin-top: 4px !important;
  line-height: 1.4 !important;
}

.form-input-styled,
#contactForm input,
#contactForm select,
#contactForm textarea,
#meetingForm input,
#meetingForm select,
#meetingForm textarea {
  width: 100%;
  background: rgba(15, 15, 15, 0.85);
  border: 1.5px solid rgba(255, 255, 255, 0.14) !important;
  border-radius: 16px !important;
  -webkit-border-radius: 16px !important;
  -moz-border-radius: 16px !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  padding: 15px 20px;
  color: #ffffff;
  font-size: 0.95rem;
  font-family: inherit;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.3);
}

.form-input-styled:hover,
#contactForm input:hover,
#contactForm select:hover,
#contactForm textarea:hover,
#meetingForm input:hover,
#meetingForm select:hover,
#meetingForm textarea:hover {
  border-color: rgba(184, 134, 11, 0.5) !important;
}

.form-input-styled:focus,
#contactForm input:focus,
#contactForm select:focus,
#contactForm textarea:focus,
#meetingForm input:focus,
#meetingForm select:focus,
#meetingForm textarea:focus {
  outline: none !important;
  border-color: #b8860b !important;
  background: rgba(22, 22, 22, 0.95) !important;
  box-shadow: 0 0 0 4px rgba(184, 134, 11, 0.18), inset 0 2px 4px rgba(0,0,0,0.4) !important;
  border-radius: 16px !important;
}

.form-input-styled::placeholder {
  color: #777777;
}

select.form-input-styled {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23b8860b'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 16px center;
  background-size: 18px;
  padding-left: 42px;
}

select.form-input-styled option {
  background: #181818;
  color: #fff;
  padding: 10px;
}

.meeting-card-box {
  background: linear-gradient(135deg, rgba(22, 22, 22, 0.95) 0%, rgba(15, 15, 15, 0.98) 100%);
  border: 1px solid rgba(184, 134, 11, 0.25);
  border-radius: 28px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
}

.meeting-card-box::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #b8860b, #d4af37, #aa7c11);
}

/* ═══════════ LIGHT MODE SYSTEM ═══════════ */
.theme-toggle-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(184, 134, 11, 0.1);
  border: 1px solid rgba(184, 134, 11, 0.25);
  color: #f0c040;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  padding: 0;
  flex-shrink: 0;
}

.theme-toggle-btn svg {
  width: 17px !important;
  height: 17px !important;
}

.theme-toggle-btn:hover {
  background: rgba(184, 134, 11, 0.22);
  transform: scale(1.08) rotate(15deg);
  border-color: #b8860b;
}

html.light-mode .theme-toggle-btn {
  background: rgba(184, 134, 11, 0.15);
  border-color: rgba(184, 134, 11, 0.4);
  color: #b8860b;
}

html.light-mode .sun-icon { display: none !important; }
html.light-mode .moon-icon { display: block !important; }
html:not(.light-mode) .sun-icon { display: block !important; }
html:not(.light-mode) .moon-icon { display: none !important; }

/* Light Mode Variables & Base Overrides */
html.light-mode {
  --dark: #f8fafc;
  --dark-800: #ffffff;
  --dark-900: #f1f5f9;
}

html.light-mode body {
  background-color: #f8fafc !important;
  color: #0f172a !important;
}

html.light-mode .bg-dark { background-color: #f8fafc !important; }
html.light-mode .bg-dark-900 { background-color: #f1f5f9 !important; }
html.light-mode .bg-dark-800,
html.light-mode .bg-dark-800\/80 { background-color: #ffffff !important; }

/* Text colors in Light Mode */
html.light-mode .text-white { color: #0f172a !important; }
html.light-mode .text-gray-200,
html.light-mode .text-gray-300 { color: #334155 !important; }
html.light-mode .text-gray-400 { color: #64748b !important; }
html.light-mode .text-gray-500 { color: #475569 !important; }

/* Navbar in Light Mode & Unscrolled State */
#navbar:not(.scrolled) .nav-link,
#navbar:not(.scrolled) ul li a,
html.light-mode #navbar:not(.scrolled) .nav-link,
html.light-mode #navbar:not(.scrolled) ul li a {
  color: #ffffff !important;
}

#navbar:not(.scrolled) .nav-link:hover,
#navbar:not(.scrolled) ul li a:hover,
html.light-mode #navbar:not(.scrolled) .nav-link:hover,
html.light-mode #navbar:not(.scrolled) ul li a:hover {
  color: #f0c040 !important;
}

#navbar:not(.scrolled) .nav-link-active,
#navbar:not(.scrolled) ul li.current-menu-item a,
#navbar:not(.scrolled) ul li.current_page_item a,
html.light-mode #navbar:not(.scrolled) .nav-link-active,
html.light-mode #navbar:not(.scrolled) ul li.current-menu-item a,
html.light-mode #navbar:not(.scrolled) ul li.current_page_item a {
  color: #f0c040 !important;
}

html.light-mode #navbar:not(.scrolled) .theme-toggle-btn {
  background: rgba(255, 255, 255, 0.12) !important;
  border-color: rgba(240, 192, 64, 0.4) !important;
  color: #f0c040 !important;
}

html.light-mode #navbar.scrolled {
  background: rgba(255, 255, 255, 0.96) !important;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08) !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

html.light-mode #navbar.scrolled .nav-link,
html.light-mode #navbar.scrolled ul li a {
  color: #1e293b !important;
}

html.light-mode #navbar.scrolled .nav-link:hover,
html.light-mode #navbar.scrolled ul li a:hover,
html.light-mode #navbar.scrolled .nav-link-active,
html.light-mode #navbar.scrolled ul li.current-menu-item a,
html.light-mode #navbar.scrolled ul li.current_page_item a {
  color: #b8860b !important;
}

html.light-mode #navbar.scrolled .theme-toggle-btn {
  background: rgba(184, 134, 11, 0.12) !important;
  border-color: rgba(184, 134, 11, 0.3) !important;
  color: #b8860b !important;
}

html.light-mode #mobileMenu {
  background-color: #ffffff !important;
  border-color: rgba(184, 134, 11, 0.2) !important;
}

/* Cards & Containers in Light Mode */
html.light-mode .contact-card-box,
html.light-mode .about-card,
html.light-mode .why-card,
html.light-mode .fleet-type-card,
html.light-mode .vmg-card,
html.light-mode .vmg-hero-card-dark,
html.light-mode .value-card,
html.light-mode .faq-item,
html.light-mode .partner-logo-card,
html.light-mode .related-card,
html.light-mode .contact-info-card {
  background: #ffffff !important;
  border-color: rgba(0, 0, 0, 0.08) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05) !important;
}

html.light-mode .vmg-card h3,
html.light-mode .vmg-hero-card-dark h3 {
  color: #0f172a !important;
}

html.light-mode .vmg-card p,
html.light-mode .vmg-hero-card-dark p {
  color: #334155 !important;
}

html.light-mode .vmg-number,
html.light-mode .vmg-num-big {
  color: rgba(0, 0, 0, 0.07) !important;
}

html.light-mode .vmg-card-featured,
html.light-mode .vmg-hero-card-gold {
  background: linear-gradient(135deg, #b8860b 0%, #d4af37 100%) !important;
  box-shadow: 0 20px 45px rgba(184, 134, 11, 0.35) !important;
}

html.light-mode .vmg-card-featured *,
html.light-mode .vmg-hero-card-gold * {
  color: #0d0d0d !important;
}

html.light-mode .vmg-number-featured,
html.light-mode .vmg-num-big-dark {
  color: rgba(0, 0, 0, 0.12) !important;
}

.quote-card-box,
.meeting-card-box {
  border-radius: 28px !important;
  -webkit-border-radius: 28px !important;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(22, 22, 22, 0.95) 0%, rgba(13, 13, 13, 0.98) 100%);
  border: 1px solid rgba(184, 134, 11, 0.25);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
}

html.light-mode .quote-card-box,
html.light-mode .meeting-card-box {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%) !important;
  border-color: rgba(184, 134, 11, 0.3) !important;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08) !important;
}

html.light-mode .quote-card-box h2,
html.light-mode .meeting-card-box h2 {
  color: #0f172a !important;
}

html.light-mode .quote-card-box p,
html.light-mode .meeting-card-box p {
  color: #475569 !important;
}

/* Feature Lists (Vision 2030 section) */
html.light-mode .feature-text h4 {
  color: #0f172a !important;
}

html.light-mode .feature-text p {
  color: #475569 !important;
}

/* Service Cards with Dark Background Images */
html.light-mode .new-service-card,
html.light-mode .new-service-card *,
html.light-mode .service-card,
html.light-mode .service-card * {
  color: #ffffff !important;
}

html.light-mode .new-service-card .text-gold,
html.light-mode .service-card .text-gold,
html.light-mode .new-service-card .gold-gradient-text,
html.light-mode .service-card .gold-gradient-text {
  color: #f0c040 !important;
}

/* Outline Buttons (cta-btn-outline) in Light Mode */
html.light-mode .cta-btn-outline {
  background: #ffffff !important;
  color: #b8860b !important;
  border-color: #b8860b !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06) !important;
}

html.light-mode .cta-btn-outline:hover {
  background: #b8860b !important;
  color: #ffffff !important;
  border-color: #b8860b !important;
}

/* Form Inputs in Light Mode */
html.light-mode .form-field-group label,
html.light-mode .form-group label,
html.light-mode form label {
  color: #1e293b !important;
}

html.light-mode .form-input-styled,
html.light-mode #contactForm input,
html.light-mode #contactForm select,
html.light-mode #contactForm textarea,
html.light-mode #meetingForm input,
html.light-mode #meetingForm select,
html.light-mode #meetingForm textarea {
  background: #f8fafc !important;
  border-color: rgba(0, 0, 0, 0.15) !important;
  color: #0f172a !important;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05) !important;
}

html.light-mode .form-input-styled:focus,
html.light-mode #contactForm input:focus,
html.light-mode #contactForm select:focus,
html.light-mode #contactForm textarea:focus,
html.light-mode #meetingForm input:focus,
html.light-mode #meetingForm select:focus,
html.light-mode #meetingForm textarea:focus {
  background: #ffffff !important;
  border-color: #b8860b !important;
  box-shadow: 0 0 0 4px rgba(184, 134, 11, 0.15) !important;
}

html.light-mode .form-input-styled::placeholder {
  color: #94a3b8 !important;
}

html.light-mode select.form-input-styled option {
  background: #ffffff !important;
  color: #0f172a !important;
}

/* Footer in Light Mode */
html.light-mode footer {
  background: #f1f5f9 !important;
  border-top: 1px solid rgba(0, 0, 0, 0.08) !important;
  color: #334155 !important;
}

html.light-mode footer a {
  color: #475569 !important;
}

html.light-mode footer a:hover {
  color: #b8860b !important;
}

/* ═══════════ SERVICE HERO BASE STYLES ═══════════ */
.service-hero {
  position: relative;
  background-color: #0D0D0D !important;
  color: #ffffff;
  overflow: hidden;
}

.service-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}

.service-hero-overlay,
.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(184,134,11,0.15) 0%, rgba(13,13,13,0.95) 70%);
}

/* ═══════════ HERO SECTIONS & NAVBAR OVERRIDES FOR LIGHT MODE ═══════════ */
html.light-mode #hero,
html.light-mode .service-hero,
html.light-mode .contact-hero-section {
  background-color: #f8fafc !important;
  color: #0f172a !important;
}

html.light-mode .service-hero-overlay,
html.light-mode .contact-hero-overlay,
html.light-mode .hero-overlay,
html.light-mode #hero .absolute.inset-0.bg-gradient-to-t,
html.light-mode .service-hero .service-hero-overlay {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92) 0%, rgba(248, 250, 252, 0.85) 60%, rgba(241, 245, 249, 0.94) 100%) !important;
}

html.light-mode .service-hero-bg {
  opacity: 0.22 !important;
}

html.light-mode #hero h1,
html.light-mode #hero h1 span:not(.gold-gradient-text),
html.light-mode .service-hero h1,
html.light-mode .service-hero h1 span:not(.gold-gradient-text),
html.light-mode .contact-hero-section h1,
html.light-mode .contact-hero-section h1 span:not(.gold-gradient-text) {
  color: #0f172a !important;
}

html.light-mode #hero p,
html.light-mode #hero .text-gray-300,
html.light-mode #hero .text-gray-400,
html.light-mode .service-hero p,
html.light-mode .service-hero .text-gray-300,
html.light-mode .service-hero .text-gray-400,
html.light-mode .contact-hero-section p,
html.light-mode .contact-hero-section .text-gray-300,
html.light-mode .contact-hero-section .text-gray-400 {
  color: #334155 !important;
}

html.light-mode .service-hero .breadcrumb,
html.light-mode .contact-hero-section .breadcrumb,
html.light-mode #hero .breadcrumb,
html.light-mode .service-hero .breadcrumb a,
html.light-mode .contact-hero-section .breadcrumb a,
html.light-mode #hero .breadcrumb a {
  color: #64748b !important;
}

html.light-mode .service-hero .breadcrumb a:hover,
html.light-mode .contact-hero-section .breadcrumb a:hover,
html.light-mode #hero .breadcrumb a:hover,
html.light-mode .service-hero .breadcrumb span.text-gold-light,
html.light-mode .contact-hero-section .breadcrumb span.text-gold-light {
  color: #b8860b !important;
}

html.light-mode .service-hero .badge-pill,
html.light-mode .contact-hero-section .badge-pill,
html.light-mode #hero .badge-pill {
  background: rgba(184, 134, 11, 0.1) !important;
  border: 1px solid rgba(184, 134, 11, 0.3) !important;
  color: #b8860b !important;
}

html.light-mode #hero .stat-num {
  color: #b8860b !important;
}

html.light-mode #hero .stat-label,
html.light-mode #hero .hero-stat p {
  color: #475569 !important;
}

html.light-mode #hero .cta-btn-outline,
html.light-mode .service-hero .cta-btn-outline {
  background: #ffffff !important;
  color: #b8860b !important;
  border: 2px solid #b8860b !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05) !important;
}

html.light-mode #hero .cta-btn-outline:hover,
html.light-mode .service-hero .cta-btn-outline:hover {
  background: #b8860b !important;
  color: #ffffff !important;
  border-color: #b8860b !important;
}

html.light-mode #navbar:not(.scrolled) .nav-link,
html.light-mode #navbar:not(.scrolled) ul li a {
  color: #1e293b !important;
}

html.light-mode #navbar:not(.scrolled) .nav-link:hover,
html.light-mode #navbar:not(.scrolled) ul li a:hover {
  color: #b8860b !important;
}

/* ═══════════ STATS SECTION IN LIGHT MODE ═══════════ */
html.light-mode .stats-section {
  background-color: #ffffff !important;
  background: #ffffff !important;
  border-top: 1px solid rgba(184, 134, 11, 0.2) !important;
  border-bottom: 1px solid rgba(184, 134, 11, 0.2) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04) !important;
}

html.light-mode .stats-overlay {
  display: none !important;
  opacity: 0 !important;
  background: transparent !important;
}

html.light-mode .stats-section .stat-big-num,
html.light-mode .stats-section .stat-num,
html.light-mode .stats-section .text-gold {
  color: #b8860b !important;
}

html.light-mode .stats-section p,
html.light-mode .stats-section .text-gray-300,
html.light-mode .stats-section .text-gray-400 {
  color: #0f172a !important;
  font-weight: 700 !important;
}

/* ═══════════ QUICK CONTACT DIRECT CARD STYLES ═══════════ */
.quick-contact-card {
  border-radius: 24px !important;
  -webkit-border-radius: 24px !important;
  -moz-border-radius: 24px !important;
  overflow: hidden !important;
  position: relative;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(15, 15, 15, 0.98) 100%);
  border: 1px solid rgba(184, 134, 11, 0.25);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6);
}

.quick-contact-item {
  border-radius: 16px !important;
  -webkit-border-radius: 16px !important;
  -moz-border-radius: 16px !important;
  overflow: hidden !important;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

.quick-contact-item:hover {
  border-color: rgba(184, 134, 11, 0.4);
  background: rgba(184, 134, 11, 0.06);
}

.quick-action-icon-btn {
  border-radius: 10px !important;
  -webkit-border-radius: 10px !important;
}

/* Light Mode Overrides for Quick Contact Card */
html.light-mode .quick-contact-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%) !important;
  border: 1px solid rgba(184, 134, 11, 0.3) !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06) !important;
}

html.light-mode .quick-contact-card h3 {
  color: #0f172a !important;
}

html.light-mode .quick-contact-card p.text-gray-400 {
  color: #64748b !important;
}

html.light-mode .quick-contact-item {
  background: #f8fafc !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
}

html.light-mode .quick-contact-item:hover {
  border-color: rgba(184, 134, 11, 0.4) !important;
  background: rgba(184, 134, 11, 0.08) !important;
}

html.light-mode .quick-contact-item p {
  color: #64748b !important;
}

html.light-mode .quick-contact-item a.text-white {
  color: #0f172a !important;
}

html.light-mode .quick-contact-item a.text-white:hover {
  color: #b8860b !important;
}

html.light-mode .quick-whatsapp-item {
  background: rgba(16, 185, 129, 0.06) !important;
  border-color: rgba(16, 185, 129, 0.25) !important;
}

html.light-mode .quick-whatsapp-item p.text-white {
  color: #0f172a !important;
}

#locationMapSection {
  margin-top: 32px !important;
}

/* ═══════════ STRICT SVG SIZING IN FOOTER SERVICES LINKS ═══════════ */
footer ul li a svg,
footer .menu-item a svg {
  width: 18px !important;
  height: 18px !important;
  max-width: 18px !important;
  max-height: 18px !important;
  flex-shrink: 0 !important;
  display: inline-block !important;
  vertical-align: middle !important;
}

/* ═══════════ FAQ ACCORDION STYLES & CONTRAST FIXES ═══════════ */
.faq-section-header {
  margin-bottom: 48px !important;
}

.faq-item {
  background: rgba(26, 26, 26, 0.95) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 18px !important;
  margin-bottom: 16px !important;
  overflow: hidden;
  transition: all 0.3s ease !important;
}

.faq-item:hover {
  border-color: rgba(184, 134, 11, 0.4) !important;
}

.faq-q {
  width: 100%;
  padding: 22px 28px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 16px !important;
  background: transparent !important;
  border: none !important;
  color: #ffffff !important;
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  font-family: inherit !important;
  text-align: right !important;
  cursor: pointer !important;
  transition: color 0.3s !important;
}

.faq-q span,
.faq-q span:first-child {
  color: #ffffff !important;
  font-weight: 700 !important;
}

.faq-arrow {
  color: #f0c040 !important;
  font-size: 0.85rem !important;
  transition: transform 0.3s ease !important;
  flex-shrink: 0 !important;
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg) !important;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 28px;
  color: #cbd5e1;
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-item.open .faq-a {
  max-height: 500px;
  padding: 0 28px 24px 28px;
}

/* Light Mode FAQ Overrides */
html.light-mode .faq-item {
  background: #ffffff !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.04) !important;
}

html.light-mode .faq-q,
html.light-mode .faq-q span,
html.light-mode .faq-q span:first-child {
  color: #0f172a !important;
  font-weight: 700 !important;
}

html.light-mode .faq-q:hover,
html.light-mode .faq-q:hover span,
html.light-mode .faq-q:hover span:first-child {
  color: #b8860b !important;
}

html.light-mode .faq-arrow {
  color: #b8860b !important;
}

html.light-mode .faq-a,
html.light-mode .faq-a p {
  color: #334155 !important;
}

/* ═══════════ CONTACT FORM 7 LUXURY INTEGRATION STYLES ═══════════ */
.wpcf7-form-control-wrap {
  display: block !important;
  width: 100% !important;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 select,
.wpcf7 textarea,
.wpcf7 .wpcf7-form-control {
  width: 100% !important;
  background: rgba(15, 15, 15, 0.85) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.14) !important;
  border-radius: 16px !important;
  -webkit-border-radius: 16px !important;
  padding: 15px 20px !important;
  color: #ffffff !important;
  font-size: 0.95rem !important;
  font-family: inherit !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.3) !important;
}

html.light-mode .wpcf7 input[type="text"],
html.light-mode .wpcf7 input[type="email"],
html.light-mode .wpcf7 input[type="tel"],
html.light-mode .wpcf7 select,
html.light-mode .wpcf7 textarea,
html.light-mode .wpcf7 .wpcf7-form-control {
  background: #ffffff !important;
  border-color: rgba(0, 0, 0, 0.15) !important;
  color: #0f172a !important;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.02) !important;
}

.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 input[type="tel"]:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus {
  outline: none !important;
  border-color: #b8860b !important;
  background: rgba(22, 22, 22, 0.95) !important;
  box-shadow: 0 0 0 4px rgba(184, 134, 11, 0.18) !important;
}

html.light-mode .wpcf7 input[type="text"]:focus,
html.light-mode .wpcf7 input[type="email"]:focus,
html.light-mode .wpcf7 input[type="tel"]:focus,
html.light-mode .wpcf7 select:focus,
html.light-mode .wpcf7 textarea:focus {
  background: #ffffff !important;
  border-color: #b8860b !important;
  box-shadow: 0 0 0 4px rgba(184, 134, 11, 0.15) !important;
}

.wpcf7 input[type="submit"],
.wpcf7 .wpcf7-submit {
  cursor: pointer !important;
  background: linear-gradient(135deg, #b8860b 0%, #d4af37 100%) !important;
  color: #000000 !important;
  font-weight: 800 !important;
  border: none !important;
  border-radius: 50px !important;
  padding: 16px 48px !important;
  font-size: 1rem !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  box-shadow: 0 8px 25px rgba(184, 134, 11, 0.3) !important;
  display: inline-block !important;
}

.wpcf7 input[type="submit"]:hover,
.wpcf7 .wpcf7-submit:hover {
  transform: translateY(-2px) scale(1.02) !important;
  box-shadow: 0 12px 30px rgba(184, 134, 11, 0.45) !important;
  background: linear-gradient(135deg, #f0c040 0%, #b8860b 100%) !important;
}

.wpcf7-response-output {
  border-radius: 16px !important;
  padding: 16px 20px !important;
  margin-top: 20px !important;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  text-align: center !important;
  border: 1px solid rgba(184, 134, 11, 0.3) !important;
  background: rgba(184, 134, 11, 0.1) !important;
  color: #f0c040 !important;
}

.wpcf7-not-valid-tip {
  color: #ef4444 !important;
  font-size: 0.8rem !important;
  margin-top: 4px !important;
  font-weight: 600 !important;
}

div.wpcf7-validation-errors,
div.wpcf7-acceptance-missing {
  border-color: #ef4444 !important;
  background: rgba(239, 68, 68, 0.1) !important;
  color: #fca5a5 !important;
}

div.wpcf7-mail-sent-ok {
  border-color: #10b981 !important;
  background: rgba(16, 185, 129, 0.1) !important;
  color: #6ee7b7 !important;
}








