/**
 * Exploria - Ultra Cinematic Page Styles
 * Premium Travel Theme Animation System
 * 
 * @package Exploria
 * @version 2.0.0
 */

/* ================================================================
   DESIGN TOKENS & CSS VARIABLES
   ================================================================ */
:root {
    /* Primary Colors */
    --color-primary: #0F4C5C;
    --color-secondary: #2E5D4B;
    
    /* Blue Palette */
    --color-blue-deep: #1E3A8A;
    --color-blue-light: #3B82F6;
    
    /* Sun Palette */
    --color-yellow-warm: #D97706;
    --color-yellow-light: #FCD34D;
    
    /* Neutrals */
    --color-white: #FFFFFF;
    --color-black: #0A0A0A;
    --color-surface: #F8FAFC;
    --color-border: rgba(15, 76, 92, 0.1);
    --color-text: #1E293B;
    --color-text-muted: #64748B;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    --gradient-accent: linear-gradient(135deg, var(--color-yellow-warm) 0%, var(--color-yellow-light) 100%);
    --gradient-hero: linear-gradient(180deg, rgba(10, 10, 10, 0.3) 0%, rgba(10, 10, 10, 0.7) 100%);
    
    /* Typography */
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing (8px grid) */
    --space-1: 8px;
    --space-2: 16px;
    --space-3: 24px;
    --space-4: 32px;
    --space-5: 40px;
    --space-6: 48px;
    --space-7: 56px;
    --space-8: 64px;
    --space-10: 80px;
    --space-12: 96px;
    --space-16: 128px;
    
    /* Animation */
    --ease-cinematic: cubic-bezier(0.19, 1, 0.22, 1);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    --duration-fast: 0.3s;
    --duration-normal: 0.5s;
    --duration-slow: 0.8s;
    --duration-slower: 1.2s;
    
    /* Container */
    --container-narrow: 720px;
    --container-medium: 960px;
    --container-wide: 1200px;
    
    /* Borders */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    /* Shadows */
    --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 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-glow: 0 0 40px rgba(15, 76, 92, 0.3);
    
    /* Z-index layers */
    --z-base: 1;
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-overlay: 300;
    --z-modal: 400;
    --z-loader: 500;
}

/* Dark Mode Variables */
[data-theme="dark"],
.dark-mode {
    --color-surface: #0F172A;
    --color-border: rgba(255, 255, 255, 0.1);
    --color-text: #F1F5F9;
    --color-text-muted: #94A3B8;
    --color-white: #0A0A0A;
}

/* ================================================================
   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: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-white);
    overflow-x: hidden;
}

.site-main {
    position: relative;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-text);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

p {
    margin-bottom: var(--space-2);
}

.text-lead {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.text-accent {
    color: var(--color-yellow-warm);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.text-center {
    text-align: center;
}

/* Container System */
.container {
    width: 100%;
    max-width: var(--container-wide);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--space-3);
    padding-right: var(--space-3);
}

.container-narrow { max-width: var(--container-narrow); }
.container-medium { max-width: var(--container-medium); }
.container-wide { max-width: var(--container-wide); }

/* Section Spacing */
.section-lg {
    padding-top: var(--space-16);
    padding-bottom: var(--space-16);
}

.bg-surface {
    background-color: var(--color-surface);
}

/* Section Header */
.section-header {
    margin-bottom: var(--space-8);
}

.section-header span {
    display: block;
    margin-bottom: var(--space-2);
}

.section-header h2 {
    margin-bottom: var(--space-3);
}

.section-header p {
    margin-bottom: 0;
}

/* ================================================================
   BUTTON SYSTEM
   ================================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-1);
    padding: 14px 28px;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--duration-fast) var(--ease-out);
    position: relative;
    overflow: hidden;
}

.btn-lg {
    padding: 18px 36px;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--color-white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-accent {
    background: var(--gradient-accent);
    color: var(--color-black);
    box-shadow: var(--shadow-md);
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), 0 0 20px rgba(217, 119, 6, 0.4);
}

.btn-white {
    background: var(--color-white);
    color: var(--color-primary);
}

.btn-white:hover {
    background: var(--color-surface);
}

.btn-white-outline {
    background: transparent;
    color: var(--color-white);
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
}

.btn-white-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
}

/* Ripple Effect */
.btn-ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: scale(0);
    pointer-events: none;
}

