/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
    --primary-blue: #0C4DA2;
    --secondary-orange: #FF7A00;
    --dark-text: #1A1A1A;
    --light-text: #6B7280;
    --bg-light: #F8F9FA;
    --white: #FFFFFF;
    --success: #10B981;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --transition: all 0.3s ease;
}

/* ============================================
   RESET & BASE
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark-text);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--white);
}

html {
    scroll-behavior: smooth;
}

body.loading {
    overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.3;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

button, .btn, .nav-link {
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

/* ============================================
   PRELOADER
   ============================================ */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0C4DA2, #1A1A1A);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
    color: var(--white);
}

.preloader-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--secondary-orange);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
}

.preloader-logo i {
    font-size: 2.5rem;
    color: var(--white);
}

.preloader-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.preloader-subtitle {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 20px;
}

.preloader-spinner {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 20px 0;
}

.spinner-ring {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--secondary-orange);
    animation: bounce 1.4s infinite ease-in-out;
}

.spinner-ring:nth-child(1) { animation-delay: 0s; }
.spinner-ring:nth-child(2) { animation-delay: 0.2s; }
.spinner-ring:nth-child(3) { animation-delay: 0.4s; }

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes bounce {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
}

/* ============================================
   MOBILE TOP BAR - FIXED
   ============================================ */
/*.mobile-topbar {*/
/*    background: var(--dark-text);*/
/*    padding: 8px 0;*/
/*    position: fixed;*/
/*    top: 0;*/
/*    left: 0;*/
/*    width: 100vw;*/
/*    z-index: 1030;*/
/*    height: 38px;*/
/*}*/

/*.topbar-link {*/
/*    color: var(--white);*/
/*    font-size: 0.85rem;*/
/*    font-weight: 500;*/
/*}*/

/*.topbar-link i {*/
/*    color: var(--secondary-orange);*/
/*}*/

/*.topbar-link.whatsapp {*/
/*    color: #25D366;*/
/*}*/

/* ============================================
   NAVBAR - FIXED WITH BETTER MOBILE MENU
   ============================================ */
.navbar {
    padding: 10px 0;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: fixed;
    /*top: 38px;*/
    left: 0;
    width: 100vw;
    z-index: 1020;
    transition: var(--transition);
    min-height: 60px;
}

.navbar.scrolled {
    top: 0;
    box-shadow: var(--shadow-md);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-blue) !important;
    font-weight: 700;
}

.brand-icon {
    font-size: 1.6rem;
    color: var(--secondary-orange);
}

.brand-text strong {
    display: block;
    font-size: 0.95rem;
    line-height: 1.2;
}

.brand-text small {
    display: block;
    font-size: 0.6rem;
    font-weight: 500;
    color: var(--light-text);
}

/* FIXED: Mobile Navbar Collapse Menu */
.navbar-collapse {
    background: var(--white);
    border-radius: 0 0 16px 16px;
    box-shadow: var(--shadow-md);
}

.navbar-collapse.show,
.navbar-collapse.collapsing {
    background: var(--white);
    padding: 15px;
    margin-top: 10px;
}

.nav-link {
    color: var(--dark-text) !important;
    font-weight: 500;
    padding: 10px 15px !important;
    font-size: 0.95rem;
    border-radius: 8px;
    transition: var(--transition);
}

.nav-link i {
    margin-right: 5px;
    font-size: 0.9rem;
}

.nav-link.active,
.nav-link:hover {
    color: var(--secondary-orange) !important;
    background: var(--bg-light);
}

/* FIXED: Dropdown Menu on Mobile */
.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-md);
    border-radius: 12px;
    padding: 8px;
    background: var(--bg-light);
    margin-top: 8px;
}

.navbar-collapse.show .dropdown-menu {
    background: var(--bg-light);
    border: 1px solid #E5E7EB;
}

.dropdown-item {
    padding: 10px 15px;
    font-size: 0.9rem;
    transition: var(--transition);
    border-radius: 8px;
    color: var(--dark-text);
}

.dropdown-item:hover {
    background: var(--white);
    color: var(--primary-blue);
    padding-left: 20px;
}

.btn-book-now {
    background: var(--secondary-orange);
    color: var(--white) !important;
    padding: 10px 24px !important;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(255, 122, 0, 0.3);
    display: inline-block;
    margin-top: 10px;
}

.btn-book-now:hover {
    background: #e66d00;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 122, 0, 0.4);
}

/* ============================================
   MOBILE SERVICES BAR - AUTO HIDE ON SCROLL
   ============================================ */
