/* ============================================
   LP TRAVELS — PREMIUM TOUR & TRAVEL WEBSITE
   Modern CSS with Animations & Glassmorphism
   ============================================ */

/* ----- CSS Variables ----- */
:root {
    --primary: #6C63FF;
    --primary-dark: #5A52D5;
    --primary-light: #8B85FF;
    --secondary: #FF6B6B;
    --accent: #00D2FF;
    --accent-2: #7928CA;
    --gold: #FFB800;
    --dark: #0B0D17;
    --dark-2: #121428;
    --dark-3: #1A1D2E;
    --glass-bg: rgba(255, 255, 255, 0.06);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-light: #E0E0E0;
    --text-muted: #8892B0;
    --gradient-1: linear-gradient(135deg, #6C63FF, #00D2FF);
    --gradient-2: linear-gradient(135deg, #FF6B6B, #FFB800);
    --gradient-3: linear-gradient(135deg, #7928CA, #FF0080);
    --gradient-hero: linear-gradient(135deg, #0B0D17 0%, #1A1D2E 50%, #0B0D17 100%);
    --shadow-sm: 0 2px 15px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 15px 60px rgba(0, 0, 0, 0.2);
    --shadow-glow: 0 0 40px rgba(108, 99, 255, 0.3);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ----- Reset & Base ----- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Inter', 'Outfit', sans-serif;
    color: #333;
    overflow-x: hidden;
    width: 100%;
    background: #FAFBFF;
}

::selection {
    background: var(--primary);
    color: #fff;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-light);
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

.text-gradient {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-padding {
    padding: 100px 0;
}

/* ============================================
   PRELOADER
   ============================================ */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.plane-loader {
    font-size: 3rem;
    color: var(--primary);
    animation: flyPlane 2s ease-in-out infinite;
}

.plane-loader i {
    display: inline-block;
    filter: drop-shadow(0 0 20px rgba(108, 99, 255, 0.6));
}

@keyframes flyPlane {

    0%,
    100% {
        transform: translateY(0) rotate(-5deg);
    }

    25% {
        transform: translateY(-15px) rotate(0deg);
    }

    50% {
        transform: translateY(0) rotate(5deg);
    }

    75% {
        transform: translateY(-10px) rotate(0deg);
    }
}

.loader-text {
    color: var(--text-muted);
    margin-top: 20px;
    font-size: 0.95rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.4;
    }

    50% {
        opacity: 1;
    }
}

/* ============================================
   NAVBAR
   ============================================ */
#mainNavbar {
    padding: 18px 0;
    transition: var(--transition);
    z-index: 1000;
}

#mainNavbar.scrolled {
    padding: 10px 0;
    background: rgba(11, 13, 23, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff !important;
    display: flex;
    align-items: center;
    gap: 8px;
}

.navbar-brand i {
    font-size: 1.5rem;
    color: var(--primary);
    animation: spin 8s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.navbar-brand span {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.75) !important;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 16px !important;
    position: relative;
    transition: var(--transition);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: var(--transition);
    border-radius: 2px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #fff !important;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 60%;
}

.btn-glow {
    background: var(--gradient-1);
    color: #fff !important;
    padding: 10px 28px !important;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(108, 99, 255, 0.4);
    transition: var(--transition);
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.btn-glow:hover::before {
    left: 100%;
}

.btn-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(108, 99, 255, 0.6);
}

.navbar-toggler {
    border: 1px solid var(--glass-border);
    padding: 6px 10px;
}

.navbar-toggler-icon {
    filter: brightness(0) invert(1);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slideshow .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.08);
    transition: opacity 1.5s ease, transform 8s ease;
}

.hero-slideshow .slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(11, 13, 23, 0.85) 0%,
            rgba(11, 13, 23, 0.6) 50%,
            rgba(11, 13, 23, 0.75) 100%);
    z-index: 1;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(108, 99, 255, 0.5);
    border-radius: 50%;
    animation: floatParticle linear infinite;
}

@keyframes floatParticle {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100vh) rotate(720deg);
        opacity: 0;
    }
}

