/**
 * Exploria - Travel Agency Cinematic Page Styles
 * Version: 2.0.0
 * 
 * Complete Design System + 25 Animation Classes
 * Parallax Systems + Travel Visual Effects
 * Dark Mode + RTL Support + Accessibility
 */

/* ================================================================
   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 */
[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;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-text-main);
}

.font-heading { font-family: var(--font-heading); }
.font-serif { font-family: var(--font-serif); }

/* Utility Classes */
.relative { position: relative; }
.absolute { position: absolute; }
.inset-0 { inset: 0; }
.min-h-screen { min-height: 100vh; }
.flex { display: flex; }
.grid { display: grid; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.flex-1 { flex: 1; }
.flex-shrink-0 { flex-shrink: 0; }
.gap-1 { gap: var(--space-1); }
.gap-2 { gap: var(--space-2); }
.gap-3 { gap: var(--space-3); }
.gap-4 { gap: var(--space-4); }
.gap-6 { gap: var(--space-6); }
.gap-8 { gap: var(--space-8); }
.gap-16 { gap: var(--space-16); }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-sm { font-size: var(--text-sm); }
.text-lg { font-size: var(--text-lg); }
.text-xl { font-size: var(--text-xl); }
.text-2xl { font-size: 1.5rem; }
.text-5xl { font-size: 3rem; }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.uppercase { text-transform: uppercase; }
.tracking-wide { letter-spacing: 0.025em; }
.w-full { width: 100%; }
.h-full { height: 100%; }
.h-auto { height: auto; }
.overflow-hidden { overflow: hidden; }
.overflow-x-auto { overflow-x: auto; }
.object-cover { object-fit: cover; }
.opacity-0 { opacity: 0; }
.opacity-5 { opacity: 0.05; }
.opacity-30 { opacity: 0.3; }
.opacity-90 { opacity: 0.9; }
.pointer-events-none { pointer-events: none; }
.transition { transition: all var(--duration-normal) ease; }
.transition-all { transition: all var(--duration-normal) ease; }
.transition-transform { transition: transform var(--duration-normal) ease; }
.transition-opacity { transition: opacity var(--duration-normal) ease; }
.duration-300 { transition-duration: 0.3s; }
.duration-500 { transition-duration: 0.5s; }
.duration-700 { transition-duration: 0.7s; }
.border { border-width: 1px; }
.border-b { border-bottom-width: 1px; }
.border-b-2 { border-bottom-width: 2px; }
.border-border { border-color: var(--color-border); }
.rounded-full { border-radius: var(--radius-full); }
.rounded-xl { border-radius: var(--radius-xl); }
.rounded-2xl { border-radius: var(--radius-2xl); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.shadow-xl { box-shadow: var(--shadow-xl); }
.shadow-2xl { box-shadow: var(--shadow-2xl); }
.backdrop-blur-md { backdrop-filter: blur(12px); }
.transform { transform: translateZ(0); }

/* Container System */
.container { width: 100%; max-width: 1280px; margin-inline: auto; padding-inline: var(--space-6); }
.container-narrow { max-width: 800px; }
.container-medium { max-width: 1000px; }
.container-wide { max-width: 1440px; }

/* Section Spacing */
.section-lg { padding-block: var(--space-20); }
.section-md { padding-block: var(--space-16); }
.bg-surface { background-color: var(--color-bg-surface); }
.bg-white { background-color: #FFFFFF; }
.bg-primary { background-color: var(--color-primary); }

/* Typography Utilities */
.text-primary { color: var(--color-primary); }
.text-secondary { color: var(--color-secondary); }
.text-white { color: #FFFFFF; }
.text-muted { color: var(--color-text-muted); }
.text-yellow-warm { color: var(--color-yellow-warm); }

.text-white\/60 { color: rgba(255, 255, 255, 0.6); }
.text-white\/80 { color: rgba(255, 255, 255, 0.8); }

.bg-white\/90 { background-color: rgba(255, 255, 255, 0.9); }
.bg-white\/95 { background-color: rgba(255, 255, 255, 0.95); }
.bg-primary\/5 { background-color: rgba(15, 76, 92, 0.05); }
.bg-primary\/10 { background-color: rgba(15, 76, 92, 0.1); }
.bg-secondary\/10 { background-color: rgba(46, 93, 75, 0.1); }

/* Grid Systems */
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 768px) {
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .md\:grid-cols-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
    .md\:grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
    .md\:text-left { text-align: left; }
    .md\:justify-start { justify-content: flex-start; }
    .md\:justify-end { justify-content: flex-end; }
}

/* Aspect Ratio */
.aspect-\[4\/5\] { aspect-ratio: 4 / 5; }

/* Screen Reader */
.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
   ================================================================ */
#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. TRAVEL CANVAS ELEMENTS
   ================================================================ */
.travel-stars,
.travel-particles {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.6;
}

/* ================================================================
   5. PARALLAX CLOUDS
   ================================================================ */
.parallax-clouds {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.parallax-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;
}

.parallax-cloud--1 {
    top: 20%;
    left: -10%;
    animation: cloudDrift 60s linear infinite;
}

.parallax-cloud--2 {
    top: 50%;
    right: -10%;
    animation: cloudDrift 80s linear infinite reverse;
}

.parallax-cloud--3 {
    top: 70%;
    left: 30%;
    animation: cloudDrift 70s linear infinite;
}

@keyframes cloudDrift {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(100vw + 400px)); }
}

/* ================================================================
   6. CINEMATIC HERO
   ================================================================ */
.hero-cinematic {
    position: relative;
}

.hero-bg-wrapper {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-image {
    position: absolute;
    inset: -20%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: heroZoom 20s ease-out forwards;
    will-change: transform;
}

@keyframes heroZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 76, 92, 0.5) 0%, rgba(15, 76, 92, 0.7) 50%, rgba(15, 76, 92, 0.9) 100%);
}

