/**
 * Exploria - Luxury Travel & Resorts Page Styles
 * Version: 2.0.0
 * 
 * Features:
 * - Complete Design System with CSS Variables
 * - 25 Animation Classes with IntersectionObserver
 * - Parallax Systems
 * - Travel Visual Effects (Particles, Stars, Clouds, Globe)
 * - 3D Card Tilt Effects
 * - Magnetic Buttons & Ripple Effects
 * - Dark Mode & RTL Support
 * - Accessibility (Reduced Motion)
 * - Responsive Performance Optimization
 */

/* ================================================================
   1. CSS VARIABLES - DESIGN TOKENS
   ================================================================ */
:root {
    /* Primary Colors */
    --color-primary: #0F4C5C;
    --color-primary-dark: #0A3540;
    --color-primary-light: #1A6B7C;
    --color-secondary: #2E5D4B;
    --color-secondary-dark: #1E3D32;
    --color-secondary-light: #3E7D5B;
    
    /* Blue Palette */
    --color-blue-deep: #1E3A8A;
    --color-blue-light: #3B82F6;
    
    /* Sun Palette */
    --color-yellow-warm: #D97706;
    --color-yellow-light: #FCD34D;
    --color-accent: #D97706;
    
    /* Neutrals */
    --color-text-main: #1F2937;
    --color-text-muted: #6B7280;
    --color-text-light: #9CA3AF;
    --color-bg-main: #FFFFFF;
    --color-bg-offset: #F9FAFB;
    --color-bg-surface: #F3F4F6;
    --color-bg-dark: #111827;
    --color-border: #E5E7EB;
    --color-border-light: #F3F4F6;
    
    /* Typography */
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Manrope', 'Inter', sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
    
    /* Font Sizes */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-h4: 1.5rem;
    --text-h3: 1.875rem;
    --text-h2: 2.25rem;
    --text-h1: 3rem;
    --text-hero: 4.5rem;
    
    /* Spacing (8px grid) */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    
    /* Animation */
    --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
    --ease-in-out-quart: cubic-bezier(0.76, 0, 0.24, 1);
    --duration-fast: 0.2s;
    --duration-normal: 0.4s;
    --duration-slow: 0.6s;
    --duration-slower: 0.8s;
    --duration-slowest: 1.2s;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 40px rgba(217, 119, 6, 0.3);
    
    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Z-Index Scale */
    --z-base: 1;
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-modal: 300;
    --z-loader: 400;
    --z-tooltip: 500;
}

/* Dark Mode Variables */
[data-theme="dark"],
.dark-mode {
    --color-text-main: #F9FAFB;
    --color-text-muted: #9CA3AF;
    --color-text-light: #6B7280;
    --color-bg-main: #111827;
    --color-bg-offset: #1F2937;
    --color-bg-surface: #374151;
    --color-bg-dark: #0D1117;
    --color-border: #374151;
    --color-border-light: #1F2937;
}

/* ================================================================
   2. BASE STYLES
   ================================================================ */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--color-text-main);
    background-color: var(--color-bg-main);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-text-main);
}

.serif {
    font-family: var(--font-serif);
    font-weight: 500;
}

.text-accent { color: var(--color-accent); }
.text-muted { color: var(--color-text-muted); }
.text-white { color: #FFFFFF; }
.text-center { text-align: center; }
.text-lg { font-size: var(--text-lg); }
.text-sm { font-size: var(--text-sm); }

/* Container System */
.container {
    width: 100%;
    max-width: 1280px;
    margin-inline: auto;
    padding-inline: var(--space-6);
}

.container-narrow {
    max-width: 800px;
}

.container-wide {
    max-width: 1440px;
}

.container-site {
    max-width: 1200px;
}

/* Section Spacing */
.section-sm {
    padding-block: var(--space-8);
}

.section-lg {
    padding-block: var(--space-20);
}

/* Background Utilities */
.bg-surface {
    background-color: var(--color-bg-surface);
}

.bg-primary-dark {
    background-color: var(--color-primary-dark);
}

.bg-primary {
    background-color: var(--color-primary);
}

/* Screen Reader Only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ================================================================
   3. PAGE LOADER - CINEMATIC
   ================================================================ */
#we-page-loader {
    position: fixed;
    inset: 0;
    z-index: var(--z-loader);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
    transition: opacity 0.6s var(--ease-out-expo), visibility 0.6s;
}

#we-page-loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.we-loader-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.we-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--color-yellow-light);
    border-radius: 50%;
    opacity: 0.6;
    animation: particleFloat 8s infinite ease-in-out;
}

.we-particle--1 { top: 20%; left: 10%; animation-delay: 0s; }
.we-particle--2 { top: 60%; left: 80%; animation-delay: 1s; }
.we-particle--3 { top: 40%; left: 30%; animation-delay: 2s; }
.we-particle--4 { top: 80%; left: 60%; animation-delay: 3s; }
.we-particle--5 { top: 30%; left: 90%; animation-delay: 4s; }

@keyframes particleFloat {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
    25% { transform: translate(20px, -30px) scale(1.2); opacity: 0.8; }
    50% { transform: translate(-10px, -50px) scale(0.8); opacity: 0.4; }
    75% { transform: translate(30px, -20px) scale(1.1); opacity: 0.7; }
}

.we-loader-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: var(--space-10);
}

.we-loader-decoration {
    display: flex;
    justify-content: center;
    gap: var(--space-2);
    margin-bottom: var(--space-4);
}

.we-loader-decoration span {
    width: 40px;
    height: 2px;
    background: var(--color-yellow-light);
    opacity: 0.5;
    animation: decorationPulse 2s infinite ease-in-out;
}

