/* ========================================
   TRAVORIUM - Premium Design System V3
   ======================================== */

/* Design Tokens */
:root {
  /* Colors - Refined Palette */
  --primary: #0f172a;
  --primary-dark: #020617;
  --primary-light: #1e293b;
  --secondary: #0f172a;
  --accent: #d4af37;
  --accent-dark: #b8860b;
  --accent-glow: rgba(212, 175, 55, 0.4);

  /* Neutrals */
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-500: #64748b;
  --gray-700: #334155;
  --gray-900: #0f172a;

  /* Gradients - More dynamic */
  --gradient-hero: linear-gradient(
    135deg,
    #0f172a 0%,
    #1e293b 50%,
    #020617 100%
  );
  --gradient-card: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  --gradient-overlay: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0) 0%,
    rgba(15, 23, 42, 0.85) 100%
  );
  --gradient-accent: linear-gradient(135deg, var(--accent) 0%, #f3d47a 100%);

  /* Shadows - Layered for depth */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md:
    0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg:
    0 10px 25px -5px rgba(0, 0, 0, 0.2), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
  --shadow-glow: none; /* Removed as per user request */

  /* Spacing - Re-balanced */
  --space-xs: 0.5rem;
  --space-sm: 0.85rem;
  --space-md: 1.5rem;
  --space-lg: 2.25rem;
  --space-xl: 2.5rem; /* Reduced from 3.75rem */
  --space-2xl: 4rem; /* Reduced from 6rem */

  /* Border Radius - Modern pill & soft corners */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  /* Transitions - Smoother curves */
  --transition-fast: 200ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 400ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 700ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Glass Effect 2.0 - Refined for Professionalism */
  --glass-bg: rgba(15, 23, 42, 0.25); /* Reduced opacity for cleaner look */
  --glass-border: rgba(255, 255, 255, 0.15);
  --glass-blur: blur(20px);
  --glass-noise: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");

  /* Dynamic Theme Variables */
  --text-main: #ffffff;
  --text-subtitle: rgba(255, 255, 255, 0.9);
  --text-muted: rgba(255, 255, 255, 0.6);
  --glass-card-bg: rgba(30, 41, 59, 0.15); /* Reduced from 0.3 */
  --glass-card-border: rgba(255, 255, 255, 0.15);
  --header-bg: rgba(15, 23, 42, 0.5);
  --benefit-icon-bg: rgba(255, 255, 255, 0.05);
  --logo-filter: none;
}


/* ========================================
   BACKGROUND SLIDESHOW
   ======================================== */
.bg-slideshow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  overflow: hidden;
  background: #020617; /* Solid base to prevent any flicker */
}

.bg-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  filter: blur(2px) brightness(0.65); /* Darkened from 0.8 to 0.65 */
  transition:
    opacity 2s ease-in-out,
    transform 10s linear;
}

.bg-slide.active {
  opacity: 1;
  z-index: -1; /* Ensure active slides are above inactive ones but below overlay */
  /* Base scale for subtle depth without parallax */
  transform: scale(1.1); 
}

.bg-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.6); /* Increased from 0.45 to 0.6 */
  z-index: -1;
  transition: background 1.5s ease-in-out;
}


/* Reset & Base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-main);
  background-color: var(--primary-dark);
  overflow-x: hidden;
  transition:
    color 1s ease,
    background-color 1s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", "Open Sans", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-main);
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5); /* Strengthened shadow */
  transition: color 1.5s ease-in-out;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-main);
  opacity: 0.9;
}

.text-primary {
  color: var(--primary);
}

.text-accent {
  color: var(--accent);
}

.text-muted {
  color: var(--text-muted);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4); /* Extra separation */
}

.subtitle {
  color: var(--text-subtitle);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45); /* Strengthened */
}

.text-center {
  text-align: center;
}

.striking-subtitle {
  display: inline-block;
  position: relative;
  padding-bottom: 8px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 800;
  filter: drop-shadow(0 0 1px rgba(255, 255, 255, 0.9)) drop-shadow(0 0 8px var(--accent-glow));
}

.striking-subtitle::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--accent);
  border-radius: var(--radius-full);
  filter: drop-shadow(0 0 5px var(--accent-glow));
}

#exp-title,
#benefits-title,
#guarantee-title,
#essentials-title,
#wt-title,
#how-title,
#video-title,
#community-title,
#testimonials-title,
#cta-title {
  background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 50%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: 
    drop-shadow(0 0 1px rgba(255, 255, 255, 1))
    drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* Layout */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

section {
  padding: 2.5rem 0; /* Reduced from 4rem */
  position: relative;
}

/* Global Responsive Spacing Overrides */
@media (max-width: 768px) {
  :root {
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
  }
  section {
    padding: 2.5rem 0;
  }
}

@media (max-width: 600px) {
  :root {
    --space-md: 1rem;
    --space-lg: 1.25rem;
    --space-xl: 1.5rem;
    --space-2xl: 2rem;
  }
  section {
    padding: 1.5rem 0;
  }
}

.section-alt {
  background: transparent;
}

/* ========================================
   HEADER
   ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--header-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--glass-card-border);
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: all var(--transition-base);
}

.header.scrolled {
  height: 65px;
  background: rgba(15, 23, 42, 0.9);
  box-shadow: var(--shadow-lg);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1400px; /* Increased from 1200px to move elements towards the edges */
}

.logo img {
  height: 40px;
  width: auto;
  filter: var(--logo-filter);
  transition: filter 0.5s ease;
}

.header-right {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.referral-display {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 6px 12px;
  background: var(--glass-card-bg);
  border: 1px solid var(--glass-card-border);
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-main);
  backdrop-filter: blur(5px);
}

.referral-display #sponsor-id {
  color: var(--accent);
}