.btn-ripple.active {
    animation: ripple 0.6s ease-out;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Magnetic Button Hover */
.btn-magnetic {
    transition: transform var(--duration-fast) var(--ease-out);
}

/* Badge */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-full);
    background: rgba(15, 76, 92, 0.1);
    color: var(--color-primary);
}

.badge-yellow {
    background: var(--gradient-accent);
    color: var(--color-black);
}

/* ================================================================
   PAGE LOADER - CINEMATIC
   ================================================================ */
#we-page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-primary) 0%, #0a2e38 50%, var(--color-secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: var(--z-loader);
    overflow: hidden;
}

#we-page-loader.hidden {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s var(--ease-cinematic), visibility 0.8s;
}

/* Loader Particles */
.we-loader-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.we-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--color-yellow-light);
    border-radius: 50%;
    opacity: 0.6;
    animation: particle-float 3s ease-in-out infinite;
}

.we-particle--1 { left: 10%; top: 20%; animation-delay: 0s; }
.we-particle--2 { left: 30%; top: 60%; animation-delay: 0.5s; }
.we-particle--3 { left: 70%; top: 30%; animation-delay: 1s; }
.we-particle--4 { left: 80%; top: 70%; animation-delay: 1.5s; }
.we-particle--5 { left: 50%; top: 85%; animation-delay: 2s; }

@keyframes particle-float {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.6; }
    50% { transform: translateY(-30px) scale(1.5); opacity: 1; }
}

/* Loader Inner */
.we-loader-inner {
    position: relative;
    text-align: center;
    z-index: 2;
}

/* Loader Decoration */
.we-loader-decoration {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: var(--space-3);
}

.we-loader-decoration span {
    width: 40px;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 1px;
}

.we-loader-decoration--bottom {
    margin-top: var(--space-3);
    margin-bottom: 0;
}

/* Loader Title */
.we-loader-title {
    position: relative;
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: var(--space-2);
    letter-spacing: -0.02em;
}

.we-loader-title-text {
    position: relative;
    z-index: 2;
    display: block;
}

.we-loader-title-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
    background: linear-gradient(90deg, var(--color-yellow-light), var(--color-yellow-warm));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: blur(20px);
    opacity: 0.5;
}

.we-loader-tagline {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: var(--space-4);
}

/* Loader Dots */
.we-loader-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: var(--space-4);
}

.we-dot {
    width: 8px;
    height: 8px;
    background: var(--color-yellow-warm);
    border-radius: 50%;
    animation: dot-pulse 1.4s ease-in-out infinite;
}

.we-dot--1 { animation-delay: 0s; }
.we-dot--2 { animation-delay: 0.2s; }
.we-dot--3 { animation-delay: 0.4s; }

@keyframes dot-pulse {
    0%, 80%, 100% { transform: scale(0.6); opacity: 0.5; }
    40% { transform: scale(1); opacity: 1; }
}

/* Loader Progress */
.we-loader-progress {
    width: 200px;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    margin: 0 auto;
    overflow: hidden;
}

.we-loader-progress-bar {
    width: 0;
    height: 100%;
    background: var(--gradient-accent);
    border-radius: 2px;
    animation: progress-fill 2s ease-out forwards;
}

@keyframes progress-fill {
    0% { width: 0; }
    50% { width: 70%; }
    100% { width: 100%; }
}

