/*
Theme Name: Travel Hero
Theme URI: https://example.com
Description: A custom WordPress theme with airplane window video hero section
Author: Your Name
Version: 1.0
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700;800&family=Playfair+Display:wght@700;800;900&display=swap');

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

/* Navigation Bar */
.main-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    z-index: 10000;
    box-shadow: none;
    transition: all 0.5s ease;
}

.main-navbar.dark-mode {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.navbar-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: border-color 0.5s ease;
}

.main-navbar.dark-mode .navbar-top {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.navbar-contact {
    display: flex;
    gap: 30px;
    font-size: 0.85rem;
    color: #ffffff;
    transition: color 0.5s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.main-navbar.dark-mode .navbar-contact {
    color: #ffffff;
}

.navbar-contact span {
    display: flex;
    align-items: center;
}

.book-now-btn {
    background: linear-gradient(135deg, #ff6b4a 0%, #ff8a6b 100%);
    color: white;
    border: none;
    padding: 10px 28px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 74, 0.3);
}

.book-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 74, 0.4);
}

.navbar-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.navbar-menu {
    display: flex;
    gap: 30px;
    flex: 1;
}

.menu-item {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.5s ease;
    position: relative;
    padding: 5px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.main-navbar.dark-mode .menu-item {
    color: #ffffff;
}

.menu-item:hover {
    color: #ff6b4a;
}

.menu-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff6b4a;
    transition: width 0.3s ease;
}

.menu-item:hover::after {
    width: 100%;
}

.navbar-links {
    display: flex;
    gap: 25px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.5s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.main-navbar.dark-mode .nav-link {
    color: rgba(255, 255, 255, 0.9);
}

.nav-link:hover {
    color: #ff6b4a;
}

/* Navbar responsive */
@media (max-width: 1200px) {
    .navbar-menu {
        gap: 20px;
    }
    
    .menu-item {
        font-size: 0.75rem;
    }
}

@media (max-width: 768px) {
    .navbar-container {
        padding: 0 20px;
    }
    
    .navbar-top {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    
    .navbar-contact {
        flex-direction: column;
        gap: 5px;
        font-size: 0.75rem;
    }
    
    .navbar-bottom {
        flex-direction: column;
        gap: 15px;
    }
    
    .navbar-menu {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .menu-item {
        font-size: 0.7rem;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #0a1628 0%, #1a2a4a 50%, #0d1b2a 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all 1s ease-in-out;
    padding-top: 120px;
    --glow-intensity: 0;
}

/* Animated gradient background */
.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(255, 107, 74, calc(0.15 + var(--glow-intensity))) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(74, 144, 255, calc(0.1 + var(--glow-intensity))) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 100%, rgba(255, 107, 74, calc(0.2 + var(--glow-intensity))) 0%, transparent 40%);
    z-index: 0;
    pointer-events: none;
    transition: all 0.5s ease;
}

/* Cinematic mode enhancement */
.hero-section.cinematic-mode::after {
    background: 
        radial-gradient(ellipse at 50% 50%, rgba(255, 107, 74, 0.3) 0%, transparent 60%),
        radial-gradient(ellipse at 50% 100%, rgba(0, 0, 0, 0.8) 0%, transparent 50%);
}

/* Mountain Background */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/mountain.jpg') no-repeat center center;
    background-size: cover;
    z-index: 1;
    opacity: 0.4;
    filter: brightness(0.6) saturate(1.2);
}

/* Scroll Hint Indicator */
.scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 1;
    transition: all 0.25s ease-out;
    animation: fadeInUp 0.5s ease 0.8s backwards;
}

.scroll-hint.hidden {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
    pointer-events: none;
}

.scroll-hint-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-weight: 300;
}

.scroll-hint-mouse {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 13px;
    position: relative;
    margin-bottom: 10px;
}

.scroll-hint-wheel {
    width: 4px;
    height: 8px;
    background: #ff6b4a;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0%, 100% { 
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
    50% { 
        transform: translateX(-50%) translateY(12px);
        opacity: 0.3;
    }
}