.lang-selector {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 8px 16px;
  background: var(--gradient-accent); /* Vibrant Gold Gradient */
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-base);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3), 0 0 20px rgba(212, 175, 55, 0.2);
}

.lang-selector:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5), 0 0 30px rgba(212, 175, 55, 0.3);
  background: linear-gradient(135deg, #f3d47a 0%, var(--accent) 100%);
}

.lang-selector select {
  border: none;
  background: transparent;
  font-size: 14px;
  font-weight: 800;
  color: var(--primary-dark); /* Dark text on gold */
  cursor: pointer;
  outline: none;
  padding-right: 4px;
}

.lang-selector select option {
  background: var(--primary-dark);
  color: var(--white);
  padding: 10px;
}

.lang-selector svg {
  width: 18px;
  height: 18px;
  stroke: var(--primary-dark); /* Dark icon on gold */
  filter: drop-shadow(0 0 2px rgba(0,0,0,0.2));
  opacity: 1;
}

@media (max-width: 480px) {
  .lang-selector {
    padding: 6px 10px;
    gap: 4px;
  }
  .lang-selector svg {
    display: none; /* Hide globe on very small screens to save space */
  }
  .lang-selector select {
    font-size: 12px;
  }
  .header-right {
    gap: var(--space-xs); /* Tighter gap on mobile */
  }
}

/* ========================================
   HERO WELCOME BOX (Redesign)
   ======================================== */
.hero-welcome-box {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  padding: 0;
  margin-bottom: var(--space-md);
  position: relative;
  z-index: 5;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.hero-message-box {
  background: rgba(255, 255, 255, 0.008);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: var(--radius-xl);
  padding: var(--space-xl) var(--space-lg);
  max-width: 800px;
  margin: var(--space-md) auto;
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.4),
    inset 0 0 30px rgba(255, 255, 255, 0.05);
  animation: floatingAction 8s ease-in-out infinite;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  transition: var(--transition-base);
}

.hero-message-box > *,
.cta-message-box > * {
  position: relative;
  z-index: 2;
}

.hero-message-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(212, 175, 55, 0.1),
    transparent
  );
  animation: boxShine 6s infinite linear;
}

.hero-message-box::after,
.cta-message-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--glass-noise);
  opacity: 0.03;
  pointer-events: none;
  z-index: 1;
}

.welcome-eyebrow {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--accent);
  margin-bottom: var(--space-sm);
  position: relative;
  z-index: 1;
}

.welcome-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: var(--space-md);
  background: linear-gradient(135deg, var(--accent) 0%, var(--white) 50%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: 
    drop-shadow(0 0 1px rgba(255, 255, 255, 0.9))
    drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.5))
    drop-shadow(0 0 15px var(--accent-glow));
  position: relative;
  z-index: 1;
}

.welcome-subtitle {
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  font-weight: 800;
  color: var(--white);
  margin-top: var(--space-md);
  margin-bottom: 0;
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.welcome-desc {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  position: relative;
  z-index: 1;
}

@keyframes floatingAction {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Hero Text Alternating Transitions */
.fade-text {
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
  opacity: 1;
  transform: translateY(0);
}

.fade-out-up {
  opacity: 0;
  transform: translateY(-20px);
}

.fade-in-bottom {
  opacity: 0;
  transform: translateY(20px);
}

.hero-secondary-title {
  margin-top: var(--space-2xl);
  opacity: 1;
  background: rgba(15, 23, 42, 0.4); /* Protective pocket */
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  display: inline-block;
  backdrop-filter: blur(5px);
}

.hero-secondary-title h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: var(--space-xs);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  padding-top: calc(80px + var(--space-xl));
  padding-bottom: var(--space-xl);
  background: transparent;
  color: var(--text-main);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: color 0.5s ease;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.3;
}

.hero h1 {
  color: var(--text-main);
  font-size: clamp(1.6rem, 3.8vw, 2.2rem);
  margin-bottom: var(--space-sm);
  position: relative;
  font-weight: 800;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-logo {
  max-width: 400px;
  margin: 0 auto var(--space-lg);
  position: relative;
}

.hero-main-logo {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
  transition: var(--transition-bounce);
}

.hero-main-logo:hover {
  transform: scale(1.05);
}

.hero .subtitle {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  opacity: 0.95;
  max-width: 650px;
  margin: 0 auto var(--space-lg);
  position: relative;
  line-height: 1.5;
}

.hero-bullets {
  display: flex;
  justify-content: center;
  gap: var(--space-xl); /* Increased from lg */
  flex-wrap: wrap;
  margin-top: var(--space-xl); /* Extra space from the text above */
  margin-bottom: var(--space-xl);
  position: relative;
}

.hero-bullet {
  display: flex;
  align-items: flex-start; /* Aligned with first line for multi-line text */
  gap: 12px; /* Increased from var(--space-xs) for better breathing room */
  font-weight: 600;
  line-height: 1.4; 
}

.hero-bullet svg {
  width: 20px; 
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px; /* Precision nudge for first line centering */
  fill: var(--white);
  opacity: 0.9;
}

.hero-images {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-sm);
  max-width: 900px;
  margin: var(--space-xl) auto 0;
  position: relative;
}

.hero-images img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  transition: var(--transition-base);
}

.hero-images img:hover {
  transform: scale(1.05);
  z-index: 10;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: 14px 40px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition-bounce);
  border: none;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
  z-index: -1;
}

.btn:hover::after {
  transform: translateX(100%);
}

.btn-primary {
  background: var(--gradient-accent);
  color: var(--primary-dark);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4), var(--shadow-glow);
}

