/* header */
.navbar-custom {
            background: rgba(0, 0, 0, 0.85) !important; /* Semi-transparent dark background */
            backdrop-filter: blur(8px); /* Frosted glass effect */
            transition: background 0.3s ease;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .navbar-custom.scrolled {
            background: rgba(0, 0, 0, 0.95) !important;
        }
        
        .navbar-custom .nav-link {
            color: rgba(255, 255, 255, 0.9) !important;
            font-weight: 500;
            position: relative;
            margin: 0 5px;
            padding: 10px 15px !important;
            transition: all 0.3s;
        }
        
        .navbar-custom .nav-link:hover,
        .navbar-custom .nav-link.active {
            color: #fff !important;
        }
        
        .navbar-custom .nav-link:hover::after,
        .navbar-custom .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: -1px;
            left: 15px;
            right: 15px;
            height: 2px;
            background: #fff;
        }
        
        .navbar-custom .btn-light {
            background: rgba(255, 255, 255, 0.9);
            border: none;
            font-weight: 600;
            transition: all 0.3s;
        }
        
        .navbar-custom .btn-light:hover {
            background: #fff !important;
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(255, 255, 255, 0.2);
        }
        
        .dropdown-toggle::after {
            display: none;
        }
        
        .dropdown-menu {
            background: rgba(30, 30, 30, 0.95);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .dropdown-item {
            color: rgba(255, 255, 255, 0.85);
            transition: all 0.2s;
            padding: 8px 15px;
        }
        
        .dropdown-item:hover {
            color: #fff;
            background: rgba(255, 255, 255, 0.1);
        }
		
		/* Hotel List */
		.room-card {
        border-bottom: 1px solid #ddd;
        padding: 30px 0;
      }

      .room-img {
        width: 50%;
        max-width: 420px;
        border-radius: 10px;
      }

      .features span {
        font-size: 0.85rem;
        background: #f2f2f2;
        border-radius: 20px;
        padding: 6px 12px;
        margin-right: 5px;
        display: inline-block;
      }

      .room-title {
        font-size: 1.25rem;
        font-weight: 600;
      }

      .room-location {
        color: #6c757d;
      }

      .price {
        font-size: 1.1rem;
        font-weight: 600;
      }
	  
	  
	  /* Package Card in package Details page */
	  
	   /* Package Card Styles */
        .package-card {
            border: none;
            border-radius: 12px;
            overflow: hidden;
            transition: var(--transition);
            box-shadow: var(--shadow);
            background: white;
            margin-bottom: 30px;
            height: 100%;
            position: relative;
        }
        
        .package-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
        }
        
        .package-img-container {
            height: 220px;
            overflow: hidden;
            position: relative;
        }
        
        .package-img {
            height: 100%;
            width: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        
        .package-card:hover .package-img {
            transform: scale(1.05);
        }
        
        .card-content {
            padding: 25px;
        }
        
        .package-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--accent);
            color: white;
            padding: 6px 12px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.8rem;
            box-shadow: 0 4px 10px rgba(255,107,53,0.3);
            z-index: 2;
        }
        
        .package-title {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            font-size: 1.4rem;
            margin-bottom: 12px;
            color: var(--secondary);
        }
        
        .package-details {
            margin-bottom: 20px;
        }
        
        .detail-item {
            display: flex;
            margin-bottom: 10px;
            align-items: flex-start;
        }
        
        .detail-icon {
            color: var(--primary);
            min-width: 24px;
            margin-right: 12px;
            font-size: 1rem;
            margin-top: 3px;
        }
        
        .detail-text {
            flex: 1;
            color: var(--gray);
            font-size: 0.95rem;
        }
        
        .feature-badges {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin: 15px 0;
        }
        
        .feature-badge {
            background-color: var(--light-gray);
            color: var(--dark);
            border-radius: 20px;
            padding: 5px 12px;
            font-size: 0.8rem;
            font-weight: 500;
        }
        
        .price {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--accent);
            margin: 15px 0;
        }
        
        .price span {
            font-size: 0.9rem;
            color: var(--gray);
            font-weight: 400;
        }
        
        .btn-view {
            background: var(--primary);
            color: white;
            border: none;
            padding: 10px 25px;
            border-radius: 8px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-size: 0.85rem;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 100%;
        }
        
        .btn-view:hover {
            background: var(--secondary);
            transform: translateY(-2px);
        }
        
        .btn-view i {
            margin-left: 8px;
            transition: var(--transition);
        }
        
        .btn-view:hover i {
            transform: translateX(3px);
        }
        
        /* Header Styles */
        .hero-header {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            border-radius: 0 0 30px 30px;
            padding: 40px 0 60px;
            margin-bottom: -30px;
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .filter-container {
            background: white;
            border-radius: 12px;
            padding: 25px;
            box-shadow: var(--shadow);
            margin-top: 20px;
        }
        
        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .package-img-container {
                height: 200px;
            }
            
            .card-content {
                padding: 20px;
            }
        }
        
        .package-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 30px;
        }
        
        .results-count {
            background: white;
            padding: 10px 20px;
            border-radius: 30px;
            display: inline-block;
            margin-bottom: 20px;
            box-shadow: var(--shadow);
        }