/* ===== RUDRAA TOUR PACKAGE CARDS SLIDER ===== */

.rudraa-section {
    padding: 60px 0;
    background: #f8fafc;
}

.rudraa-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.rudraa-heading {
    text-align: center;
    font-size: 28px;
    margin-bottom: 30px;
    font-weight: 600;
}

/* Slider */
.rudraa-slider-wrapper {
    position: relative;
}

.rudraa-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 0;
}

.rudraa-slider::-webkit-scrollbar {
    display: none;
}

/* Card */
.rudraa-card {
    min-width: 340px;
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.rudraa-card:hover {
    transform: translateY(-8px);
}

/* Image */
.rudraa-card-img {
    position: relative;
}

.rudraa-card-img img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    transition: 0.4s ease;
}

.rudraa-card:hover .rudraa-card-img img {
    transform: scale(1.1);
}

/* Discount Badge */
.rudraa-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #f97316;
    color: white;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: bold;
}

/* Price Tag Blur */
.rudraa-price-tag {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(255,255,255,0.25);
    backdrop-filter: blur(8px);
    padding: 8px 14px;
    border-radius: 20px;
    color: white;
    font-weight: bold;
    font-size: 14px;
}

/* Info */
.rudraa-card-info {
    padding: 18px;
}

.rudraa-card-info h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.rudraa-days {
    font-size: 14px;
    color: #666;
}

/* Buttons */
.rudraa-card-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
}

.rudraa-detail-btn {
    background: #f97316;
    color: white;
    padding: 8px 14px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
}

.rudraa-enquire-btn {
    border: 2px solid #f97316;
    color: #f97316;
    padding: 8px 14px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
}

/* Slider Buttons */
.rudraa-slider-btn {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    background: #f97316;
    color: white;
    border: none;
    padding: 12px 16px;
    cursor: pointer;
    border-radius: 50%;
    font-size: 18px;
    z-index: 10;
}

.rudraa-prev {
    left: -15px;
}

.rudraa-next {
    right: -15px;
}

/* Responsive */
@media(min-width: 768px) {
    .rudraa-card {
        min-width: 300px;
    }
}

@media(min-width: 1024px) {
    .rudraa-card {
        min-width: 340px;
    }
}