/* ================================
   GLOBAL STYLES & VARIABLES
   ================================ */

:root {
    --primary-color: #0EA5E9;
    --secondary-color: #2563EB;
    --accent-color: #F97316;
    --accent-light: #FB923C;
    --light-bg: #F8FAFC;
    --text-dark: #1E293B;
    --text-light: #64748B;
    --white: #FFFFFF;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
    --gradient-primary: linear-gradient(135deg, #0EA5E9, #2563EB);
    --gradient-accent: linear-gradient(135deg, #F97316, #FB923C);
    --gradient-success: linear-gradient(135deg, #10B981, #059669);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 110px;
    overflow-x: hidden !important;
    overflow-y: auto;
    max-width: 100%;
}

section[id] {
    scroll-margin-top: 110px;
}

@media (max-width: 767px) {
    html {
        scroll-padding-top: 140px;
    }

    section[id] {
        scroll-margin-top: 140px;
    }

    .hero-slider-section ~ section {
        padding-top: 5.25rem !important;
    }
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden !important;
    max-width: 100vw;
    position: relative;
}

@media (max-width: 768px) {
    html, body {
        overflow-x: hidden !important;
        max-width: 100vw !important;
        width: 100% !important;
        position: relative !important;
    }
    
    * {
        max-width: 100vw !important;
    }
    
    body::-webkit-scrollbar {
        width: 0px !important;
        display: none !important;
    }
    
    html::-webkit-scrollbar {
        width: 0px !important;
        display: none !important;
    }
}

/* ================================
   PREMIUM 2026 ANIMATIONS & MICRO-INTERACTIONS
   ================================ */

/* Page Load Fade-In */
/* Page Load Fade-In - Enhanced */
body {
    font-family: 'Trip Sans', 'Inter', 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 0 !important;
    margin: 0 !important;
    opacity: 1;
    position: relative;
    background-image: url('background.png');
    background-size: cover;
    background-position: center center;
    background-repeat: repeat;
    background-attachment: fixed;
}

.preloader-overlay {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(2, 6, 23, 0.96), rgba(14, 165, 233, 0.9));
    backdrop-filter: blur(10px);
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader-overlay.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.9rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.preloader-logo {
    width: 140px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    animation: preloaderPulse 1.5s ease-in-out infinite;
}

.preloader-texts {
    position: relative;
    min-height: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 0.35rem;
}

.preloader-progress {
    width: 220px;
    max-width: 90vw;
    height: 3px;
    background: rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    overflow: hidden;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.2);
}

.preloader-progress-bar {
    height: 100%;
    width: 0;
    border-radius: inherit;
    background: linear-gradient(90deg, #fff7c2 0%, #7dd3fc 45%, #ffffff 100%);
    box-shadow: 0 0 16px rgba(255, 215, 0, 0.25);
    transition: width 0.9s ease;
}

.preloader-label {
    color: rgba(248, 250, 252, 0.7);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    display: inline-block;
    flex-shrink: 0;
    font-family: 'Comic Sans MS', 'Comic Sans', 'Trebuchet MS', cursive;
}

.preloader-word {
    display: inline-block;
    visibility: hidden;
    opacity: 0;
    transform: translateY(10px);
    color: rgba(248, 250, 252, 0.95);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
    flex-shrink: 0;
    text-shadow: 0 0 12px rgba(255, 215, 0, 0.2);
}

.preloader-word.active {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    color: #fff7c2;
    font-weight: 800;
    text-shadow: 0 0 16px rgba(255, 215, 0, 0.35);
}

@keyframes preloaderPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}


body.loaded {
    opacity: 1;
}


@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pageLoadFadeIn {
    from { 
        opacity: 0;
    }
    to { 
        opacity: 1;
    }
}

/* Lazy Animation Classes */
.lazy-fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.lazy-fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.lazy-slide-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.lazy-slide-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.lazy-slide-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.lazy-slide-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.lazy-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.lazy-scale.visible {
    opacity: 1;
    transform: scale(1);
}

@keyframes pageLoadFade {
    to { opacity: 1; }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollBounce 2s ease-in-out infinite;
    font-size: 1.5rem;
    color: white;
    opacity: 0.8;
    cursor: pointer;
}

@keyframes scrollBounce {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, 15px); }
}

/* Hero Parallax Effect */
.hero-parallax {
    background-attachment: scroll !important;
    will-change: auto;
}

@media (max-width: 768px) {
    .hero-parallax {
        background-attachment: scroll !important;
        background-size: cover !important;
        background-position: center center !important;
    }
}

/* Button Ripple Effect */
.btn-ripple {
    position: relative;
    overflow: hidden;
}

.btn-ripple::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-ripple:active::after {
    width: 300px;
    height: 300px;
}

/* Button Float Animation */
.btn-float {
    animation: gentleFloat 3s ease-in-out infinite;
}

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

/* Button Glow Effect */
.btn-primary {
    background: var(--gradient-primary);
    border: none;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.4);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.6);
    background: var(--gradient-primary);
    color: white;
}