/* Loader Corners */
.we-loader-corner {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.we-loader-corner--tl { top: 30px; left: 30px; border-right: none; border-bottom: none; }
.we-loader-corner--tr { top: 30px; right: 30px; border-left: none; border-bottom: none; }
.we-loader-corner--bl { bottom: 30px; left: 30px; border-right: none; border-top: none; }
.we-loader-corner--br { bottom: 30px; right: 30px; border-left: none; border-top: none; }

/* ================================================================
   ANIMATION SYSTEM (25 Classes)
   ================================================================ */

/* Base Animation State */
[class*="anim-"] {
    opacity: 0;
    transition-property: transform, opacity, filter;
    transition-duration: var(--duration-slow);
    transition-timing-function: var(--ease-cinematic);
}

[class*="anim-"].animated {
    opacity: 1;
    transform: none;
    filter: none;
}

/* 1. Fade Up */
.anim-fade-up {
    transform: translateY(60px);
}

/* 2. Fade Down */
.anim-fade-down {
    transform: translateY(-60px);
}

/* 3. Fade In */
.anim-fade-in {
    transform: none;
    opacity: 0;
}

.anim-fade-in.animated {
    opacity: 1;
}

/* 4. Fade Out */
.anim-fade-out {
    transform: none;
    opacity: 1;
}

.anim-fade-out.animated {
    opacity: 0;
}

/* 5. Slide Left */
.anim-slide-left {
    transform: translateX(-80px);
}

/* 6. Slide Right */
.anim-slide-right {
    transform: translateX(80px);
}

/* 7. Slide Up */
.anim-slide-up {
    transform: translateY(80px);
}

/* 8. Slide Down */
.anim-slide-down {
    transform: translateY(-80px);
}

/* 9. Scale In */
.anim-scale-in {
    transform: scale(0.8);
}

/* 10. Scale Out */
.anim-scale-out {
    transform: scale(1.2);
}

.anim-scale-out.animated {
    transform: scale(1);
}

/* 11. Zoom In */
.anim-zoom-in {
    transform: scale(0.5);
}

/* 12. Zoom Out */
.anim-zoom-out {
    transform: scale(1.5);
}

.anim-zoom-out.animated {
    transform: scale(1);
}

/* 13. Rotate In */
.anim-rotate-in {
    transform: rotate(-15deg) scale(0.9);
}

/* 14. Rotate Out */
.anim-rotate-out {
    transform: rotate(15deg) scale(0.9);
}

/* 15. Blur In */
.anim-blur-in {
    filter: blur(20px);
    transform: scale(0.95);
}

/* 16. Blur Out */
.anim-blur-out {
    filter: blur(20px);
    transform: scale(1.05);
}

.anim-blur-out.animated {
    filter: blur(0);
    transform: scale(1);
}

/* 17. Flip X */
.anim-flip-x {
    transform: perspective(1000px) rotateX(-90deg);
}

.anim-flip-x.animated {
    transform: perspective(1000px) rotateX(0);
}

/* 18. Flip Y */
.anim-flip-y {
    transform: perspective(1000px) rotateY(-90deg);
}

.anim-flip-y.animated {
    transform: perspective(1000px) rotateY(0);
}

/* 19. Reveal Mask */
.anim-reveal-mask {
    clip-path: inset(100% 0 0 0);
    opacity: 1;
}

.anim-reveal-mask.animated {
    clip-path: inset(0 0 0 0);
}

/* 20-22. Stagger (handled by JS) */
.anim-stagger > *,
.anim-stagger-fast > *,
.anim-stagger-slow > * {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity var(--duration-normal) var(--ease-cinematic),
                transform var(--duration-normal) var(--ease-cinematic);
}

.anim-stagger > *.animated,
.anim-stagger-fast > *.animated,
.anim-stagger-slow > *.animated {
    opacity: 1;
    transform: none;
}

.anim-stagger > *:nth-child(1) { transition-delay: 0.1s; }
.anim-stagger > *:nth-child(2) { transition-delay: 0.2s; }
.anim-stagger > *:nth-child(3) { transition-delay: 0.3s; }
.anim-stagger > *:nth-child(4) { transition-delay: 0.4s; }
.anim-stagger > *:nth-child(5) { transition-delay: 0.5s; }
.anim-stagger > *:nth-child(6) { transition-delay: 0.6s; }

.anim-stagger-fast > *:nth-child(1) { transition-delay: 0.05s; }
.anim-stagger-fast > *:nth-child(2) { transition-delay: 0.1s; }
.anim-stagger-fast > *:nth-child(3) { transition-delay: 0.15s; }
.anim-stagger-fast > *:nth-child(4) { transition-delay: 0.2s; }
.anim-stagger-fast > *:nth-child(5) { transition-delay: 0.25s; }
.anim-stagger-fast > *:nth-child(6) { transition-delay: 0.3s; }

.anim-stagger-slow > *:nth-child(1) { transition-delay: 0.15s; }
.anim-stagger-slow > *:nth-child(2) { transition-delay: 0.3s; }
.anim-stagger-slow > *:nth-child(3) { transition-delay: 0.45s; }
.anim-stagger-slow > *:nth-child(4) { transition-delay: 0.6s; }
.anim-stagger-slow > *:nth-child(5) { transition-delay: 0.75s; }
.anim-stagger-slow > *:nth-child(6) { transition-delay: 0.9s; }

/* 23. Float */
.anim-float {
    animation: float 6s ease-in-out infinite;
    opacity: 1;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(2deg); }
    50% { transform: translateY(-10px) rotate(-1deg); }
    75% { transform: translateY(-25px) rotate(1deg); }
}