.hero-bg-overlay--light {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.9) 100%);
}

.hero-bg-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
}

.hero-particles-layer {
    position: absolute;
    inset: 0;
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
}

/* Hero Grid */
.hero-grid {
    display: grid;
    gap: var(--space-16);
    align-items: center;
}

@media (min-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Hero Eyebrow */
.hero-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-4);
    margin-bottom: var(--space-6);
}

@media (min-width: 768px) {
    .hero-eyebrow {
        justify-content: flex-start;
    }
}

.hero-eyebrow-line {
    width: 40px;
    height: 1px;
    background: rgba(15, 76, 92, 0.3);
}

.hero-eyebrow-text {
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-text-muted);
}

/* Hero Title */
.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 700;
    color: var(--color-text-main);
    margin-bottom: var(--space-6);
    line-height: 1.1;
}

.hero-title-line {
    display: block;
    overflow: hidden;
}

.hero-title-accent {
    color: var(--color-primary);
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: var(--color-text-muted);
    max-width: 600px;
    margin-inline: auto;
    margin-bottom: var(--space-10);
}

@media (min-width: 768px) {
    .hero-subtitle {
        margin-inline: 0;
    }
}

/* Trust Indicators */
.hero-trust {
    margin-top: var(--space-10);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    font-weight: 600;
}

/* Search Card */
.search-card {
    background: rgba(255, 255, 255, 0.98);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-2xl);
}

.search-card-title {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--color-text-main);
}

/* Form Styles */
.form-group { margin-bottom: var(--space-4); }

.form-label {
    display: block;
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-2);
    color: var(--color-text-muted);
}

.form-input {
    width: 100%;
    padding: var(--space-3) var(--space-4);
    padding-left: var(--space-10);
    font-size: var(--text-base);
    font-family: var(--font-body);
    color: var(--color-text-main);
    background: var(--color-bg-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    transition: border-color var(--duration-fast) ease, box-shadow var(--duration-fast) ease;
}

.form-input: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);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: var(--space-10);
}

.input-wrapper {
    position: relative;
}

.input-icon {
    position: absolute;
    left: var(--space-4);
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-text-muted);
    pointer-events: none;
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: var(--space-10);
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--color-text-muted);
}

.scroll-text {
    display: block;
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-2);
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: rgba(15, 76, 92, 0.3);
    margin-inline: auto;
    position: relative;
}

.scroll-dot {
    width: 6px;
    height: 6px;
    background: var(--color-primary);
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollDot 2s infinite ease-in-out;
}

@keyframes scrollDot {
    0%, 100% { top: 0; opacity: 1; }
    50% { top: 54px; opacity: 0.3; }
}