.mobile-services-bar {
    background: var(--white);
    padding: 8px 0;
    position: fixed;
    top: 70px; /* topbar(38) + navbar(60) */
    left: 0;
    width: 100vw;
    z-index: 1000;
    border-bottom: 2px solid #E5E7EB;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    height: 60px;
    transition: transform 0.3s ease;
}

/* FIXED: Auto-hide services bar on scroll */
.mobile-services-bar.hidden {
    transform: translateY(-100%);
}

.services-scroll {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 5px 0;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    scrollbar-width: none;
    

}

.services-scroll::-webkit-scrollbar {
    display: none;
}

.service-quick-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 65px;
    padding: 8px 6px;
    background: var(--bg-light);
    border-radius: 12px;
    color: var(--primary-blue);
    transition: var(--transition);
    flex-shrink: 0;
}

.service-quick-link:hover,
.service-quick-link:active {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
}

.service-quick-link i {
    font-size: 1.4rem;
    margin-bottom: 4px;
}

.service-quick-link span {
    font-size: 0.65rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.1;
}

/* ============================================
   HERO SECTION - FIXED POSITIONING
   ============================================ */
.hero-section {
    position: relative;
    margin-top: 100px; /* topbar(38) + navbar(60) + services(60) = 158px */
    height: calc(100vh - 158px);
    min-height: 400px;
    max-height: 600px;
    overflow: hidden;
}

/* FIXED: When services bar is hidden */
body.services-hidden .hero-section {
    margin-top: 80px; /* Just topbar + navbar */
}

.heroSwiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: relative;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(12, 77, 162, 0.7) 0%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
}

.hero-slide .container {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.hero-content {
    text-align: center;
    color: var(--white);
    width: 100%;
    max-width: 500px;
    padding: 20px 15px;
}

.hero-title {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 12px;
    text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.7);
    line-height: 1.2;
    color: var(--white);
}

.hero-subtitle {
    font-size: 0.95rem;
    margin-bottom: 20px;
    opacity: 0.95;
    line-height: 1.5;
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.5);
    color: var(--white);
}

.hero-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero-primary,
.btn-hero-secondary {
    padding: 11px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.btn-hero-primary {
    background: var(--secondary-orange);
    color: var(--white);
    border: 2px solid var(--secondary-orange);
    box-shadow: 0 4px 16px rgba(255, 122, 0, 0.5);
}

.btn-hero-primary:hover {
    background: #e66d00;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 122, 0, 0.6);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border: 2px solid var(--white);
    backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
    background: var(--white);
    color: var(--primary-blue);
    transform: translateY(-2px);
}

.heroSwiper .swiper-button-next,
.heroSwiper .swiper-button-prev {
    display: none;
}

.heroSwiper .swiper-pagination {
    bottom: 20px;
    z-index: 10;
}

.heroSwiper .swiper-pagination-bullet {
    background: var(--white);
    opacity: 0.6;
    width: 8px;
    height: 8px;
    margin: 0 4px;
}

.heroSwiper .swiper-pagination-bullet-active {
    background: var(--secondary-orange);
    opacity: 1;
    width: 24px;
    border-radius: 8px;
}

/* ============================================
   PAGE BANNERS - FIXED POSITIONING
   ============================================ */
.page-banner {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, var(--primary-blue), #0a3d7a);
    background-size: cover;
    background-position: center;
    position: relative;
    margin-top: 158px; /* FIXED: Same as hero */
}

body.services-hidden .page-banner {
    margin-top: 98px;
}

.page-banner.services-banner {
    background-image: url('https://images.unsplash.com/photo-1488646953014-85cb44e25828?w=1920&q=80');
}

.page-banner.contact-banner {
    background-image: url('https://images.unsplash.com/photo-1423666639041-f56000c27a9a?w=1920&q=80');
}

.page-banner.packages-banner {
    background-image: url('https://images.unsplash.com/photo-1488646953014-85cb44e25828?w=1920&q=80');
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(12, 77, 162, 0.9), rgba(0, 0, 0, 0.7));
}

.banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.banner-title {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 15px;
}

.banner-subtitle {
    font-size: 1rem;
    margin-bottom: 25px;
    opacity: 0.95;
}

.breadcrumb {
    justify-content: center;
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item a {
    color: var(--white);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--secondary-orange);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   PACKAGE HERO - FIXED
   ============================================ */
.package-hero {
    position: relative;
    min-height: 350px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    margin-top: 158px; /* FIXED */
}

body.services-hidden .package-hero {
    margin-top: 98px;
}

.package-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.package-hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    padding: 40px 0;
}

