/* 
 * Cappalovers.com - Main Stylesheet
 * Modern, Clean & Responsive Design
 */

/* ===========================
   Global Styles
   =========================== */
:root {
    --primary-color: #0d6efd;
    --secondary-color: #6c757d;
    --success-color: #198754;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #0dcaf0;
    --dark-color: #212529;
    --light-color: #f8f9fa;
    --white: #ffffff;
    --font-primary: 'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.title-underline {
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--info-color));
    margin-bottom: 2rem;
}

/* ===========================
   Header & Navigation
   =========================== */
.top-bar {
    font-size: 0.9rem;
}

.top-bar a {
    transition: opacity 0.3s ease;
}

.top-bar a:hover {
    opacity: 0.7;
}

.navbar {
    padding: 1.2rem 0;
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(33, 80, 150, 0.1);
    position: relative;
    z-index: 1030;
}

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    background-color: rgba(255, 255, 255, 0.98);
    padding: 0.8rem 0;
}

.navbar-brand .brand-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-color);
}

/* Modern Header Navigation Styles */
.navbar-nav .nav-link {
    font-weight: 500;
    color: #215096;
    padding: 0.8rem 1rem;
    margin: 0 0.05rem;
    transition: all 0.3s ease;
    border-radius: 6px;
    position: relative;
    font-size: 0.88rem;
    letter-spacing: 0.2px;
    white-space: nowrap;
}

.navbar-nav .nav-link.nav-menu-item {
    color: #215096;
    font-weight: 500;
    text-decoration: none;
    position: relative;
}

.navbar-nav .nav-link.nav-menu-item:hover {
    color: #1a3d7a;
    background-color: rgba(33, 80, 150, 0.05);
    transform: translateY(-1px);
}

.navbar-nav .nav-link.nav-menu-item.active {
    color: #1a3d7a;
    background-color: rgba(33, 80, 150, 0.1);
    font-weight: 600;
}

.navbar-nav .nav-link.nav-menu-item::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: #215096;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link.nav-menu-item:hover::after,
.navbar-nav .nav-link.nav-menu-item.active::after {
    width: 80%;
}

.navbar-nav .nav-link.btn-primary {
    background-color: var(--primary-color) !important;
    color: white !important;
    border: none;
    border-radius: 25px;
    margin-left: 1rem;
}

.navbar-nav .nav-link.btn-primary:hover {
    background-color: #0056b3 !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.3);
}

.navbar-nav .nav-link.btn-primary::after {
    display: none;
}

/* Modern Mega Dropdown */
.navbar-nav .dropdown-menu.mega-dropdown {
    min-width: 280px;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(33, 80, 150, 0.15);
    border: none;
    margin-top: 0.5rem;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    z-index: 1050;
    display: none;
}

.navbar-nav .dropdown-menu.mega-dropdown.show {
    display: block;
}

.mega-dropdown-header .dropdown-header {
    font-size: 0.9rem;
    font-weight: 600;
    color: #215096;
    padding: 0.5rem 0;
    margin-bottom: 0.8rem;
    border-bottom: 1px solid rgba(33, 80, 150, 0.1);
}

.navbar-nav .dropdown-menu .dropdown-item {
    padding: 0.8rem 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    color: #215096;
    font-weight: 500;
    margin: 0.2rem 0;
    position: relative;
}

.navbar-nav .dropdown-menu .dropdown-item:hover {
    background-color: rgba(33, 80, 150, 0.08);
    transform: translateX(8px);
    color: #1a3d7a;
    padding-left: 1.5rem;
}

.navbar-nav .dropdown-menu .dropdown-item::before {
    content: '';
    position: absolute;
    left: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 0;
    background-color: #215096;
    border-radius: 2px;
    transition: height 0.3s ease;
}

.navbar-nav .dropdown-menu .dropdown-item:hover::before {
    height: 60%;
}

.navbar-nav .dropdown-menu .dropdown-item.fw-bold {
    background-color: rgba(33, 80, 150, 0.1);
    font-weight: 600;
    color: #1a3d7a;
}

/* Dropdown Hover Effect */
.navbar-nav .dropdown:hover .dropdown-menu {
    display: block;
}