.btn-whatsapp {
  background: #25d366;
  color: white;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: #22c35e;
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

/* ========================================
   METRICS / SOCIAL PROOF
   ======================================== */
.metrics {
  padding: var(--space-xl) 0;
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

@media (max-width: 768px) {
  .metrics-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

.metric-card {
  background: var(--glass-card-bg);
  border-radius: var(--radius-lg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-card-border);
  transition: var(--transition-base);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-lg);
  gap: var(--space-sm);
  height: 100%;
  min-height: 180px;
  position: relative;
  overflow: hidden;
}

.metric-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--glass-noise);
  opacity: 0.02;
  pointer-events: none;
}

.metric-card:hover {
  transform: translateY(-10px) scale(1.02);
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--accent);
  box-shadow: var(--shadow-xl), var(--shadow-glow);
}

/* Unify themes to be more professional */
.metric-blue:hover {
  border-color: #3b82f6;
}
.metric-green:hover {
  border-color: #10b981;
}
.metric-gold:hover {
  border-color: var(--accent);
}

.metric-icon {
  margin-bottom: var(--space-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-base);
}

.icon-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(81%) sepia(43%) saturate(583%) hue-rotate(357deg) brightness(90%) contrast(85%) drop-shadow(0 0 10px rgba(212, 175, 55, 0.4));
  transition: var(--transition-base);
}

.metric-icon .icon-img {
  width: 42px;
  height: 42px;
}

.metric-content {
  display: flex;
  flex-direction: column;
}

.metric-value {
  font-size: 1.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 50%, #ffffff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
  letter-spacing: -0.02em;
  filter: 
    drop-shadow(0 0 1px rgba(255, 255, 255, 0.9))
    drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.2));
}

.metric-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ========================================
   BENEFITS SECTION (Redesigned v1.1.3)
   ======================================== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
  max-width: 1350px !important;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

.benefit-card-premium {
  background: var(--glass-card-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-card-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center; /* Centered */
  text-align: center; /* Centered */
  gap: var(--space-md);
  box-shadow: var(--shadow-lg);
}

.benefit-card-premium:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
  box-shadow: var(--shadow-xl), 0 0 30px rgba(212, 175, 55, 0.1);
}

.benefit-card-premium .benefit-icon {
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-xs);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  transition: var(--transition-bounce);
}

.benefit-card-premium:hover .benefit-icon {
  transform: scale(1.1) rotate(5deg);
  background: rgba(212, 175, 55, 0.1);
}

.benefit-card-premium .benefit-icon .icon-img {
  width: 48px;
  height: 48px;
  filter: brightness(0) saturate(100%) invert(81%) sepia(43%) saturate(583%) hue-rotate(357deg) brightness(90%) contrast(85%) drop-shadow(0 0 12px var(--accent-glow));
}

.benefit-card-premium h3 {
  font-size: 1.6rem;
  margin-bottom: var(--space-sm);
  background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 50%, #ffffff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: 
    drop-shadow(0 0 1px rgba(255, 255, 255, 0.9))
    drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.2));
}

.benefit-card-premium ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center; /* Centered items */
  gap: var(--space-sm);
}

.benefit-card-premium li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-weight: 500;
  color: var(--text-subtitle);
  text-align: left; /* Keep text left-aligned within the centered block for list feel */
}

.benefit-card-premium li svg {
  width: 20px;
  height: 20px;
  fill: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ========================================
   CARDS
   ======================================== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

@media (max-width: 768px) {
  .experiences .container {
    padding: 0 !important;
  }

  .experiences h2, 
  .experiences p.text-muted {
    padding: 0 var(--space-md) !important;
  }

  .exp-slider-wrapper {
    position: relative;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .exp-slider-container {
    padding: 0 !important;
    margin: 0 !important;
    margin-left: calc(-50vw + 50%) !important;
    margin-right: calc(-50vw + 50%) !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory !important;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scroll-padding-left: 5vw !important;
    width: 100vw !important;
    max-width: 100vw !important;
    box-sizing: border-box !important;
    scrollbar-width: none;
  }

  .exp-slider-container::-webkit-scrollbar {
    display: none;
  }

  .cards-grid {
    display: flex; /* Override grid */
    grid-template-columns: none;
    gap: 10vw !important;
    padding: var(--space-md) 5vw !important;
    margin: 0 !important;
    width: max-content;
    justify-content: flex-start !important;
  }

  .card {
    flex: 0 0 90vw !important;
    max-width: 90vw !important;
    min-width: 90vw !important;
    width: 90vw !important;
    scroll-snap-align: center !important;
    scroll-snap-stop: always !important;
    border-radius: var(--radius-lg) !important;
    margin: 0 !important;
    height: auto !important;
    min-height: 400px;
  }
}

.card {
  background: var(--glass-card-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-card-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition-base);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-10px);
  border-color: var(--accent);
  box-shadow: var(--shadow-xl), 0 0 25px rgba(212, 175, 55, 0.15);
}

.trust-card {
  text-align: center;
  padding: var(--space-xl) var(--space-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  transition: var(--transition-bounce);
}

.trust-card:hover {
  transform: scale(1.03);
  background: var(--glass-card-bg);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.trust-card .benefit-icon {
  width: 64px;
  height: 64px;
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.trust-card h3 {
  margin-bottom: var(--space-xs);
  font-size: 1.25rem;
  color: var(--accent);
  filter: drop-shadow(0 0 1px rgba(255, 255, 255, 0.9)) drop-shadow(0 0 8px var(--accent-glow));
}

.card-image {
  width: 100%;
  height: 220px; /* Increased for impact */
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.card:hover .card-image {
  transform: scale(1.08);
}

.card-content {
  padding: var(--space-xl) var(--space-lg);
  text-align: center; /* Centered content */
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  flex-grow: 1;
}


.card-content h3 {
  margin: 0 !important;
  font-size: 1.4rem;
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 50%, #ffffff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: 
    drop-shadow(0 0 1px rgba(255, 255, 255, 0.9))
    drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.2));
}

.card-content p {
  color: var(--text-subtitle);
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ========================================
   HOW IT WORKS
   ======================================== */
.steps-slider-wrapper {
  position: relative;
  width: 100%;
}

.step-nav {
  display: none; /* Hidden on desktop */
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.step-card {
  background: var(--glass-card-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-card-border);
  border-radius: var(--radius-lg); /* Increased for consistency */
  overflow: hidden;
  transition: var(--transition-base);
  position: relative;
  max-width: 320px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
}

.step-card:hover {
  transform: translateY(-12px);
  border-color: var(--accent);
  box-shadow: var(--shadow-xl), 0 0 20px rgba(212, 175, 55, 0.1);
}

.step-image {
  width: 100%;
  height: 180px; /* Increased from 140px */
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.step-card:hover .step-image {
  transform: scale(1.08); /* Sophisticated subtle zoom */
}

.step-content {
  padding: var(--space-xl) var(--space-lg);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center; /* Centered */
  text-align: center; /* Centered */
  gap: var(--space-sm);
}

.step-number {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 3.5rem; /* Slightly smaller */
  font-weight: 900;
  color: var(--white);
  opacity: 0.05; /* Very subtle watermark */
  line-height: 1;
  pointer-events: none;
}

.step-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-xs);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: var(--transition-bounce);
}

.step-card:hover .step-icon {
  transform: scale(1.1) rotate(5deg);
  background: rgba(212, 175, 55, 0.1);
}

.step-icon .icon-img {
  width: 42px;
  height: 42px;
  filter: brightness(0) saturate(100%) invert(81%) sepia(43%) saturate(583%) hue-rotate(357deg) brightness(90%) contrast(85%) drop-shadow(0 0 12px var(--accent-glow));
}

.step-content h3 {
  margin: 0 !important;
  font-size: 1.35rem;
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 50%, #ffffff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: 
    drop-shadow(0 0 1px rgba(255, 255, 255, 0.9))
    drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.2));
}

.step-content p {
  color: var(--text-subtitle);
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Scroll Animation Utilities */
.reveal {
  position: relative;
  opacity: 0;
  transition: all 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
}

.reveal.from-bottom {
  transform: translateY(50px);
}
.reveal.from-left {
  transform: translateX(-50px);
}
.reveal.from-right {
  transform: translateX(50px);
}

.reveal.active.from-bottom,
.reveal.active.from-left,
.reveal.active.from-right {
  transform: translate(0, 0);
}

/* Bento Gallery Layout */
.bento-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 250px);
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.bento-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: var(--transition-bounce);
}

.bento-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}
.bento-item:nth-child(2) {
  grid-column: span 1;
  grid-row: span 1;
}
.bento-item:nth-child(3) {
  grid-column: span 1;
  grid-row: span 1;
}
.bento-item:nth-child(4) {
  grid-column: span 2;
  grid-row: span 1;
}