/* CTA Button Pulse */
@keyframes subtlePulse {
    0%, 100% { box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3); }
    50% { box-shadow: 0 4px 25px rgba(14, 165, 233, 0.6); }
}

.navbar .btn-primary {
    animation: subtlePulse 3s ease-in-out infinite;
}

/* Icon Rotation on Hover */
.icon-animated {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover .icon-animated {
    transform: rotate(10deg) scale(1.1);
}

/* Service Card Icon Bounce */
.service-card:hover i {
    animation: iconBounce 0.6s ease-in-out;
}

@keyframes iconBounce {
    0%, 100% { transform: translateY(0) scale(1); }
    25% { transform: translateY(-10px) scale(1.1); }
    50% { transform: translateY(0) scale(1.05); }
    75% { transform: translateY(-5px) scale(1.08); }
}

/* Form Input Glow on Focus */
.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(14, 165, 233, 0.25), 0 0 20px rgba(14, 165, 233, 0.15);
    background: rgba(255, 255, 255, 0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* WhatsApp Button Enhanced Float */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #20BA5B);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    text-decoration: none;
    animation: whatsappFloat 3s ease-in-out infinite;
}

@keyframes whatsappFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-10px) scale(1.05); }
}

.whatsapp-btn:hover {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.7);
}

/* Accordion Arrow Rotation */
.accordion-button::after {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
}

/* Social Icon Hover */
footer a i {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
}

footer a:hover i {
    transform: translateY(-5px) rotate(10deg) scale(1.2);
}