.package-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.package-breadcrumb a {
    color: var(--white);
    opacity: 0.8;
}

.package-breadcrumb a:hover {
    opacity: 1;
}

.package-breadcrumb i {
    font-size: 0.7rem;
    opacity: 0.6;
}

.package-breadcrumb span {
    opacity: 0.9;
}

.package-hero-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.5);
}

.package-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.hero-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 500;
}

.hero-meta-item i {
    color: var(--secondary-orange);
}

/* ============================================
   SEARCH SECTION
   ============================================ */
.search-section {
    background: transparent;
    padding: 0;
    position: relative;
    z-index: 50;
    margin-top: -60px;
}

.search-card {
    background: var(--white);
    border-radius: 20px;
    padding: 25px 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.search-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.search-form .form-group {
    margin-bottom: 0;
}

.search-form label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.search-form label i {
    color: var(--primary-blue);
    font-size: 0.85rem;
}

.search-form .form-control,
.search-form .form-select {
    height: 48px;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    padding: 0 15px;
    font-size: 0.9rem;
    transition: var(--transition);
    background: var(--white);
    color: var(--dark-text);
}

.search-form .form-control:focus,
.search-form .form-select:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(12, 77, 162, 0.1);
    outline: none;
}

.btn-search {
    background: linear-gradient(135deg, var(--secondary-orange), #e66d00);
    color: var(--white);
    border: none;
    padding: 0;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
    height: 48px;
    box-shadow: 0 4px 16px rgba(255, 122, 0, 0.4);
}

.btn-search:hover {
    background: linear-gradient(135deg, #e66d00, var(--secondary-orange));
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(255, 122, 0, 0.5);
}

/* Trust Section */
.trust-section {
    padding: 50px 0 40px;
    position: relative;
    z-index: 1;
}

.trust-card {
    background: var(--white);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.trust-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.trust-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue), #0a3d7a);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.trust-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.trust-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.trust-text {
    font-size: 0.85rem;
    color: var(--light-text);
    margin: 0;
}

/* Section Styling */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--dark-text);
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--light-text);
}

/* Services Section */
.services-section {
    padding: 60px 0;
}

.service-card {
    background: var(--white);
    padding: 25px 15px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: block;
    color: var(--dark-text);
    min-height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    color: var(--primary-blue);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), #0a3d7a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--secondary-orange), #e66d00);
    transform: scale(1.1);
}

.service-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.service-card h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0;
}

/* Packages Section */
.packages-section {
    padding: 60px 0;
}

.package-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.package-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.package-card:hover .package-image img {
    transform: scale(1.1);
}

.package-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--secondary-orange);
    color: var(--white);
    padding: 6px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
}

.package-body {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.package-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.package-duration {
    font-size: 0.8rem;
    color: var(--light-text);
}

.package-type {
    background: var(--bg-light);
    color: var(--primary-blue);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
}

.package-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark-text);
}

.package-description {
    font-size: 0.85rem;
    color: var(--light-text);
    margin-bottom: 15px;
    flex-grow: 1;
    line-height: 1.6;
}

.package-footer {
    border-top: 1px solid #E5E7EB;
    padding-top: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.package-price {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 0.7rem;
    color: var(--light-text);
    text-transform: uppercase;
}

.price-amount {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-blue);
}

.btn-package {
    background: var(--secondary-orange);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    white-space: nowrap;
}

.btn-package:hover {
    background: #e66d00;
    color: var(--white);
    transform: translateY(-2px);
}

.btn-view-all {
    background: var(--primary-blue);
    color: var(--white);
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
}

.btn-view-all:hover {
    background: #0a3d7a;
    color: var(--white);
}

/* Why Choose Section */
.why-choose-section {
    padding: 60px 0;
    background: var(--bg-light);
    position: relative;
    z-index: 1;
}

.feature-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), #0a3d7a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, var(--secondary-orange), #e66d00);
    transform: scale(1.1);
}

.feature-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.feature-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--light-text);
    margin: 0;
}

/* CTA Section */
.cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-blue), #0a3d7a);
}

.cta-card {
    text-align: center;
    color: var(--white);
}