.bento-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.bento-item:hover img {
  transform: scale(1.1);
}

.bento-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  opacity: 0;
  transition: var(--transition-base);
  display: flex;
  align-items: flex-end;
  padding: var(--space-md);
  color: var(--white);
  font-weight: 600;
}

.bento-item:hover .bento-overlay {
  opacity: 1;
}

@media (max-width: 768px) {
  .bento-gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, 200px);
  }
  .bento-item:nth-child(1),
  .bento-item:nth-child(4) {
    grid-column: span 2;
  }
}

/* ========================================
   BENEFITS
   ======================================== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

.benefit-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--glass-border);
  transition: var(--transition-base);
}

.hero-content-glass {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 800px;
  margin: 0 auto var(--space-xl);
}

.benefit-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
}

.benefit-icon {
  width: 60px;
  height: 60px;
  background: var(--benefit-icon-bg);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  color: var(--primary);
  transition: var(--transition-base);
}

.benefit-icon svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.essential-card .essential-icon .icon-img {
  width: 38px;
  height: 38px;
  filter: brightness(0) saturate(100%) invert(81%) sepia(43%) saturate(583%) hue-rotate(357deg) brightness(90%) contrast(85%) drop-shadow(0 0 8px rgba(212, 175, 55, 0.3));
}

.trust-card:nth-child(2) .benefit-icon svg {
  stroke: #3b82f6; /* Matching the blue secondary accent for the second card */
  filter: none;
}

.benefit-card h3 {
  color: var(--accent); /* Consistent gold title */
  margin-bottom: var(--space-md);
  font-size: 1.4rem;
  filter: drop-shadow(0 0 1px rgba(255, 255, 255, 0.9)) drop-shadow(0 0 8px var(--accent-glow));
}

.benefit-card ul {
  list-style: none;
}

.benefit-card li {
  padding: var(--space-xs) 0;
  padding-left: var(--space-md);
  position: relative;
  color: var(--white); /* Brighter for dark background */
}

.benefit-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* ========================================
   TRUST & GUARANTEES (Redesigned v1.1.2)
   ======================================== */
.guarantees {
  padding: var(--space-2xl) 0;
}

.guarantee-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  max-width: 1200px;
  margin: var(--space-xl) auto 0;
}

@media (max-width: 768px) {
  .guarantee-grid {
    grid-template-columns: 1fr;
  }
}

.guarantee-card {
  background: var(--glass-card-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-card-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  box-shadow: var(--shadow-lg);
}

.guarantee-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-accent);
  opacity: 0.8;
}

.guarantee-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
  box-shadow: var(--shadow-xl), 0 0 20px rgba(212, 175, 55, 0.15);
}

.guarantee-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-xs);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: var(--transition-bounce);
}

.guarantee-card:hover .guarantee-icon {
  transform: scale(1.1) rotate(5deg);
  background: rgba(212, 175, 55, 0.1);
}

.guarantee-icon .icon-img {
  width: 48px;
  height: 48px;
  filter: brightness(0) saturate(100%) invert(81%) sepia(43%) saturate(583%) hue-rotate(357deg) brightness(90%) contrast(85%) drop-shadow(0 0 12px var(--accent-glow));
}