.scroll-hint-arrows {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.scroll-hint-arrows span {
    display: block;
    width: 12px;
    height: 12px;
    border-right: 2px solid rgba(255, 107, 74, 0.8);
    border-bottom: 2px solid rgba(255, 107, 74, 0.8);
    transform: rotate(45deg);
    margin: -5px;
    animation: scrollArrows 2s ease-in-out infinite;
}

.scroll-hint-arrows span:nth-child(2) {
    animation-delay: 0.15s;
}

.scroll-hint-arrows span:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes scrollArrows {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

/* Progress Bar */
.door-progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 30;
    overflow: hidden;
    transition: opacity 0.5s ease;
}

.door-progress-bar.hidden {
    opacity: 0;
}

.door-progress-fill {
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #ff6b4a, #ff8a6b, #ffaa8b);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.1s ease-out;
    box-shadow: 0 0 20px rgba(255, 107, 74, 0.8);
}

/* Floating Particles */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.floating-particle {
    position: absolute;
    bottom: -20px;
    width: 6px;
    height: 6px;
    background: radial-gradient(circle, rgba(255, 107, 74, 0.8) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatUp 10s linear infinite;
}

.floating-particle:nth-child(even) {
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, rgba(74, 144, 255, 0.6) 0%, transparent 70%);
}

.floating-particle:nth-child(3n) {
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
}

@keyframes floatUp {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0;
    }
}

/* Hero Text */
.hero-text {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 3rem;
    transition: all 0.3s ease-out;
    opacity: 1;
}

.hero-text.hidden {
    opacity: 0;
    transform: translateY(-30px);
    filter: blur(3px);
}

.hero-text .subtitle {
    font-size: 1.6rem;
    letter-spacing: 0.5em;
    color: #ff6b4a;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
    animation: fadeInUp 1s ease-out 0.3s backwards;
    font-family: 'Montserrat', sans-serif;
    text-shadow: 0 0 30px rgba(255, 107, 74, 0.5);
}

.hero-text .title {
    font-size: 5rem;
    letter-spacing: 0.12em;
    color: #ffffff;
    font-weight: 800;
    text-transform: uppercase;
    animation: fadeInUp 1s ease-out 0.5s backwards;
    font-family: 'Playfair Display', serif;
    text-shadow: 
        0 4px 30px rgba(0, 0, 0, 0.8),
        0 0 60px rgba(255, 255, 255, 0.1);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Airplane Window Container */
.window-container {
    position: relative;
    z-index: 3;
    width: 320px;
    height: 400px;
    transition: transform 0.1s ease-out, filter 0.1s ease-out;
    animation: windowFloat 0.6s ease-out 0.3s backwards;
    --start-top: 0px;
    --start-left: 0px;
    --start-width: 320px;
    --start-height: 400px;
}

/* Subtle floating animation for window */
.window-container:not(.expanding):not(.fullscreen):not(.collapsing) {
    animation: windowFloat 1.2s ease-out backwards, gentleFloat 4s ease-in-out infinite 1.5s;
}

@keyframes windowFloat {
    from {
        opacity: 0;
        transform: scale(0.85) translateY(60px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

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

.window-container.expanding {
    position: absolute;
    top: var(--start-top);
    left: var(--start-left);
    width: var(--start-width);
    height: var(--start-height);
    z-index: 100;
    animation: expandToHero 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    transform: none !important;
    filter: none !important;
}

@keyframes expandToHero {
    0% {
        top: var(--start-top);
        left: var(--start-left);
        width: var(--start-width);
        height: var(--start-height);
        border-radius: 12px;
    }
    100% {
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 0;
    }
}

.window-container.fullscreen {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
    animation: none;
    transform: none !important;
    filter: none !important;
}

/* Collapsing animation for reverse */
.window-container.collapsing {
    position: relative;
    z-index: 100;
    animation: collapseFromHero 0.35s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    transform: none !important;
    filter: none !important;
}

@keyframes collapseFromHero {
    0% {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 0;
    }
    100% {
        position: relative;
        width: 320px;
        height: 400px;
        border-radius: 12px;
    }
}

/* Fullscreen Video Backdrop */
.video-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    backdrop-filter: blur(0px);
    z-index: 50;
    pointer-events: none;
    transition: all 0.35s ease-out;
}

.video-backdrop.active {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    pointer-events: all;
}

/* Door Container */
.door-container {
    position: relative;
    width: 100%;
    height: 100%;
    perspective: 2000px;
    cursor: pointer;
}

/* Door Frame */
.door-frame {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(40, 50, 70, 0.9), rgba(20, 30, 50, 0.95));
    border: 3px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    box-shadow: 
        0 30px 70px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 0 30px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease-out;
    overflow: hidden;
}

/* Light beam effect on frame */
.door-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        rgba(255, 107, 74, 0.6) 50%, 
        transparent 100%);
    transform: translateX(-50%);
    z-index: 3;
    opacity: var(--door-open-progress, 1);
    transition: opacity 0.3s ease;
}