.navbar-nav .dropdown-menu {
    animation: fadeInDown 0.3s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.navbar-nav .btn {
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
}

.navbar-nav .dropdown-menu {
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border: none;
    padding: 0.5rem 0;
}

.navbar-nav .dropdown-item {
    padding: 0.7rem 1.5rem;
    transition: all 0.3s ease;
}

.navbar-nav .dropdown-item:hover {
    background: #f8f9fa;
    padding-left: 2rem;
}

.navbar-nav .dropdown-divider {
    margin: 0.5rem 0;
}

/* ===========================
   Sub Navigation
   =========================== */
.sub-navigation {
    background-color: #f8f9fa;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1020;
}

.sub-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 0.5rem;
}

.sub-nav-item {
    display: inline-block;
}

.sub-nav-link {
    display: block;
    padding: 0.6rem 1.2rem;
    color: #215096;
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.sub-nav-link:hover {
    background-color: rgba(33, 80, 150, 0.1);
    color: #1a3d7a;
    transform: translateY(-2px);
}

.sub-nav-link:active,
.sub-nav-link.active {
    background-color: #215096;
    color: white;
}

@media (max-width: 991.98px) {
    .sub-navigation {
        padding: 0.5rem 0;
    }
    
    .sub-nav-list {
        gap: 0.3rem;
    }
    
    .sub-nav-link {
        padding: 0.5rem 0.8rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 767.98px) {
    .sub-nav-list {
        justify-content: flex-start !important;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding: 0 0.5rem;
        -webkit-overflow-scrolling: touch;
    }
    
    .sub-nav-list::-webkit-scrollbar {
        height: 4px;
    }
    
    .sub-nav-list::-webkit-scrollbar-thumb {
        background: rgba(33, 80, 150, 0.3);
        border-radius: 2px;
    }
    
    .sub-nav-link {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
}

/* ===========================
   Hero Section
   =========================== */
.hero-section {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-slide {
    height: 600px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.hero-section h1 {
    animation: slideInLeft 1s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-section .btn {
    border-radius: 50px;
    padding: 0.8rem 2rem;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* ===========================
   Search Section
   =========================== */
.search-box {
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.search-box .form-control,
.search-box .form-select {
    border-radius: 8px;
    border: 1px solid #ddd;
    padding: 0.8rem 1rem;
}

.search-box .btn {
    border-radius: 8px;
    padding: 0.8rem 1rem;
}

/* Category Tabs (Horizontal Bars) */
.category-tabs-wrapper {
    overflow-x: auto;
    padding: 10px 5px;
    -webkit-overflow-scrolling: touch;
}

.category-tabs-wrapper::-webkit-scrollbar {
    height: 6px;
}

.category-tabs-wrapper::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.category-tabs-wrapper::-webkit-scrollbar-thumb {
    background: #667eea;
    border-radius: 10px;
}

.category-tabs {
    display: flex;
    gap: 1rem;
    flex-wrap: nowrap;
    min-width: max-content;
    justify-content: center;
}

.category-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 2rem;
    background: linear-gradient(135deg, #f6f8fb 0%, #e9ecef 100%);
    border: 2px solid transparent;
    border-radius: 15px;
    text-decoration: none;
    color: #495057;
    transition: all 0.3s ease;
    min-width: 150px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.category-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    transition: left 0.3s ease;
    z-index: 0;
}

.category-tab:hover::before {
    left: 0;
}

.category-tab i {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #667eea;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.category-tab span {
    font-weight: 600;
    font-size: 1rem;
    display: block;
    margin-bottom: 0.2rem;
    position: relative;
    z-index: 1;
}

.category-tab small {
    font-size: 0.75rem;
    color: #6c757d;
    display: block;
    position: relative;
    z-index: 1;
}

.category-tab:hover {
    border-color: #667eea;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
    color: #667eea;
}

.category-tab:hover i {
    transform: scale(1.2);
    color: #764ba2;
}

.category-tab.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: #667eea;
    color: white;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.category-tab.active i,
.category-tab.active span,
.category-tab.active small {
    color: white !important;
}

/* Search Button Wrapper */
.search-button-wrapper {
    margin-top: 2rem;
    padding: 2rem 0;
}

.search-btn-large {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    padding: 1.2rem 3rem;
    font-weight: 700;
    font-size: 1.3rem;
    transition: all 0.4s ease;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.search-btn-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 100%);
    transition: left 0.5s ease;
}

.search-btn-large:hover::before {
    left: 100%;
}

.search-btn-large:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.6);
    background: linear-gradient(135deg, #5568d3 0%, #6a3d8f 100%);
    color: white;
}

.search-btn-large i {
    transition: all 0.3s ease;
}

.search-btn-large:hover i.fa-arrow-right {
    transform: translateX(5px);
}

.search-btn-large:hover i.fa-hotel {
    transform: scale(1.2);
    animation: hotelPulse 0.6s ease-in-out;
}

@keyframes hotelPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3); }
}

/* Activity Tags Section */
.activity-tags-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 1.5rem;
    border-radius: 15px;
    border: 2px dashed rgba(102, 126, 234, 0.3);
}

/* Team Member Contact Styles */
.member-contact {
    padding: 1rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 10px;
    margin: 1rem 0;
}

.member-contact p {
    margin-bottom: 0.5rem;
}

.member-contact .btn-success {
    background: linear-gradient(135deg, #25D366 0%, #20c55b 100%);
    border: none;
    padding: 0.5rem 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.member-contact .btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    background: linear-gradient(135deg, #20c55b 0%, #1ba850 100%);
}

.team-member {
    transition: all 0.3s ease;
    padding: 1.5rem;
    border-radius: 15px;
    background: white;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .category-tabs {
        justify-content: flex-start;
    }
    
    .category-tab {
        min-width: 120px;
        padding: 1rem 1.5rem;
    }
    
    .category-tab i {
        font-size: 1.5rem;
    }
    
    .category-tab span {
        font-size: 0.9rem;
    }
    
    .search-input-group {
        flex-direction: column;
    }
    
    .search-input-item {
        width: 100%;
    }
    
    .member-contact .btn-success {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }
}

/* ===========================
   Stats Section
   =========================== */
.stat-item {
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
}

.stat-number {
    font-size: 3rem;
    color: var(--primary-color);
}

/* ===========================
   Featured Packages Section
   =========================== */
.featured-packages {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
}

.featured-packages::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 50px,
            rgba(255,255,255,0.05) 50px,
            rgba(255,255,255,0.05) 100px
        );
    animation: slide-pattern 20s linear infinite;
}

@keyframes slide-pattern {
    0% { background-position: 0 0; }
    100% { background-position: 100px 100px; }
}

.featured-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.4;
}

.featured-bg-pattern::before,
.featured-bg-pattern::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.2) 0%, transparent 70%);
}