/* Navbar Glassmorphism on Scroll */
.navbar-scrolled {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Premium Cubic Bezier Easing */
* {
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Image Zoom on Hover - Enhanced */
.card-img-hover {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Gallery Overlay Smooth Reveal */
.gallery-overlay {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    backdrop-filter: blur(5px);
}

/* Testimonial Card Active State */
.testimonial-card.active {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Star Rating Animation */
.fa-star {
    animation: starTwinkle 2s ease-in-out infinite;
    animation-delay: calc(var(--i) * 0.2s);
}

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

/* Package Card Enhanced Lift - REMOVED - Now using premium design */


/* Mouse Follow Gradient Glow (Desktop Only) */
@media (min-width: 1024px) {
    .hero-section::before {
        content: '';
        position: absolute;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(249, 115, 22, 0.15), transparent 70%);
        border-radius: 50%;
        pointer-events: none;
        z-index: 1;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .hero-section:hover::before {
        opacity: 1;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .hero-parallax {
        background-attachment: scroll !important;
    }
}

/* ================================
   TYPOGRAPHY
   ================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Trip Sans', 'Poppins', sans-serif;
    line-height: 1.3;
}

h1 { font-size: 3.5rem; font-weight: 700; }
h2 { font-size: 2.5rem; font-weight: 700; }
h3 { font-size: 1.75rem; font-weight: 600; }
h4 { font-size: 1.5rem; font-weight: 600; }
h5 { font-size: 1.25rem; font-weight: 600; }

p { color: var(--text-light); }

a { transition: all 0.3s ease; }

/* ================================
   NAVBAR STYLES
   ================================ */

.navbar {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.75rem 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2000;
    width: 100%;
    margin-bottom: 0 !important;
    transform: translateY(0);
    transition: transform 0.35s ease-in-out, opacity 0.35s ease-in-out, visibility 0.35s ease-in-out;
    will-change: transform;
}

.navbar.navbar-scrolled {
    position: fixed;
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(14, 165, 233, 0.15);
}

.navbar.navbar-hidden {
    transform: translateY(-120%) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

.navbar-brand {
    font-size: 1.5rem;
    color: #FFFFFF !important;
    transition: transform 0.3s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 700;
}

.brand-text-pearl {
    font-family: 'Pacifico', cursive;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: none !important;
}

.navbar-brand img {
    margin-right: 12px;
}

@media (max-width: 767px) {
    .navbar-brand img {
        margin-right: 0;
    }
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.nav-link {
    color: #FFFFFF !important;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--accent-color) !important;
}

.nav-link:hover::after {
    width: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ================================
   HERO SLIDER SECTION - PREMIUM
   ================================ */

.hero-slider-section {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    margin: 0;
    padding: 0;
    z-index: 0;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 0;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Desktop - proper full screen */
@media (min-width: 769px) {
    .hero-slider-section {
        height: 90vh !important;
    }
    
    .hero-slide-img {
        object-fit: cover !important;
        object-position: center center !important;
        position: relative;
        top: 98px;
        height: calc(100% - 98px);
        width: 100% !important;
    }
    
    /* Desktop navbar text color - black */
    .nav-link {
        color: #000000 !important;
        text-shadow: none !important;
    }
    
    .nav-link:hover {
        color: var(--accent-color) !important;
    }
}

/* Tablet landscape */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-slider-section {
        height: 90vh !important;
    }
    
    .hero-slide-img {
        top: 80px;
        height: calc(100% - 80px);
    }
}

/* Mobile specific - Portrait images */
@media (max-width: 1024px) {
    /* Hero section starts from top */
    .hero-slider-section {
        position: relative !important;
        top: 0 !important;
        height: 78.5vh !important;
        min-height: 78.5vh !important;
        background: #000;
        margin: 0 !important;
        padding: 0 !important;
        z-index: 0 !important;
        overflow: hidden !important;
        max-width: 100vw !important;
        padding-top: 4.5rem !important;
    }
    
    /* Premium mobile navbar shell */
    .navbar {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        margin: 0 !important;
        margin-top: -1px !important;
        padding: 0.05rem 0 0.22rem !important;
        z-index: 1000 !important;
        max-width: 100vw !important;
        border-top-left-radius: 0 !important;
        border-top-right-radius: 0 !important;
        border-bottom-left-radius: 1.2rem !important;
        border-bottom-right-radius: 1.2rem !important;
        overflow: visible !important;
        box-shadow: 0 14px 36px rgba(2, 6, 23, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.24) !important;
    }

    .navbar::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(2, 6, 23, 0.82), rgba(14, 165, 233, 0.7));
        backdrop-filter: blur(20px) saturate(140%);
        -webkit-backdrop-filter: blur(20px) saturate(140%);
        z-index: -1;
    }
    
    .navbar .container-fluid {
        padding: 0.2rem 0.75rem !important;
        max-width: 100vw !important;
        border-radius: inherit !important;
    }
    
    .navbar-brand img {
        height: 24px !important;
        width: auto !important;
    }
    
    .navbar-toggler {
        width: 30px !important;
        height: 30px !important;
        padding: 0 !important;
        border: none !important;
    }
    
    .navbar-toggler-icon {
        width: 16px !important;
        height: 16px !important;
    }
    
    .brand-text-pearl {
        font-size: 0.95rem !important;
        line-height: 1 !important;
        margin: 0 !important;
    }
    
    .navbar {
        padding: 0.3rem 0 !important;
    }
    
    .navbar .container-fluid {
        padding: 0.12rem 1rem !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
    }
    
    .navbar {
        background: linear-gradient(135deg, rgba(2, 6, 23, 0.78), rgba(14, 165, 233, 0.55)) !important;
        backdrop-filter: blur(18px) saturate(140%) !important;
        -webkit-backdrop-filter: blur(18px) saturate(140%) !important;
        border: 1px solid rgba(255, 255, 255, 0.24) !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22) !important;
        border-radius: 1.8rem !important;
    }

    .navbar.navbar-scrolled {
        background: linear-gradient(135deg, rgba(2, 6, 23, 0.9), rgba(37, 99, 235, 0.78)) !important;
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.28) !important;
    }

    .navbar .navbar-toggler {
        background: rgba(255, 255, 255, 0.16) !important;
        border: 1px solid rgba(255, 255, 255, 0.28) !important;
        border-radius: 14px !important;
        padding: 0.45rem !important;
        box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.16), 0 8px 20px rgba(0, 0, 0, 0.16) !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .navbar .navbar-toggler-icon {
        filter: brightness(0) invert(1) !important;
        width: 18px !important;
        height: 18px !important;
    }

    .navbar .navbar-collapse {
        position: absolute !important;
        top: calc(100% + 0.45rem) !important;
        left: 0.5rem !important;
        right: 0.5rem !important;
        background: linear-gradient(180deg, rgba(7, 14, 31, 0.97), rgba(15, 23, 42, 0.95)) !important;
        backdrop-filter: blur(24px) saturate(140%) !important;
        -webkit-backdrop-filter: blur(24px) saturate(140%) !important;
        border: 1px solid rgba(255, 255, 255, 0.16) !important;
        border-radius: 1.4rem !important;
        margin-top: 0 !important;
        padding: 0.75rem !important;
        box-shadow: 0 20px 48px rgba(0, 0, 0, 0.32) !important;
        overflow: visible !important;
        opacity: 0 !important;
        visibility: hidden !important;
        transform: translateY(-8px) scale(0.98) !important;
        transition: opacity 0.18s ease, visibility 0.18s ease, transform 0.18s ease !important;
    }

    .navbar .navbar-collapse.show {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) scale(1) !important;
    }

    .navbar .navbar-collapse:not(.show) {
        display: none !important;
    }

    .navbar .navbar-nav {
        gap: 0.25rem !important;
        padding: 0.2rem 0 !important;
        width: 100% !important;
        align-items: center !important;
    }

    .navbar .nav-item {
        border-radius: 999px !important;
        overflow: hidden !important;
        width: 100% !important;
    }

    .navbar .nav-item .nav-link {
        color: #f8fafc !important;
        padding: 0.82rem 0.95rem !important;
        font-size: 0.97rem !important;
        font-weight: 600 !important;
        letter-spacing: 0.01em !important;
        text-shadow: none !important;
        border-radius: 1rem !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        width: 100% !important;
        transition: background 0.25s ease, transform 0.25s ease, color 0.25s ease !important;
    }

    .navbar .nav-item .nav-link::after {
        display: none !important;
    }

    .hero-slider-section .navbar .nav-item .nav-link:hover,
    .hero-slider-section .navbar .nav-item .nav-link:focus {
        background: rgba(255, 255, 255, 0.12) !important;
        color: #fff7c2 !important;
        transform: translateX(2px) !important;
    }

    .hero-slider-section .navbar .btn-primary {
        margin-top: 0.65rem !important;
        width: 100% !important;
        justify-content: center !important;
        background: linear-gradient(135deg, #f97316, #fb923c) !important;
        border-radius: 999px !important;
        padding: 0.8rem 1rem !important;
        font-weight: 700 !important;
        box-shadow: 0 12px 25px rgba(249, 115, 22, 0.24) !important;
    }
    
    .navbar-brand {
        margin: 0 !important;
    }
    
    .navbar-toggler {
        margin: 0 !important;
    }
    
    .hero-slide-img {
        object-fit: cover !important;
        object-position: center center !important;
        width: 100% !important;
        height: 100% !important;
        background: #000;
        position: relative !important;
        top: 42px !important;
        max-width: 100vw !important;
    }
    
    .hero-slider {
        margin: 0 !important;
        padding: 0 !important;
        height: 100% !important;
        width: 100%;
        overflow: hidden !important;
        max-width: 100vw !important;
    }
    
    .hero-slide {
        background: #000;
        margin: 0 !important;
        padding: 0 !important;
        height: 100% !important;
        overflow: hidden !important;
        max-width: 100vw !important;
    }
    
    .hero-slider-btn {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    
    .prev-btn {
        left: 15px;
    }
    
    .next-btn {
        right: 15px;
    }
    
    .hero-slider-cta {
        bottom: 100px;
        gap: 10px;
        padding: 0 15px;
    }
    
    .hero-slider-cta .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .hero-slider-dots {
        bottom: 20px !important;
    }
    
    body {
        padding: 0 !important;
        margin: 0 !important;
    }
    
    #home {
        margin: 0 !important;
        padding: 0 !important;
    }
    
    /* Next section normal flow */
    #packages {
        margin-top: 0 !important;
    }
    
    /* Remove horizontal scrollbar */
    .container, .container-fluid, .row {
        max-width: 100vw !important;
        overflow-x: hidden !important;
    }
}

.hero-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.1));
    z-index: 1;
}