/* Glow effect when doors open */
.door-frame::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(255, 107, 74, 0.3) 0%, transparent 60%);
    transform: translate(-50%, -50%) scale(0);
    z-index: 0;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.door-container.door-open .door-frame::after {
    transform: translate(-50%, -50%) scale(calc(1 - var(--door-open-progress, 1) + 0.5));
}

/* Door Video Container (Behind doors) */
.door-video-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    background: #000;
    z-index: 1;
    border-radius: 8px;
    transition: all 0.3s ease-out;
}

.door-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease-out;
    filter: brightness(1.1) contrast(1.05);
}

/* Video expands as doors slide open */
.window-container.expanding .door-video-container {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 0;
}

.window-container.fullscreen .door-video-container {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 0;
}

/* Door Panels - Enhanced with 3D effect */
.door-left,
.door-right {
    position: absolute;
    top: 0;
    bottom: 0;
    width: calc(50% - 1px);
    background: linear-gradient(180deg, 
        rgba(60, 70, 90, 0.98) 0%, 
        rgba(40, 50, 70, 0.98) 50%, 
        rgba(30, 40, 60, 0.98) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 0 40px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.3);
    z-index: 2;
    will-change: transform;
    transform: translateX(0);
}

/* Light reflection on doors */
.door-left::before,
.door-right::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 0.08) 0%, 
        transparent 100%);
    pointer-events: none;
}

/* Edge glow when opening */
.door-left::after {
    content: '';
    position: absolute;
    top: 0;
    right: -2px;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, 
        rgba(255, 107, 74, 0) 0%,
        rgba(255, 107, 74, 0.8) 50%,
        rgba(255, 107, 74, 0) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.door-right::after {
    content: '';
    position: absolute;
    top: 0;
    left: -2px;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, 
        rgba(255, 107, 74, 0) 0%,
        rgba(255, 107, 74, 0.8) 50%,
        rgba(255, 107, 74, 0) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.door-container.door-open .door-left::after,
.door-container.door-open .door-right::after {
    opacity: calc(1 - var(--door-open-progress, 1));
}

.door-left {
    left: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.door-right {
    right: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
}

/* Door opening with shadow enhancement */
.door-container.door-open .door-left {
    box-shadow: 
        10px 0 40px rgba(0, 0, 0, 0.8),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.door-container.door-open .door-right {
    box-shadow: 
        -10px 0 40px rgba(0, 0, 0, 0.8),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.window-container.fullscreen .door-left,
.window-container.fullscreen .door-right {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

/* Door Panel Details - Enhanced */
.door-panel {
    position: absolute;
    top: 15px;
    left: 12px;
    right: 12px;
    bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 0.02) 0%, 
        transparent 50%,
        rgba(0, 0, 0, 0.1) 100%);
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.2);
}

.door-panel::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

/* Window/Porthole effect in door panel */
.door-panel::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, 
        rgba(255, 255, 255, 0.05) 0%, 
        transparent 70%);
}

/* Door Handles - Modern Style */
.door-handle {
    position: absolute;
    top: 50%;
    width: 6px;
    height: 60px;
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 0.3) 0%, 
        rgba(255, 255, 255, 0.1) 50%, 
        rgba(255, 255, 255, 0.2) 100%);
    border-radius: 3px;
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transform: translateY(-50%);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.door-left .door-handle {
    right: 15px;
}

.door-right .door-handle {
    left: 15px;
}

.door-handle::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 4px;
    height: 15px;
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0.2) 0%, 
        rgba(255, 255, 255, 0.4) 50%, 
        rgba(255, 255, 255, 0.2) 100%);
    border-radius: 2px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
    transform: translateY(-50%);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.door-left .door-handle::before {
    right: -6px;
}

.door-right .door-handle::before {
    left: -6px;
}