.we-loader-decoration span:nth-child(2) { animation-delay: 0.2s; }
.we-loader-decoration span:nth-child(3) { animation-delay: 0.4s; }

@keyframes decorationPulse {
    0%, 100% { opacity: 0.3; width: 40px; }
    50% { opacity: 1; width: 60px; }
}

.we-loader-decoration--bottom {
    margin-top: var(--space-4);
    margin-bottom: 0;
}

.we-loader-title {
    position: relative;
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 500;
    color: #FFFFFF;
    margin-bottom: var(--space-2);
}

.we-loader-title-text {
    position: relative;
    z-index: 1;
}

.we-loader-title-glow {
    position: absolute;
    inset: 0;
    color: var(--color-yellow-light);
    filter: blur(20px);
    opacity: 0.5;
    animation: titleGlow 3s infinite ease-in-out;
}

@keyframes titleGlow {
    0%, 100% { opacity: 0.3; filter: blur(20px); }
    50% { opacity: 0.6; filter: blur(30px); }
}

.we-loader-tagline {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: var(--space-6);
}

.we-loader-dots {
    display: flex;
    justify-content: center;
    gap: var(--space-2);
    margin-bottom: var(--space-6);
}

.we-dot {
    width: 8px;
    height: 8px;
    background: var(--color-yellow-warm);
    border-radius: 50%;
    animation: dotPulse 1.5s infinite ease-in-out;
}

.we-dot--1 { animation-delay: 0s; }
.we-dot--2 { animation-delay: 0.2s; }
.we-dot--3 { animation-delay: 0.4s; }

@keyframes dotPulse {
    0%, 80%, 100% { transform: scale(0.6); opacity: 0.5; }
    40% { transform: scale(1); opacity: 1; }
}

.we-loader-progress {
    width: 200px;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    overflow: hidden;
    margin-inline: auto;
}

.we-loader-progress-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--color-yellow-warm), var(--color-yellow-light));
    border-radius: var(--radius-full);
    animation: progressFill 2.5s ease-out forwards;
}

@keyframes progressFill {
    0% { width: 0%; }
    100% { width: 100%; }
}

.we-loader-corner {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.we-loader-corner--tl { top: var(--space-6); left: var(--space-6); border-right: none; border-bottom: none; }
.we-loader-corner--tr { top: var(--space-6); right: var(--space-6); border-left: none; border-bottom: none; }
.we-loader-corner--bl { bottom: var(--space-6); left: var(--space-6); border-right: none; border-top: none; }
.we-loader-corner--br { bottom: var(--space-6); right: var(--space-6); border-left: none; border-top: none; }

/* ================================================================
   4. CINEMATIC HERO SYSTEM
   ================================================================ */
.section-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg-wrapper {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg {
    position: absolute;
    inset: -20%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    will-change: transform;
}

.hero-bg-zoom {
    position: absolute;
    inset: 0;
    animation: heroZoom 20s ease-out forwards;
}

@keyframes heroZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-overlay-gradient {
    background: linear-gradient(
        180deg,
        rgba(15, 76, 92, 0.4) 0%,
        rgba(15, 76, 92, 0.6) 50%,
        rgba(15, 76, 92, 0.8) 100%
    );
}

.hero-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
}

/* Floating Elements */
.hero-floating-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.float-element {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(252, 211, 77, 0.3) 0%, transparent 70%);
    filter: blur(1px);
}

.float-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 5%;
    animation: floatSlow 8s ease-in-out infinite;
}

.float-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 10%;
    animation: floatMedium 6s ease-in-out infinite;
}

.float-3 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 20%;
    animation: floatFast 4s ease-in-out infinite;
}

@keyframes floatSlow {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -20px); }
}

@keyframes floatMedium {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-20px, 30px); }
}

@keyframes floatFast {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(15px, 25px); }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: var(--space-6);
}

.badge {
    display: inline-block;
    padding: var(--space-2) var(--space-4);
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border-radius: var(--radius-full);
}

.badge-gold {
    background: linear-gradient(135deg, var(--color-yellow-warm), var(--color-yellow-light));
    color: var(--color-primary-dark);
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 8vw, var(--text-hero));
    font-weight: 500;
    color: #FFFFFF;
    margin-bottom: var(--space-6);
    line-height: 1.1;
}

.title-line {
    display: block;
    overflow: hidden;
}

.title-word {
    display: inline-block;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, var(--text-lg));
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin-inline: auto;
    margin-bottom: var(--space-8);
}

.hero-actions {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
}

/* Hero Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: var(--space-8);
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--text-sm);
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-full);
    margin-inline: auto var(--space-2);
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: var(--radius-full);
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite ease-in-out;
}

@keyframes scrollWheel {
    0%, 100% { opacity: 1; top: 8px; }
    50% { opacity: 0.3; top: 20px; }
}

/* ================================================================
   5. AWARDS STRIP
   ================================================================ */
.awards-strip {
    background: var(--color-bg-offset);
    border-bottom: 1px solid var(--color-border-light);
}

.awards-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-10);
    flex-wrap: wrap;
}

.award-logo {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    opacity: 0.7;
    transition: opacity var(--duration-normal) ease;
}

.award-logo:hover {
    opacity: 1;
}

/* ================================================================
   6. FEATURED RESORTS - 3D CARDS
   ================================================================ */
.section-header {
    max-width: 600px;
    margin-inline: auto;
}

.section-label {
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, var(--text-h2));
    color: var(--color-text-main);
}

.resorts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-8);
}

.resort-card {
    background: var(--color-bg-main);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: transform var(--duration-slow) var(--ease-out-expo),
                box-shadow var(--duration-slow) ease;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.resort-card:hover {
    box-shadow: var(--shadow-2xl);
}

.card-media {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--duration-slower) var(--ease-out-expo);
}

