/* Hide scrollbar for category tabs */
.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Ensure proper spacing on mobile */
@media (max-width: 640px) {
    .no-scrollbar::-webkit-scrollbar {
        display: none;
    }
}

/* Section Spacing */
.partner-hotels-section {
    background-color: #f9f9f9;
    /* Light background to separate from previous section */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #333;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
}

/* Hotel Card Styling */
.hotel-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.hotel-card:hover {
    transform: translateY(-5px);
}

.hotel-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.hotel-info {
    padding: 20px;
}

.hotel-info h3 {
    margin: 0 0 5px;
    font-size: 1.25rem;
    color: #222;
}

.stars {
    color: #f1c40f;
    /* Gold color for stars */
    margin-bottom: 8px;
}

.location {
    font-size: 0.9rem;
    color: #777;
    margin: 0;
}

/* Swiper Pagination Customization */
.swiper-pagination-bullet-active {
    background-color: #333 !important;
}

/* Custom Navigation Buttons */
.hotel-arrow-next {
    right: -20px; /* same as package carousel */
}

.hotel-arrow-prev {
    left: -20px; /* same as package carousel */
}

/* Responsive for mobile */
@media (max-width: 768px) {
    .hotel-arrow-next {
        right: 10px;
    }
    .hotel-arrow-prev {
        left: 10px;
    }
}

.packages-viewport {
    overflow: hidden;
    width: 100%;
    padding: 40px 0;
    /* Space for shadow/hover effects */
}

.packages-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.package-card {
    flex: 0 0 320px;
    /* Fixed card width */
    opacity: 0.4;
    transform: scale(0.9);
    transition: all 0.5s ease;
    filter: blur(1px);
}

.package-card.active {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
    z-index: 10;
}

/* ARROW STYLES */
.pkg-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 50;
    border: 1px solid #f3f4f6;
    color: #1e3a8a;
    /* Blue-900 */
    transition: all 0.3s ease;
}

.pkg-arrow:hover {
    background: #f97316;
    /* Orange-500 */
    color: white;
    transform: translateY(-50%) scale(1.1);
    border-color: #f97316;
}

/* Desktop Positions (Outside the track) */
.pkg-arrow.left {
    left: -20px;
}

.pkg-arrow.right {
    right: -20px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .package-card {
        flex: 0 0 85%;
        /* Cards take up most of screen */
    }

    /* Move arrows inside on mobile so they fit */
    .pkg-arrow {
        width: 44px;
        height: 44px;
        background: rgba(255, 255, 255, 0.9);
    }

    .pkg-arrow.left {
        left: 10px;
    }

    .pkg-arrow.right {
        right: 10px;
    }
}