.featured-bg-pattern::before {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -200px;
    animation: float-shape 15s ease-in-out infinite;
}

.featured-bg-pattern::after {
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: -100px;
    animation: float-shape 20s ease-in-out infinite reverse;
}

@keyframes float-shape {
    0%, 100% { 
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    50% { 
        transform: translate(30px, -30px) scale(1.1);
        opacity: 0.5;
    }
}

.featured-packages .badge {
    animation: pulse-badge 2s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
    font-size: 1rem;
}

@keyframes pulse-badge {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(220, 53, 69, 0.5);
    }
}

.featured-packages .section-title {
    color: #2d3748;
    text-shadow: 2px 2px 4px rgba(255,255,255,0.8);
    animation: title-pop-in 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes title-pop-in {
    from { 
        opacity: 0;
        transform: scale(0.8) translateY(20px);
    }
    to { 
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* ===========================
   Modern Package Cards
   =========================== */
.package-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: white;
    border: 2px solid rgba(102, 126, 234, 0.1);
    position: relative;
    animation: card-fade-in 0.6s ease-out forwards;
    opacity: 0;
}

.package-card:nth-child(1) { animation-delay: 0.1s; }
.package-card:nth-child(2) { animation-delay: 0.2s; }
.package-card:nth-child(3) { animation-delay: 0.3s; }
.package-card:nth-child(4) { animation-delay: 0.4s; }
.package-card:nth-child(5) { animation-delay: 0.5s; }
.package-card:nth-child(6) { animation-delay: 0.6s; }

@keyframes card-fade-in {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.package-card:hover::before {
    opacity: 1;
}

.package-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.25);
}

.package-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.package-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.3) 100%);
    z-index: 2;
    transition: opacity 0.3s ease;
}