/* Navigation Arrows - Only right arrow visible for manual navigation */
.hero-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.16);
    backdrop-filter: blur(6px);
    transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.hero-slider-btn:hover {
    transform: translateY(-50%) scale(1.04);
    background: rgba(255, 255, 255, 0.28);
    border-color: rgba(255, 255, 255, 0.55);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.prev-btn {
    left: 16px;
    display: none !important;
}

.next-btn {
    right: 16px;
    display: flex !important;
}

/* Dots Navigation */
.hero-slider-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

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

.dot:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.2);
}

.dot.active {
    background: white;
    width: 40px;
    border-radius: 10px;
}

/* CTA Buttons Overlay */
.hero-slider-cta {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    z-index: 10;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-slider-cta .btn {
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.hero-slider-cta .btn-primary {
    background: rgba(14, 165, 233, 0.9);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-slider-cta .btn-light {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #1E293B;
}

.hero-slider-cta .btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

section {
    position: relative;
}

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

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

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

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

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

.animate-fade-in {
    animation: fadeIn 0.8s ease-out forwards;
    opacity: 0;
}

.scroll-reveal {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

/* ================================
   GLASSMORPHISM EFFECT
   ================================ */

.glassmorphism {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
}

/* ================================
   SECTION HEADERS
   ================================ */

.section-header {
    margin-bottom: 2rem;
}

.section-header h2,
.section-header h3 {
    position: relative;
    display: inline-block;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.8);
}

.section-header h2::after,
.section-header h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-accent);
    border-radius: 2px;
}

#packages,
#about,
#destinations,
#services,
#testimonials,
#faq,
#contact {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
    position: relative;
    background: transparent !important;
}

section:not(#home) {
    background: transparent !important;
}

section:not(#home) .section-header {
    margin-bottom: 2rem !important;
}

section:not(#home) .row.g-4 {
    --bs-gutter-y: 1.5rem;
}

/* ================================
   PACKAGE CARDS
   ================================ */

.card {
    border: none;
    border-radius: 20px;
    transition: all 0.3s ease;
    overflow: hidden;
}

/* Old package card styles - REMOVED - Now using premium design */

.card-img-top {
    height: 250px;
    object-fit: cover;
    transition: transform 0.45s ease;
    width: 100%;
}

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


/* ================================
   PACKAGE DETAIL MODAL
   ================================ */

.package-detail-modal .modal-dialog {
    max-width: 1180px;
}

.package-detail-modal .modal-content {
    border: none;
    border-radius: 28px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.98));
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.22);
}

.package-detail-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    padding: 1.5rem 1.75rem;
}

.package-detail-kicker {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.75rem;
    font-weight: 700;
    opacity: 0.9;
}

.package-detail-subtitle {
    color: rgba(255, 255, 255, 0.82);
    max-width: 44rem;
}

.package-detail-layout {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 0;
}

.package-detail-media {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.96), rgba(30, 41, 59, 0.92));
    padding: 1.25rem;
}