.cta-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.cta-subtitle {
    font-size: 1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary {
    background: var(--secondary-orange);
    color: var(--white);
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(255, 122, 0, 0.4);
}

.btn-cta-primary:hover {
    background: #e66d00;
    color: var(--white);
    transform: translateY(-3px);
}

.btn-cta-secondary {
    background: var(--white);
    color: var(--primary-blue);
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
}

.btn-cta-secondary:hover {
    background: #25D366;
    color: var(--white);
}

/* Footer */
.footer {
    background: var(--dark-text);
    color: #9CA3AF;
    padding: 50px 0 0;
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-brand i {
    color: var(--secondary-orange);
}

.footer-description {
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.footer-social a:hover {
    background: var(--secondary-orange);
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #9CA3AF;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.footer-contact i {
    color: var(--secondary-orange);
    font-size: 1.1rem;
    margin-top: 3px;
}

.footer-contact a {
    color: #9CA3AF;
}

.footer-contact a:hover {
    color: var(--white);
}

.footer-bottom {
    margin-top: 40px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.85rem;
}

.footer-bottom-link {
    color: #9CA3AF;
}

.footer-bottom-link:hover {
    color: var(--white);
}

/* Floating Buttons - FIXED z-index */
.whatsapp-float,
.call-float {
    position: fixed;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    z-index: 900;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.whatsapp-float {
    background: #25D366;
    bottom: 20px;
    right: 20px;
}

.whatsapp-float:hover {
    background: #1ebe57;
    transform: scale(1.1);
    color: var(--white);
}

.call-float {
    background: var(--secondary-orange);
    bottom: 85px;
    right: 20px;
}

.call-float:hover {
    background: #e66d00;
    transform: scale(1.1);
    color: var(--white);
}

.scroll-top-btn {
    position: fixed;
    bottom: 150px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 900;
    transition: var(--transition);
}

.scroll-top-btn.show {
    display: flex;
}

.scroll-top-btn:hover {
    background: var(--secondary-orange);
}

/* ============================================
   CONTACT & FORMS
   ============================================ */
.contact-info-section {
    padding: 60px 0 40px;
    margin-top: -60px;
    position: relative;
    z-index: 50;
}

.contact-info-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    height: 100%;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.contact-info-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), #0a3d7a);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: var(--transition);
}

.contact-info-card:hover .contact-info-icon {
    background: linear-gradient(135deg, var(--secondary-orange), #e66d00);
    transform: scale(1.1) rotate(5deg);
}

.contact-info-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.contact-info-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-info-card p {
    font-size: 1rem;
    margin-bottom: 10px;
}

.contact-info-card a {
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: none;
}

.contact-info-card a:hover {
    color: var(--secondary-orange);
}

.contact-time {
    font-size: 0.85rem;
    color: var(--light-text);
    font-style: italic;
}

.contact-form-section {
    padding: 60px 0;
}

.contact-form-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.form-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.form-subtitle {
    font-size: 1rem;
    color: var(--light-text);
    margin-bottom: 30px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 8px;
    display: block;
}

.contact-form .form-control {
    height: 50px;
    border: 2px solid #E5E7EB;
    border-radius: 10px;
    padding: 0 18px;
    font-size: 0.95rem;
    transition: var(--transition);
}

.contact-form .form-control:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(12, 77, 162, 0.1);
}

.contact-form textarea.form-control {
    height: auto;
    padding: 15px 18px;
    resize: vertical;
}

.contact-form select.form-control {
    cursor: pointer;
}

.btn-submit {
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    transition: var(--transition);
}

.btn-submit:hover {
    background: #0a3d7a;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.quick-contact-card,
.working-hours-card {
    background: var(--white);
    border-radius: 20px;
    padding: 35px;
    box-shadow: var(--shadow-md);
}

.quick-contact-card h3,
.working-hours-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.quick-contact-card p {
    color: var(--light-text);
    margin-bottom: 25px;
}

.quick-contact-btn {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 15px;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid transparent;
}

.quick-contact-btn:hover {
    transform: translateX(5px);
}

.quick-contact-btn i {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.8rem;
    color: var(--white);
}

.whatsapp-btn {
    background: rgba(37, 211, 102, 0.1);
    border-color: #25D366;
}

.whatsapp-btn i {
    background: #25D366;
}

.call-btn {
    background: rgba(12, 77, 162, 0.1);
    border-color: var(--primary-blue);
}

.call-btn i {
    background: var(--primary-blue);
}

.email-btn {
    background: rgba(255, 122, 0, 0.1);
    border-color: var(--secondary-orange);
}

.email-btn i {
    background: var(--secondary-orange);
}

.quick-contact-btn div {
    flex-grow: 1;
}

.quick-contact-btn strong {
    font-size: 1.1rem;
    color: var(--dark-text);
    display: block;
    margin-bottom: 5px;
}

.quick-contact-btn span {
    font-size: 0.9rem;
    color: var(--light-text);
}

.hours-list {
    list-style: none;
    padding: 0;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #E5E7EB;
}

.hours-list li:last-child {
    border-bottom: none;
}

.hours-list span {
    color: var(--light-text);
}

.hours-list strong {
    color: var(--dark-text);
}

.map-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.map-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.social-connect-card {
    background: var(--white);
    border-radius: 20px;
    padding: 25px;
    box-shadow: var(--shadow-sm);
}

.social-connect-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark-text);
}

.social-connect-card p {
    font-size: 0.9rem;
    color: var(--light-text);
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.social-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-btn:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.social-btn.facebook {
    background: #1877F2;
}

.social-btn.instagram {
    background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF);
}

.social-btn.twitter {
    background: #1DA1F2;
}

.social-btn.youtube {
    background: #FF0000;
}

.social-btn.linkedin {
    background: #0A66C2;
}

.emergency-contact {
    margin-top: 15px;
    padding: 15px;
    background: rgba(255, 122, 0, 0.1);
    border-radius: 10px;
    border-left: 4px solid var(--secondary-orange);
}

.emergency-contact small {
    font-size: 0.85rem;
    color: var(--dark-text);
    display: block;
}

.emergency-contact a {
    color: var(--secondary-orange);
    font-weight: 600;
}

.contact-faq-section {
    padding: 60px 0;
    background: var(--white);
}

.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.accordion-button {
    background: var(--bg-light);
    color: var(--dark-text);
    font-weight: 600;
    padding: 18px 20px;
    border: none;
}

.accordion-button:not(.collapsed) {
    background: var(--primary-blue);
    color: var(--white);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-button::after {
    filter: brightness(0) invert(1);
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(1) invert(1);
}

.accordion-body {
    padding: 20px;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--light-text);
}

.form-check-input:checked {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.form-check-label {
    font-size: 0.85rem;
    color: var(--light-text);
}

/* ============================================
   PACKAGE DETAIL PAGE
   ============================================ */
.package-details-section {
    padding: 60px 0;
    background: var(--bg-light);
    position: relative;
    z-index: 1;
}

.detail-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-sm);
}

