:root {
    --primary: #ff5e00;      /* Vibrant Orange */
    --primary-dark: #cc0000; /* Deep Red accent */
    --secondary: #0a0a0a;    /* True Deep Black */
    --soft: #f4f4f5;         /* Slight off-white for contrast */
    --card: rgba(255, 255, 255, 0.05); /* Lighter glass effect */
    --gradient: linear-gradient(135deg, rgba(5, 5, 5, 0.98) 0%, rgba(150, 0, 0, 0.90) 100%); /* Make gradient overlay darker */
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: #ffffff; /* Clean white background */
    color: var(--secondary);

    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

.site-navbar {
    background: #ffffff; /* Solid white */
    backdrop-filter: blur(12px);
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.site-navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 0.65rem 0;
}

.brand-pill {
    display: inline-block;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 94, 0, 0.15); /* Orange tint */
    border: 1px solid rgba(255, 94, 0, 0.25);
    color: var(--primary-dark);
    letter-spacing: 0.3px;
    font-weight: 800;
}

.btn-glass {
    background: rgba(255, 94, 0, 0.1);
    color: var(--primary-dark);
    border: 1px solid rgba(255, 94, 0, 0.25);
    backdrop-filter: blur(8px);
    font-weight: 700;
}

.btn-glass:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.hero-slider {
    position: relative;
}

.hero-slide {
    min-height: 75vh;
    position: relative;
    display: flex;
    align-items: center;
    color: #fff;
    background-color: var(--secondary); /* Fallback */
}

.hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11, 18, 32, 0.9) 0%, rgba(11, 18, 32, 0.4) 50%, rgba(11, 18, 32, 0.8) 100%);
    z-index: 1;
}

.hero-slide .container {
    position: relative;
    z-index: 2;
}

.hero-slide .slide-bg {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    /* Removed background-attachment:fixed — forces full-page repaint on scroll, very slow on mobile */
}

.hero-slide .container {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    gap: 0.55rem;
    align-items: center;
    padding: 0.6rem 0.85rem;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.95rem;
}

.hero-title {
    font-size: clamp(2.4rem, 5vw, 4.8rem);
    line-height: 1.05;
    font-weight: 800;
    max-width: 760px;
    margin-top: 1rem;
}

.hero-subtitle {
    max-width: 640px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.06rem;
    margin: 1rem 0 1.75rem;
}

.btn-primary-soft {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border: none;
    color: #fff;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(255, 94, 0, 0.3);
    transition: all 0.3s ease;
}

.btn-primary-soft:hover {
    color: #fff;
    box-shadow: 0 14px 28px rgba(204, 0, 0, 0.4);
    transform: translateY(-2px);
}

.section {
    padding: 5rem 0;
    scroll-margin-top: 70px;
}

.section-heading {
    max-width: 100%;
    margin-bottom: 2.4rem;
}

.section-heading h2 {
    font-size: clamp(1.6rem, 2.5vw, 1.85rem);
}

.section-heading p {
    font-size: clamp(0.85rem, 1.4vw, 0.95rem);
    white-space: nowrap;
}

.eyebrow {
    display: inline-block;
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    background: rgba(255, 94, 0, 0.1);
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 0.4px;
    margin-bottom: 0.85rem;
}

.glass-card,
.package-card,
.feature-card,
.stats-card {
    border: none;
    border-radius: 24px;
    background: #fff;
    box-shadow: 
        0 4px 6px -1px rgba(0, 0, 0, 0.05), 
        0 10px 25px -5px rgba(0, 0, 0, 0.08); /* Layered Shadow */
}

.package-card {
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 320px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-radius: 24px;
    will-change: transform, box-shadow;
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
}
.whatsapp-icon {
    margin-top: 15px;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 30px -10px rgba(0, 0, 0, 0.15), 
        0 10px 15px -5px rgba(0, 0, 0, 0.1);
}

.package-card .card-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.package-card .card-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(to top, 
        rgba(10, 10, 10, 0.95) 0%, 
        rgba(10, 10, 10, 0.6) 40%, 
        transparent 100%);
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.package-card .card-content h4 {
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.package-card .card-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.5;
}

.package-badge {
    display: inline-block;
    width: fit-content;
    background: var(--primary);
    color: #fff;
    font-weight: 700;
    border-radius: 50px;
    padding: 0.4rem 0.9rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(255, 94, 0, 0.3);
    white-space: nowrap;
}