/* 24. Glow */
.anim-glow {
    animation: glow 2s ease-in-out infinite;
    opacity: 1;
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(217, 119, 6, 0.3); }
    50% { box-shadow: 0 0 40px rgba(217, 119, 6, 0.6), 0 0 60px rgba(217, 119, 6, 0.3); }
}

/* 25. Bounce Soft */
.anim-bounce-soft {
    animation: bounce-soft 2s ease-in-out infinite;
    opacity: 1;
}

@keyframes bounce-soft {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ================================================================
   HERO SECTION - CINEMATIC
   ================================================================ */
.section-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    top: -100px;
    background: var(--color-primary);
}

.hero-parallax {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-image: url('../img/adev-1.jpg');
    background-size: cover;
    background-position: center;
    transform: translateY(0);
    will-change: transform;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero);
    z-index: 1;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding-top: var(--space-16);
    padding-bottom: var(--space-16);
}

.hero-title {
    color: var(--color-white);
    margin-bottom: var(--space-4);
}

.hero-title .title-line {
    display: block;
}

.hero-title .title-line:nth-child(2) {
    font-size: 0.75em;
    color: var(--color-yellow-light);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto var(--space-6);
}

.hero-actions {
    display: flex;
    gap: var(--space-3);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--space-6);
}

/* Trust Badges */
.hero-trust {
    display: flex;
    justify-content: center;
    gap: var(--space-4);
    flex-wrap: wrap;
    margin-bottom: var(--space-4);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

.trust-badge svg {
    color: var(--color-yellow-warm);
}

.hero-disclaimer {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Scroll Down */
.scroll-down {
    position: absolute;
    bottom: var(--space-6);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    z-index: 10;
}

.scroll-down svg {
    animation: scroll-arrow 1.5s ease-in-out infinite;
}

@keyframes scroll-arrow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* ================================================================
   TRAVEL GLOBE SYSTEM
   ================================================================ */
.hero-globe-container {
    position: absolute;
    right: -10%;
    top: 50%;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    z-index: 3;
    opacity: 0.4;
    pointer-events: none;
}

.travel-globe {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-blue-deep) 0%, var(--color-primary) 50%, var(--color-secondary) 100%);
    animation: globe-rotate 30s linear infinite;
    box-shadow: 
        inset -30px -30px 60px rgba(0, 0, 0, 0.3),
        inset 10px 10px 40px rgba(255, 255, 255, 0.1),
        0 0 100px rgba(15, 76, 92, 0.5);
    position: relative;
    overflow: hidden;
}

.travel-globe::before {
    content: '';
    position: absolute;
    top: 5%;
    left: 10%;
    width: 80%;
    height: 90%;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.travel-globe::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(90deg, transparent 49.5%, rgba(255, 255, 255, 0.05) 49.5%, rgba(255, 255, 255, 0.05) 50.5%, transparent 50.5%),
        linear-gradient(0deg, transparent 49.5%, rgba(255, 255, 255, 0.05) 49.5%, rgba(255, 255, 255, 0.05) 50.5%, transparent 50.5%);
    background-size: 60px 60px;
    animation: globe-lines 20s linear infinite;
}

@keyframes globe-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes globe-lines {
    from { background-position: 0 0; }
    to { background-position: 60px 60px; }
}

/* ================================================================
   TRAVEL PARTICLE ENGINE
   ================================================================ */
.travel-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.travel-particles canvas {
    width: 100%;
    height: 100%;
}

/* ================================================================
   PARALLAX CLOUD SYSTEM
   ================================================================ */
.parallax-clouds {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
    pointer-events: none;
    overflow: hidden;
}

.cloud-layer {
    position: absolute;
    width: 200%;
    height: 100%;
    background-size: 50% auto;
    background-repeat: repeat-x;
    opacity: 0.1;
}

.cloud-layer--1 {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 100'%3E%3Cellipse cx='60' cy='60' rx='50' ry='30' fill='%23ffffff'/%3E%3Cellipse cx='100' cy='50' rx='40' ry='25' fill='%23ffffff'/%3E%3Cellipse cx='140' cy='65' rx='35' ry='20' fill='%23ffffff'/%3E%3C/svg%3E");
    top: 10%;
    animation: cloud-drift 60s linear infinite;
}