/* ================================================================
   7. SECTION HEADERS
   ================================================================ */
.section-header {
    margin-bottom: var(--space-12);
}

.section-label {
    display: block;
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-text-muted);
    margin-bottom: var(--space-2);
}

.section-label--light {
    color: rgba(255, 255, 255, 0.7);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--color-text-main);
    margin-bottom: var(--space-2);
}

.section-subtitle {
    font-size: var(--text-base);
    color: var(--color-text-muted);
    max-width: 600px;
    margin-inline: auto;
}

.section-lead {
    font-size: var(--text-lg);
    line-height: 1.8;
}

/* ================================================================
   8. BUTTONS
   ================================================================ */
.btn {
    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-sm);
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-lg);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.4s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}

.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: 0 10px 30px rgba(15, 76, 92, 0.3);
}

.btn-accent {
    background: var(--color-accent);
    color: #FFFFFF;
    border-color: var(--color-accent);
}

.btn-accent:hover {
    background: #B86E05;
    border-color: #B86E05;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(217, 119, 6, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.btn-outline:hover {
    background: var(--color-primary);
    color: #FFFFFF;
    transform: translateY(-2px);
}

.btn-outline--light {
    color: #FFFFFF;
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline--light:hover {
    background: #FFFFFF;
    color: var(--color-primary);
    border-color: #FFFFFF;
}

.btn-text {
    position: relative;
    z-index: 1;
}

.btn-icon {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-icon svg {
    transition: transform 0.3s ease;
}

.btn:hover .btn-icon svg {
    transform: translateX(4px);
}

/* Magnetic Button Effect */
.btn-magnetic {
    transition: transform 0.3s var(--ease-out-expo);
}

/* Ripple Effect */
.btn-ripple {
    position: relative;
    overflow: hidden;
}

.btn-ripple::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    transform: scale(0);
    opacity: 0;
    transition: transform 0.6s ease, opacity 0.6s ease;
}

.btn-ripple:active::after {
    transform: scale(2);
    opacity: 1;
    transition: none;
}

/* ================================================================
   9. CARDS
   ================================================================ */
.card {
    background: #FFFFFF;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
    transition: transform 0.5s var(--ease-out-expo), box-shadow 0.5s ease;
}

.card-3d {
    transform-style: preserve-3d;
    will-change: transform;
}

.card-3d:hover {
    box-shadow: var(--shadow-2xl);
}

/* ================================================================
   10. DESTINATION CARDS
   ================================================================ */
.destination-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-2xl);
}

.destination-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out-expo);
}

.destination-card:hover .destination-image {
    transform: scale(1.08);
}

.destination-overlay {
    position: absolute;
    inset: 0;
    transition: opacity 0.4s ease;
}

.destination-card:hover .destination-overlay {
    opacity: 1;
}

.destination-badge {
    padding: var(--space-1) var(--space-3);
    background: linear-gradient(135deg, var(--color-yellow-warm) 0%, #E59500 100%);
    color: #FFFFFF;
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 12px rgba(217, 119, 6, 0.4);
    z-index: 2;
}

.destination-favorite {
    position: absolute;
    top: var(--space-4);
    right: var(--space-4);
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.8) translateY(-8px);
    transition: all 0.4s var(--ease-out-expo);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.destination-card:hover .destination-favorite {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.destination-favorite:hover {
    background: #FEF2F2;
    color: #EF4444;
}

.destination-title {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 700;
    color: #FFFFFF;
}

.destination-tagline {
    color: rgba(255, 255, 255, 0.9);
}

.destination-meta {
    color: rgba(255, 255, 255, 0.8);
}

/* ================================================================
   11. SERVICE CARDS
   ================================================================ */
.service-card {
    background: #FFFFFF;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
    transition: all 0.5s var(--ease-out-expo);
}

.service-card:hover {
    box-shadow: var(--shadow-2xl);
    transform: translateY(-8px);
}

.service-icon-wrapper {
    background: linear-gradient(135deg, rgba(15, 76, 92, 0.1) 0%, rgba(46, 93, 75, 0.1) 100%);
    border-radius: var(--radius-xl);
    transition: transform 0.4s ease, background 0.4s ease;
}

.service-card:hover .service-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(15, 76, 92, 0.15) 0%, rgba(46, 93, 75, 0.15) 100%);
}