.section-dark {
    background: linear-gradient(180deg, #050505 0%, #171717 100%);
    color: #fff;
}

.section-dark .section-heading p,
.section-dark .card-text {
    color: rgba(255, 255, 255, 0.72);
}

.stats-card {
    padding: 1.5rem;
    background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
    border: 1px solid rgba(255,255,255,0.08);
    color: #fff;
}

.page-hero {
    padding: 9rem 0 4rem;
    background: var(--gradient);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.page-hero::after {
    content: '';
    width: 280px;
    height: 280px;
    position: absolute;
    right: -60px;
    top: -80px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
}

.page-content-card {
    border-radius: 24px;
    padding: 2rem;
    background: #fff;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0,0,0,0.05);
}

.package-price {
    font-size: 1.15rem;
    color: var(--primary-dark);
    font-weight: 800;
}

.feature-list {
    padding-left: 1rem;
}

.feature-list li {
    margin-bottom: 0.55rem;
}

.site-footer {
    background: #0c1421; /* Deep outbound night theme */
    color: #fff;
    padding: 0 0 3rem;
    position: relative;
    overflow: hidden;
    content-visibility: auto; /* Skip rendering until visible */
    contain-intrinsic-size: 0 600px;
    margin-top: 3rem;
}

.footer-wave {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 3;
    margin-top: -1px; /* FIX 1px gap issue */
}

.footer-wave path {
    fill: #ffffff; /* Match the body background color */
}

.footer-trees-bg {
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 380px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 120' preserveAspectRatio='none'%3E%3Cpath fill='%23111c2e' d='M60 10 L30 50 L45 50 L15 90 L40 90 L0 120 L120 120 L80 90 L105 90 L75 50 L90 50 Z'/%3E%3C/svg%3E");
    background-repeat: repeat-x;
    background-size: 200px 100%;
    background-position: bottom center;
    z-index: 1;
    pointer-events: none;
}

.footer-title {
    color: #fff;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    margin-bottom: 2rem;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

.footer-links {
    margin: 0;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.85rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.social-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 94, 0, 0.3);
}

.footer-contact li i {
    font-size: 1.1rem;
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.empty-state {
    padding: 2rem;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0,0,0,0.05);
    text-align: center;
}

.content-html p,
.content-html li {
    color: #334155;
    line-height: 1.85;
}

.content-html h2,
.content-html h3,
.content-html h4 {
    margin-top: 1.5rem;
    margin-bottom: 0.85rem;
    color: var(--secondary);
}

.content-html ul {
    padding-left: 1.2rem;
}

.category-filter-pill {
    display: inline-block;
    padding: 0.55rem 0.85rem;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.04);
    color: var(--secondary);
    font-weight: 600;
    transition: all 0.3s ease;
}

.category-filter-pill:hover,
.category-filter-pill.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    box-shadow: 0 8px 20px rgba(255, 94, 0, 0.2);
}


.filter-btn {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: var(--secondary);
    padding: 0.5rem 1.25rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    box-shadow: 0 5px 15px rgba(255, 94, 0, 0.3);
}

.gallery-item {
    transition: all 0.4s ease;
    opacity: 1;
    transform: scale(1);
}

.gallery-item.hidden {
    display: none !important;
}

/* Navbar Dropdown Hover & Styling */
@media (min-width: 992px) {
    .site-navbar .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }
}

.site-navbar .dropdown-menu {
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 0.5rem;
}

.site-navbar .dropdown-item {
    border-radius: 8px;
    padding: 0.5rem 1rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.site-navbar .dropdown-item:hover {
    background-color: rgba(255, 94, 0, 0.1);
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .site-navbar {
        background: rgba(11, 18, 32, 0.94);
    }

    .hero-slide {
        min-height: 65vh;
    }

    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 767.98px) {
    .section {
        padding: 3.5rem 0;
    }
    
    .page-hero {
        padding: 7rem 0 3rem;
        text-align: center;
    }

    .hero-title {
        font-size: 2.2rem;
    }
    
    .package-card {
        min-height: auto;
    }
    
    .footer-trees-bg {
        background-size: 100px 100%;
        height: 250px;
    }
}

/* Navigation & Buttons Refinement */
.hover-elevate {
    transition: all 0.3s ease;
}
.package-card:hover .hover-elevate {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(255, 94, 0, 0.4);
}

/* Swiper overrides */
:root {
    --swiper-theme-color: var(--primary);
}
/* Swiper overrides */
:root {
    --swiper-theme-color: var(--primary);
}

.swiper-outer-wrapper {
    position: relative;
    padding: 0 15px;
}

.swiper-button-next, .swiper-button-prev {
    color: var(--secondary);
    background: #fff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    z-index: 10;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    top: 45% !important;
}

.swiper-button-prev {
    left: 0 !important;
}

.swiper-button-next {
    right: 0 !important;
}

.swiper-button-next:hover, .swiper-button-prev:hover {
    background: var(--primary);
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(255, 94, 0, 0.3);
}

.swiper-button-next::after, .swiper-button-prev::after {
    font-size: 1rem;
    font-weight: 900;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #cbd5e1;
    opacity: 1;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: var(--primary) !important;
    width: 30px;
    border-radius: 12px;
}

@media (max-width: 991px) {
    .swiper-button-next, .swiper-button-prev {
        display: none !important;
    }
    .swiper-outer-wrapper {
        padding: 0;
    }
}
/* Entrance Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }

/* Gallery Event */
.gallery-card {
    border: none;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 
        0 4px 6px -1px rgba(0, 0, 0, 0.05), 
        0 10px 25px -5px rgba(0, 0, 0, 0.08);
}

.gallery-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 30px -10px rgba(0, 0, 0, 0.15), 
        0 10px 15px -5px rgba(0, 0, 0, 0.1) !important;
}

.gallery-card img {
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.bg-dark-gradient {
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
}

/* Gallery Video Play Button */
.play-button {
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.gallery-card:hover .play-button {
    transform: scale(1.15);
    box-shadow: 0 8px 24px rgba(255, 94, 0, 0.5) !important;
}