.guarantee-card h3 {
  font-size: 1.4rem;
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 50%, #ffffff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: var(--space-xs);
  filter: 
    drop-shadow(0 0 1px rgba(255, 255, 255, 0.9))
    drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.2));
}

.guarantee-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.video-wrapper {
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  background: #000;
  aspect-ratio: 16 / 9;
}

.video-wrapper video,
.video-wrapper iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
}

.section-logo-container {
  text-align: center;
  margin: var(--space-xl) auto 0;
}

.section-footer-logo {
  height: 120px;
  width: auto;
  opacity: 0.9;
  transition: var(--transition-base);
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.1));
}

.section-footer-logo:hover {
  transform: scale(1.05);
  opacity: 1;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
  color: var(--white);
  text-align: center;
  padding: var(--space-xl) 0; /* Reduced from 3xl */
  position: relative;
}

.cta-message-box {
  background: rgba(255, 255, 255, 0.008);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: var(--radius-xl);
  padding: var(--space-xl) var(--space-lg);
  max-width: 800px;
  margin: 0 auto var(--space-lg);
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.4),
    inset 0 0 30px rgba(255, 255, 255, 0.05);
  animation: floatingAction 8s ease-in-out infinite;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  transition: var(--transition-base);
}

.cta-message-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(212, 175, 55, 0.1),
    transparent
  );
  animation: boxShine 6s infinite linear;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 0;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  line-height: 1.3;
}

/* ========================================
   GALLERY
   ======================================== */
.gallery-wrapper {
  position: relative;
  max-width: 1200px !important;
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.gallery-track {
  display: flex;
  gap: var(--space-md);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: var(--space-sm) var(--space-sm) var(--space-lg);
  scrollbar-width: none;
}

.gallery-track::-webkit-scrollbar {
  height: 6px;
}

.gallery-track::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: var(--radius-full);
}

.gallery-item {
  width: calc((100% - (2 * var(--space-md))) / 3) !important;
  flex: 0 0 calc((100% - (2 * var(--space-md))) / 3) !important;
  min-width: calc((100% - (2 * var(--space-md))) / 3) !important;
  height: 220px !important;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition-base);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Video specific item */
.video-item {
  background: #000;
}

@media (max-width: 768px) {
  .gallery-item {
    flex: 0 0 90vw !important; /* Matches World Tours smaller card format */
    max-width: 90vw !important;
    min-width: 90vw !important;
    width: 90vw !important;
    height: 250px !important;    /* Proportionally fit mobile keeping 90vw somewhat rectangular */
    margin: 0 !important;
    scroll-snap-align: center !important;
    scroll-snap-stop: always !important;
  }
  
  .gallery-wrapper {
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
  }

  .gallery-track {
    scroll-snap-type: x mandatory !important;
    scroll-padding-left: 5vw !important; /* Math for center snap: 10vw / 2 = 5vw */
    gap: 10vw !important;
    padding: var(--space-md) 5vw !important; /* Padding matches the scroll-padding */
    margin: 0 !important;
    margin-left: calc(-50vw + 50%) !important;
    margin-right: calc(-50vw + 50%) !important;
    width: 100vw !important;
    max-width: 100vw !important;
    box-sizing: border-box !important;
    justify-content: flex-start !important; /* Force items to start from exact left edge */
  }
  
  .gallery-btn {
    display: none !important; /* Hide overlay buttons on mobile since it's swipeable */
  }
}

/* Swipe Indicator Styles */
.swipe-indicator {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 50;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 14px 28px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  pointer-events: none;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.swipe-indicator.hidden {
  opacity: 0 !important;
  transform: translate(-50%, -50%) scale(0.9);
}

.swipe-hand {
  width: 48px; /* Increased from 24px */
  height: 48px; /* Increased from 24px */
  fill: none;
  stroke: var(--accent); /* Brand gold */
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  animation: swipeModern 2s infinite ease-in-out;
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.4));
}

@keyframes swipeModern {
  0%, 100% { transform: translateX(0) scale(1); opacity: 0.8; }
  25% { transform: translateX(-15px) scale(0.9); opacity: 1; }
  75% { transform: translateX(15px) scale(0.9); opacity: 1; }
}

@media (max-width: 768px) {
  .swipe-indicator {
    display: flex;
  }
}

.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background: rgba(212, 175, 55, 0.82);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: var(--transition-bounce);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.play-icon::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-left: 15px solid var(--primary);
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  margin-left: 5px;
}

.video-item:hover .play-icon {
  transform: translate(-50%, -50%) scale(1.15);
  background: var(--accent);
}

.gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-bounce);
}

.gallery-btn:hover {
  background: var(--accent);
  color: var(--primary);
  transform: translateY(-50%) scale(1.1);
  border-color: var(--accent);
}

.prev-btn {
  left: 0;
}

.next-btn {
  right: 0;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px);
  animation: fadeIn 0.3s ease;
}

.lightbox-content {
  max-width: 90%;
  max-height: 90vh;
  border-radius: var(--radius-md);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
  animation: zoomIn 0.3s ease;
  object-fit: contain;
}

.close-lightbox {
  position: absolute;
  top: 25px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 2001;
  line-height: 1;
}

.close-lightbox:hover {
  color: var(--primary);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    transform: scale(0.9);
  }

  to {
    transform: scale(1);
  }
}

/* ========================================
   BACK TO TOP BUTTON
   ======================================== */
.back-to-top {
  position: fixed;
  bottom: 110px;
  right: 30px;
  width: 56px;
  height: 56px;
  background: var(--glass-card-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-card-border);
  border-radius: 50%;
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-bounce);
  box-shadow: var(--shadow-lg);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--accent);
  color: var(--primary-dark);
  transform: scale(1.1);
  box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.back-to-top svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 90px;
    right: 20px;
    width: 48px;
    height: 48px;
  }
}