.detail-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark-text);
    display: flex;
    align-items: center;
}

.detail-card-title i {
    color: var(--primary-blue);
}

.detail-description {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--light-text);
    margin-bottom: 20px;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
}

.highlight-item {
    text-align: center;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 12px;
    transition: var(--transition);
}

.highlight-item:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-5px);
}

.highlight-icon {
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    transition: var(--transition);
}

.highlight-item:hover .highlight-icon {
    background: var(--secondary-orange);
    color: var(--white);
    transform: scale(1.1);
}

.highlight-icon i {
    font-size: 1.5rem;
    color: var(--primary-blue);
}

.highlight-item:hover .highlight-icon i {
    color: var(--white);
}

.highlight-item h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.highlight-item p {
    font-size: 0.85rem;
    margin: 0;
    opacity: 0.8;
}

.itinerary-timeline {
    position: relative;
    padding-left: 40px;
}

.itinerary-timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-blue);
}

.itinerary-item {
    position: relative;
    margin-bottom: 30px;
}

.itinerary-item:last-child {
    margin-bottom: 0;
}

.itinerary-day {
    position: absolute;
    left: -40px;
    top: 0;
    width: 32px;
    height: 32px;
    background: var(--secondary-orange);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    z-index: 2;
}

.itinerary-content {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 12px;
}

.itinerary-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark-text);
}

.itinerary-content p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--light-text);
    margin: 0;
}

.inclusion-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-text);
}

.inclusion-list {
    list-style: none;
    padding: 0;
}

.inclusion-list li {
    padding: 10px 0;
    font-size: 0.9rem;
    color: var(--dark-text);
    border-bottom: 1px solid #E5E7EB;
}

.inclusion-list li:last-child {
    border-bottom: none;
}

.inclusion-list i {
    margin-right: 10px;
    font-size: 0.9rem;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 12px;
}

.info-item i {
    font-size: 2rem;
    color: var(--primary-blue);
    flex-shrink: 0;
    margin-top: 5px;
}

.info-item strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--dark-text);
}

.info-item p {
    font-size: 0.9rem;
    color: var(--light-text);
    margin: 0;
}

.sticky-sidebar {
    position: sticky;
    top: 110px;
    z-index: 10;
}

.price-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow-lg);
    margin-bottom: 20px;
    border: 2px solid var(--primary-blue);
    position: relative;
    z-index: 10;
}

.price-header {
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--bg-light);
    margin-bottom: 20px;
}

.price-amount-large {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1;
}

.price-currency {
    font-size: 1.8rem;
}