.resort-card:hover .card-media img {
    transform: scale(1.08);
}

.card-badge {
    position: absolute;
    top: var(--space-4);
    right: var(--space-4);
    padding: var(--space-1) var(--space-3);
    background: var(--color-yellow-warm);
    color: #FFFFFF;
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-full);
    z-index: 2;
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.4) 100%);
    opacity: 0;
    transition: opacity var(--duration-normal) ease;
}

.resort-card:hover .card-overlay {
    opacity: 1;
}

.card-body {
    padding: var(--space-6);
}

.card-body h3 {
    font-size: var(--text-h4);
    margin-bottom: var(--space-3);
}

.card-body h3 a {
    color: var(--color-text-main);
    text-decoration: none;
    transition: color var(--duration-fast) ease;
}

.card-body h3 a:hover {
    color: var(--color-accent);
}

.card-body p {
    color: var(--color-text-muted);
    margin-bottom: var(--space-4);
    line-height: 1.6;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-3);
    font-size: var(--text-sm);
}

.card-meta .location {
    color: var(--color-text-muted);
}

.card-meta .price {
    color: var(--color-accent);
    font-weight: 600;
}

.link-text {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--color-primary);
    font-weight: 500;
    text-decoration: none;
    transition: gap var(--duration-normal) ease;
}

.link-text:hover {
    gap: var(--space-3);
}

.link-text .arrow {
    transition: transform var(--duration-normal) ease;
}

.link-text:hover .arrow {
    transform: translateX(4px);
}

/* ================================================================
   16. SIGNATURE EXPERIENCES (Premium Cinematic)
   ================================================================ */
.section-experiences {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #FFFFFF 0%, var(--color-bg-surface) 50%, #FFFFFF 100%);
}

.section-xl {
    padding-block: var(--space-24);
}

.position-relative {
    position: relative;
}

.max-w-2xl {
    max-width: 42rem;
}

/* Background Elements */
.exp-bg-wrapper {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.exp-bg-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 20%, rgba(15, 76, 92, 0.03) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 80%, rgba(217, 119, 6, 0.03) 0%, transparent 50%);
}

.exp-bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.02;
    background-image: radial-gradient(circle at 2px 2px, var(--color-primary) 1px, transparent 0);
    background-size: 60px 60px;
}

/* Section Header */
.exp-section-header {
    position: relative;
    z-index: 2;
}

/* Row Layout */
.exp-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
    position: relative;
    z-index: 1;
}

.exp-row--reverse {
    direction: rtl;
}

.exp-row--reverse > * {
    direction: ltr;
}

/* Image Column */
.exp-img-col {
    position: relative;
}

.exp-media-wrapper {
    position: relative;
    z-index: 2;
}

.exp-media-parallax {
    position: relative;
    will-change: transform;
    transition: transform 0.1s linear;
}

.exp-media-frame {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(0, 0, 0, 0.03);
    aspect-ratio: 4/3;
    transition: box-shadow var(--duration-slower) var(--ease-out-expo);
}

.exp-media-frame--wide {
    aspect-ratio: 16/10;
}

.exp-media-wrapper:hover .exp-media-frame {
    box-shadow: 
        0 35px 60px -15px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(0, 0, 0, 0.05),
        0 0 60px rgba(15, 76, 92, 0.1);
}

.exp-media-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--duration-slowest) var(--ease-out-expo);
}

.exp-media-wrapper:hover .exp-media-image {
    transform: scale(1.05);
}

.exp-media-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(15, 76, 92, 0.1) 0%,
        transparent 50%,
        rgba(0, 0, 0, 0.2) 100%
    );
    pointer-events: none;
}

/* Media Glow Effect */
.exp-media-glow {
    position: absolute;
    inset: -30%;
    background: radial-gradient(circle at center, rgba(217, 119, 6, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity var(--duration-slower) ease;
    pointer-events: none;
    z-index: -1;
}

.exp-media-wrapper:hover .exp-media-glow {
    opacity: 1;
}

/* Floating Badge */
.exp-floating-badge {
    position: absolute;
    bottom: -12px;
    left: var(--space-6);
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background: #FFFFFF;
    border-radius: var(--radius-full);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-primary);
    z-index: 10;
    transition: transform var(--duration-normal) var(--ease-out-expo);
}

.exp-floating-badge:hover {
    transform: translateY(-3px);
}

.exp-floating-badge svg {
    color: var(--color-primary);
}

.exp-floating-badge--gold {
    background: linear-gradient(135deg, var(--color-yellow-warm), var(--color-yellow-light));
    color: #FFFFFF;
}

.exp-floating-badge--gold svg {
    color: #FFFFFF;
}

.exp-floating-badge--adventure {
    background: var(--color-secondary);
    color: #FFFFFF;
}

.exp-floating-badge--adventure svg {
    color: #FFFFFF;
}

.exp-row--reverse .exp-floating-badge {
    left: auto;
    right: var(--space-6);
}

/* Decorative Corner */
.exp-corner {
    position: absolute;
    width: 80px;
    height: 80px;
    pointer-events: none;
    z-index: 5;
}

.exp-corner::before,
.exp-corner::after {
    content: '';
    position: absolute;
    background: var(--color-accent);
}

.exp-corner--tr {
    top: -8px;
    right: -8px;
}
.exp-corner--tr::before {
    top: 0;
    right: 0;
    width: 40px;
    height: 2px;
}
.exp-corner--tr::after {
    top: 0;
    right: 0;
    width: 2px;
    height: 40px;
}

.exp-corner--bl {
    bottom: -8px;
    left: -8px;
}
.exp-corner--bl::before {
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
}
.exp-corner--bl::after {
    bottom: 0;
    left: 0;
    width: 2px;
    height: 40px;
}

.exp-corner--br {
    bottom: -8px;
    right: -8px;
}
.exp-corner--br::before {
    bottom: 0;
    right: 0;
    width: 40px;
    height: 2px;
}
.exp-corner--br::after {
    bottom: 0;
    right: 0;
    width: 2px;
    height: 40px;
}

/* Image Stack Effect */
.exp-media-stack {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: -1;
}

.exp-stack-item {
    position: absolute;
    inset: 0;
    border-radius: var(--radius-2xl);
    border: 2px solid var(--color-border);
}

.exp-stack-item--1 {
    transform: translate(12px, 12px);
    opacity: 0.5;
}

.exp-stack-item--2 {
    transform: translate(24px, 24px);
    opacity: 0.25;
}

/* Text Column */
.exp-text-col {
    position: relative;
}

.exp-text-content {
    padding: var(--space-4);
}

.exp-category {
    display: inline-block;
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: var(--space-3);
}

.exp-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 500;
    color: var(--color-text-main);
    margin-bottom: var(--space-4);
    line-height: 1.2;
}