/* ========================================
   WHATSAPP FLOAT BUTTON
   ======================================== */
.wa-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 64px;
  height: 64px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  transition: var(--transition-bounce);
  cursor: pointer;
}

.wa-float:hover {
  transform: scale(1.15) rotate(10deg);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
}

.wa-float svg {
  width: 32px;
  height: 32px;
  fill: var(--white);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  padding: var(--space-lg) 0; /* Compacted from space-xl */
  text-align: center;
}

.footer p {
  margin-bottom: var(--space-sm);
}

.footer a {
  color: var(--primary-light);
  transition: var(--transition-fast);
}

.footer a:hover {
  color: var(--white);
}

.footer .lang-selector {
  display: inline-flex;
  margin-top: 0;
  padding: 4px 12px;
  background: var(--glass-card-bg);
  border-color: var(--glass-card-border);
}

.footer .lang-selector select {
  color: var(--text-main);
}

.footer-logo {
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.footer-sponsor-label {
  color: var(--text-muted);
  transition: color 1.5s ease-in-out;
}

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }
  .footer-links {
    justify-content: center;
  }
  .footer-logo {
    order: -1; /* Place logo on top on mobile */
  }
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 992px) {
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .hero-images {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .hero-welcome-box {
    padding: var(--space-lg);
  }
}

@media (max-width: 768px) {
  section {
    padding: var(--space-lg) 0; /* Reduced from xl */
  }

  .header {
    height: 70px;
  }
  
  .header .container {
    padding: 0 var(--space-md);
  }

  .hero {
    padding-top: calc(70px + var(--space-lg)); /* Synchronize with above */
    padding-bottom: var(--space-lg);
  }

  .hero-bullets {
    flex-direction: column;
    align-items: flex-start; /* Consistent vertical alignment of icons */
    width: fit-content;
    margin: 0 auto var(--space-md); /* Center the block, but items are left-aligned inside */
    padding-left: 15px; /* Shifted slightly right as per user request */
    gap: var(--space-sm); 
  }
  
  .hero-bullet {
    font-size: 0.9rem !important;
    text-align: left;
  }

  .hero-images {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xs);
    margin-top: var(--space-md);
  }

  .hero-images img {
    height: 100px; /* Reduced from 140px */
  }

  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xs); /* Reduced from sm */
  }

  .metric-item:last-child {
    grid-column: span 2;
  }
  
  .metric-card {
    padding: var(--space-sm); /* Reduced from md */
    min-height: 120px; /* Reduced from 150px */
  }

  .metric-icon svg {
    width: 24px;
    height: 24px;
  }
  
  .metric-value {
    font-size: 1.4rem;
  }

  .steps-grid,
  .cards-grid {
    grid-template-columns: 1fr;
    gap: var(--space-sm); /* Reduced from md */
  }
  
  .card-content {
    padding: var(--space-lg) var(--space-md); /* Reduced from xl lg */
  }

  .card-image,
  .step-image {
    height: 250px; /* Increased from 140px to prevent cropping and improve aspect ratio */
  }
  
  .step-content {
    padding: var(--space-lg) var(--space-md); /* Reduced from xl lg */
  }

  .benefit-card-premium {
    padding: var(--space-md); /* Reduced from lg */
  }

  .btn {
    width: 100%;
    padding: 14px 20px; /* Reduced from 16px 24px */
    font-size: 0.95rem;
  }

  .wa-float {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }

  .wa-float svg {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-sm);
  }

  .header {
    height: 60px;
  }
  
  .header-right {
    gap: var(--space-xs);
  }
  
  .referral-display {
    padding: 4px 8px;
    font-size: 0.75rem;
  }
  
  .lang-selector {
    padding: 6px 10px;
  }
  
  .lang-selector svg {
    display: none;
  }

  .logo img {
    height: 28px;
  }

  .welcome-title {
    font-size: 1.6rem !important; /* Reduced from 1.8rem */
    margin-bottom: var(--space-sm);
  }
  
  .welcome-subtitle {
    font-size: 0.95rem !important; /* Reduced from 1rem */
    margin-bottom: var(--space-sm); /* Reduced from md */
  }
  
  .welcome-desc {
    font-size: 0.85rem !important;
  }

  .hero-images {
    grid-template-columns: 1fr 1fr;
  }
  
  .hero-images img {
    height: 90px;
  }
  
  .metrics-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xs);
  }
  
  .metric-item:last-child {
    grid-column: span 1;
  }
  
  .guarantees {
    padding-bottom: var(--space-sm);
  }
  
  .guarantee-card {
    padding: var(--space-md) var(--space-sm); /* Reduced from lg sm */
    align-items: center; /* Ensure centered */
    text-align: center;
  }
  
  .guarantee-icon {
    width: 48px;
    height: 48px;
  }
  
  .guarantee-icon svg {
    width: 24px;
    height: 24px;
  }

  .cta-buttons {
    flex-direction: column;
    gap: var(--space-sm);
  }
}


/* Enhanced Reveal Animations */
.reveal {
  opacity: 0;
  filter: blur(10px);
  transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform, opacity, filter;
}

.reveal.from-bottom { transform: translateY(40px); }
.reveal.from-top { transform: translateY(-40px); }
.reveal.from-left { transform: translateX(-40px); }
.reveal.from-right { transform: translateX(40px); }

.reveal.active {
  opacity: 1;
  transform: translate(0, 0) !important;
  filter: blur(0);
}