/* When doors open - transform frame */
.door-container.door-open .door-frame {
    border-color: rgba(255, 107, 74, 0.2);
    box-shadow: 
        0 0 60px rgba(255, 107, 74, calc(0.3 * (1 - var(--door-open-progress, 1)))),
        inset 0 0 30px rgba(255, 107, 74, calc(0.1 * (1 - var(--door-open-progress, 1))));
    transition: all 0.15s ease-out;
}

/* When expanding - smooth transition to fullscreen */
.window-container.expanding .door-frame {
    background: transparent;
    border: none;
    box-shadow: none;
    border-radius: 0;
}

.window-container.expanding .door-frame::before,
.window-container.expanding .door-frame::after {
    opacity: 0;
}

.window-container.collapsing .door-frame {
    transition: all 0.6s ease;
}

.window-container.fullscreen .door-frame {
    background: transparent;
    border: none;
    padding: 0;
    border-radius: 0;
}

.window-container.fullscreen .door-frame::before,
.window-container.fullscreen .door-frame::after {
    opacity: 0;
}

.window-container.fullscreen .door-video-container {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 0;
}

/* Video Text Overlay */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.3s ease-out;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
}

.window-container.fullscreen .video-overlay {
    opacity: 1;
}

/* Cinematic vignette on fullscreen */
.window-container.fullscreen .video-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, transparent 20%, transparent 80%, rgba(0, 0, 0, 0.5) 100%),
        linear-gradient(to right, rgba(0, 0, 0, 0.2) 0%, transparent 15%, transparent 85%, rgba(0, 0, 0, 0.2) 100%);
    pointer-events: none;
}

.video-overlay .overlay-subtitle {
    font-size: 2rem;
    letter-spacing: 0.5em;
    color: #ff6b4a;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    text-shadow: 
        0 0 40px rgba(255, 107, 74, 0.6),
        0 4px 20px rgba(0, 0, 0, 0.8);
    animation: overlayFadeIn 0.4s ease-out 0.1s backwards;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    z-index: 2;
}

.video-overlay .overlay-title {
    font-size: 6rem;
    letter-spacing: 0.12em;
    color: #ffffff;
    font-weight: 800;
    text-transform: uppercase;
    text-shadow: 
        0 0 60px rgba(255, 255, 255, 0.3),
        0 6px 30px rgba(0, 0, 0, 0.9);
    animation: overlayFadeIn 0.4s ease-out 0.2s backwards;
    font-family: 'Playfair Display', serif;
    position: relative;
    z-index: 2;
}

@keyframes overlayFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
        filter: blur(10px);
    }
    to {
        opacity: 1;
        transform: scale(1);
        filter: blur(0);
    }
}