.price-per-person {
    font-size: 0.9rem;
    color: var(--light-text);
    margin-top: 5px;
    margin-bottom: 0;
}

.price-features {
    margin-bottom: 25px;
}

.feature-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 0.95rem;
    color: var(--dark-text);
    border-bottom: 1px solid #E5E7EB;
}

.feature-row:last-child {
    border-bottom: none;
}

.feature-row i {
    color: var(--secondary-orange);
    font-size: 1.1rem;
}

.booking-form .form-group {
    margin-bottom: 15px;
}

.booking-form label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 6px;
    display: block;
}

.booking-form .form-control,
.booking-form .form-select {
    height: 45px;
    border: 2px solid #E5E7EB;
    border-radius: 10px;
    padding: 0 15px;
    font-size: 0.9rem;
}

.booking-form textarea.form-control {
    height: auto;
    padding: 12px 15px;
}

.booking-form .form-control:focus,
.booking-form .form-select:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(12, 77, 162, 0.1);
}

.booking-form .form-control.is-valid {
    border-color: var(--success);
}

.booking-form .form-control.is-invalid {
    border-color: #dc3545;
}

.btn-book-package {
    width: 100%;
    background: var(--secondary-orange);
    color: var(--white);
    border: none;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    margin-top: 10px;
    margin-bottom: 15px;
    box-shadow: 0 4px 16px rgba(255, 122, 0, 0.4);
    transition: var(--transition);
}

.btn-book-package:hover {
    background: #e66d00;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 122, 0, 0.5);
    color: var(--white);
}

.quick-contact-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 15px;
}

.btn-call,
.btn-whatsapp {
    padding: 12px 15px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    white-space: nowrap;
    transition: var(--transition);
}

.btn-call {
    background: var(--primary-blue);
    color: var(--white);
}

.btn-call:hover {
    background: #0a3d7a;
    color: var(--white);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
}

.btn-whatsapp:hover {
    background: #1ebe57;
    color: var(--white);
    transform: translateY(-2px);
}

.why-book-card {
    background: var(--white);
    border-radius: 20px;
    padding: 25px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 20px;
}

.why-book-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark-text);
}

.why-book-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.why-book-list li {
    padding: 10px 0;
    font-size: 0.9rem;
    color: var(--dark-text);
    display: flex;
    align-items: center;
    gap: 10px;
}

.why-book-list i {
    color: var(--success);
    font-size: 1rem;
}

.need-help-card {
    background: linear-gradient(135deg, var(--primary-blue), #0a3d7a);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    color: var(--white);
}

.help-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.help-icon i {
    font-size: 2rem;
    color: var(--white);
}

.need-help-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--white);
}

.need-help-card p {
    font-size: 0.9rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.btn-help {
    background: var(--white);
    color: var(--primary-blue);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
}

.btn-help:hover {
    background: var(--secondary-orange);
    color: var(--white);
    transform: translateY(-2px);
}

.terms-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.terms-list li {
    padding: 10px 0 10px 30px;
    font-size: 0.9rem;
    color: var(--dark-text);
    border-bottom: 1px solid #E5E7EB;
    position: relative;
}

.terms-list li:last-child {
    border-bottom: none;
}

.terms-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-blue);
}

.related-packages-section {
    padding: 60px 0;
    background: var(--white);
}

.sticky-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 950;
    padding: 15px 0;
    display: block;
}

.bottom-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bottom-bar-price .price-label {
    display: block;
    font-size: 0.7rem;
    color: var(--light-text);
    text-transform: uppercase;
}

.bottom-bar-price .price-amount {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-blue);
}

.btn-book-now-sticky {
    background: var(--secondary-orange);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 4px 16px rgba(255, 122, 0, 0.4);
}

.btn-book-now-sticky:hover {
    background: #e66d00;
    color: var(--white);
}

/* ============================================
   PACKAGES PAGE
   ============================================ */
.packages-listing-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.packages-filter-bar {
    background: var(--white);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow-sm);
}

.filter-left h5 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-text);
}

.result-count {
    color: var(--secondary-orange);
}

.btn-filter {
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
}

.btn-filter:hover {
    background: #0a3d7a;
}

.active-filters {
    background: var(--white);
    border-radius: 12px;
    padding: 15px 20px;
    margin-bottom: 25px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    box-shadow: var(--shadow-sm);
}

.filter-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--light-text);
}