/* Stagger delays for children */
.stagger-parent > * {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.stagger-parent.active > * {
  opacity: 1;
  transform: translateY(0);
}

.stagger-parent.active > *:nth-child(1) { transition-delay: 100ms; }
.stagger-parent.active > *:nth-child(2) { transition-delay: 200ms; }
.stagger-parent.active > *:nth-child(3) { transition-delay: 300ms; }
.stagger-parent.active > *:nth-child(4) { transition-delay: 400ms; }
.stagger-parent.active > *:nth-child(5) { transition-delay: 500ms; }
.stagger-parent.active > *:nth-child(6) { transition-delay: 600ms; }

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
    filter: blur(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

/* ========================================
   MANUAL SUBTITLES (CUSTOM OVERLAY)
   ======================================== */

.manual-subtitle-overlay {
  position: absolute;
  bottom: 12%;
  left: 50%;
  transform: translateX(-50%);
  width: 85%;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 1.1rem;
  line-height: 1.4;
  text-align: center;
  z-index: 1002;
  pointer-events: none;
  display: none;
  font-weight: 500;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

@media (max-width: 768px) {
  .manual-subtitle-overlay {
    font-size: 0.95rem;
    bottom: 15%;
    padding: 8px 15px;
  }
}

/* ========================================
   TRAVEL ESSENTIALS
   ======================================== */
/* Standard container inherits from .container { max-width: 1140px } */

.essentials-grid {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
  gap: var(--space-md);
  margin-top: var(--space-lg);
  padding: var(--space-sm) var(--space-xs) var(--space-xl);
  overflow-x: auto;
  scrollbar-width: none;
}

.essentials-grid::-webkit-scrollbar {
  display: none;
}

@media (min-width: 1200px) {
  .essentials-grid {
    justify-content: center;
  }
}

.essential-card {
  background: var(--glass-card-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg); 
  padding: 2.25rem 1.25rem !important; 
  transition: var(--transition-bounce);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-md) !important;
  height: 100% !important;
  min-height: 320px !important; /* Increased for better content fit */
  flex: 1 1 0; /* Force equal width for all cards */
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.3);
}

.essential-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-accent);
  opacity: 0.8;
}

.essential-card:hover {
  transform: translateY(-12px); /* Matched with .step-card hover */
  border-color: var(--accent);
  box-shadow: var(--shadow-xl), 0 0 25px rgba(212, 175, 55, 0.2);
}

.essential-icon {
  width: 60px !important; 
  height: 60px !important;
  background: rgba(255, 255, 255, 0.05) !important; /* Unified dark background */
  border-radius: 16px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-xs) !important;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2) !important;
  transition: var(--transition-bounce);
}

.essential-card:hover .essential-icon {
  transform: scale(1.1) rotate(5deg);
  background: rgba(212, 175, 55, 0.1) !important;
}

.icon-blue {
  background: #3b82f6;
}
.icon-purple {
  background: #a855f7;
}
.icon-green {
  background: #10b981;
}
.icon-orange {
  background: #f97316;
}
.icon-red {
  background: #ef4444;
}
.icon-indigo {
  background: #6366f1;
}

.essential-icon svg {
  width: 32px !important;
  height: 32px !important;
  stroke: var(--accent); /* Consistent stroke color */
  fill: none !important; /* Using stroke for clean look */
  filter: drop-shadow(0 0 8px var(--accent-glow));
}

.essential-card h3 {
  font-size: 1.25rem !important;
  font-weight: 800 !important;
  background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 50%, #ffffff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 !important;
  margin-bottom: var(--space-xs) !important;
  filter: 
    drop-shadow(0 0 1px rgba(255, 255, 255, 0.9))
    drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.2));
}

.essential-desc {
  font-size: 0.95rem !important;
  color: var(--text-muted) !important;
  line-height: 1.6 !important;
  margin: 0 !important;
  min-height: 3.2em; /* Ensure same number of lines for all cards */
  display: flex;
  align-items: center;
}

.essential-value {
  display: none !important; /* Hidden as per user request */
}

@media (max-width: 1200px) {
  .essentials-grid {
    grid-template-columns: repeat(6, 1fr); /* Still in one line but smaller gaps */
    gap: var(--space-sm);
  }
}

@media (max-width: 992px) {
  .essentials-grid {
    grid-template-columns: repeat(3, 1fr); /* Break to 3 columns for better fit on tablets */
  }
}

@media (max-width: 768px) {
  .essentials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    overflow-x: visible; /* Override flex scrolling */
    gap: var(--space-sm);
    padding-bottom: 0;
  }
  
  /* Steps Slider Mobile Transformation */
  .how-it-works {
    padding-bottom: 0 !important;
  }
  
  .how-it-works .container {
    padding: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
  }
  
  .how-it-works h2,
  .how-it-works p.text-muted {
    padding: 0 var(--space-md) !important;
  }

  .steps-slider-container {
    padding: 0 !important;
    margin: 0 !important;
    margin-left: calc(-50vw + 50%) !important;
    margin-right: calc(-50vw + 50%) !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory !important;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scroll-padding-left: 5vw !important; /* Math for exact center snap: 100vw - 90vw = 10vw / 2 = 5vw */
    scrollbar-width: none;
    width: 100vw !important;
    max-width: 100vw !important;
    box-sizing: border-box !important;
  }
  
  .steps-slider-container::-webkit-scrollbar {
    display: none;
  }

  .steps-grid {
    display: flex; /* Override grid */
    grid-template-columns: none;
    gap: 10vw !important; /* Gap matching the remaining space so next card is strictly out of view */
    padding: var(--space-md) 5vw !important; /* Top and bottom padding + start/end match scroll-padding */
    margin: 0 !important;
    width: max-content;
    justify-content: flex-start !important;
  }
  
  .step-card {
    flex: 0 0 90vw !important; /* 90% viewport width card */
    max-width: 90vw !important;
    min-width: 90vw !important;
    width: 90vw !important;
    scroll-snap-align: center !important;
    scroll-snap-stop: always !important;
    border-radius: var(--radius-lg) !important; /* Restoring borders */
    margin: 0 !important;
  }

  .step-nav {
    display: none !important;
  }
}