.cloud-layer--2 {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 100'%3E%3Cellipse cx='50' cy='70' rx='40' ry='25' fill='%23ffffff'/%3E%3Cellipse cx='90' cy='60' rx='45' ry='28' fill='%23ffffff'/%3E%3Cellipse cx='150' cy='75' rx='35' ry='22' fill='%23ffffff'/%3E%3C/svg%3E");
    top: 40%;
    animation: cloud-drift 80s linear infinite reverse;
    opacity: 0.08;
}

.cloud-layer--3 {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 100'%3E%3Cellipse cx='70' cy='50' rx='45' ry='28' fill='%23ffffff'/%3E%3Cellipse cx='130' cy='55' rx='50' ry='30' fill='%23ffffff'/%3E%3C/svg%3E");
    top: 70%;
    animation: cloud-drift 100s linear infinite;
    opacity: 0.05;
}

@keyframes cloud-drift {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ================================================================
   TRAVEL STARS FIELD
   ================================================================ */
.travel-stars {
    position: relative;
    overflow: hidden;
}

.travel-stars::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(255, 255, 255, 0.8), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255, 255, 255, 0.5), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255, 255, 255, 0.6), transparent),
        radial-gradient(2px 2px at 130px 80px, rgba(255, 255, 255, 0.4), transparent),
        radial-gradient(1px 1px at 160px 30px, rgba(255, 255, 255, 0.7), transparent);
    background-size: 200px 100px;
    animation: stars-twinkle 4s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes stars-twinkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

/* ================================================================
   TRAVEL ROUTES - AIRPLANE PATHS
   ================================================================ */
.section-routes {
    padding: var(--space-8) 0;
    background: var(--color-surface);
    overflow: hidden;
}

.map-route {
    width: 100%;
    height: auto;
    max-height: 200px;
}

.airplane-path {
    stroke-dasharray: 1200;
    stroke-dashoffset: 1200;
    transition: stroke-dashoffset 2s var(--ease-cinematic);
}

.airplane-path.animated {
    stroke-dashoffset: 0;
}

.route-point {
    opacity: 0;
    transform: scale(0);
    transition: all 0.5s var(--ease-cinematic);
}

.route-point.animated {
    opacity: 1;
    transform: scale(1);
}

.route-point--1 { transition-delay: 0.2s; }
.route-point--2 { transition-delay: 0.4s; }
.route-point--3 { transition-delay: 0.6s; }
.route-point--4 { transition-delay: 0.8s; }
.route-point--5 { transition-delay: 1s; }

.airplane-icon {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.airplane-icon.animated {
    opacity: 1;
    animation: airplane-move 3s var(--ease-cinematic) forwards;
}

@keyframes airplane-move {
    0% { transform: translate(50px, 150px) rotate(0deg); }
    100% { transform: translate(1100px, 80px) rotate(-5deg); }
}

/* ================================================================
   FEATURES SECTION
   ================================================================ */
.section-features {
    position: relative;
    overflow: hidden;
}

.section-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.shape--1 {
    width: 300px;
    height: 300px;
    background: var(--color-primary);
    top: -100px;
    left: -100px;
}

.shape--2 {
    width: 200px;
    height: 200px;
    background: var(--color-secondary);
    bottom: -50px;
    right: 20%;
}

.shape--3 {
    width: 150px;
    height: 150px;
    background: var(--color-yellow-warm);
    top: 30%;
    right: -50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-4);
    position: relative;
    z-index: 1;
}

.feature-item {
    background: var(--color-white);
    padding: var(--space-5);
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid var(--color-border);
    transition: all var(--duration-normal) var(--ease-out);
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--color-white);
    margin-bottom: var(--space-3);
}

.feature-item h3 {
    margin-bottom: var(--space-2);
}

.feature-item p {
    color: var(--color-text-muted);
    margin-bottom: 0;
}

/* ================================================================
   3D CARD INTERACTIONS
   ================================================================ */
.card-3d {
    transform-style: preserve-3d;
    perspective: 1000px;
    will-change: transform;
}

/* ================================================================
   DESTINATIONS GALLERY
   ================================================================ */
.section-destinations {
    background: var(--color-primary);
    position: relative;
}

