/* ========================================================
   ROUTE2INDIA TOURS STYLING (#000000 BLACK & #ed2227 RED)
   ======================================================== */

.bg-black {
    background-color: #000000 !important;
}

/* Ambient Red Background Glows */
.tours-glow-1 {
    position: absolute;
    top: 5%;
    left: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(237, 34, 39, 0.16) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
}

.tours-glow-2 {
    position: absolute;
    bottom: 5%;
    right: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(237, 34, 39, 0.14) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
}

/* Header Badge */
.r2i-tours-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    padding: 6px 18px;
    border-radius: 50px;
    border: 1px solid rgba(237, 34, 39, 0.4);
}

.r2i-tours-badge .badge-dot {
    width: 8px;
    height: 8px;
    background-color: #ed2227;
    border-radius: 50%;
    box-shadow: 0 0 10px #ed2227;
}

.r2i-tours-badge .badge-text {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #FFFFFF;
}

/* Red Text Utilities */
.text-gradient-red {
    background: linear-gradient(135deg, #FF5257 0%, #ed2227 60%, #990B0F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #ed2227;
    display: inline-block;
}

.text-red {
    color: #ed2227 !important;
}

/* Filter Bar Styling */
.tour-filter-bar {
    background: rgba(20, 20, 20, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.filter-label {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-tour-filter {
    background-color: transparent;
    color: #CCCCCC;
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-tour-filter:hover,
.btn-tour-filter.active {
    background: linear-gradient(135deg, #ed2227 0%, #990B0F 100%);
    color: #FFFFFF !important;
    border-color: #ed2227;
    box-shadow: 0 4px 15px rgba(237, 34, 39, 0.35);
}

/* Tour Card Base */
.r2i-tour-card {
    background: rgba(18, 18, 18, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.r2i-tour-card:hover {
    border-color: #ed2227;
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(237, 34, 39, 0.22);
    background: rgba(25, 25, 25, 0.95);
}

/* Image Wrapper */
.tour-img-wrapper {
    height: 240px;
    background-color: #111111;
}

.tour-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.r2i-tour-card:hover .tour-img {
    transform: scale(1.08);
}

.tour-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0) 60%, rgba(0,0,0,0.8) 100%);
}

.tour-region-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(237, 34, 39, 0.5);
    color: #FFFFFF;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 14px;
    border-radius: 30px;
    z-index: 2;
}

/* Card Body & Typography */
.tour-card-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.tour-duration,
.tour-type {
    font-size: 12.5px;
    font-weight: 600;
}

.tour-type {
    color: #DDDDDD;
}

.tour-card-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.35;
}

.tour-card-desc {
    font-size: 13.5px;
    line-height: 1.65;
}

.tour-tag {
    font-size: 12px;
    color: #888888;
    font-weight: 500;
}

/* Tour Action Button */
.btn-tour-action {
    color: #ed2227 !important;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.btn-tour-action:hover {
    color: #FFFFFF !important;
    transform: translateX(4px);
}

/* Tour Card Hide/Show Animations for Filter JS */
.tour-item {
    transition: all 0.4s ease;
}

.tour-item.hide-tour {
    display: none !important;
}