.package-detail-hero-wrap {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    min-height: 420px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.package-detail-hero {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    display: block;
}

.package-detail-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--text-dark);
    font-weight: 700;
    font-size: 0.82rem;
}

.package-detail-thumb-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.85rem;
    margin-top: 0.9rem;
}

.package-detail-thumb {
    border: 0;
    padding: 0;
    border-radius: 16px;
    overflow: hidden;
    background: transparent;
    opacity: 0.7;
    transform: translateY(0);
    transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
}

.package-detail-thumb img {
    width: 100%;
    height: 92px;
    object-fit: cover;
    display: block;
}

.package-detail-thumb:hover,
.package-detail-thumb.is-active {
    opacity: 1;
    transform: translateY(-3px);
}

.package-detail-content {
    padding: 1.6rem 1.6rem 1.4rem;
    background: rgba(255, 255, 255, 0.98);
}

.package-detail-topline {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.package-detail-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.5rem 0.85rem;
    border-radius: 999px;
    background: rgba(14, 165, 233, 0.1);
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 700;
}

.package-detail-pill-accent {
    background: rgba(249, 115, 22, 0.12);
    color: #c2410c;
}

.package-detail-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
}

.package-detail-price span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-light);
}

.package-detail-description {
    margin-top: 0.9rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.package-detail-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-bottom: 1.1rem;
}

.package-detail-fact {
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    background: #f1f5f9;
    color: var(--text-dark);
    font-size: 0.82rem;
    font-weight: 700;
}

.package-detail-section {
    padding-top: 1rem;
    margin-top: 1rem;
    border-top: 1px solid rgba(148, 163, 184, 0.18);
}

.package-detail-section h5 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.package-detail-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.package-detail-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 0.75rem;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.08);
    color: var(--text-dark);
    font-size: 0.85rem;
    font-weight: 600;
}

.package-detail-list,
.package-detail-timeline {
    margin: 0;
    padding-left: 1.2rem;
    color: var(--text-light);
}

.package-detail-list li,
.package-detail-timeline li {
    margin-bottom: 0.55rem;
}

.package-detail-cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin-top: 1.4rem;
}

.package-detail-note {
    color: var(--text-light);
    font-size: 0.9rem;
}

@media (max-width: 991px) {
    .package-detail-layout {
        grid-template-columns: 1fr;
    }

    .package-detail-thumb-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 576px) {
    .package-detail-header {
        padding: 1.25rem 1rem;
    }

    .package-detail-content,
    .package-detail-media {
        padding: 1rem;
    }

    .package-detail-hero-wrap,
    .package-detail-hero {
        min-height: 280px;
    }

    .package-detail-thumb img {
        height: 74px;
    }
}

.card-body {
    padding: 1.5rem;
}

.badge {
    font-size: 0.75rem;
    padding: 0.5rem 1rem;
    font-weight: 600;
}

/* ================================
   FEATURE CARDS
   ================================ */

.feature-card {
    transition: all 0.3s ease;
    border: none;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(14, 165, 233, 0.2);
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(37, 99, 235, 0.1));
}

/* ================================
   DESTINATIONS SLIDER - MOBILE
   ================================ */

.destinations-slider-container {
    position: relative;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 20px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
    cursor: grab;
    scroll-snap-type: x mandatory;
}

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

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

.destinations-slider-wrapper {
    display: flex;
    gap: 1.5rem;
    width: fit-content;
}

@media (min-width: 769px) {
    .destinations-slider-wrapper {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        width: 100%;
    }
}

@media (max-width: 768px) {
    .destination-card {
        min-width: 85vw;
        width: 85vw;
        flex-shrink: 0;
        scroll-snap-align: center;
    }
    
    /* Hide Explore Now button on mobile */
    .destination-btn {
        display: none !important;
    }
    
    /* Hint animation for first card */
    .destination-card:first-child {
        animation: slideHint 2s ease-in-out 1s 2;
    }
}

@keyframes slideHint {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(-20px);
    }
}

/* ================================
   DESTINATIONS GRID - NEW DESIGN
   ================================ */

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.destination-card {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    aspect-ratio: 3/4;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

.destination-card.aos-animate {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

.destination-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.destination-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.1) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.8) 100%
    );
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    transition: background 0.4s ease;
}

.destination-card:hover .destination-overlay {
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.2) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.9) 100%
    );
}

.destination-content {
    width: 100%;
}