.hero-content {
    position: relative;
    z-index: 3;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: rgba(108, 99, 255, 0.15);
    border: 1px solid rgba(108, 99, 255, 0.3);
    border-radius: 50px;
    color: var(--primary-light);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.hero-badge i {
    animation: twinkle 2s ease-in-out infinite;
}

@keyframes twinkle {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4.2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 550px;
    margin-bottom: 36px;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: var(--gradient-1);
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    border: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(108, 99, 255, 0.4);
    transition: var(--transition);
}

.btn-hero-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.6s;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(108, 99, 255, 0.6);
    color: #fff;
}

.btn-hero-primary:hover::before {
    left: 100%;
}

.btn-hero-primary:hover i {
    transform: translateX(5px);
}

.btn-hero-primary i {
    transition: var(--transition);
}

.btn-hero-play {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-weight: 500;
    padding: 8px 20px 8px 8px;
    border-radius: 50px;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.btn-hero-play:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.play-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    position: relative;
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.4);
    }

    50% {
        box-shadow: 0 0 0 15px rgba(255, 107, 107, 0);
    }
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 28px 36px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    width: fit-content;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: var(--glass-border);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: fadeInUp 1s ease 2s forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
    }
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.wheel {
    width: 4px;
    height: 10px;
    background: var(--primary);
    border-radius: 4px;
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(12px);
        opacity: 0;
    }
}

.scroll-indicator span {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 3px;
}

/* ----- Slide Content Panels ----- */
.slide-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease, visibility 0.8s ease;
    pointer-events: none;
}

.slide-content.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.slide-content .hero-badge {
    animation: slideContentBadge 0.6s ease 0.2s both;
}

.slide-content .hero-title {
    animation: slideContentTitle 0.7s ease 0.35s both;
}

.slide-content .hero-subtitle {
    animation: slideContentSub 0.7s ease 0.5s both;
}

.slide-content .hero-buttons {
    animation: slideContentBtns 0.7s ease 0.65s both;
}

.slide-content:not(.active) .hero-badge,
.slide-content:not(.active) .hero-title,
.slide-content:not(.active) .hero-subtitle,
.slide-content:not(.active) .hero-buttons {
    animation: none;
}

@keyframes slideContentBadge {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideContentTitle {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideContentSub {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideContentBtns {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ----- Hero Navigation Arrows ----- */
.hero-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #fff;
    font-size: 1.4rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.hero-prev {
    left: 24px;
}

.hero-next {
    right: 24px;
}

.hero-nav-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(108, 99, 255, 0.5);
    transform: translateY(-50%) scale(1.1);
}

.hero-nav-btn:active {
    transform: translateY(-50%) scale(0.95);
}

/* ----- Hero Slide Indicators ----- */
.hero-indicators {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-indicators .indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.4);
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
    position: relative;
}

.hero-indicators .indicator.active {
    border-color: var(--primary-light);
    background: var(--primary);
    box-shadow: 0 0 12px rgba(108, 99, 255, 0.6);
    width: 36px;
    border-radius: 10px;
}

.hero-indicators .indicator:hover:not(.active) {
    border-color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.2);
}


/* ============================================
   SEARCH BAR
   ============================================ */
.search-section {
    position: relative;
    z-index: 10;
    margin-top: -50px;
    padding-bottom: 30px;
}

.search-bar-wrapper {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 30px 36px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.search-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    display: block;
}

.search-label i {
    color: var(--primary);
    margin-right: 4px;
}

.search-input {
    border: 2px solid #EEF0F6;
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-size: 0.95rem;
    transition: var(--transition);
    background: #F8F9FE;
}

.search-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(108, 99, 255, 0.1);
    background: #fff;
}

.btn-search {
    background: var(--gradient-1);
    color: #fff;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 1rem;
    border: none;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(108, 99, 255, 0.3);
}

.btn-search:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(108, 99, 255, 0.5);
    color: #fff;
}