.filter-tag {
    background: var(--primary-blue);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.filter-tag a {
    color: var(--white);
    opacity: 0.8;
}

.filter-tag a:hover {
    opacity: 1;
}

.btn-clear-filters {
    color: var(--secondary-orange);
    font-size: 0.85rem;
    font-weight: 600;
    margin-left: auto;
}

.btn-clear-filters:hover {
    color: #e66d00;
    text-decoration: underline;
}

.category-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
    overflow-x: auto;
    padding-bottom: 5px;
}

.category-tabs::-webkit-scrollbar {
    height: 4px;
}

.category-tabs::-webkit-scrollbar-thumb {
    background: var(--light-text);
    border-radius: 4px;
}

.category-tab {
    background: var(--white);
    color: var(--dark-text);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.category-tab:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.category-tab.active {
    background: var(--secondary-orange);
    color: var(--white);
}

.package-card .package-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.package-card:hover .package-overlay {
    opacity: 1;
}

.btn-view-package {
    background: var(--white);
    color: var(--primary-blue);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transform: translateY(20px);
    transition: var(--transition);
}

.package-card:hover .btn-view-package {
    transform: translateY(0);
}

.btn-view-package:hover {
    background: var(--secondary-orange);
    color: var(--white);
}

.no-results {
    text-align: center;
    padding: 80px 20px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
}

.no-results-icon {
    width: 100px;
    height: 100px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.no-results-icon i {
    font-size: 3rem;
    color: var(--light-text);
}

.no-results h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-text);
}

.no-results p {
    font-size: 1rem;
    color: var(--light-text);
    margin-bottom: 0;
}

.popular-destinations-section {
    padding: 60px 0;
    background: var(--white);
}

.destination-card {
    display: block;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.destination-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.destination-image {
    position: relative;
    height: 200px;
    background-size: cover;
    background-position: center;
}

.destination-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
}

.destination-content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: var(--white);
}

.destination-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.destination-content p {
    font-size: 0.85rem;
    opacity: 0.9;
    margin: 0;
}

.modal-content {
    border-radius: 20px;
    border: none;
}

.modal-header {
    border-bottom: 1px solid #E5E7EB;
    padding: 20px 25px;
}

.modal-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-text);
}

.modal-body {
    padding: 25px;
}

.filter-group {
    margin-bottom: 20px;
}

.filter-group:last-child {
    margin-bottom: 0;
}

.filter-group .filter-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.filter-group .filter-label i {
    color: var(--primary-blue);
}

.filter-group .form-control,
.filter-group .form-select {
    height: 48px;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    padding: 0 15px;
    font-size: 0.9rem;
}

.filter-group .form-control:focus,
.filter-group .form-select:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(12, 77, 162, 0.1);
}

.modal-footer-custom {
    display: flex;
    gap: 10px;
    justify-content: space-between;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #E5E7EB;
}

.modal-footer-custom .btn {
    flex: 1;
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 600;
}

/* Services Detail Section */
.services-detail-section {
    padding: 80px 0;
}

.service-detail-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: var(--shadow-md);
}

.service-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.service-image img {
    width: 100%;
    height: auto;
    display: block;
}

.service-icon-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), #0a3d7a);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.service-icon-large i {
    font-size: 2.5rem;
    color: var(--white);
}

.service-detail-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.service-description {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--light-text);
    margin-bottom: 25px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.service-features li {
    padding: 12px 0;
    font-size: 0.95rem;
    border-bottom: 1px solid #E5E7EB;
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features i {
    color: var(--success);
    margin-right: 10px;
}

.service-cta .btn {
    margin-top: 10px;
}

.btn-outline-primary {
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    background: transparent;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
}

.btn-outline-primary:hover {
    background: var(--primary-blue);
    color: var(--white);
}

.btn-primary {
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
}

.btn-primary:hover {
    background: #0a3d7a;
}

.why-services-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.why-service-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.why-service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.why-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-orange), #e66d00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.why-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.why-service-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.why-service-card p {
    font-size: 0.85rem;
    color: var(--light-text);
    margin: 0;
}

.services-cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-blue), #0a3d7a);
}

/* ============================================
   RESPONSIVE - TABLET & DESKTOP
   ============================================ */