.service-title {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--color-text-main);
    transition: color 0.3s ease;
}

.service-card:hover .service-title {
    color: var(--color-primary);
}

.service-desc {
    color: var(--color-text-muted);
    line-height: 1.7;
}

.service-link {
    color: var(--color-primary);
    font-weight: 600;
}

/* ================================================================
   12. PRICING CARDS
   ================================================================ */
.pricing-card {
    background: #FFFFFF;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
    transition: all 0.5s var(--ease-out-expo);
    border: 1px solid var(--color-border);
}

.pricing-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
}

.pricing-card--featured {
    border: 2px solid var(--color-primary);
    box-shadow: var(--shadow-2xl);
    transform: scale(1.02);
    z-index: 2;
}

.pricing-card--featured:hover {
    transform: scale(1.02) translateY(-4px);
}

.pricing-label {
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.pricing-amount {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-text-main);
}

.pricing-badge {
    background: linear-gradient(135deg, var(--color-yellow-warm) 0%, var(--color-accent) 100%);
    color: #FFFFFF;
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 15px rgba(217, 119, 6, 0.4);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-check,
.pricing-x {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ================================================================
   13. WHY US SECTION
   ================================================================ */
.why-us-grid {
    display: grid;
    gap: var(--space-16);
    align-items: center;
}

@media (min-width: 768px) {
    .why-us-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.feature-icon {
    transition: transform 0.4s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1);
}

.feature-title {
    font-family: var(--font-heading);
    font-weight: 700;
}

.feature-desc {
    color: var(--color-text-muted);
}

/* Floating Card */
.floating-card {
    background: #FFFFFF;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
    animation: floatAnimation 6s ease-in-out infinite;
}

@keyframes floatAnimation {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ================================================================
   14. TESTIMONIALS
   ================================================================ */
.testimonial-card {
    background: #FFFFFF;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
    transition: all 0.5s var(--ease-out-expo);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-2xl);
    transform: translateY(-4px);
}

.testimonial-stars {
    color: var(--color-yellow-warm);
}

.testimonial-text {
    font-size: var(--text-base);
    line-height: 1.8;
    color: var(--color-text-muted);
    font-style: italic;
}

.author-avatar {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: #FFFFFF;
    font-weight: 700;
}

.author-name {
    font-weight: 600;
}

.author-location {
    color: var(--color-text-muted);
    font-size: var(--text-xs);
}

/* ================================================================
   15. GALLERY
   ================================================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    cursor: pointer;
}

.gallery-item--large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item--medium {
    grid-column: span 1;
    grid-row: span 2;
}

.gallery-item--small {
    grid-column: span 1;
    grid-row: span 1;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--duration-slower) var(--ease-out-expo);
    min-height: 200px;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.2), transparent);
    opacity: 0;
    transition: opacity var(--duration-normal) ease;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: var(--space-6);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-caption {
    text-align: center;
    color: #FFFFFF;
    transform: translateY(16px);
    transition: transform var(--duration-normal) ease;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

/* ================================================================
   16. AIRPLANE ROUTES
   ================================================================ */
.routes-section {
    position: relative;
    overflow: hidden;
}

.routes-map {
    position: relative;
    width: 100%;
}

.routes-svg {
    width: 100%;
    height: auto;
    min-height: 400px;
}

.map-route {
    stroke-dasharray: 500;
    stroke-dashoffset: 500;
    transition: stroke-dashoffset 2s var(--ease-out-expo);
}

.map-route.animated {
    stroke-dashoffset: 0;
}

.route-point {
    transition: all var(--duration-normal) ease;
}

.route-point:hover {
    r: 10;
}

.airplane-icon {
    opacity: 0;
    transition: opacity var(--duration-normal) ease;
}

.airplane-icon.animated {
    opacity: 1;
}

/* ================================================================
   17. NEWSLETTER SECTION
   ================================================================ */
.newsletter-section {
    position: relative;
    overflow: hidden;
}

.newsletter-bg {
    position: absolute;
    inset: 0;
}

.newsletter-bg-image {
    position: absolute;
    inset: -10%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.4);
}

.newsletter-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 76, 92, 0.9) 0%, rgba(46, 93, 75, 0.8) 100%);
}