/* ============================================
   CATEGORIES SECTION
   ============================================ */
.category-scroll-wrapper {
    position: relative;
    padding: 10px 0 40px;
}

.category-container {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 25px;
    padding: 20px 5px;
    scrollbar-width: none; /* Hide scrollbar Firefox */
}

.category-container::-webkit-scrollbar {
    display: none; /* Hide scrollbar Chrome/Safari */
}

.cat-card {
    min-width: 260px;
    height: 340px;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cat-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.cat-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.cat-card:hover .cat-img {
    transform: scale(1.15);
}

.cat-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11, 13, 23, 0.8) 0%, rgba(11, 13, 23, 0.2) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
}

.cat-card:hover .cat-overlay {
    background: linear-gradient(to top, rgba(108, 99, 255, 0.8) 0%, rgba(11, 13, 23, 0.3) 100%);
}

.cat-icon {
    width: 54px;
    height: 54px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: #fff;
    font-size: 1.4rem;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cat-card:hover .cat-icon {
    background: #fff;
    color: var(--primary);
    transform: scale(1.1) rotate(360deg);
}

.cat-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.cat-count {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

.cat-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #fff;
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: none;
    z-index: 10;
    cursor: pointer;
    transition: var(--transition);
    opacity: 0;
}

.category-scroll-wrapper:hover .cat-nav-btn {
    opacity: 1;
}

.cat-nav-btn:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-50%) scale(1.1);
}

.cat-prev { left: -22px; }
.cat-next { right: -22px; }

@media (max-width: 768px) {
    .cat-nav-btn { display: none; }
    .cat-card { min-width: 220px; height: 300px; }
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(108, 99, 255, 0.08);
    border: 1px solid rgba(108, 99, 255, 0.15);
    border-radius: 50px;
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-tag.light {
    background: rgba(108, 99, 255, 0.15);
    border-color: rgba(108, 99, 255, 0.3);
    color: var(--primary-light);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================
   DESTINATION CARDS
   ============================================ */
.destination-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: var(--transition);
    cursor: pointer;
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.dest-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 260px;
}

.dest-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.destination-card:hover .dest-img {
    transform: scale(1.1);
}

.dest-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.dest-badge {
    padding: 6px 14px;
    background: var(--gradient-1);
    color: #fff;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.dest-badge.best-seller {
    background: var(--gradient-2);
}

.dest-price {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
}

.dest-price strong {
    font-size: 1.3rem;
    color: #fff;
    font-weight: 700;
}

.dest-favorite {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 2;
}

.dest-favorite:hover,
.dest-favorite.active {
    background: var(--secondary);
    transform: scale(1.1);
}

.dest-info {
    padding: 20px 24px 24px;
}

.dest-rating {
    display: flex;
    align-items: center;
    gap: 3px;
    margin-bottom: 10px;
}

.dest-rating i {
    color: var(--gold);
    font-size: 0.8rem;
}

.dest-rating span {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-left: 6px;
}

.dest-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 6px;
}

.dest-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 14px;
}

.dest-desc i {
    color: var(--primary);
    margin-right: 3px;
}

.dest-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.dest-features span {
    padding: 5px 12px;
    background: #F3F4FF;
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.dest-features span i {
    font-size: 0.7rem;
}

/* ============================================
   EXPERIENCES / WHY CHOOSE US
   ============================================ */
.bg-dark-gradient {
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}

.bg-dark-gradient::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(108, 99, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(0, 210, 255, 0.06) 0%, transparent 50%);
    animation: bgFloat 20s ease-in-out infinite;
}

@keyframes bgFloat {

    0%,
    100% {
        transform: translate(0, 0);
    }

    33% {
        transform: translate(30px, -30px);
    }

    66% {
        transform: translate(-20px, 20px);
    }
}

.experience-card {
    padding: 36px 28px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.experience-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transition: var(--transition);
}

.experience-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(108, 99, 255, 0.3);
    box-shadow: var(--shadow-glow);
}

