/* ==========================================================================
   TRAVEL WITH SAIF - OFFICIAL STYLESHEET (2026)
   مكتب Travel with Saif - سياحة وسفر وخدمات تأشيرات
   ========================================================================== */

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

:root {
  --color-primary: #ffffff;
  --color-accent-orange: #f97316;
  --color-accent-orange-hover: #ea580c;
  --color-accent-orange-light: #fff7ed;
  --color-accent-blue: #0284c7;
  --color-accent-blue-light: #f0f9ff;
  --color-accent-baby-blue: #38bdf8;
  --color-dark-navy: #0f172a;
  --color-slate-text: #334155;
  --color-muted-text: #64748b;
  --color-border-light: #e2e8f0;
  --color-surface-bg: #f8fafc;
  
  --font-arabic: 'Cairo', 'Readex Pro', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-display: 'Readex Pro', 'Cairo', sans-serif;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-arabic);
  direction: rtl;
  text-align: right;
  background-color: #ffffff;
  color: var(--color-slate-text);
}

body {
  overflow-x: hidden;
  min-height: 100vh;
  background-color: #ffffff;
}

/* Custom Typography & Font Weights */
h1, h2, h3, h4, h5, h6, .font-display {
  font-family: var(--font-display);
}

/* Glassmorphism & Soft Shadows */
.glass-nav {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.glass-card {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(241, 245, 249, 1);
}

.glass-dark {
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Premium Shadows */
.shadow-soft {
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.02);
}

.shadow-card {
  box-shadow: 0 20px 40px -15px rgba(15, 23, 42, 0.07), 0 0 1px 1px rgba(15, 23, 42, 0.03);
}

.shadow-card:hover {
  box-shadow: 0 30px 60px -15px rgba(249, 115, 22, 0.12), 0 0 1px 1px rgba(249, 115, 22, 0.1);
}

.shadow-orange-glow {
  box-shadow: 0 10px 25px -5px rgba(249, 115, 22, 0.35);
}

.shadow-blue-glow {
  box-shadow: 0 10px 25px -5px rgba(2, 132, 199, 0.3);
}

/* Smooth Transitions */
.transition-luxury {
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Floating WhatsApp Button Pulse Animation */
@keyframes pulse-ring {
  0% {
    transform: scale(0.95);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.15);
    opacity: 0.4;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

.whatsapp-pulse::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 9999px;
  background-color: #22c55e;
  opacity: 0.75;
  animation: pulse-ring 2s cubic-bezier(0.24, 0, 0.38, 1) infinite;
  z-index: -1;
}

/* Airplane Flowing Line Animation */
@keyframes flight-dash {
  to {
    stroke-dashoffset: -100;
  }
}

.flight-path {
  stroke-dasharray: 8, 8;
  animation: flight-dash 5s linear infinite;
}

/* Floating Badge Animation */
@keyframes float-slow {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-8px) rotate(1deg);
  }
}

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

.animate-float-delayed {
  animation: float-slow 4.5s ease-in-out 1.5s infinite;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #f97316;
}

/* Hero Video Overlay */
.hero-video-container {
  position: relative;
  overflow: hidden;
}

.hero-video-container video,
.hero-video-container .hero-bg-img {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.88) 0%,
    rgba(15, 23, 42, 0.75) 50%,
    rgba(2, 132, 199, 0.6) 100%
  );
}

/* Gradient Texts */
.gradient-text-orange {
  background: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-text-blue {
  background: linear-gradient(135deg, #0284c7 0%, #38bdf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-text-luxury {
  background: linear-gradient(135deg, #f97316 0%, #0284c7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Button Shimmer Effect */
.btn-shimmer {
  position: relative;
  overflow: hidden;
}

.btn-shimmer::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    60deg,
    transparent 20%,
    rgba(255, 255, 255, 0.25) 50%,
    transparent 80%
  );
  transform: rotate(30deg) translateX(-100%);
  transition: transform 0.75s ease;
}

.btn-shimmer:hover::after {
  transform: rotate(30deg) translateX(100%);
}

/* Badge Styling */
.badge-baby-blue {
  background-color: #e0f2fe;
  color: #0369a1;
  border: 1px solid #bae6fd;
}

.badge-orange {
  background-color: #fff7ed;
  color: #c2410c;
  border: 1px solid #ffedd5;
}

/* Disclaimer Box Styling */
.disclaimer-banner {
  background-color: #fffbeb;
  border-right: 4px solid #f59e0b;
  color: #92400e;
}

/* Modal Transitions */
.modal-backdrop {
  background-color: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* Flag Icon Container */
.flag-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
}

/* Interactive Tabs */
.tab-active {
  background-color: #f97316 !important;
  color: #ffffff !important;
  border-color: #f97316 !important;
  box-shadow: 0 4px 14px 0 rgba(249, 115, 22, 0.35);
}

/* Number Counter Display */
.counter-num {
  font-feature-settings: "tnum";
  font-variant-numeric: tabular-nums;
}