.package-card:hover .package-image::after {
    opacity: 0.5;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    filter: brightness(0.95);
}

.package-card:hover .package-image img {
    transform: scale(1.15) rotate(2deg);
    filter: brightness(1.05);
}

.package-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
    animation: pulse 2s infinite;
}

.package-badge .badge {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.4);
    backdrop-filter: blur(10px);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.package-featured {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
}

.package-featured .badge {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 50px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    box-shadow: 0 4px 15px rgba(245, 87, 108, 0.4);
    backdrop-filter: blur(10px);
}

.package-body {
    padding: 1.2rem 1.2rem;
    position: relative;
    z-index: 2;
}

.package-category {
    margin-bottom: 0.6rem;
}

.package-category .badge {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 2px 10px rgba(102, 126, 234, 0.3);
}

.package-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    color: #1a202c;
    min-height: 50px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.package-description {
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
    min-height: 40px;
    color: #4a5568;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.package-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding: 0.8rem;
    background: linear-gradient(135deg, #f6f8fb 0%, #f1f4f9 100%);
    border-radius: 12px;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    flex: 1;
    min-width: fit-content;
    justify-content: center;
    color: #666;
}

.info-item i {
    color: #667eea;
    font-size: 0.9rem;
}

.info-item span {
    font-weight: 600;
    color: #2d3748;
}

/* Header Menu Icon Image */
.menu-icon-image {
    max-width: 20px;
    max-height: 20px;
    object-fit: contain;
    display: inline-block;
    vertical-align: middle;
}

/* Tag Pills Styles */
.tag-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    align-items: center;
}

.tag-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.8rem;
    background: linear-gradient(135deg, #f6f8fb 0%, #e9ecef 100%);
    border: 1px solid #dee2e6;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    color: #495057;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tag-pill i {
    font-size: 0.7rem;
    color: #667eea;
}

.tag-pill:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(102, 126, 234, 0.3);
}

.tag-pill:hover i {
    color: white;
}

/* Package Tags in Detail Page */
.package-tags .badge {
    transition: all 0.3s ease;
}

.package-tags .badge:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: white !important;
    border-color: transparent !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.package-tags .badge:hover i {
    color: white !important;
}

/* Kontenjan Info (non-clickable) */
.info-item.kontenjan-info {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border-radius: 10px;
    padding: 0.6rem 0.8rem;
    font-weight: 500;
}

.info-item.kontenjan-info i {
    color: #4caf50 !important;
}

/* View Detail Link */
a.view-detail-link {
    text-decoration: none;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-radius: 10px;
    padding: 0.6rem 0.8rem;
    font-weight: 500;
}

a.view-detail-link:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: scale(1.05);
}

a.view-detail-link:hover span {
    color: white !important;
}

a.view-detail-link:hover i {
    color: white !important;
}

/* WhatsApp Link Styles */
a.whatsapp-link {
    text-decoration: none;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #dcf8c6 0%, #c3e6a0 100%);
    border-radius: 10px;
    padding: 0.6rem 0.8rem;
}

a.whatsapp-link:hover {
    background: linear-gradient(135deg, #25D366 0%, #20c55b 100%);
    transform: scale(1.05);
}

a.whatsapp-link:hover span {
    color: white !important;
}

a.whatsapp-link:hover i {
    color: white !important;
    animation: shake 0.5s ease;
}

@keyframes shake {
    0%, 100% { transform: rotate(0deg); }
    10%, 30%, 50%, 70%, 90% { transform: rotate(-10deg); }
    20%, 40%, 60%, 80% { transform: rotate(10deg); }
}

.package-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 2px solid #f0f4f8;
    flex-wrap: wrap;
}

.package-price .old-price {
    display: block;
    font-size: 0.9rem;
    color: #cbd5e0;
    text-decoration: line-through;
    margin-bottom: 0.3rem;
    font-weight: 500;
}

.package-price {
    flex: 0 0 auto;
}

.package-price .current-price {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    white-space: nowrap;
}

.package-footer .btn {
    border-radius: 50px;
    padding: 0.6rem 1.5rem;
    font-weight: 600;
    font-size: 0.85rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    min-width: 140px;
    text-align: center;
    line-height: 1.5;
}

.package-footer .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.package-footer .btn:hover::before {
    left: 100%;
}

