/* ==========================================================================
   Elite Startup visual Stylesheet for UmrahVisaFromIndia.in
   ========================================================================== */

/* Google Fonts are pre-loaded in index.html via preconnect and preload links for top-tier SEO and PageSpeed performance. */

:root {
  --font-serif: 'Outfit', sans-serif;
  --font-sans: 'Plus Jakarta Sans', sans-serif;
  --emerald-dark: #022c22;
  --emerald-primary: #064e3b;
  --emerald-light: #059669;
  --gold-primary: #d97706;
  --gold-light: #fbbf24;
  --gold-dark: #b45309;
}

body {
  font-family: var(--font-sans);
  background-color: #fafaf7;
  color: #1f2937;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

h1, h2, h3, .font-serif {
  font-family: var(--font-serif);
}

/* Custom Background Video & Image Styles */
.video-bg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  background-image: url('assets/hero_poster.webp');
  background-size: cover;
  background-position: center;
}

.video-bg-container video {
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  opacity: 0.45; /* Blends beautiful motion on top of the vibrant background image */
}

.video-overlay {
  position: absolute;
  inset: 0;
  /* Cinematic charcoal-slate fade. No heavy green cast over the image. 
     Keeps the custom background hotel skyline 100% sharp, colorful, and visible. */
  background: linear-gradient(to right, rgba(15, 23, 42, 0.75) 0%, rgba(15, 23, 42, 0.45) 45%, rgba(15, 23, 42, 0.05) 100%);
  z-index: 1;
}

/* Premium Text Shadows for High-Contrast Readability */
.text-shadow-premium {
  text-shadow: 0 4px 18px rgba(2, 34, 26, 0.95), 0 2px 4px rgba(0, 0, 0, 0.6);
}


/* Frosted Glassmorphism Card Style */
.glass-card-frosted {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

/* Native CSS Floating Labels for Premium Input Feel */
.floating-label-group {
  position: relative;
}

.floating-label-input {
  width: 100%;
  padding: 0.9rem 1rem 0.9rem 1rem;
  font-size: 0.875rem;
  color: white;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 0.85rem;
  outline: none;
  transition: all 0.3s ease;
}

.floating-label-input:focus {
  border-color: var(--gold-light);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.15);
}

.floating-label {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.floating-label-input:focus ~ .floating-label,
.floating-label-input:not(:placeholder-shown) ~ .floating-label {
  top: 0;
  left: 0.75rem;
  transform: translateY(-50%) scale(0.85);
  color: var(--gold-light);
  background-color: var(--emerald-dark);
  padding: 0 0.4rem;
}

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

@keyframes pulse-subtle {
  0%, 100% { transform: scale(1); box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { transform: scale(1.06); box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7); }
}

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

@keyframes slide-up {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

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

.animate-pulse-subtle {
  animation: pulse-subtle 2.5s infinite;
}

.animate-slide-up {
  animation: slide-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Premium Gold Shimmer Button */
.btn-gold-shimmer {
  background: linear-gradient(90deg, #d97706, #fbbf24, #b45309, #d97706);
  background-size: 300% 100%;
  transition: all 0.4s ease-in-out;
}
.btn-gold-shimmer:hover {
  animation: gold-shimmer 1.5s infinite linear;
  box-shadow: 0 10px 25px -5px rgba(217, 119, 6, 0.4);
  transform: translateY(-2px);
}

/* Standard Premium Glass Card */
.glass-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 8px 32px 0 rgba(4, 47, 46, 0.04);
}

/* Interactive Accordion Custom Transition */
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
  opacity: 0;
}

.accordion-content.active {
  opacity: 1;
}

/* Custom Scrollbar for Luxury Aesthetic */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #f8f8f5;
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* Tabs & Cards Interactive Outlines */
.card-interactive {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.card-interactive:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -15px rgba(2, 44, 34, 0.08);
  border-color: rgba(217, 119, 6, 0.3);
}