@keyframes slideInFromTop {
    from {
        opacity: 0;
        transform: translateY(-100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInFromBottom {
    from {
        opacity: 0;
        transform: translateY(100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Content Section */
.content-section {
    position: relative;
    z-index: 2;
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.content-section h2 {
    font-size: 2.5rem;
    color: #2c4a7a;
    margin-bottom: 1rem;
}

.content-section p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-text .subtitle {
        font-size: 1rem;
        letter-spacing: 0.3em;
    }
    
    .hero-text .title {
        font-size: 2.5rem;
        letter-spacing: 0.08em;
    }
    
    .window-container {
        width: 260px;
        height: 340px;
        --start-width: 260px;
        --start-height: 340px;
    }
    
    .video-overlay .overlay-subtitle {
        font-size: 1.2rem;
        letter-spacing: 0.3em;
    }
    
    .video-overlay .overlay-title {
        font-size: 2.8rem;
        letter-spacing: 0.08em;
    }
    
    .scroll-hint {
        bottom: 30px;
    }
    
    .scroll-hint-text {
        font-size: 0.75rem;
    }
    
    .scroll-hint-mouse {
        width: 22px;
        height: 36px;
    }
    
    .door-progress-bar {
        height: 3px;
    }
    
    @keyframes collapseFromHero {
        0% {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border-radius: 0;
        }
        100% {
            position: relative;
            width: 260px;
            height: 340px;
            border-radius: 12px;
        }
    }
}

/* ============================================
   HOMEPAGE SECTIONS
   ============================================ */

/* Add more professional fonts */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Poppins:wght@300;400;500;600;700&family=Dancing+Script:wght@700&display=swap');

/* Search Section */
.search-section {
    background: linear-gradient(180deg, #0a1628 0%, #132744 100%);
    padding: 60px 20px 80px;
    display: flex;
    justify-content: center;
}

.search-container {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 50px;
    padding: 8px 8px 8px 30px;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    color: #666;
    background: transparent;
}

.search-input::placeholder {
    color: #999;
}

.search-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #e85d04;
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background: #d44d00;
    transform: scale(1.05);
}

/* Cruise Banner Section */
.cruise-banner {
    background: linear-gradient(180deg, #132744 0%, #0a1628 100%);
    padding: 40px 20px 80px;
    position: relative;
}

.cruise-card {
    max-width: 1000px;
    margin: 0 auto;
    background: linear-gradient(135deg, #1a3a5c 0%, #0d2240 50%, #1a3a5c 100%);
    border-radius: 30px;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
    min-height: 280px;
}

.cruise-info {
    flex: 1;
    padding: 40px;
}

.cruise-ribbon {
    background: #00b4d8;
    color: white;
    font-size: 18px;
    font-weight: 600;
    padding: 8px 30px;
    display: inline-block;
    clip-path: polygon(0 0, 100% 0, 95% 100%, 0 100%);
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

.cruise-title {
    font-family: 'Dancing Script', cursive;
    font-size: 52px;
    color: #00b4d8;
    margin-bottom: 20px;
}

.cruise-icons {
    display: flex;
    gap: 10px;
}

.cruise-icon {
    width: 40px;
    height: 40px;
    background: #ffd700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.cruise-deals {
    position: relative;
}

.deals-circle {
    width: 160px;
    height: 160px;
    border: 3px dashed #1a3a5c;
    border-radius: 50%;
    background: #f5f5f5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 15px;
}

.deals-text {
    font-size: 11px;
    font-weight: 700;
    color: #1a3a5c;
    letter-spacing: 1px;
    transform: rotate(-15deg);
    font-family: 'Poppins', sans-serif;
}

.deals-price-label {
    font-size: 8px;
    color: #666;
    margin-top: 5px;
}

.deals-currency {
    font-size: 10px;
    color: #1a3a5c;
}

.deals-price {
    font-size: 24px;
    font-weight: 700;
    color: #e85d04;
    font-family: 'Poppins', sans-serif;
}

.deals-book {
    font-size: 10px;
    font-weight: 700;
    color: #1a3a5c;
    letter-spacing: 1px;
    transform: rotate(15deg);
}

.cruise-image {
    flex: 1;
    height: 100%;
    position: relative;
}

.cruise-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 0 30px 30px 0;
}

.banner-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: white;
    border: 2px solid white;
    background: transparent;
}

.banner-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.banner-arrow:hover {
    color: white;
}

.banner-arrow.left {
    left: 20px;
}

.banner-arrow.right {
    right: 20px;
}

/* Top Destinations Section */
.destinations-section {
    background: linear-gradient(180deg, #0a1628 0%, #0d1e33 100%);
    padding: 80px 20px;
}

.destinations-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto 50px;
    flex-wrap: wrap;
    gap: 30px;
}

.section-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    color: #e85d04;
    display: block;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 400;
    color: white;
    line-height: 1.2;
}

.section-title-italic {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-style: italic;
    color: white;
    font-weight: 400;
}

.destinations-description {
    max-width: 300px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.6;
}

.discover-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #e85d04;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1px;
    margin-top: 15px;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.discover-link:hover {
    gap: 15px;
}

/* Destinations Slider Wrapper */
.destinations-slider-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.dest-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    font-size: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dest-arrow:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
}

.dest-arrow.left {
    left: 0;
}

.dest-arrow.right {
    right: 0;
}

.destinations-slider {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    padding: 20px 0;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
}

.destinations-slider::-webkit-scrollbar {
    display: none;
}

.destination-card {
    flex: 0 0 280px;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    scroll-snap-align: center;
    transition: all 0.4s ease;
}

.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.destination-card.featured {
    flex: 0 0 320px;
    height: 520px;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.destination-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
}

.destination-info h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 5px;
}

.destination-info p {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 15px;
}

.destination-price {
    background: white;
    border-radius: 10px;
    padding: 12px 20px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.price-label {
    font-size: 9px;
    color: #666;
    line-height: 1.2;
}

.price-tag {
    font-size: 10px;
    color: #e85d04;
    background: #e85d04;
    color: white;
    padding: 2px 6px;
    border-radius: 3px;
}

.price-amount {
    font-size: 22px;
    font-weight: 700;
    color: #1a3a5c;
    font-family: 'Poppins', sans-serif;
}

/* Wholesaler Section */
.wholesaler-section {
    background: linear-gradient(180deg, #0d1e33 0%, #0a1628 100%);
    padding: 80px 20px;
    text-align: center;
}

.section-title-light {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-style: italic;
    color: white;
    font-weight: 400;
    margin-bottom: 50px;
}

.wholesaler-cards {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 0 auto;
}

.wholesaler-card {
    flex: 0 0 calc(33.333% - 30px);
    max-width: 420px;
    min-width: 380px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.wholesaler-card:hover {
    transform: translateY(-10px);
}

.wholesaler-image {
    height: 320px;
    overflow: hidden;
}

.wholesaler-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.wholesaler-logo {
    padding: 25px;
    text-align: center;
}

.logo-text {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #1a3a5c;
    letter-spacing: 1px;
}

/* Disney Destinations Section */
.disney-section {
    background: linear-gradient(180deg, #0a1628 0%, #1a3a5c 50%, #6b5b95 100%);
    padding: 80px 20px;
    text-align: center;
}

.disney-header {
    margin-bottom: 50px;
}

.disney-plane {
    font-size: 30px;
    color: white;
    margin-bottom: 20px;
}

.disney-logo {
    font-family: 'Dancing Script', cursive;
    font-size: 42px;
    color: white;
    margin-bottom: 5px;
}

.disney-title {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 300;
    letter-spacing: 15px;
    color: white;
    margin-bottom: 20px;
}

.disney-description {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.disney-slider {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.disney-card {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: all 0.4s ease;
}

.disney-card.side {
    width: 200px;
    height: 250px;
    opacity: 0.6;
}

.disney-card.main {
    width: 600px;
    height: 350px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
}

.disney-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.disney-card-title {
    position: absolute;
    bottom: 40px;
    left: 40px;
    text-align: left;
}

.disney-card-title h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 300;
    color: white;
    line-height: 1.2;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.disney-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.disney-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: white;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.disney-arrow:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* About Section */
.about-section {
    background: linear-gradient(180deg, #fff5f0 0%, #fff 100%);
    padding: 100px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}

.about-image {
    flex: 0 0 400px;
    position: relative;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

.about-content {
    flex: 1;
    max-width: 500px;
}

.about-title {
    font-size: 48px;
    margin-bottom: 30px;
    line-height: 1.2;
}

.about-title .italic {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 400;
    color: #1a3a5c;
}

.about-title .highlight {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    color: #e85d04;
}

.about-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: #1a3a5c;
    line-height: 1.4;
    margin-bottom: 20px;
}

.about-text {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* Customer Reviews Section */
.reviews-section {
    background: #fff;
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.reviews-title {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 400;
    color: #1a3a5c;
    margin-bottom: 50px;
}

.reviews-title .italic {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 400;
}

.reviews-slider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.review-image {
    flex: 0 0 400px;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.review-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-content {
    flex: 0 0 300px;
    text-align: left;
}

.review-stars {
    color: #ffc107;
    font-size: 20px;
    margin-bottom: 20px;
}

.review-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-style: italic;
    color: #1a3a5c;
    line-height: 1.6;
    margin-bottom: 30px;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
}

.reviewer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reviewer-name {
    font-family: 'Dancing Script', cursive;
    font-size: 24px;
    color: #1a3a5c;
}

.review-image-side {
    flex: 0 0 250px;
    height: 350px;
    border-radius: 20px;
    overflow: hidden;
    opacity: 0.6;
}

.review-image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-arrow {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #e85d04;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.review-arrow:hover {
    background: #d44d00;
    transform: translateY(-50%) scale(1.1);
}

/* FAQ Section */
.faq-section {
    background: linear-gradient(180deg, #a8dadc 0%, #81c8cb 100%);
    padding: 80px 20px;
}

.faq-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1000px;
    margin: 0 auto 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.faq-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-style: italic;
    color: #1a3a5c;
    font-weight: 400;
}

.faq-description {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-style: italic;
    color: #1a3a5c;
    flex: 1;
    max-width: 400px;
}

.learn-more-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #e85d04;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.learn-more-link:hover {
    gap: 15px;
}

.faq-list {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding: 25px 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    color: #1a3a5c;
    font-weight: 400;
}

.faq-toggle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-top: 15px;
}

.faq-answer p {
    font-size: 14px;
    color: #1a3a5c;
    line-height: 1.7;
    opacity: 0.8;
}

/* Footer */
.main-footer {
    background: #0a1628;
    padding: 60px 20px 20px;
    color: white;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    margin-bottom: 10px;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.footer-column h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer-column a,
.footer-column p {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #e85d04;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
}

/* Floating Call Button */
.floating-call-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #e85d04;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 10px 30px rgba(232, 93, 4, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
}

.floating-call-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(232, 93, 4, 0.5);
}

/* Responsive adjustments for new sections */
@media (max-width: 768px) {
    .cruise-card {
        flex-direction: column;
        min-height: auto;
    }
    
    .cruise-image img {
        border-radius: 0 0 30px 30px;
        height: 200px;
    }
    
    .destinations-header {
        text-align: center;
    }
    
    .destinations-description {
        margin: 0 auto;
    }
    
    .section-title,
    .section-title-italic,
    .section-title-light {
        font-size: 32px;
    }
    
    .wholesaler-card {
        width: 100%;
        max-width: 350px;
    }
    
    .disney-card.side {
        display: none;
    }
    
    .disney-card.main {
        width: 100%;
        max-width: 400px;
    }
    
    .about-section {
        flex-direction: column;
        text-align: center;
    }
    
    .about-image {
        flex: 0 0 auto;
        width: 100%;
        max-width: 350px;
    }
    
    .about-content {
        text-align: center;
    }
    
    .about-title {
        font-size: 36px;
    }
    
    .reviews-slider {
        flex-direction: column;
    }
    
    .review-image,
    .review-content {
        flex: 0 0 auto;
        width: 100%;
        max-width: 350px;
    }
    
    .review-image-side {
        display: none;
    }
    
    .review-content {
        text-align: center;
    }
    
    .reviewer {
        justify-content: center;
    }
    
    .faq-header {
        flex-direction: column;
        text-align: center;
    }
    
    .faq-question {
        font-size: 15px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

/* ============================================
   SLIDER ANIMATIONS
   ============================================ */

/* Cruise Banner Slider */
.cruise-slides-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
}

.cruise-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.cruise-slide.active {
    position: relative;
    opacity: 1;
    transform: translateX(0);
    pointer-events: all;
}

.cruise-slide.prev {
    transform: translateX(-100%);
}

.cruise-slide.next {
    transform: translateX(100%);
}

/* Disney Slider */
.disney-slider-container {
    position: relative;
    min-height: 400px;
    overflow: hidden;
}

.disney-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.disney-slide.active {
    position: relative;
    opacity: 1;
    transform: translateX(0);
    pointer-events: all;
}

.disney-slide.prev {
    transform: translateX(-100%);
}

/* Reviews Slider */
.reviews-slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 450px;
    overflow: hidden;
}

.review-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.review-slide.active {
    position: relative;
    opacity: 1;
    transform: translateX(0);
    pointer-events: all;
}

.review-slide.prev {
    transform: translateX(-100%);
}

/* Wholesaler Cards Animation */
.wholesaler-cards {
    position: relative;
    overflow: hidden;
}

.wholesaler-card {
    transition: transform 0.6s ease, opacity 0.6s ease;
}

/* Auto-scroll animation for destinations */
.destinations-slider {
    cursor: grab;
}

.destinations-slider:active {
    cursor: grabbing;
}

.destinations-slider.active {
    cursor: grabbing;
}

/* Smooth entrance animations */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* Scroll reveal animations */
.destinations-section,
.wholesaler-section,
.disney-section,
.about-section,
.reviews-section,
.faq-section {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.destinations-section { animation-delay: 0.1s; }
.wholesaler-section { animation-delay: 0.2s; }
.disney-section { animation-delay: 0.3s; }
.about-section { animation-delay: 0.4s; }
.reviews-section { animation-delay: 0.5s; }
.faq-section { animation-delay: 0.6s; }

/* Responsive slider adjustments */
@media (max-width: 768px) {
    .disney-slide {
        flex-direction: column;
    }
    
    .disney-card.side {
        display: none;
    }
    
    .review-slide {
        flex-direction: column;
        padding: 20px;
    }
    
    .review-image,
    .review-content {
        width: 100%;
        max-width: 350px;
    }
    
    .review-image-side {
        display: none;
    }
}