.section-destinations .section-header {
    color: var(--color-white);
}

.section-destinations .text-accent {
    color: var(--color-yellow-light);
}

.section-destinations .text-lead {
    color: rgba(255, 255, 255, 0.7);
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: var(--space-3);
}

.destination-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.destination-item.large {
    grid-column: span 2;
}

.destination-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--duration-slow) var(--ease-cinematic);
}

.destination-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: var(--space-4);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    color: var(--color-white);
    transform: translateY(20px);
    opacity: 0;
    transition: all var(--duration-normal) var(--ease-out);
}

.destination-tag {
    display: inline-block;
    padding: 4px 12px;
    background: var(--gradient-accent);
    color: var(--color-black);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-1);
}

.destination-item h3 {
    color: var(--color-white);
    font-size: 1.25rem;
    margin-bottom: 4px;
}

.destination-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    margin-bottom: 0;
}

/* Gallery Hover Effects */
.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .destination-overlay {
    transform: translateY(0);
    opacity: 1;
}

/* ================================================================
   PACKAGES SECTION
   ================================================================ */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-4);
}

.package-card {
    position: relative;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border);
    transition: all var(--duration-normal) var(--ease-out);
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.package-badge {
    position: absolute;
    top: var(--space-3);
    right: var(--space-3);
    z-index: 2;
}

.package-preview {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.package-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--duration-slow) var(--ease-cinematic);
}

.package-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 76, 92, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--duration-normal) var(--ease-out);
}

.package-card:hover .package-overlay {
    opacity: 1;
}

.package-card:hover .package-img {
    transform: scale(1.1);
}

.package-info {
    padding: var(--space-4);
}

.package-meta {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    margin-bottom: var(--space-2);
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.package-meta svg {
    color: var(--color-primary);
}

.package-info h3 {
    margin-bottom: var(--space-2);
}

.package-info p {
    color: var(--color-text-muted);
    font-size: 0.9375rem;
    margin-bottom: var(--space-3);
}

.package-pricing {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--space-3);
    border-top: 1px solid var(--color-border);
}

.price-old {
    text-decoration: line-through;
    color: var(--color-text-muted);
    font-size: 0.875rem;
}

.price-current {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
}

.price-per {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

/* ================================================================
   TIMELINE SECTION - SCROLL STORYTELLING
   ================================================================ */
.section-timeline {
    position: relative;
    background: linear-gradient(180deg, var(--color-white) 0%, var(--color-surface) 100%);
}

.timeline-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 30px;
    top: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    opacity: 0.3;
}

.timeline-step {
    position: relative;
    padding-left: 80px;
    padding-bottom: var(--space-6);
}

.timeline-step:last-child {
    padding-bottom: 0;
}

.timeline-icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

.timeline-content {
    background: var(--color-white);
    padding: var(--space-4);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 24px;
    width: 20px;
    height: 20px;
    background: var(--color-white);
    transform: rotate(45deg);
    box-shadow: -2px 2px 4px rgba(0, 0, 0, 0.05);
}

.timeline-number {
    position: absolute;
    top: var(--space-3);
    right: var(--space-4);
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-surface);
    line-height: 1;
}

.timeline-content h4 {
    margin-bottom: var(--space-1);
}

.timeline-content p {
    color: var(--color-text-muted);
    margin-bottom: 0;
}

/* ================================================================
   SAFETY SECTION - SPLIT
   ================================================================ */
.section-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
    align-items: center;
}

.split-media {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 4/3;
}

.split-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.split-media-overlay {
    position: absolute;
    bottom: var(--space-4);
    left: var(--space-4);
}

.media-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-1);
    padding: var(--space-2) var(--space-3);
    background: var(--color-white);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-primary);
}

.media-badge svg {
    color: var(--color-yellow-warm);
}

.split-content h2 {
    margin-bottom: var(--space-3);
}

.split-content .text-lead {
    margin-left: 0;
    margin-bottom: var(--space-4);
}

.safety-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.safety-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-2);
    padding: var(--space-2) 0;
    border-bottom: 1px solid var(--color-border);
}

.safety-list li:last-child {
    border-bottom: none;
}

.safety-list svg {
    flex-shrink: 0;
    color: var(--color-secondary);
    margin-top: 2px;
}

/* ================================================================
   TESTIMONIALS SLIDER
   ================================================================ */