.exp-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    border-radius: var(--radius-full);
    margin-bottom: var(--space-6);
    transform-origin: left;
}

.exp-description {
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: var(--space-8);
}

/* Features List */
.exp-features {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-8) 0;
}

.exp-feature {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-2) 0;
    font-size: var(--text-base);
    color: var(--color-text-main);
}

.exp-feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: #FFFFFF;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Highlights */
.exp-highlights {
    display: flex;
    gap: var(--space-8);
    margin-bottom: var(--space-8);
}

.exp-highlight {
    text-align: center;
}

.exp-highlight-number {
    display: block;
    font-family: var(--font-serif);
    font-size: var(--text-h2);
    font-weight: 500;
    color: var(--color-primary);
    line-height: 1;
}

.exp-highlight-label {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
}

/* Adventure Icons */
.exp-adventure-icons {
    display: flex;
    gap: var(--space-4);
    margin-bottom: var(--space-8);
}

.exp-icon-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: var(--color-bg-surface);
    border-radius: var(--radius-xl);
    color: var(--color-primary);
    transition: all var(--duration-normal) var(--ease-out-expo);
    cursor: pointer;
}

.exp-icon-item:hover {
    background: var(--color-primary);
    color: #FFFFFF;
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

/* CTA Button */
.exp-cta {
    margin-top: var(--space-4);
}

/* Decorative Elements */
.exp-decorations {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.exp-decoration {
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
}

.exp-decoration--1 {
    width: 400px;
    height: 400px;
    top: 10%;
    left: -10%;
    background: var(--color-primary);
}

.exp-decoration--2 {
    width: 300px;
    height: 300px;
    top: 50%;
    right: -5%;
    background: var(--color-accent);
}

.exp-decoration--3 {
    width: 250px;
    height: 250px;
    bottom: 10%;
    left: 20%;
    background: var(--color-secondary);
}

/* Scale X Animation */
.anim-scale-x {
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--duration-slower) var(--ease-out-expo);
}

.anim-scale-x.is-visible {
    transform: scaleX(1);
}

.exp-row--reverse .anim-scale-x {
    transform-origin: right;
}

/* Responsive */
@media (max-width: 1024px) {
    .exp-row {
        grid-template-columns: 1fr;
        gap: var(--space-10);
    }
    
    .exp-row--reverse {
        direction: ltr;
    }
    
    .exp-media-frame {
        aspect-ratio: 16/10;
    }
}

@media (max-width: 768px) {
    .section-xl {
        padding-block: var(--space-16);
    }
    
    .exp-row {
        gap: var(--space-8);
    }
    
    .exp-text-content {
        padding: var(--space-2) 0;
    }
    
    .exp-highlights {
        flex-direction: column;
        gap: var(--space-4);
    }
    
    .exp-corner {
        display: none;
    }
    
    .exp-media-stack {
        display: none;
    }
    
    .exp-decorations {
        display: none;
    }
}

/* Dark Mode */
[data-theme="dark"],
.dark-mode {
    .section-experiences {
        background: linear-gradient(180deg, var(--color-bg-main) 0%, var(--color-bg-offset) 50%, var(--color-bg-main) 100%);
    }
    
    .exp-media-frame {
        box-shadow: 
            0 25px 50px -12px rgba(0, 0, 0, 0.4),
            0 0 0 1px rgba(255, 255, 255, 0.05);
    }
    
    .exp-floating-badge {
        background: var(--color-bg-offset);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }
    
    .exp-stack-item {
        border-color: var(--color-border);
    }
    
    .exp-icon-item {
        background: var(--color-bg-offset);
    }
    
    .exp-title {
        color: var(--color-text-main);
    }
}
/* ================================================================
   8. DESTINATIONS SLIDER
   ================================================================ */
.destination-slider-wrapper {
    position: relative;
    overflow: hidden;
}

.destination-slider {
    display: flex;
    gap: var(--space-6);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding-bottom: var(--space-4);
    scrollbar-width: none;
}

.destination-slider::-webkit-scrollbar {
    display: none;
}

.slide-item {
    flex: 0 0 300px;
    scroll-snap-align: start;
    position: relative;
    height: 420px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
}

.slide-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--duration-slower) var(--ease-out-expo);
}

.slide-item:hover img {
    transform: scale(1.1);
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.7) 100%);
}

.slide-content {
    position: absolute;
    bottom: var(--space-6);
    left: var(--space-6);
    color: #FFFFFF;
}

.slide-content h3 {
    font-size: var(--text-h4);
    color: #FFFFFF;
    margin-bottom: var(--space-1);
}