.experience-card:hover::before {
    transform: scaleX(1);
}

.exp-icon {
    width: 70px;
    height: 70px;
    background: rgba(108, 99, 255, 0.12);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--primary);
    transition: var(--transition);
}

.exp-icon.orange {
    background: rgba(255, 107, 107, 0.12);
    color: var(--secondary);
}

.exp-icon.green {
    background: rgba(0, 210, 255, 0.12);
    color: var(--accent);
}

.exp-icon.purple {
    background: rgba(121, 40, 202, 0.12);
    color: var(--accent-2);
}

.experience-card:hover .exp-icon {
    transform: scale(1.1) rotate(5deg);
}

.experience-card h5 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.experience-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.exp-link {
    color: var(--primary-light);
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.exp-link:hover {
    color: var(--accent);
    gap: 10px;
}

/* ============================================
   PACKAGES / PRICING
   ============================================ */
.package-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 2px solid rgba(0, 0, 0, 0.04);
    transition: var(--transition);
    position: relative;
    height: 100%;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.package-card.featured {
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
    transform: scale(1.05);
}

.package-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.pkg-popular {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--gradient-2);
    color: #fff;
    padding: 6px 40px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: rotate(45deg);
    z-index: 2;
}

.pkg-header {
    padding: 36px 28px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pkg-header.silver {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.pkg-header.gold {
    background: linear-gradient(135deg, #f093fb, #f5576c);
}

.pkg-header.diamond {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.pkg-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
}

.pkg-badge {
    display: inline-block;
    padding: 4px 18px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
    backdrop-filter: blur(10px);
}

.pkg-price .old-price {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: line-through;
    font-size: 1rem;
}

.pkg-price h3 {
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    margin: 6px 0;
}

.pkg-price h3 span {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.8;
}

.pkg-duration {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.pkg-body {
    padding: 28px;
}

.pkg-features {
    list-style: none;
    margin-bottom: 28px;
}

.pkg-features li {
    padding: 10px 0;
    border-bottom: 1px solid #F0F0F5;
    font-size: 0.9rem;
    color: #555;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pkg-features li:last-child {
    border-bottom: none;
}

.pkg-features li i {
    font-size: 1rem;
    color: var(--primary);
}

.pkg-features li.disabled {
    color: #bbb;
}

.pkg-features li.disabled i {
    color: #ddd;
}

.btn-pkg {
    display: block;
    text-align: center;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    border: 2px solid var(--primary);
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    width: 100%;
}

.btn-pkg:hover,
.btn-pkg.featured {
    background: var(--gradient-1);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 8px 30px rgba(108, 99, 255, 0.3);
}

.btn-pkg.featured:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(108, 99, 255, 0.5);
}

/* ============================================
   PARALLAX CTA
   ============================================ */
.parallax-cta {
    position: relative;
    padding: 120px 0;
    background: url('https://images.unsplash.com/photo-1488085061387-422e29b40080?auto=format&fit=crop&w=1920&q=80') center/cover fixed;
    overflow: hidden;
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.9), rgba(0, 210, 255, 0.85));
    z-index: 1;
}

.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 500px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: #fff;
    color: var(--primary);
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50px;
    border: none;
    transition: var(--transition);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.btn-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    color: var(--primary-dark);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonial-card {
    padding: 32px 28px;
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: var(--transition);
    height: 100%;
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 5rem;
    font-family: 'Playfair Display', serif;
    color: rgba(108, 99, 255, 0.08);
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: rgba(108, 99, 255, 0.1);
}

.testimonial-stars {
    margin-bottom: 16px;
}

.testimonial-stars i {
    color: var(--gold);
    font-size: 0.9rem;
    margin-right: 2px;
}

.testimonial-text {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(108, 99, 255, 0.2);
}

.testimonial-author h6 {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 2px;
    font-size: 0.95rem;
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-info-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.ci-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: var(--radius-sm);
    background: rgba(108, 99, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    font-size: 1.2rem;
}

.contact-form-wrapper {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 36px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.glass-input {
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1px solid var(--glass-border) !important;
    color: #fff !important;
    border-radius: var(--radius-sm) !important;
    padding: 12px 16px;
    transition: var(--transition);
}

.glass-input:focus {
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 4px rgba(108, 99, 255, 0.15) !important;
    background: rgba(255, 255, 255, 0.1) !important;
}

.glass-input::placeholder {
    color: var(--text-muted) !important;
}

.glass-input option {
    background: var(--dark-2);
    color: #fff;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--dark);
    color: var(--text-muted);
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer-wave {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    color: #FAFBFF;
    line-height: 0;
}

.footer-wave svg {
    width: 100%;
    height: 80px;
}

.footer-brand {
    margin-bottom: 16px;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.footer-logo:hover {
    color: #fff;
}

.footer-logo i {
    color: var(--primary);
}

.footer-logo span {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 1rem;
    transition: var(--transition);
}

.footer-socials a:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    transform: translateY(-3px);
}

.footer-title {
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gradient-1);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
}

.footer-links a::before {
    content: '';
    width: 0;
    height: 1px;
    background: var(--primary);
    margin-right: 0;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-light);
    padding-left: 4px;
}

.footer-links a:hover::before {
    width: 12px;
    margin-right: 8px;
}

.newsletter-form .input-group {
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.newsletter-form .form-control {
    background: var(--dark-3);
    border: 1px solid var(--glass-border);
    color: #fff;
    padding: 14px 18px;
    font-size: 0.9rem;
}

.newsletter-form .form-control:focus {
    box-shadow: none;
    border-color: var(--primary);
}

.newsletter-form .form-control::placeholder {
    color: var(--text-muted);
}

.btn-newsletter {
    background: var(--gradient-1);
    color: #fff;
    padding: 14px 24px;
    border: none;
    transition: var(--transition);
}

.btn-newsletter:hover {
    color: #fff;
    opacity: 0.9;
}

.footer-divider {
    border-color: var(--glass-border);
    margin: 36px 0 20px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    font-size: 0.85rem;
    margin-bottom: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-bottom-links a:hover {
    color: var(--primary-light);
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(108, 99, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(108, 99, 255, 0.6);
}

/* ============================================
   ANIMATIONS - ADDITIONAL
   ============================================ */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Tilt effect on destination cards */
.destination-card:hover .dest-img-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.1), transparent);
    z-index: 1;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1199px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .hero-stats {
        gap: 20px;
        padding: 20px 24px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .cta-title {
        font-size: 2.4rem;
    }

    .navbar-collapse {
        background: rgba(11, 13, 23, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-radius: var(--radius-md);
        padding: 20px;
        margin-top: 16px;
        border: 1px solid var(--glass-border);
    }

    .package-card.featured {
        transform: scale(1);
    }

    .package-card.featured:hover {
        transform: translateY(-8px);
    }

    .hero-nav-btn {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }

    .hero-prev {
        left: 12px;
    }

    .hero-next {
        right: 12px;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
        width: 100%;
    }

    .stat-divider {
        width: 50px;
        height: 1px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-nav-btn {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }

    .hero-prev {
        left: 8px;
    }

    .hero-next {
        right: 8px;
    }

    .hero-indicators {
        bottom: 80px;
        gap: 8px;
    }

    .hero-indicators .indicator {
        width: 10px;
        height: 10px;
    }

    .hero-indicators .indicator.active {
        width: 28px;
    }

    .section-padding {
        padding: 70px 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .search-bar-wrapper {
        padding: 24px 20px;
    }

    .cta-title {
        font-size: 1.8rem;
    }

    .parallax-cta {
        padding: 80px 0;
        background-attachment: scroll;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
    }

    .contact-form-wrapper {
        padding: 24px 20px;
    }

    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-badge {
        font-size: 0.7rem;
        padding: 8px 16px;
    }

    .btn-hero-primary {
        padding: 14px 28px;
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.6rem;
    }
}