.section-testimonials {
    position: relative;
    background: var(--color-surface);
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    transition: transform var(--duration-slow) var(--ease-cinematic);
}

.testimonial-slide {
    flex: 0 0 100%;
    padding: 0 var(--space-2);
}

.testimonial-card {
    background: var(--color-white);
    padding: var(--space-5);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.testimonial-rating {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: var(--space-3);
    color: var(--color-yellow-warm);
}

.testimonial-text {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--color-text);
    margin-bottom: var(--space-4);
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.125rem;
}

.author-info {
    text-align: left;
}

.author-info strong {
    display: block;
    color: var(--color-text);
}

.author-info span {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

/* Slider Navigation */
.testimonials-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-3);
    margin-top: var(--space-5);
}

.slider-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--color-border);
    background: var(--color-white);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--duration-fast) var(--ease-out);
}

.slider-btn:hover {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.slider-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-border);
    cursor: pointer;
    transition: all var(--duration-fast) var(--ease-out);
}

.slider-dots .dot.active {
    background: var(--color-primary);
    transform: scale(1.2);
}

/* ================================================================
   GALLERY MASONRY
   ================================================================ */
.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-3);
}

.gallery-masonry .gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
}

.gallery-masonry .gallery-item--1 {
    grid-row: span 2;
}

.gallery-masonry .gallery-item--2 {
    grid-column: span 1;
}

.gallery-masonry .gallery-item--3 {
    grid-column: span 1;
}

.gallery-masonry img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--duration-slow) var(--ease-cinematic);
}

.gallery-masonry .gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 76, 92, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--duration-normal) var(--ease-out);
    color: var(--color-white);
}

.gallery-masonry .gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-masonry .gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* ================================================================
   BOOKING SECTION
   ================================================================ */
.section-booking {
    position: relative;
    background: linear-gradient(180deg, var(--color-surface) 0%, var(--color-white) 100%);
}

.booking-card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--color-border);
}

.booking-header {
    text-align: center;
    margin-bottom: var(--space-5);
}

.booking-header h2 {
    margin-bottom: var(--space-2);
}

.booking-header p {
    color: var(--color-text-muted);
    margin-bottom: 0;
}

/* Form Styles */
.booking-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3);
}

.form-group {
    margin-bottom: var(--space-3);
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: var(--space-1);
    color: var(--color-text);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all var(--duration-fast) var(--ease-out);
    background: var(--color-white);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(15, 76, 92, 0.1);
}

/* Price Summary */
.price-summary {
    background: var(--color-surface);
    padding: var(--space-3);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-4);
}

.price-row {
    display: flex;
    justify-content: space-between;
    padding: var(--space-1) 0;
    color: var(--color-text-muted);
}

.price-total {
    border-top: 1px solid var(--color-border);
    margin-top: var(--space-2);
    padding-top: var(--space-2);
    font-weight: 600;
    color: var(--color-text);
    font-size: 1.125rem;
}

.booking-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-1);
    margin-top: var(--space-3);
    color: var(--color-text-muted);
    font-size: 0.875rem;
}

.booking-guarantee svg {
    color: var(--color-secondary);
}

/* ================================================================
   CTA SECTION
   ================================================================ */
.section-cta {
    position: relative;
    padding: var(--space-16) 0;
    background: var(--gradient-primary);
    overflow: hidden;
}

.cta-parallax {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/adev-1.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
}

.cta-badge {
    display: inline-block;
    padding: var(--space-1) var(--space-3);
    background: rgba(255, 255, 255, 0.2);
    color: var(--color-white);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-4);
}

.section-cta h2 {
    color: var(--color-white);
    margin-bottom: var(--space-3);
}

.section-cta p {
    color: rgba(255, 255, 255, 0.8);
    max-width: 500px;
    margin: 0 auto var(--space-5);
}

.cta-actions {
    margin-bottom: var(--space-4);
}

.cta-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

/* ================================================================
   SCROLL PROGRESS
   ================================================================ */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(15, 76, 92, 0.1);
    z-index: var(--z-sticky);
}

.scroll-progress-bar {
    height: 100%;
    background: var(--gradient-accent);
    width: 0;
    transition: width 0.1s ease;
}

/* ================================================================
   BACK TO TOP
   ================================================================ */