.slide-content p {
    font-size: var(--text-sm);
    opacity: 0.8;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: var(--space-4);
    margin-top: var(--space-8);
}

.slider-prev,
.slider-next {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--color-bg-main);
    border: 1px solid var(--color-border);
    border-radius: 50%;
    color: var(--color-text-main);
    cursor: pointer;
    transition: all var(--duration-normal) ease;
}

.slider-prev:hover,
.slider-next:hover {
    background: var(--color-primary);
    color: #FFFFFF;
    border-color: var(--color-primary);
}

/* ================================================================
   9. AIRPLANE ROUTES SECTION
   ================================================================ */
.section-routes {
    position: relative;
    overflow: hidden;
}

.routes-map-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin-inline: auto;
}

.map-route {
    width: 100%;
    height: auto;
    min-height: 400px;
}

.airplane-path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    transition: stroke-dashoffset 2s var(--ease-out-expo);
}

.airplane-path.animated {
    stroke-dashoffset: 0;
}

.dest-point {
    transition: all var(--duration-normal) ease;
}

.dest-point:hover {
    r: 12;
}

.route-labels {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.route-label {
    position: absolute;
    padding: var(--space-2) var(--space-3);
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-md);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--color-text-main);
    box-shadow: var(--shadow-md);
    white-space: nowrap;
    opacity: 0;
    transform: translateY(10px);
    transition: all var(--duration-normal) ease;
}

.route-label.visible {
    opacity: 1;
    transform: translateY(0);
}

.route-label--ny { top: 38%; left: 14%; }
.route-label--london { top: 28%; left: 35%; }
.route-label--tokyo { top: 25%; left: 72%; }
.route-label--maldives { top: 45%; left: 80%; }
.route-label--borabora { top: 62%; left: 85%; }
.route-label--paris { top: 32%; left: 26%; }

/* Airplane Animation */
.airplane-icon {
    opacity: 0;
    transition: opacity var(--duration-normal) ease;
}

.airplane-icon.animated {
    opacity: 1;
    animation: flyPath 4s linear infinite;
}

@keyframes flyPath {
    0% { offset-distance: 0%; }
    100% { offset-distance: 100%; }
}

/* ================================================================
   10. SUSTAINABILITY SECTION
   ================================================================ */
.parallax-section {
    position: relative;
    overflow: hidden;
}

.sustainability-bg {
    position: absolute;
    inset: -20%;
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-secondary-dark) 100%);
    background-size: cover;
    background-position: center;
    will-change: transform;
}

.sustainability-stats {
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 500;
    margin-bottom: var(--space-2);
}

.stat-label {
    font-size: var(--text-sm);
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ================================================================
   11. TRAVEL GALLERY
   ================================================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-4);
}

.gallery-item {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--duration-slower) var(--ease-out-expo);
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(15, 76, 92, 0.8) 100%);
    display: flex;
    align-items: flex-end;
    padding: var(--space-4);
    opacity: 0;
    transition: opacity var(--duration-normal) ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-caption {
    color: #FFFFFF;
    font-size: var(--text-sm);
    font-weight: 500;
    transform: translateY(10px);
    transition: transform var(--duration-normal) ease;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

/* ================================================================
   12. TESTIMONIALS
   ================================================================ */
.testimonial-editorial {
    text-align: center;
    max-width: 700px;
    margin-inline: auto;
}

.quote-icon {
    font-family: var(--font-serif);
    font-size: 6rem;
    line-height: 1;
    color: var(--color-accent);
    opacity: 0.3;
    margin-bottom: var(--space-4);
}

.testimonial-author {
    display: block;
    margin-top: var(--space-6);
    font-style: normal;
}

.testimonial-author .name {
    display: block;
    font-weight: 600;
    color: var(--color-text-main);
    margin-bottom: var(--space-1);
}

.testimonial-author .location {
    font-size: var(--text-sm);
}

.testimonials-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-8);
}

.testimonial-card {
    background: var(--color-bg-main);
    padding: var(--space-8);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-border-light);
}

.testimonial-quote {
    font-size: var(--text-lg);
    color: var(--color-text-main);
    margin-bottom: var(--space-4);
    line-height: 1.5;
}

.testimonial-rating {
    color: var(--color-yellow-warm);
    font-size: var(--text-lg);
    margin-bottom: var(--space-4);
}

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-4);
    border-top: 1px solid var(--color-border-light);
}

.testimonial-author-name {
    font-weight: 600;
    color: var(--color-text-main);
}

.testimonial-location {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
}

/* ================================================================
   13. 3D GLOBE SECTION
   ================================================================ */
.globe-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: center;
}

.globe-stats {
    display: flex;
    gap: var(--space-8);
    margin-top: var(--space-6);
}

.globe-stat {
    text-align: center;
}

.globe-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.travel-globe {
    width: 400px;
    height: 400px;
    position: relative;
}

.globe-css-fallback {
    width: 100%;
    height: 100%;
    position: relative;
}

.globe-sphere {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-blue-deep) 0%, var(--color-primary) 50%, var(--color-secondary) 100%);
    animation: globeRotate 30s linear infinite;
    box-shadow: 
        inset -30px -30px 60px rgba(0, 0, 0, 0.4),
        inset 20px 20px 40px rgba(255, 255, 255, 0.1),
        0 0 60px rgba(59, 130, 246, 0.3);
}

.globe-atmosphere {
    position: absolute;
    inset: -20px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid rgba(59, 130, 246, 0.2);
    animation: atmospherePulse 4s ease-in-out infinite;
}

.globe-grid {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 40px 40px;
    animation: globeRotate 30s linear infinite;
    mask-image: radial-gradient(circle at center, black 40%, transparent 70%);
    -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 70%);
}

