@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;600;700;800;900&family=Outfit:wght@300;400;500;600;700;800;900&family=Tajawal:wght@300;400;500;700;800;900&display=swap');

:root {
  --luxury-dark: #FFFFFF;             /* White/Light Background */
  --luxury-bg-gradient: #F8FAFC;      /* Soft Light Blue-Gray Gradient */
  --luxury-card: #FFFFFF;             /* Pristine White Cards */
  --luxury-border: #E2E8F0;           /* Soft Elegant Borders */
  --luxury-gold: #8C6239;             /* Luxury Leather Saddle Brown */
  --luxury-gold-glow: #F3EAD3;        /* Soft Warm Cream Glow */
  --luxury-gold-hover: #6E4924;       /* Deep Saddle Brown for hover */
  --accent-cyan: #1E3A8A;             /* Royal Navy Blue Accent */
  --luxury-blue: #0A2540;             /* Royal Navy Blue */
  --text-primary: #0F172A;            /* Deep dark slate for reading text */
  --text-secondary: #475569;          /* Slate gray for secondary details */
}

body {
  font-family: 'Cairo', 'Tajawal', sans-serif;
  background-color: var(--luxury-dark);
  background-image: linear-gradient(185deg, var(--luxury-dark) 0%, var(--luxury-bg-gradient) 100%);
  color: var(--text-primary);
  direction: rtl;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Tajawal', sans-serif;
  letter-spacing: -0.02em;
  color: var(--luxury-blue);
}

.font-outfit {
  font-family: 'Outfit', sans-serif;
}

/* ==========================================
   الخلفيات والتأثيرات النيونية الفاخرة (Luxury Neon & Mesh Backdrops)
   ========================================== */
.mesh-glow-1 {
  background: radial-gradient(circle, rgba(140, 98, 57, 0.06) 0%, transparent 65%);
}

.mesh-glow-2 {
  background: radial-gradient(circle, rgba(10, 37, 64, 0.04) 0%, transparent 70%);
}

/* Glassmorphism Evolution: Premium Glass Card for Light Theme */
.premium-glass-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--luxury-border);
  border-radius: 24px;
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 10px 30px -5px rgba(10, 37, 64, 0.05), 0 1px 3px 0 rgba(10, 37, 64, 0.02);
}

.premium-glass-card:hover {
  border-color: var(--luxury-gold);
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 20px 40px -10px rgba(10, 37, 64, 0.12),
              0 0 20px 0 rgba(140, 98, 57, 0.05);
}

/* Color icons globally for the new theme: Leather Brown and Royal Blue */
i.fa-crown, i.fa-shield-halved, i.fa-car, i.fa-gears, i.fa-wallet, i.fa-phone-volume, i.fa-car-side, i.fa-car-rear, i.fa-key, i.fa-lock, i.fa-user-gear {
  color: var(--luxury-gold) !important; /* Luxury Leather Brown */
}
i.fa-star, i.fa-circle-check, i.fa-envelope, i.fa-map-location-dot, i.fa-globe, i.fa-building-user, i.fa-gift, i.fa-circle-exclamation, i.fa-phone, i.fa-mobile-screen-button, i.fa-list-check, i.fa-receipt {
  color: var(--accent-cyan) !important; /* Royal Navy Blue */
}



/* ==========================================
   شريط التمرير والجماليات (Premium Scrollbar)
   ========================================== */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--luxury-dark);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, var(--luxury-border), var(--luxury-gold));
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--luxury-blue);
}

/* ==========================================
   التأثيرات الذهبية المتوهجة (Radiant Gold & Metallic Fonts)
   ========================================== */
.gold-glow-text {
  background: linear-gradient(135deg, var(--luxury-blue) 0%, var(--luxury-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 4px rgba(10, 37, 64, 0.1));
}

.gold-gradient-bg {
  background: linear-gradient(135deg, var(--luxury-gold) 0%, var(--luxury-blue) 100%);
}

.gold-outline-btn {
  border: 1px solid rgba(140, 98, 57, 0.4);
  background: transparent;
  color: var(--luxury-gold);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.gold-outline-btn:hover {
  border-color: var(--luxury-gold);
  background: rgba(140, 98, 57, 0.08);
  box-shadow: 0 0 15px 0 rgba(140, 98, 57, 0.2);
}

/* ==========================================
   مؤثر اللمعان المذهل للأزرار (Luxury Shiny Reflection Effect)
   ========================================== */
.btn-shine-effect {
  position: relative;
  overflow: hidden;
}

.btn-shine-effect::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 30%;
  height: 200%;
  background: rgba(255, 255, 255, 0.25);
  transform: rotate(30deg);
  transition: none;
}

.btn-shine-effect:hover::after {
  left: 120%;
  transition: all 0.75s ease-in-out;
}

/* ==========================================
   الحركات الديناميكية الفاخرة (Premium Animations & Keyframes)
   ========================================== */
@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(1deg); }
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.65; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

.animate-glow {
  animation: pulseGlow 4s ease-in-out infinite;
}

.animate-reveal {
  animation: fadeInUp 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

/* ==========================================
   السويتش والمفاتيح الرياضية (Sports Switch Toggle)
   ========================================== */
.sports-switch {
  position: relative;
  display: inline-block;
  width: 55px;
  height: 28px;
}
.sports-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.sports-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--luxury-border);
  transition: .4s;
  border-radius: 34px;
  border: 1px solid rgba(140, 98, 57, 0.2);
}
.sports-slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 4px;
  bottom: 3px;
  background-color: #94A3B8;
  transition: .4s;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(10,37,64,0.15);
}
input:checked + .sports-slider {
  background: linear-gradient(135deg, rgba(140, 98, 57, 0.15) 0%, rgba(140, 98, 57, 0.05) 100%);
  border-color: var(--luxury-gold);
}
input:checked + .sports-slider:before {
  transform: translateX(27px);
  background-color: var(--luxury-gold);
  box-shadow: 0 0 10px 2px rgba(140, 98, 57, 0.3);
}

/* ==========================================
   تفاصيل وتأثيرات لوحة التحكم وتنبيهاتها
   ========================================== */
.toast-notification {
  position: fixed;
  bottom: 32px;
  left: 32px;
  z-index: 9999;
  transform: translateY(120px) scale(0.9);
  opacity: 0;
  backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--luxury-border);
  box-shadow: 0 20px 40px -10px rgba(10, 37, 64, 0.15),
              0 0 20px 2px rgba(140, 98, 57, 0.05);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.toast-notification.show {
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* Glow ring dynamic indicators */
.glow-ring-active {
  box-shadow: 0 0 12px 1px rgba(16, 185, 129, 0.4);
}
.glow-ring-inactive {
  box-shadow: 0 0 12px 1px rgba(244, 63, 94, 0.4);
}

/* Hide scrollbars utility for modern premium swiping carousels */
.scrollbar-none::-webkit-scrollbar {
  display: none;
}
.scrollbar-none {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

/* Premium Buttons Overrides for 4WCars Details and Booking Form */
#submit-booking-btn {
  padding-top: 18px !important;
  padding-bottom: 18px !important;
  font-weight: 900 !important;
  font-size: 16px !important;
  min-height: 56px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
  line-height: 1.5 !important;
}

#book-now-trigger-btn {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
  font-weight: 900 !important;
  font-size: 18px !important;
  min-height: 64px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
  line-height: 1.5 !important;
}