@media (max-width: 600px) {
  .essentials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two columns instead of 1 for more compact view */
    gap: var(--space-sm);
    overflow-x: visible; /* Override flex scrolling */
    padding-bottom: 0;
  }
  .essential-card {
    padding: var(--space-sm) !important;
    min-height: auto !important; /* Let content dictate height on very small screens */
    gap: var(--space-xs) !important;
  }
  .essential-icon {
    width: 40px !important;
    height: 40px !important;
  }
  .essential-icon svg {
    width: 20px !important;
    height: 20px !important;
  }
  .essential-card h3 {
    font-size: 1rem !important;
  }
  .essential-desc {
    font-size: 0.8rem !important;
  }
  
  /* Make the 5th odd card center by spanning across the two columns */
  .essential-card:nth-child(5) {
    grid-column: span 2;
    max-width: 80%; /* Don't stretch it too wide, just center it */
    margin: 0 auto;
    width: 100%;
  }
}

/* ========================================
  WORLD TOURS SECTION
   ======================================== */
.world-tours {
  padding: var(--space-xl) 0;
  overflow: hidden;
}

.world-tours .container,
.wt-slider-wrapper {
  position: relative;
  max-width: 1200px !important;
  margin: 0 auto;
  padding: 0 50px;
}

.wt-slider-container {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.wt-slider-container::-webkit-scrollbar {
  display: none;
}

.wt-slider {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-xs) 0;
}

.wt-card {
  width: calc((100% - (3 * var(--space-md))) / 4) !important;
  flex: 0 0 calc((100% - (3 * var(--space-md))) / 4) !important;
  min-width: calc((100% - (3 * var(--space-md))) / 4) !important;
  height: 320px;
  position: relative;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.wt-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.wt-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--glass-card-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-card-border);
  color: var(--white);
  font-size: 1.25rem;
  cursor: pointer;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-bounce);
  box-shadow: var(--shadow-lg);
}

.wt-nav:hover {
  background: var(--accent);
  color: var(--primary-dark);
  transform: translateY(-50%) scale(1.1);
  border-color: var(--accent);
  box-shadow: var(--shadow-xl), 0 0 20px rgba(212, 175, 55, 0.3);
}

.wt-nav.prev {
  left: 0;
}

.wt-nav.next {
  right: 0;
}

.wt-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wt-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-xl) var(--space-lg) var(--space-lg);
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.wt-card-overlay h3 {
  font-size: 1.1rem;
  margin-bottom: 4px;
  font-family: var(--font-fancy);
  color: var(--white);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5)) drop-shadow(0 0 10px rgba(0, 0, 0, 0.3));
}

.wt-card p {
  font-size: 0.85rem;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .world-tours {
    padding-bottom: 0 !important;
  }

  .world-tours .text-center {
    padding: 0 var(--space-md) !important;
  }
  
  .wt-slider-wrapper {
    position: relative;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
  }
  
  .wt-slider-container {
    padding: 0 !important;
    margin: 0 !important;
    margin-left: calc(-50vw + 50%) !important;
    margin-right: calc(-50vw + 50%) !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory !important;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scroll-padding-left: 5vw !important;
    width: 100vw !important;
    max-width: 100vw !important;
    box-sizing: border-box !important;
    scrollbar-width: none;
  }
  
  .wt-slider-container::-webkit-scrollbar {
    display: none;
  }

  .wt-slider {
    gap: 10vw !important; /* Match gap to hide next card */
    padding: var(--space-md) 5vw !important; /* Start and end padding matching scroll-padding */
    margin: 0 !important;
    width: max-content;
    justify-content: flex-start !important;
  }
  
  .wt-card {
    flex: 0 0 90vw !important; /* 90% card width */
    max-width: 90vw !important;
    min-width: 90vw !important;
    width: 90vw !important;
    height: 300px !important; /* Restore normal height */
    scroll-snap-align: center !important;
    scroll-snap-stop: always !important;
    border-radius: var(--radius-lg) !important; /* Bring back the rounded corners */
    border: none !important;
    box-shadow: var(--shadow-md) !important; /* Restore shadow */
    margin: 0 !important;
  }

  .wt-badge {
    right: var(--space-md) !important; /* Restore badge position */
  }

  .wt-nav {
    display: none !important;
  }
}

/* Badges */
.wt-badge {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  padding: 6px 12px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  z-index: 5;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.wt-badge.hot-deal {
  background: linear-gradient(135deg, #ff4d4d, #f97316);
}

.wt-badge.limited-spots {
  background: linear-gradient(135deg, #f97316, #eab308);
}

  /* Nav Buttons - Hidden on Mobile - REMOVED DUPLICATE */

/* ========================================
   HEADER SCROLL EFFECT
   ======================================== */
.header.scrolled {
  background: rgba(15, 23, 42, 0.95);
  padding: 10px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* ========================================
   WORLD TOURS ANIMATIONS
   ======================================== */
.wt-card {
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.wt-card:hover {
  transform: translateY(-10px) scale(1.02);
}

.wt-card:hover img {
  transform: scale(1.1);
}

.wt-card img {
  transition: transform 0.6s ease;
}

.wt-card-overlay {
  transition: background 0.3s ease;
}

.wt-card:hover .wt-card-overlay {
  background: linear-gradient(transparent, rgba(212, 175, 55, 0.7));
}

/* Theme Ripple Transition */
.theme-ripple {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 2px;
  background: #0f172a;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%) scale(0);
}

.theme-light .theme-ripple {
  background: #f8fafc;
}

.theme-ripple.animate {
  animation: ripple-out 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes ripple-out {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(2500);
    opacity: 0;
  }
}

@keyframes boxShine {
  0% {
    left: -100%;
  }
  20% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}