@keyframes globeRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes atmospherePulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.02); }
}

/* ================================================================
   14. CONCIERGE SECTION
   ================================================================ */
.concierge-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: center;
}

.form-box {
    background: var(--color-bg-main);
    padding: var(--space-8);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.form-box h4 {
    font-size: var(--text-h4);
    color: var(--color-text-main);
}

.form-group {
    margin-bottom: var(--space-4);
}

.form-input,
.form-select {
    width: 100%;
    padding: var(--space-3) var(--space-4);
    font-size: var(--text-base);
    font-family: var(--font-body);
    color: var(--color-text-main);
    background: var(--color-bg-main);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: border-color var(--duration-fast) ease,
                box-shadow var(--duration-fast) ease;
}

.form-input:focus,
.form-select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(15, 76, 92, 0.1);
}

.form-input::placeholder {
    color: var(--color-text-light);
}

/* ================================================================
   15. NEWSLETTER SECTION
   ================================================================ */
.section-newsletter {
    position: relative;
    overflow: hidden;
}

.newsletter-bg {
    position: absolute;
    inset: -20%;
    background-size: cover;
    background-position: center;
    will-change: transform;
}

.newsletter-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 76, 92, 0.9) 0%, rgba(30, 58, 138, 0.85) 100%);
}

.newsletter-inline {
    display: flex;
    gap: var(--space-4);
    max-width: 500px;
    margin-inline: auto;
}

.newsletter-inline .form-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    color: #FFFFFF;
}

.newsletter-inline .form-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-inline .form-input:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--color-yellow-warm);
}

/* ================================================================
   16. PARALLAX CLOUDS
   ================================================================ */
.parallax-clouds {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.cloud {
    position: absolute;
    width: 400px;
    height: 150px;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(20px);
    opacity: 0.5;
}

.cloud-1 {
    top: 20%;
    left: -10%;
    animation: cloudDrift 60s linear infinite;
}

.cloud-2 {
    top: 50%;
    right: -10%;
    animation: cloudDrift 80s linear infinite reverse;
}

.cloud-3 {
    top: 70%;
    left: 30%;
    animation: cloudDrift 70s linear infinite;
}

@keyframes cloudDrift {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(100vw + 400px)); }
}

/* ================================================================
   17. CTA BOOKING
   ================================================================ */
.cta-booking {
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: -20%;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    will-change: transform;
}

/* ================================================================
   18. BUTTONS - MAGNETIC & RIPPLE
   ================================================================ */
.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-6);
    font-family: var(--font-body);
    font-size: var(--text-base);
    font-weight: 500;
    text-decoration: none;
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    cursor: pointer;
    overflow: hidden;
    transition: all var(--duration-normal) var(--ease-out-expo);
}

.btn-text {
    position: relative;
    z-index: 2;
}

.btn-ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: scale(0);
    pointer-events: none;
}

.btn-ripple.active {
    animation: rippleEffect 0.6s ease-out;
}

@keyframes rippleEffect {
    0% { transform: scale(0); opacity: 1; }
    100% { transform: scale(4); opacity: 0; }
}

.btn-primary {
    background: var(--color-primary);
    color: #FFFFFF;
    border-color: var(--color-primary);
}

.btn-primary:hover {
    background: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-accent {
    background: var(--color-accent);
    color: #FFFFFF;
    border-color: var(--color-accent);
}

.btn-accent:hover {
    background: var(--color-yellow-warm);
    border-color: var(--color-yellow-warm);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-white-outline {
    background: transparent;
    color: #FFFFFF;
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-white-outline:hover {
    background: #FFFFFF;
    color: var(--color-primary);
    border-color: #FFFFFF;
}

.btn-lg {
    padding: var(--space-4) var(--space-8);
    font-size: var(--text-lg);
}

/* Magnetic Button Effect */
.btn-magnetic {
    transition: transform var(--duration-fast) var(--ease-out-expo);
}

/* ================================================================
   19. SCROLL PROGRESS INDICATOR
   ================================================================ */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(15, 76, 92, 0.1);
    z-index: var(--z-sticky);
    pointer-events: none;
}

.scroll-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    width: 0%;
    transition: width 0.1s linear;
}

/* ================================================================
   20. BACK TO TOP BUTTON
   ================================================================ */
.back-to-top {
    position: fixed;
    bottom: var(--space-8);
    right: var(--space-8);
    width: 48px;
    height: 48px;
    background: var(--color-primary);
    color: #FFFFFF;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--duration-normal) var(--ease-out-expo);
    z-index: var(--z-sticky);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--color-primary-dark);
    transform: translateY(-4px);
}

/* ================================================================
   21. TRAVEL PARTICLES CANVAS
   ================================================================ */
.travel-particles {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.6;
}

/* ================================================================
   22. TRAVEL STAR FIELD
   ================================================================ */