.destination-title {
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.destination-info {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
    font-weight: 400;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.destination-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.destination-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateX(8px);
    color: white;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.destination-btn i {
    transition: transform 0.3s ease;
}

.destination-btn:hover i {
    transform: translateX(4px);
}

/* ================================
   PACKAGES SLIDER - PREMIUM HORIZONTAL DESIGN
   ================================ */

.packages-slider-shell {
    position: relative;
    margin: 0 24px;
}

.packages-slider-container {
    position: relative;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 20px 0;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    scroll-behavior: smooth;
    cursor: grab;
    scroll-snap-type: x mandatory;
}

.packages-nav-btn {
    display: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 8;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, #0EA5E9, #2563EB);
    color: #fff;
    box-shadow: 0 6px 14px rgba(14, 165, 233, 0.25);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    padding: 0;
}

.packages-nav-btn:hover {
    transform: translateY(-50%) scale(1.04);
    box-shadow: 0 8px 16px rgba(14, 165, 233, 0.35);
}

.packages-nav-prev {
    left: -18px;
}

.packages-nav-next {
    right: -18px;
}

@media (min-width: 992px) {
    .packages-nav-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.packages-slider-container::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.packages-slider-container:active {
    cursor: grabbing;
}

.packages-slider-wrapper {
    display: flex;
    gap: 2rem;
    width: fit-content;
}

.package-card {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    min-width: 350px;
    width: 350px;
    height: 380px;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    scroll-snap-align: start;
}

@media (max-width: 768px) {
    .packages-slider-wrapper {
        gap: 1rem;
    }
    
    .package-card {
        min-width: calc(50% - 0.5rem);
        width: calc(50% - 0.5rem);
        height: 280px;
        scroll-snap-align: start;
    }
}

@media (max-width: 480px) {
    .package-card {
        min-width: calc(50% - 0.5rem);
        width: calc(50% - 0.5rem);
        height: 260px;
        scroll-snap-align: start;
    }
}

.package-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.package-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.package-badge {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.badge-popular {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
}

.badge-new {
    background: linear-gradient(135deg, #eab308, #ca8a04);
    color: white;
}

.badge-hot {
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: white;
}

/* Package Header - Location Name at Top Left */
.package-header {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    right: 1.25rem;
    z-index: 3;
}

.package-location {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
    line-height: 1.2;
}

/* Package Footer - Price at Bottom Left */
.package-footer {
    position: absolute;
    bottom: 1.25rem;
    left: 1.25rem;
    right: 1.25rem;
    text-align: left;
    z-index: 3;
}

.package-price-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.75rem !important;
    font-weight: 400;
    margin: 0 0 0.15rem 0;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
    text-transform: capitalize;
    letter-spacing: 0.3px;
}

.package-price {
    color: white;
    font-size: 1.5rem !important;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

@media (max-width: 768px) {
    .package-location {
        font-size: 1rem !important;
    }
    
    .package-price-label {
        font-size: 0.65rem !important;
    }
    
    .package-price {
        font-size: 1.2rem !important;
    }
    
    .package-header {
        top: 1rem;
        left: 1rem;
        right: 1rem;
    }
    
    .package-footer {
        bottom: 1rem;
        left: 1rem;
        right: 1rem;
    }
}

@media (max-width: 480px) {
    .package-location {
        font-size: 0.9rem !important;
    }
    
    .package-price-label {
        font-size: 0.6rem !important;
    }
    
    .package-price {
        font-size: 1.1rem !important;
    }
}

/* Responsive Design for Destinations */
@media (max-width: 768px) {
    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .destination-card {
        border-radius: 16px;
    }
    
    .destination-overlay {
        padding: 1.25rem;
    }
    
    .destination-title {
        font-size: 1.3rem;
    }
    
    .destination-info {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
    
    .destination-btn {
        font-size: 0.9rem;
        padding: 0.6rem 1.2rem;
    }
}

/* Responsive Design for Packages */
@media (max-width: 768px) {
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .package-card {
        border-radius: 16px;
    }
    
    .package-badge {
        top: -0.4rem;
        right: 0.5rem;
        padding: 0.3rem 0.6rem;
        font-size: 0.6rem !important;
    }
    
    .package-overlay {
        padding: 1.25rem;
    }
    
    .package-title {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
    }
    
    .package-duration,
    .package-rating {
        font-size: 0.75rem;
        margin-bottom: 0.4rem;
    }
    
    .package-price {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .package-price span {
        font-size: 0.75rem;
    }
    
    .package-btn {
        font-size: 0.9rem;
        padding: 0.6rem 1.2rem;
    }
}
        font-size: 0.8rem;
        margin-bottom: 0.75rem;
    }
    
    .destination-btn {
        font-size: 0.85rem;
        padding: 0.6rem 1rem;
        gap: 0.5rem;
    }
}

@media (max-width: 576px) {
    .destinations-grid {
        gap: 0.75rem;
    }
    
    .destination-card {
        border-radius: 12px;
    }
    
    .destination-overlay {
        padding: 1rem;
    }
    
    .destination-title {
        font-size: 1.1rem;
    }
    
    .destination-flag {
        width: 14px;
        height: 10px;
    }
    
    .destination-info {
        font-size: 0.75rem;
    }
    
    .destination-btn {
        font-size: 0.8rem;
        padding: 0.5rem 0.85rem;
    }
}

/* ================================
   SERVICE CARDS
   ================================ */

.service-card {
    transition: all 0.3s ease;
    border: none;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.service-card i {
    transition: all 0.3s ease;
}

.service-card:hover i {
    transform: scale(1.2) rotate(10deg);
}

/* ================================
   TESTIMONIAL CARDS
   ================================ */

.testimonial-card {
    border: none;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-card img {
    width: 50px;
    height: 50px;
    object-fit: cover;
}

.fa-star {
    font-size: 0.9rem;
}

/* ================================
   ACCORDION
   ================================ */

.accordion-button {
    background: transparent;
    border: none;
    color: var(--text-dark);
    padding: 1.5rem;
    font-weight: 600;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(37, 99, 235, 0.1));
    color: var(--primary-color);
}

.accordion-button:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(14, 165, 233, 0.25);
}

.accordion-body {
    padding: 1.5rem;
    color: var(--text-light);
}

/* ================================
   CONTACT FORM
   ================================ */

.contact-section {
    display: none;
}

.contact-section.is-visible {
    display: block;
}

.contact-section.is-visible .container {
    animation: fadeInUp 0.35s ease-out;
}

.form-control {
    border: 2px solid rgba(14, 165, 233, 0.2);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.5);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(14, 165, 233, 0.25);
    background: rgba(255, 255, 255, 0.8);
}

.form-label {
    color: var(--text-dark);
}

#contactForm {
    border: none;
}

.contact-info {
    border: none;
    transition: all 0.3s ease;
}

.contact-info:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.contact-info a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.contact-info a:hover {
    color: var(--accent-color);
}

/* ================================
   BUTTON STYLES
   ================================ */

.btn-book {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-book:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(14, 165, 233, 0.3);
    color: white;
}

.btn-hover-lift {
    transition: all 0.3s ease;
}

.btn-hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* ================================
   FOOTER
   ================================ */

footer {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.7), rgba(15, 23, 42, 0.7)), url('DESKTOP FOOTER BACKGROUND.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: 5rem;
    position: relative;
    z-index: 10;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

@media (max-width: 768px) {
    footer {
        background: linear-gradient(135deg, rgba(30, 41, 59, 0.7), rgba(15, 23, 42, 0.7)), url('MOBILE FOOTER BACKGROUNFD.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        display: block !important;
    }
    
    /* 2 columns layout for footer on mobile - 2 rows */
    footer .row.g-4 .col-lg-3 {
        width: 50% !important;
        flex: 0 0 50% !important;
        max-width: 50% !important;
        margin-bottom: 1.5rem !important;
    }
    
    footer .row.g-4 .col-md-6 {
        width: 50% !important;
        flex: 0 0 50% !important;
        max-width: 50% !important;
    }
}

footer a {
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--primary-color) !important;
}

.social-icon-link {
    width: 45px;
    height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(14, 165, 233, 0.15);
    border-radius: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
    flex-shrink: 0;
    color: #0EA5E9;
    border: 1px solid rgba(14, 165, 233, 0.2);
}

.social-icon-link:hover {
    transform: translateY(-4px) scale(1.05);
    background: rgba(14, 165, 233, 0.25);
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(14, 165, 233, 0.2);
}

.social-icon-link svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    display: block;
}

footer .text-muted {
    color: rgba(255, 255, 255, 0.6) !important;
}

footer hr {
    opacity: 0.2;
}

/* ================================
   WHATSAPP FLOATING BUTTON
   ================================ */

.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #20BA5B);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 999;
    text-decoration: none;
    animation: float 3s ease-in-out infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.6);
    background: linear-gradient(135deg, #128C7E, #25D366);
    color: white;
    animation: float 3s ease-in-out infinite, flicker 0.8s ease-in-out infinite;
}

.whatsapp-btn:hover i {
    animation: flickerIcon 0.8s ease-in-out infinite;
}

@keyframes flicker {
    0%, 100% { 
        opacity: 1; 
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.6);
    }
    25% { 
        opacity: 0.8; 
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.9);
    }
    50% { 
        opacity: 1; 
        box-shadow: 0 12px 30px rgba(37, 211, 102, 1);
    }
    75% { 
        opacity: 0.85; 
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.8);
    }
}

