/* ==========================================================================
   Sohail Waqas Luxe Travel - Futuristic Micro-Animations & Glow Effects
   ========================================================================== */

/* Keyframe Animations */
@keyframes swtFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

@keyframes swtPulseGlow {
  0%, 100% { opacity: 0.45; transform: scale(1); }
  50% { opacity: 0.85; transform: scale(1.06); }
}

@keyframes swtKenBurns {
  0% { transform: scale(1) translate(0, 0); }
  50% { transform: scale(1.08) translate(-1%, -1%); }
  100% { transform: scale(1) translate(0, 0); }
}

@keyframes swtNeonBorderSweep {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes swtMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes swtShimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes swtSlideProgress {
  0% { width: 0%; }
  100% { width: 100%; }
}

@keyframes swtPulseGreen {
  0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6); }
  70% { box-shadow: 0 0 0 14px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

/* Animation Utility Classes */
.swt-animate-float {
  animation: swtFloat 6s ease-in-out infinite;
}

.swt-animate-pulse {
  animation: swtPulseGlow 4s ease-in-out infinite;
}

.swt-pulse-btn {
  animation: swtPulseGreen 2.5s infinite;
}

.swt-shimmer-text {
  background: linear-gradient(90deg, #c59b27 0%, #fff3cd 25%, #e2be58 50%, #fff3cd 75%, #c59b27 100%);
  background-size: 200% auto;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  animation: swtShimmer 6s linear infinite;
}

.swt-gold-shimmer {
  background: linear-gradient(90deg, #d97706 0%, #fbbf24 30%, #fef3c7 50%, #fbbf24 70%, #d97706 100%);
  background-size: 200% auto;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  animation: swtShimmer 4s linear infinite;
}

/* Card Hover & Micro-Interactions */
.swt-hajj-card, .swt-package-card {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease !important;
}

.swt-hajj-card:hover, .swt-package-card:hover {
  transform: translateY(-10px) scale(1.01) !important;
  box-shadow: 0 24px 50px rgba(180, 83, 9, 0.22), 0 10px 22px rgba(7, 21, 41, 0.12) !important;
  border-color: #d97706 !important;
}

.swt-hajj-card:hover .swt-card-img, .swt-package-card:hover .swt-card-img {
  transform: scale(1.08) !important;
}

/* Feature Box Hover Effect */
.swt-hajj-feature-box {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease !important;
}

.swt-hajj-feature-box:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 16px 32px rgba(7, 21, 41, 0.1) !important;
  border-color: #b45309 !important;
}

/* Step Card Hover Effect */
.swt-step-card {
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease !important;
}

.swt-step-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 16px 32px rgba(217, 119, 6, 0.18) !important;
  border-color: #d97706 !important;
}

/* Day Itinerary Box Hover Effect */
.swt-itinerary-box {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-left-color 0.3s ease !important;
}

.swt-itinerary-box:hover {
  transform: translateX(8px) !important;
  box-shadow: 0 12px 28px rgba(7, 21, 41, 0.08) !important;
  border-left-color: #f59e0b !important;
}

/* Futuristic Hero Background & Grid Overlay Effects */
.swt-futuristic-hero {
  position: relative;
  overflow: hidden;
}

.swt-futuristic-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: swtKenBurns 28s ease-in-out infinite alternate;
  z-index: 0;
  opacity: 0.38;
  filter: saturate(1.2) contrast(1.1);
  pointer-events: none;
}

.swt-futuristic-grid-overlay {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
  z-index: 1;
  opacity: 0.55;
}

.swt-glass-search-box {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(20px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.6) !important;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45), 0 0 35px rgba(255, 255, 255, 0.2) inset !important;
}