.package-footer .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
}

.package-footer .btn i {
    transition: transform 0.3s ease;
}

.package-footer .btn:hover i {
    transform: translateX(5px);
}

/* ===========================
   Feature Boxes
   =========================== */
.feature-box {
    transition: all 0.3s ease;
    border-radius: 12px;
}

.feature-box:hover {
    background: #f8f9fa;
    transform: translateY(-5px);
}

.feature-icon {
    transition: transform 0.3s ease;
}

.feature-box:hover .feature-icon {
    transform: scale(1.1);
}

/* ===========================
   Newsletter Section
   =========================== */
.newsletter-section {
    background: linear-gradient(135deg, var(--primary-color), #0056b3);
}

.newsletter-form-inline .input-group {
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    border-radius: 50px;
    overflow: hidden;
}

.newsletter-form-inline .form-control {
    border: none;
    padding: 1rem 1.5rem;
}

.newsletter-form-inline .btn {
    border-radius: 0;
    padding: 1rem 2rem;
}

/* ===========================
   Footer
   =========================== */
.footer-area {
    background: #1a1a1a;
}

.footer-area h5 {
    color: white;
    margin-bottom: 1.5rem;
}

.footer-area a {
    color: #ddd;
    transition: color 0.3s ease;
}

.footer-area a:hover {
    color: var(--primary-color);
}

.social-links a {
    display: inline-block;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
}

/* ===========================
   WhatsApp Float Button
   =========================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background: #128C7E;
    color: white;
    transform: scale(1.1);
}

/* ===========================
   Back to Top Button
   =========================== */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s ease;
}

.back-to-top:hover {
    background: #0056b3;
    transform: translateY(-5px);
}

.back-to-top.show {
    display: flex;
}

/* ===========================
   Page Header
   =========================== */