.newsletter-input {
    width: 100%;
    padding: var(--space-4) var(--space-6);
    font-size: var(--text-base);
    font-family: var(--font-body);
    color: var(--color-text-main);
    background: #FFFFFF;
    border: none;
    border-radius: var(--radius-xl);
    transition: box-shadow 0.3s ease;
}

.newsletter-input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.newsletter-input::placeholder {
    color: var(--color-text-muted);
}

.newsletter-privacy {
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--text-xs);
}

/* ================================================================
   18. BOOKING CTA
   ================================================================ */
.booking-cta {
    position: relative;
    overflow: hidden;
}

.cta-decoration {
    pointer-events: none;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
}

.cta-subtitle {
    font-size: var(--text-lg);
    line-height: 1.8;
}

/* ================================================================
   19. 25 ANIMATION CLASSES
   ================================================================ */

/* Base Animation State */
[class*="anim-"] {
    opacity: 0;
    transition-property: opacity, transform, filter;
    transition-duration: 0.8s;
    transition-timing-function: var(--ease-out-expo);
}

[class*="anim-"].is-visible {
    opacity: 1;
    transform: none;
    filter: none;
}

/* Fade Animations */
.anim-fade-up {
    transform: translateY(40px);
}

.anim-fade-up.is-visible {
    transform: translateY(0);
}

.anim-fade-down {
    transform: translateY(-40px);
}

.anim-fade-down.is-visible {
    transform: translateY(0);
}

.anim-fade-in {
    opacity: 0;
}

.anim-fade-in.is-visible {
    opacity: 1;
}

.anim-fade-out {
    opacity: 1;
}

.anim-fade-out.is-visible {
    opacity: 0;
}

/* Slide Animations */
.anim-slide-left {
    transform: translateX(60px);
}

.anim-slide-left.is-visible {
    transform: translateX(0);
}

.anim-slide-right {
    transform: translateX(-60px);
}

.anim-slide-right.is-visible {
    transform: translateX(0);
}

.anim-slide-up {
    transform: translateY(80px);
}

.anim-slide-up.is-visible {
    transform: translateY(0);
}

.anim-slide-down {
    transform: translateY(-80px);
}

.anim-slide-down.is-visible {
    transform: translateY(0);
}

/* Scale Animations */
.anim-scale-in {
    transform: scale(0.9);
}

.anim-scale-in.is-visible {
    transform: scale(1);
}

.anim-scale-out {
    transform: scale(1.1);
}

.anim-scale-out.is-visible {
    transform: scale(1);
}

/* Zoom Animations */
.anim-zoom-in {
    transform: scale(0.8);
    opacity: 0;
}

.anim-zoom-in.is-visible {
    transform: scale(1);
    opacity: 1;
}

.anim-zoom-out {
    transform: scale(1.2);
    opacity: 0;
}

.anim-zoom-out.is-visible {
    transform: scale(1);
    opacity: 1;
}

/* Rotate Animations */
.anim-rotate-in {
    transform: rotate(-10deg) scale(0.9);
    opacity: 0;
}

.anim-rotate-in.is-visible {
    transform: rotate(0) scale(1);
    opacity: 1;
}

.anim-rotate-out {
    transform: rotate(10deg) scale(0.9);
    opacity: 0;
}

.anim-rotate-out.is-visible {
    transform: rotate(0) scale(1);
    opacity: 1;
}

/* Blur Animations */
.anim-blur-in {
    filter: blur(20px);
    opacity: 0;
}

.anim-blur-in.is-visible {
    filter: blur(0);
    opacity: 1;
}

.anim-blur-out {
    filter: blur(0);
    opacity: 1;
}

.anim-blur-out.is-visible {
    filter: blur(20px);
    opacity: 0;
}

/* Flip Animations */
.anim-flip-x {
    transform: perspective(1000px) rotateX(90deg);
    opacity: 0;
}

.anim-flip-x.is-visible {
    transform: perspective(1000px) rotateX(0);
    opacity: 1;
}

.anim-flip-y {
    transform: perspective(1000px) rotateY(90deg);
    opacity: 0;
}

.anim-flip-y.is-visible {
    transform: perspective(1000px) rotateY(0);
    opacity: 1;
}