.travel-stars {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

/* ================================================================
   23. ANIMATION CLASSES (25 Total)
   ================================================================ */

/* Base Animation State */
[class*="anim-"] {
    opacity: 0;
    will-change: transform, opacity;
}

[class*="anim-"].is-visible {
    opacity: 1;
}

/* Fade Animations */
.anim-fade-up {
    transform: translateY(60px);
    transition: opacity var(--duration-slower) var(--ease-out-expo),
                transform var(--duration-slower) var(--ease-out-expo);
}

.anim-fade-up.is-visible {
    transform: translateY(0);
}

.anim-fade-down {
    transform: translateY(-60px);
    transition: opacity var(--duration-slower) var(--ease-out-expo),
                transform var(--duration-slower) var(--ease-out-expo);
}

.anim-fade-down.is-visible {
    transform: translateY(0);
}

.anim-fade-in {
    transition: opacity var(--duration-slower) var(--ease-out-expo);
}

.anim-fade-in.is-visible {
    opacity: 1;
}

.anim-fade-out {
    opacity: 1;
    transition: opacity var(--duration-slower) var(--ease-out-expo);
}

.anim-fade-out.is-visible {
    opacity: 0;
}

/* Slide Animations */
.anim-slide-left {
    transform: translateX(-100px);
    transition: opacity var(--duration-slower) var(--ease-out-expo),
                transform var(--duration-slower) var(--ease-out-expo);
}

.anim-slide-left.is-visible {
    transform: translateX(0);
}

.anim-slide-right {
    transform: translateX(100px);
    transition: opacity var(--duration-slower) var(--ease-out-expo),
                transform var(--duration-slower) var(--ease-out-expo);
}

.anim-slide-right.is-visible {
    transform: translateX(0);
}

.anim-slide-up {
    transform: translateY(100px);
    transition: opacity var(--duration-slower) var(--ease-out-expo),
                transform var(--duration-slower) var(--ease-out-expo);
}

.anim-slide-up.is-visible {
    transform: translateY(0);
}

.anim-slide-down {
    transform: translateY(-100px);
    transition: opacity var(--duration-slower) var(--ease-out-expo),
                transform var(--duration-slower) var(--ease-out-expo);
}

.anim-slide-down.is-visible {
    transform: translateY(0);
}

/* Scale Animations */
.anim-scale-in {
    transform: scale(0.8);
    transition: opacity var(--duration-slower) var(--ease-out-expo),
                transform var(--duration-slower) var(--ease-out-expo);
}

.anim-scale-in.is-visible {
    transform: scale(1);
}

.anim-scale-out {
    transform: scale(1.2);
    transition: opacity var(--duration-slower) var(--ease-out-expo),
                transform var(--duration-slower) var(--ease-out-expo);
}

.anim-scale-out.is-visible {
    transform: scale(1);
}

/* Zoom Animations */
.anim-zoom-in {
    transform: scale(0.5);
    transition: opacity var(--duration-slower) var(--ease-out-expo),
                transform var(--duration-slower) var(--ease-out-expo);
}

.anim-zoom-in.is-visible {
    transform: scale(1);
}

.anim-zoom-out {
    transform: scale(1.5);
    transition: opacity var(--duration-slower) var(--ease-out-expo),
                transform var(--duration-slower) var(--ease-out-expo);
}

.anim-zoom-out.is-visible {
    transform: scale(1);
}

/* Rotate Animations */
.anim-rotate-in {
    transform: rotate(-10deg) scale(0.9);
    transition: opacity var(--duration-slower) var(--ease-out-expo),
                transform var(--duration-slower) var(--ease-out-expo);
}

.anim-rotate-in.is-visible {
    transform: rotate(0deg) scale(1);
}

.anim-rotate-out {
    transform: rotate(10deg) scale(0.9);
    transition: opacity var(--duration-slower) var(--ease-out-expo),
                transform var(--duration-slower) var(--ease-out-expo);
}

.anim-rotate-out.is-visible {
    transform: rotate(0deg) scale(1);
}

/* Blur Animations */
.anim-blur-in {
    filter: blur(20px);
    transform: scale(0.95);
    transition: opacity var(--duration-slower) var(--ease-out-expo),
                filter var(--duration-slower) var(--ease-out-expo),
                transform var(--duration-slower) var(--ease-out-expo);
}

.anim-blur-in.is-visible {
    filter: blur(0);
    transform: scale(1);
}

.anim-blur-out {
    filter: blur(0);
    transition: opacity var(--duration-slower) var(--ease-out-expo),
                filter var(--duration-slower) var(--ease-out-expo);
}

.anim-blur-out.is-visible {
    filter: blur(20px);
}

/* Flip Animations */
.anim-flip-x {
    transform: perspective(1000px) rotateX(90deg);
    transition: opacity var(--duration-slower) var(--ease-out-expo),
                transform var(--duration-slower) var(--ease-out-expo);
}

.anim-flip-x.is-visible {
    transform: perspective(1000px) rotateX(0deg);
}

.anim-flip-y {
    transform: perspective(1000px) rotateY(90deg);
    transition: opacity var(--duration-slower) var(--ease-out-expo),
                transform var(--duration-slower) var(--ease-out-expo);
}

.anim-flip-y.is-visible {
    transform: perspective(1000px) rotateY(0deg);
}

/* Reveal Mask Animation */
.anim-reveal-mask {
    clip-path: inset(100% 0 0 0);
    transition: clip-path var(--duration-slower) var(--ease-out-expo);
}

.anim-reveal-mask.is-visible {
    clip-path: inset(0 0 0 0);
}

/* Stagger Animations */
.anim-stagger > * {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity var(--duration-slow) var(--ease-out-expo),
                transform var(--duration-slow) var(--ease-out-expo);
}

.anim-stagger > *.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.anim-stagger-fast > * {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity var(--duration-normal) var(--ease-out-expo),
                transform var(--duration-normal) var(--ease-out-expo);
}

.anim-stagger-fast > *.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.anim-stagger-slow > * {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity var(--duration-slowest) var(--ease-out-expo),
                transform var(--duration-slowest) var(--ease-out-expo);
}

.anim-stagger-slow > *.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Float Animation (Always Active) */
.anim-float {
    animation: floatElement 6s ease-in-out infinite;
}

.anim-float[data-float-speed="slow"] {
    animation-duration: 8s;
}

.anim-float[data-float-speed="fast"] {
    animation-duration: 4s;
}

@keyframes floatElement {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Glow Animation */
.anim-glow {
    animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { filter: drop-shadow(0 0 5px currentColor); opacity: 1; }
    50% { filter: drop-shadow(0 0 15px currentColor); opacity: 0.8; }
}

/* Bounce Soft Animation */
.anim-bounce-soft {
    animation: bounceSoft 2s ease-in-out infinite;
}

@keyframes bounceSoft {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Fade Right Animation */
.anim-fade-right {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity var(--duration-slow) var(--ease-out-expo),
                transform var(--duration-slow) var(--ease-out-expo);
}

.anim-fade-right.is-visible {
    opacity: 1;
    transform: translateX(0);
}

/* ================================================================
   24. 3D CARD TILT EFFECT
   ================================================================ */
.card-3d {
    transform-style: preserve-3d;
    transition: transform var(--duration-slow) var(--ease-out-expo);
}

.card-3d.tilting {
    transition: none;
}

/* ================================================================
   25. RESPONSIVE DESIGN
   ================================================================ */
@media (max-width: 1024px) {
    .exp-row {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }
    
    .exp-img-reverse,
    .exp-text-reverse {
        order: unset;
    }
    
    .globe-wrapper {
        grid-template-columns: 1fr;
        gap: var(--space-10);
    }
    
    .globe-visual {
        order: -1;
    }
    
    .travel-globe {
        width: 300px;
        height: 300px;
    }
    
    .concierge-wrapper {
        grid-template-columns: 1fr;
        gap: var(--space-10);
    }
}

@media (max-width: 768px) {
    :root {
        --text-hero: 2.5rem;
        --text-h1: 2rem;
        --text-h2: 1.75rem;
    }
    
    .section-lg {
        padding-block: var(--space-12);
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-actions .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .awards-grid {
        gap: var(--space-6);
    }
    
    .resorts-grid {
        grid-template-columns: 1fr;
    }
    
    .sustainability-stats {
        flex-direction: column;
        gap: var(--space-6);
    }
    
    .globe-stats {
        justify-content: center;
    }
    
    .newsletter-inline {
        flex-direction: column;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-carousel {
        grid-template-columns: 1fr;
    }
    
    /* Reduce Animation Distance on Tablet/Mobile */
    .anim-fade-up { transform: translateY(40px); }
    .anim-fade-down { transform: translateY(-40px); }
    .anim-slide-left { transform: translateX(-60px); }
    .anim-slide-right { transform: translateX(60px); }
    
    /* Disable 3D Tilt on Mobile */
    .card-3d {
        transform: none !important;
    }
    
    .back-to-top {
        right: var(--space-4);
        bottom: var(--space-4);
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .container {
        padding-inline: var(--space-4);
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .slide-item {
        flex: 0 0 260px;
        height: 360px;
    }
    
    .travel-globe {
        width: 250px;
        height: 250px;
    }
}

/* ================================================================
   26. REDUCED MOTION (Accessibility)
   ================================================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    [class*="anim-"] {
        opacity: 1;
        transform: none;
        filter: none;
        clip-path: none;
    }
    
    .hero-bg-zoom,
    .globe-sphere,
    .globe-grid,
    .globe-atmosphere,
    .cloud {
        animation: none;
    }
    
    .parallax-layer {
        transform: none !important;
    }
}

/* ================================================================
   27. RTL SUPPORT
   ================================================================ */
[dir="rtl"],
html[lang="ar"],
html[lang="he"],
html[lang="fa"] {
    .anim-slide-left {
        transform: translateX(100px);
    }
    
    .anim-slide-left.is-visible {
        transform: translateX(0);
    }
    
    .anim-slide-right {
        transform: translateX(-100px);
    }
    
    .anim-slide-right.is-visible {
        transform: translateX(0);
    }
    
    .anim-fade-right {
        transform: translateX(30px);
    }
    
    .anim-fade-right.is-visible {
        transform: translateX(0);
    }
    
    .link-text .arrow {
        transform: scaleX(-1);
    }
    
    .link-text:hover .arrow {
        transform: scaleX(-1) translateX(-4px);
    }
    
    .card-badge {
        right: auto;
        left: var(--space-4);
    }
    
    .slide-content {
        left: auto;
        right: var(--space-6);
    }
    
    .back-to-top {
        right: auto;
        left: var(--space-8);
    }
    
    @media (max-width: 768px) {
        .back-to-top {
            left: var(--space-4);
        }
    }
}

/* ================================================================
   28. DARK MODE SPECIFIC STYLES
   ================================================================ */
[data-theme="dark"],
.dark-mode {
    .section-header .section-title {
        color: var(--color-text-main);
    }
    
    .resort-card,
    .testimonial-card,
    .form-box {
        background: var(--color-bg-offset);
        border-color: var(--color-border);
    }
    
    .card-body h3 a {
        color: var(--color-text-main);
    }
    
    .slider-prev,
    .slider-next {
        background: var(--color-bg-offset);
        border-color: var(--color-border);
    }
    
    .route-label {
        background: var(--color-bg-offset);
        color: var(--color-text-main);
    }
    
    .hero-overlay-gradient {
        background: linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.5) 0%,
            rgba(0, 0, 0, 0.7) 50%,
            rgba(0, 0, 0, 0.9) 100%
        );
    }
}

/* ================================================================
   29. PRINT STYLES
   ================================================================ */
@media print {
    #we-page-loader,
    .hero-floating-elements,
    .travel-particles,
    .travel-stars,
    .parallax-clouds,
    .scroll-progress,
    .back-to-top,
    .hero-scroll-indicator {
        display: none !important;
    }
    
    .hero-bg {
        position: relative;
        inset: 0;
    }
    
    [class*="anim-"] {
        opacity: 1;
        transform: none;
    }
}