@media (min-width: 768px) {
    /* Hide mobile elements */
    .mobile-topbar,
    .mobile-services-bar {
        display: none !important;
    }
    
    /* Navbar */
    .navbar {
        top: 0;
        min-height: 70px;
        padding: 15px 0;
    }
    
    .navbar.scrolled {
        top: 0;
    }
    
    .brand-text strong {
        font-size: 1.1rem;
    }
    
    .brand-text small {
        font-size: 0.7rem;
    }
    
    .btn-book-now {
        margin-top: 0;
    }
    
    /* Hero section */
    .hero-section {
        margin-top: 70px;
        height: calc(100vh - 70px);
        min-height: 500px;
        max-height: 650px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 13px 32px;
        font-size: 1rem;
    }
    
    /* Show navigation arrows */
    .heroSwiper .swiper-button-next,
    .heroSwiper .swiper-button-prev {
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--white);
        width: 50px;
        height: 50px;
        background: rgba(0, 0, 0, 0.4);
        border-radius: 50%;
        backdrop-filter: blur(5px);
        transition: var(--transition);
    }
    
    .heroSwiper .swiper-button-next:hover,
    .heroSwiper .swiper-button-prev:hover {
        background: var(--secondary-orange);
    }
    
    .heroSwiper .swiper-button-next:after,
    .heroSwiper .swiper-button-prev:after {
        font-size: 22px;
    }
    
    /* Search form horizontal */
    .search-form {
        flex-direction: row;
        align-items: end;
        gap: 15px;
    }
    
    .search-form .form-group {
        flex: 1;
        min-width: 0;
    }
    
    .btn-search {
        flex-shrink: 0;
        min-width: 140px;
    }
    
    /* Page banner */
    .page-banner {
        margin-top: 70px;
        padding: 140px 0 70px;
    }
    
    .banner-title {
        font-size: 2.5rem;
    }
    
    /* Package hero */
    .package-hero {
        margin-top: 70px;
        min-height: 450px;
    }
    
    .package-hero-title {
        font-size: 3rem;
    }
    
    .sticky-bottom-bar {
        display: none;
    }
    
    .section-title {
        font-size: 2.3rem;
    }
    
    .service-detail-card {
        padding: 40px;
    }
    
    .service-detail-title {
        font-size: 2rem;
    }
    
    .contact-form-card {
        padding: 40px;
    }
    
    .form-title {
        font-size: 2rem;
    }
    
    .packages-filter-bar {
        flex-direction: row;
    }
    
    .category-tab {
        padding: 12px 24px;
    }
    
    .destination-image {
        height: 220px;
    }
}

@media (min-width: 1024px) {
    .navbar {
        min-height: 75px;
    }
    
    .hero-section {
        margin-top: 75px;
        height: calc(100vh - 75px);
        max-height: 750px;
    }
    
    .hero-title {
        font-size: 3.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.35rem;
    }
    
    .hero-content {
        max-width: 650px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .package-hero {
        min-height: 500px;
    }
    
    .destination-image {
        height: 250px;
    }
}

@media (min-width: 1200px) {
    .hero-section {
        max-height: 800px;
    }
    
    .hero-title {
        font-size: 4.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
}

/* Extra small phones */
@media (max-width: 375px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 9px 20px;
        font-size: 0.85rem;
    }
    
    .search-card {
        padding: 20px 15px;
    }
    
    .package-hero-title {
        font-size: 1.5rem;
    }
    
    .detail-card {
        padding: 20px;
    }
    
    .detail-card-title {
        font-size: 1.2rem;
    }
    
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .itinerary-timeline {
        padding-left: 30px;
    }
    
    .itinerary-day {
        left: -30px;
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
    }
    
    .price-amount-large {
        font-size: 2.5rem;
    }
}

@media (max-width: 767px) {
    .package-hero {
        min-height: 350px;
    }
    
    .quick-contact-buttons {
        gap: 8px;
    }
    
    .btn-call,
    .btn-whatsapp {
        font-size: 0.8rem;
        padding: 10px 12px;
    }
    
    .packages-filter-bar {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .filter-left,
    .filter-right {
        width: 100%;
    }
    
    .btn-filter {
        width: 100%;
    }
    
    .category-tabs {
        gap: 8px;
    }
    
    .category-tab {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    .destination-image {
        height: 160px;
    }
}
/* BY superdevs*/
/* SuperDevs Credit - BIG BOLD CENTERED */
.superdevs-credit {
    padding: 25px 0 15px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 30px;
}

.superdevs-credit a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 800;
    color: #9CA3AF;
    text-decoration: none;
    transition: var(--transition);
    letter-spacing: 0.5px;
}

.superdevs-credit a:hover {
    color: var(--secondary-orange);
    transform: translateY(-2px);
}

.superdevs-credit i {
    font-size: 1.2rem;
    color: var(--secondary-orange);
}

/* Mobile responsive */
@media (max-width: 767px) {
    .superdevs-credit {
        padding: 20px 15px;
        margin-top: 20px;
    }
    
    .superdevs-credit a {
        font-size: 1rem;
        flex-wrap: wrap;
        gap: 8px;
    }
}