/* Reveal Mask Animation */
.anim-reveal-mask {
    clip-path: inset(100% 0 0 0);
}

.anim-reveal-mask.is-visible {
    clip-path: inset(0 0 0 0);
}

/* Stagger Animations */
.anim-stagger > * {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s var(--ease-out-expo), transform 0.6s var(--ease-out-expo);
}

.anim-stagger > *.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.anim-stagger-fast > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s var(--ease-out-expo), transform 0.4s var(--ease-out-expo);
}

.anim-stagger-fast > *.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.anim-stagger-slow > * {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.anim-stagger-slow > *.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Float Animation */
.anim-float {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Glow Animation */
.anim-glow {
    animation: glow 3s ease-in-out infinite;
}

@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); }
}

/* Bounce Soft Animation */
.anim-bounce-soft {
    animation: bounceSoft 2s ease-in-out infinite;
}

@keyframes bounceSoft {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ================================================================
   20. DARK MODE SUPPORT
   ================================================================ */
[data-theme="dark"] .search-card,
[data-theme="dark"] .service-card,
[data-theme="dark"] .pricing-card,
[data-theme="dark"] .testimonial-card {
    background: var(--color-bg-offset);
    border-color: var(--color-border);
}

[data-theme="dark"] .form-input {
    background: var(--color-bg-offset);
    border-color: var(--color-border);
    color: var(--color-text-main);
}

[data-theme="dark"] .hero-bg-overlay--light {
    background: linear-gradient(180deg, rgba(17, 24, 39, 0.9) 0%, rgba(17, 24, 39, 0.95) 100%);
}

[data-theme="dark"] .hero-eyebrow-line {
    background: rgba(255, 255, 255, 0.3);
}

[data-theme="dark"] .hero-title {
    color: #FFFFFF;
}

[data-theme="dark"] .hero-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

[data-theme="dark"] .scroll-line {
    background: rgba(255, 255, 255, 0.3);
}

[data-theme="dark"] .scroll-dot {
    background: #FFFFFF;
}

/* ================================================================
   21. RTL SUPPORT
   ================================================================ */
[dir="rtl"] .hero-eyebrow {
    flex-direction: row-reverse;
}

[dir="rtl"] .btn-icon svg {
    transform: rotate(180deg);
}

[dir="rtl"] .service-link svg {
    transform: rotate(180deg);
}

[dir="rtl"] .anim-slide-left {
    transform: translateX(-60px);
}

[dir="rtl"] .anim-slide-left.is-visible {
    transform: translateX(0);
}

[dir="rtl"] .anim-slide-right {
    transform: translateX(60px);
}

[dir="rtl"] .anim-slide-right.is-visible {
    transform: translateX(0);
}

/* ================================================================
   22. ACCESSIBILITY - PREFERS REDUCED MOTION
   ================================================================ */
@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;
    }
    
    .parallax-cloud,
    .hero-bg-image {
        animation: none;
    }
}

/* ================================================================
   23. RESPONSIVE PERFORMANCE
   ================================================================ */
@media (max-width: 768px) {
    /* Reduce animation distances on mobile */
    .anim-fade-up,
    .anim-fade-down {
        transform: translateY(20px);
    }
    
    .anim-slide-left,
    .anim-slide-right {
        transform: translateX(30px);
    }
    
    .anim-slide-up,
    .anim-slide-down {
        transform: translateY(40px);
    }
    
    .anim-scale-in,
    .anim-zoom-in {
        transform: scale(0.95);
    }
    
    /* Disable 3D tilt on mobile */
    .card-3d {
        transform: none !important;
    }
    
    /* Reduce section padding */
    .section-lg {
        padding-block: var(--space-12);
    }
    
    .section-md {
        padding-block: var(--space-10);
    }
    
    /* Adjust hero */
    .hero-title {
        font-size: clamp(2rem, 6vw, 3rem);
    }
    
    .hero-grid {
        gap: var(--space-10);
    }
    
    /* Adjust pricing cards */
    .pricing-card--featured {
        transform: none;
    }
    
    .pricing-card--featured:hover {
        transform: translateY(-4px);
    }
}

@media (max-width: 480px) {
    .hero-trust {
        flex-direction: column;
        align-items: center;
        gap: var(--space-4);
    }
    
    .trust-item {
        justify-content: center;
    }
}