.page-header {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.page-header h1 {
    color: var(--dark-color);
}

.breadcrumb {
    background: transparent;
    margin: 0;
}

.breadcrumb-item a {
    color: var(--primary-color);
}

/* ===========================
   Filter Sidebar
   =========================== */
.filter-sidebar {
    position: sticky;
    top: 100px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border: 1px solid rgba(102, 126, 234, 0.1);
    overflow: hidden;
}

.filter-sidebar .bg-light {
    background: linear-gradient(135deg, #f6f8fb 0%, #f1f4f9 100%) !important;
}

.filter-group label {
    font-size: 0.95rem;
    color: #2d3748;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.filter-group .form-control,
.filter-group .form-select {
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    padding: 0.7rem 1rem;
    transition: all 0.3s ease;
}

.filter-group .form-control:focus,
.filter-group .form-select:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.filter-sidebar .btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 12px;
    padding: 0.8rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
}

.filter-sidebar .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.filter-sidebar .btn-outline-secondary {
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.filter-sidebar .btn-outline-secondary:hover {
    background-color: #f7fafc;
    border-color: #cbd5e0;
}

/* ===========================
   Package Detail
   =========================== */
.package-detail-image img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
}

.info-box {
    transition: all 0.3s ease;
}

.info-box:hover {
    transform: translateY(-5px);
}

.reservation-form {
    position: sticky;
    top: 100px;
}

.total-price {
    border: 2px dashed var(--primary-color);
}

/* ===========================
   Contact Page
   =========================== */
.info-box {
    transition: all 0.3s ease;
}

.info-box:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

/* ===========================
   About Page
   =========================== */
.value-box,
.team-member {
    transition: all 0.3s ease;
}

.value-box:hover,
.team-member:hover {
    transform: translateY(-10px);
}

.team-member img {
    width: 200px;
    height: 200px;
    object-fit: cover;
}

/* ===========================
   Responsive Styles
   =========================== */
@media (max-width: 991px) {
    .hero-section,
    .hero-slide {
        height: 500px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .filter-sidebar {
        position: static;
        margin-bottom: 2rem;
    }
    
    .reservation-form {
        position: static;
    }
}

@media (max-width: 767px) {
    .hero-section,
    .hero-slide {
        height: 400px;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .package-title {
        min-height: auto;
    }
    
    .package-description {
        min-height: auto;
    }
    
    .package-image {
        height: 220px;
    }
    
    .package-title {
        font-size: 1.15rem;
        min-height: auto;
    }
    
    .package-price .current-price {
        font-size: 1.5rem;
    }
    
    .package-footer .btn {
        padding: 0.65rem 1.5rem;
        font-size: 0.9rem;
        min-width: 120px;
    }
    
    .package-footer {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
    
    .package-footer .btn {
        width: 100%;
        justify-content: center;
    }
    
    .package-info {
        flex-direction: column;
        gap: 0.8rem;
        padding: 1rem;
    }
    
    .whatsapp-float,
    .back-to-top {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 20px;
        right: 20px;
    }
    
    .back-to-top {
        bottom: 80px;
    }
}

/* ===========================
   Animations
   =========================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeInUp 1s ease-out;
}

/* ===========================
   Loading Spinner
   =========================== */
.spinner-border-sm {
    width: 1rem;
    height: 1rem;
    border-width: 0.15em;
}

/* ===========================
   Custom Scrollbar
   =========================== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #0056b3;
}

/* ===========================
   Package Gallery
   =========================== */
.package-gallery .carousel-inner {
    border-radius: 12px;
    overflow: hidden;
}

.package-gallery .carousel-item img {
    height: 500px;
    object-fit: cover;
}

.package-gallery .carousel-control-prev,
.package-gallery .carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(0,0,0,0.6);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.package-gallery .carousel-control-prev {
    left: 20px;
}

.package-gallery .carousel-control-next {
    right: 20px;
}

.package-gallery .carousel-control-prev:hover,
.package-gallery .carousel-control-next:hover {
    opacity: 1;
    background: rgba(0,0,0,0.8);
}

.package-gallery .carousel-indicators {
    margin-bottom: 15px;
}

.package-gallery .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: white;
    opacity: 0.5;
}

.package-gallery .carousel-indicators button.active {
    opacity: 1;
    background-color: var(--primary-color);
}

.gallery-thumb {
    height: 80px;
    object-fit: cover;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.gallery-thumb:hover,
.gallery-thumb.active {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.gallery-thumb.active {
    box-shadow: 0 4px 12px rgba(13,110,253,0.3);
}

/* ===========================
   Large Screen Navigation
   =========================== */
@media (min-width: 1200px) {
    .navbar-nav .nav-link {
        font-size: 0.95rem;
        padding: 0.8rem 1.1rem;
    }
}

@media (min-width: 1400px) {
    .navbar-nav .nav-link {
        font-size: 1rem;
        padding: 0.8rem 1.3rem;
    }
}

/* ===========================
   Mobile Navigation
   =========================== */
@media (max-width: 991.98px) {
    .navbar-nav .nav-link.nav-menu-item {
        padding: 0.75rem 1rem;
        margin: 0.2rem 0;
        border-radius: 8px;
        background-color: rgba(33, 80, 150, 0.05);
        font-size: 0.9rem;
        white-space: normal;
        text-align: left;
    }
    
    .navbar-nav .nav-link.nav-menu-item:hover,
    .navbar-nav .nav-link.nav-menu-item.active {
        background-color: rgba(33, 80, 150, 0.1);
        transform: none;
    }
    
    .navbar-nav .nav-link.nav-menu-item::after {
        display: none;
    }
    
    .navbar-nav .nav-link.btn-primary {
        margin-left: 0;
        margin-top: 0.5rem;
        width: 100%;
        text-align: center;
    }
    
    .navbar-collapse {
        background-color: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        border-radius: 12px;
        margin-top: 1rem;
        padding: 1rem;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        max-height: 80vh;
        overflow-y: auto;
    }
    
    .navbar-nav .dropdown-menu {
        border: none;
        box-shadow: none;
        background-color: rgba(33, 80, 150, 0.03);
        border-radius: 8px;
        margin: 0.5rem 0;
    }
}

/* ===========================
   Activity Tags Sidebar
   =========================== */
.activity-tags-list {
    max-height: 400px;
    overflow-y: auto;
}

.activity-tags-list::-webkit-scrollbar {
    width: 6px;
}

.activity-tags-list::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 3px;
}

.activity-tag-link {
    padding: 0.6rem 0.8rem;
    border-radius: 8px;
    color: #333;
    transition: all 0.3s ease;
    background: white;
}

.activity-tag-link:hover {
    background: #f0f7ff;
    color: var(--primary-color);
    transform: translateX(3px);
}

.activity-tag-link.active {
    background: var(--primary-color);
    color: white;
}

.activity-tag-link.active i {
    color: white;
}

.activity-tag-link.active .badge {
    background: white !important;
    color: var(--primary-color) !important;
}

.activity-tag-link i {
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.activity-tag-link:hover i {
    transform: scale(1.1);
}

/* ===========================
   Category Cards
   =========================== */
/* Categories Section Background */
.categories-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
}

.categories-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255,255,255,0.15) 0%, transparent 50%);
    animation: float 15s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Animated Background */
.animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.animated-bg::before,
.animated-bg::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    animation: bubble 20s infinite;
}

.animated-bg::before {
    top: -250px;
    left: -250px;
    animation-delay: 0s;
}

.animated-bg::after {
    bottom: -250px;
    right: -250px;
    animation-delay: 7s;
}

@keyframes bubble {
    0%, 100% { 
        transform: translate(0, 0) scale(1);
        opacity: 0.5;
    }
    50% { 
        transform: translate(50px, 50px) scale(1.2);
        opacity: 0.8;
    }
}

/* Category Section Headers */
.categories-section .badge {
    animation: badge-float 3s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

@keyframes badge-float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

.categories-section .section-title {
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    animation: title-fade-in 1s ease-out;
}

@keyframes title-fade-in {
    from { 
        opacity: 0;
        transform: translateY(-20px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

.categories-section .section-subtitle {
    color: rgba(255,255,255,0.9) !important;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.categories-section .title-underline {
    background: white;
    box-shadow: 0 2px 10px rgba(255,255,255,0.3);
}

.category-card {
    display: block;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem 1.8rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    color: #333;
    border: 2px solid rgba(255,255,255,0.3);
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.category-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.4);
    background: white;
    border-color: rgba(102, 126, 234, 0.5);
}

.category-card:hover::before {
    opacity: 1;
}

.category-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
    position: relative;
    z-index: 1;
}

.category-icon::before {
    content: '';
    position: absolute;
    width: 110%;
    height: 110%;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    opacity: 0.3;
    animation: pulse-icon 2s ease-in-out infinite;
}

@keyframes pulse-icon {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.2); opacity: 0; }
}

.category-card:hover .category-icon {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.5);
}

.category-icon i {
    color: white;
}

.category-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: #2d3748;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.category-card:hover .category-title {
    color: #667eea;
}

.category-count {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
    position: relative;
    z-index: 1;
}

.category-description {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.category-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #667eea;
    font-weight: 600;
    position: relative;
    z-index: 1;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.category-card:hover .category-link {
    gap: 0.8rem;
    transform: translateX(5px);
}

.category-link i {
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.category-card:hover .category-link i {
    transform: translateX(8px) scale(1.2);
}

/* ===========================
   Social Media Icons - Original Brand Colors
   =========================== */
.social-icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    color: #fff !important;
    margin: 0 2px;
}

/* Facebook - Official Blue */
.social-icon.facebook {
    background-color: #1877F2;
}

.social-icon.facebook:hover {
    background-color: #166fe5;
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 6px 20px rgba(24, 119, 242, 0.5);
}

/* Instagram - Official Gradient */
.social-icon.instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.social-icon.instagram:hover {
    background: radial-gradient(circle at 30% 107%, #fcf086 0%, #fcf086 5%, #fc4838 45%, #c51a8e 60%, #1a4ad4 90%);
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 6px 20px rgba(214, 36, 159, 0.5);
}

/* Twitter/X - Official Blue */
.social-icon.twitter {
    background-color: #1DA1F2;
}

.social-icon.twitter:hover {
    background-color: #0d95e8;
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 6px 20px rgba(29, 161, 242, 0.5);
}

/* WhatsApp - Official Green */
.social-icon.whatsapp {
    background-color: #25D366;
}

.social-icon.whatsapp:hover {
    background-color: #20c55b;
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

/* Icon size adjustment */
.social-icon i {
    font-size: 18px;
    vertical-align: middle;
}

/* ===========================
   Print Styles
   =========================== */
@media print {
    .navbar,
    .footer-area,
    .whatsapp-float,
    .back-to-top,
    .search-section {
        display: none !important;
    }
}

