/* ── Hero Section ── */
/* .package-hero {
    position: relative;
    height: 80vh !important;
    background: url("https://images.unsplash.com/photo-1501785888041-af3ef285b470?q=80&w=1470") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
} */


.package-hero {
    position: relative;
    height: 80vh;
    overflow: hidden;
}

/* Video styling */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 1;
}

/* Dark overlay */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.632); /* adjust darkness */
    z-index: 2;
}

/* Content above video */
.hero-content {
    position: relative;
    z-index: 3;
    color: #fff;
}

.package-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

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

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 15px;
}

.hero-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

/* ── Desktop Filter Bar ── */
.products-filter-bar {
    padding: 20px 0;
    background: #fff;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    position: sticky;
    top: 100px; 
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}

.filter-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ── Unified Custom Dropdown Styling ── */
.unified-dropdown {
    position: relative;
    display: inline-block;
}

.unified-drop-btn {
    background: #f8f9fa;
    border: 1px solid #eee;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #333;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
    cursor: pointer;
    user-select: none;
}

.unified-drop-btn.no-bg {
    background: transparent;
    border-color: transparent;
    padding: 0;
}

.unified-drop-btn:hover {
    background: #fff;
    border-color: var(--primary-blue);
    color: var(--primary-blue);
    box-shadow: 0 5px 15px rgba(0, 119, 255, 0.08);
}

.unified-drop-btn i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.unified-dropdown.active .unified-drop-btn {
    background: #fff;
    border-color: var(--primary-blue);
    color: var(--primary-blue);
    box-shadow: 0 5px 15px rgba(0, 119, 255, 0.12);
}

.unified-dropdown.active .unified-drop-btn i {
    transform: rotate(180deg);
}

.unified-drop-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 15px 45px rgba(0,0,0,0.15);
    border: 1px solid rgba(0,0,0,0.05);
    min-width: 220px;
    padding: 8px;
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.unified-dropdown.active .unified-drop-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.drop-menu-right {
    left: auto;
    right: 0;
}

.scrollable-menu {
    max-height: 280px;
    overflow-y: auto;
}

/* Custom Scrollbar for scrollable menus */
.scrollable-menu::-webkit-scrollbar {
    width: 5px;
}
.scrollable-menu::-webkit-scrollbar-track {
    background: transparent;
}
.scrollable-menu::-webkit-scrollbar-thumb {
    background: #eee;
    border-radius: 10px;
}

.unified-option {
    padding: 10px 18px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #555;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
}

.unified-option:hover {
    background: #f0f7ff;
    color: var(--primary-blue);
}

.unified-option.active {
    background: var(--primary-blue);
    color: #fff;
}

/* ── Mobile Filter ── */
.products-filter-bar-mobile {
    background: #fff;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 70px;
    z-index: 999;
}

.mobile-filter-btn {
    border: 1px solid #eee;
    background: #f8f9fa;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
}

.mobile-filter-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 2000;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.mobile-filter-drawer.open {
    transform: translateX(0);
}

.mobile-filter-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.mobile-filter-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-filter-group label {
    font-size: 0.75rem;
    letter-spacing: 0.5px;
}

/* ── Products Grid & Pagination ── */
.products-grid-section {
    padding: 60px 0;
}












/* Pagination Styles */
.pagination-wrapper {
    margin-top: 60px;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    list-style: none;
    padding: 0;
}

.page-item .page-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50% !important;
    border: 1px solid #eee;
    color: var(--text-color);
    font-weight: 600;
    transition: all 0.3s ease;
    background: var(--white);
}

.page-item.active .page-link {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 119, 255, 0.3);
}

.page-item .page-link:hover:not(.active) {
    background-color: #d9e4f0;
    border-color: var(--primary-blue);
    color: black;
    transform: translateY(-3px);
}

.page-item.disabled .page-link {
    opacity: 0.5;
    cursor: not-allowed;
    background-color: #f9f9f9;
}