@keyframes flickerIcon {
    0%, 100% { 
        opacity: 1;
        transform: scale(1);
    }
    25% { 
        opacity: 0.7;
        transform: scale(1.1);
    }
    50% { 
        opacity: 1;
        transform: scale(1.2);
    }
    75% { 
        opacity: 0.8;
        transform: scale(1.05);
    }
}

/* ================================
   CTA SECTION BEFORE FOOTER
   ================================ */

.cta-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-content-box {
    animation: fadeInUp 0.8s ease-out;
}

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

.cta-section .btn {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-section .btn-light:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0,0,0,0.6) !important;
    background: #ffffff;
}

.cta-section .btn-outline-light:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0,0,0,0.6) !important;
    background: rgba(255, 255, 255, 0.35);
    border-color: #ffffff;
}

.cta-section h2 {
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.cta-section p {
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

@media (max-width: 991px) {
    .cta-section {
        min-height: auto !important;
    }
    
    .cta-section .row {
        min-height: auto !important;
    }
    
    .cta-image-container {
        order: 1;
        padding: 30px 20px 20px !important;
    }
    
    .cta-text-container {
        order: 2;
        padding: 20px 20px 40px !important;
        text-align: center !important;
    }
    
    .cta-banner-image {
        opacity: 1 !important;
        transform: translateX(0) !important;
    }
    
    .cta-content {
        opacity: 1 !important;
        transform: translateX(0) !important;
    }
    
    .cta-content h2 {
        font-size: 1.8rem !important;
    }
    
    .cta-content p {
        font-size: 1.2rem !important;
    }
    
    .cta-content .d-flex {
        justify-content: center !important;
    }
    
    .cta-section .btn-lg {
        padding: 0.75rem 2rem !important;
        font-size: 1rem !important;
    }
}

@keyframes shake {
    0%, 100% { transform: rotate(0deg); }
    10%, 30%, 50%, 70%, 90% { transform: rotate(-10deg); }
    20%, 40%, 60%, 80% { transform: rotate(10deg); }
}

/* ================================
   RESPONSIVE DESIGN
   ================================ */

/* Tablets (768px and up) */
@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .hero-section {
        height: 80vh;
        background-attachment: scroll;
    }
    
    /* 2 Column Layout for Tablets */
    #packages .row.g-4,
    #about .row.g-4 {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    #packages .col-md-6,
    #packages .col-lg-4,
    #about .col-md-6,
    #about .col-lg-4 {
        width: 100%;
        padding: 0;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, minmax(200px, 1fr));
        gap: 1.5rem;
    }
    
    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    .section-header h2::after {
        bottom: -8px;
    }
}