.back-to-top {
    position: fixed;
    bottom: var(--space-4);
    right: var(--space-4);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--color-white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--duration-normal) var(--ease-out);
    z-index: var(--z-sticky);
    box-shadow: var(--shadow-lg);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* ================================================================
   RESPONSIVE DESIGN
   ================================================================ */
@media (max-width: 1024px) {
    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
    
    .destination-item.large {
        grid-column: span 1;
    }
    
    .section-split {
        grid-template-columns: 1fr;
    }
    
    .split-media {
        order: -1;
    }
    
    .hero-globe-container {
        width: 400px;
        height: 400px;
        right: -20%;
        opacity: 0.3;
    }
    
    .gallery-masonry {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --space-16: 80px;
        --space-12: 64px;
    }
    
    .section-lg {
        padding-top: var(--space-8);
        padding-bottom: var(--space-8);
    }
    
    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-actions .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .destinations-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-line {
        left: 20px;
    }
    
    .timeline-step {
        padding-left: 60px;
    }
    
    .timeline-icon {
        width: 40px;
        height: 40px;
    }
    
    .timeline-number {
        display: none;
    }
    
    .booking-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .booking-card {
        padding: var(--space-4);
    }
    
    .hero-globe-container {
        display: none;
    }
    
    .gallery-masonry {
        grid-template-columns: 1fr;
    }
    
    .gallery-masonry .gallery-item--1 {
        grid-row: span 1;
    }
    
    /* Reduce animation intensity on mobile */
    .anim-fade-up,
    .anim-slide-left,
    .anim-slide-right {
        transform: translateY(30px);
    }
    
    .anim-slide-left {
        transform: translateX(-30px);
    }
    
    .anim-slide-right {
        transform: translateX(30px);
    }
    
    /* Disable 3D tilt on mobile */
    .card-3d {
        transform: none !important;
    }
}

@media (max-width: 480px) {
    .container {
        padding-left: var(--space-2);
        padding-right: var(--space-2);
    }
    
    .hero-trust {
        flex-direction: column;
        gap: var(--space-2);
    }
    
    .testimonials-nav {
        gap: var(--space-2);
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
    }
}

/* ================================================================
   DARK MODE
   ================================================================ */
[data-theme="dark"] .feature-item,
[data-theme="dark"] .package-card,
[data-theme="dark"] .testimonial-card,
[data-theme="dark"] .timeline-content,
[data-theme="dark"] .booking-card,
.dark-mode .feature-item,
.dark-mode .package-card,
.dark-mode .testimonial-card,
.dark-mode .timeline-content,
.dark-mode .booking-card {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .form-group input,
[data-theme="dark"] .form-group select,
.dark-mode .form-group input,
.dark-mode .form-group select {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    color: var(--color-text);
}

[data-theme="dark"] .price-summary,
.dark-mode .price-summary {
    background: rgba(255, 255, 255, 0.05);
}

/* ================================================================
   RTL SUPPORT
   ================================================================ */
[dir="rtl"] .timeline-line {
    left: auto;
    right: 30px;
}

[dir="rtl"] .timeline-step {
    padding-left: 0;
    padding-right: 80px;
}

[dir="rtl"] .timeline-icon {
    left: auto;
    right: 0;
}

[dir="rtl"] .timeline-content::before {
    left: auto;
    right: -10px;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.05);
}

[dir="rtl"] .timeline-number {
    left: var(--space-4);
    right: auto;
}

[dir="rtl"] .split-media-overlay {
    left: auto;
    right: var(--space-4);
}

[dir="rtl"] .package-badge {
    left: var(--space-3);
    right: auto;
}

[dir="rtl"] .anim-slide-left {
    transform: translateX(80px);
}

[dir="rtl"] .anim-slide-right {
    transform: translateX(-80px);
}

[dir="rtl"] .anim-slide-left.animated,
[dir="rtl"] .anim-slide-right.animated {
    transform: none;
}

/* ================================================================
   ACCESSIBILITY - REDUCED MOTION
   ================================================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    [class*="anim-"] {
        opacity: 1;
        transform: none;
        filter: none;
    }
    
    .hero-parallax,
    .cta-parallax {
        background-attachment: scroll;
    }
    
    .travel-globe,
    .cloud-layer,
    .we-particle {
        animation: none;
    }
    
    .anim-float,
    .anim-glow,
    .anim-bounce-soft {
        animation: none;
    }
}

/* Focus States */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

/* 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;
}