/* Mobile (576px and down) */
@media (max-width: 576px) {
    h1 { font-size: 1.5rem; }
    h2 { font-size: 1.25rem; }
    h3 { font-size: 1rem; }
    
    body {
        font-size: 0.9rem;
    }
    
    .hero-section {
        height: 60vh;
        background-attachment: scroll;
    }
    
    /* Force visibility of cards on mobile */
    .package-card,
    .destination-card,
    .lazy-scale,
    .lazy-fade-in,
    .lazy-slide-left,
    .lazy-slide-right {
        opacity: 1 !important;
        transform: none !important;
        visibility: visible !important;
    }
    
    /* 2 Column Layout for Cards */
    #packages .packages-grid,
    #about .row.g-4,
    #destinations .destinations-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    #about .col-md-6,
    #about .col-lg-4 {
        width: 100%;
        padding: 0;
    }
    
    /* Card Image Full Visible */
    .card-img-top {
        height: 140px;
        object-fit: cover;
        width: 100%;
    }

    
    .feature-card {
        padding: 0.75rem !important;
    }
    
    .feature-card h5 {
        font-size: 0.9rem;
    }
    
    .feature-card .small {
        font-size: 0.75rem;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 0.75rem;
    }
    
    .feature-icon i {
        font-size: 1.2rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.5rem !important;
    }
    
    .gallery-item {
        border-radius: 12px;
    }
    
    .hero-content h1 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .hero-content p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .d-flex.gap-3 {
        flex-direction: column;
        gap: 1rem !important;
    }
    
    .btn-lg {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .navbar-brand {
        font-size: 1.2rem;
    }
    
    .card-body {
        padding: 1rem;
    }
    
    .package-card:hover,
    .destination-card:hover {
        transform: translateY(-8px);
    }

    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .feature-card {
        padding: 1.5rem !important;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .section-header h2::after {
        width: 60px;
        bottom: -6px;
    }
    
    .whatsapp-btn {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 1.2rem;
    }
    
    .py-5 {
        padding: 3rem 0 !important;
    }
    
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .form-control {
        padding: 0.6rem 0.8rem;
    }
    
    #contactForm {
        padding: 2rem 1rem !important;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    h1 { font-size: 1.25rem; }
    h2 { font-size: 1rem; }
    
    .hero-content h1 {
        font-size: 1.25rem;
    }
    
    .btn-lg {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}

/* ================================
   ACCESSIBILITY
   ================================ */

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

@media (prefers-color-scheme: dark) {
    :root {
        --text-dark: #F1F5F9;
        --text-light: #CBD5E1;
        --light-bg: #0F172A;
    }
    
    body {
        background-color: #1E293B;
        color: var(--text-dark);
    }
    
    .glassmorphism {
        background: rgba(30, 41, 59, 0.8);
        border-color: rgba(148, 163, 184, 0.2);
    }
    
    .form-control {
        background: rgba(71, 85, 105, 0.5);
        border-color: rgba(14, 165, 233, 0.3);
        color: var(--text-dark);
    }
    
    .accordion-button {
        color: var(--text-dark);
    }
}

/* ================================
   LOADING SPINNER
   ================================ */

.btn-loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    margin-top: -8px;
    margin-left: -8px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spinner 0.6s linear infinite;
}

@keyframes spinner {
    to { transform: rotate(360deg); }
}

/* ================================
   CUSTOM SCROLLBAR (Webkit Browsers)
   ================================ */

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
}

/* ================================
   UTILITY CLASSES
   ================================ */

.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shadow-hover {
    transition: box-shadow 0.3s ease;
}

.shadow-hover:hover {
    box-shadow: var(--shadow-lg);
}

.opacity-hover {
    transition: opacity 0.3s ease;
}

.opacity-hover:hover {
    opacity: 0.8;
}
