 







 

















    /* Custom CSS with unique prefixes to avoid class clashing */
    .ts-rental-section {
        padding: 80px 0;
        background-color: #f8fafc;
        font-family: 'Inter', sans-serif;
    }

    /* Heading: Positioned above the slider */
    .ts-header-block {
        text-align: center;
        margin-bottom: 50px;
        width: 100%;
    }

    .ts-header-block h2 {
        font-weight: 800;
        font-size: clamp(2rem, 5vw, 3.5rem);
        color: #1d264f; /* Custom Navy */
        margin-bottom: 10px;
    }

    .ts-header-block h2 span {
        color: #ff5a5f; /* Custom Red accent */
    }

    .ts-header-block p {
        color: #64748b;
        font-size: 1.1rem;
    }

    /* Slider Container */
    .ts-swiper-container {
        padding: 10px 10px 60px 10px !important;
    }

    /* Card UI Redesign */
    .ts-rental-card {
        background: #ffffff;
        border-radius: 35px;
        overflow: hidden;
        box-shadow: 0 20px 40px rgba(0,0,0,0.06);
        height: 100%;
        transition: transform 0.3s ease;
        border: 1px solid rgba(0,0,0,0.02);
    }

    .ts-rental-card:hover {
        transform: translateY(-10px);
    }

    .ts-img-wrapper {
        position: relative;
        height: 300px;
        margin: 15px;
        border-radius: 25px;
        overflow: hidden;
    }

    .ts-img-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* Floating Badges */
    .ts-status-badge {
        position: absolute;
        top: 15px;
        left: 15px;
        background: #ff5a5f;
        color: #fff;
        padding: 6px 16px;
        border-radius: 50px;
        font-size: 11px;
        font-weight: 700;
        text-transform: uppercase;
    }

    .ts-price-box {
        position: absolute;
        bottom: 15px;
        right: 15px;
        background: rgba(29, 38, 79, 0.85); /* Navy with transparency */
        backdrop-filter: blur(8px);
        color: #fff;
        padding: 10px 20px;
        border-radius: 18px;
        text-align: center;
    }

    .ts-price-box .ts-amt { font-size: 1.4rem; font-weight: 800; display: block; }
    .ts-price-box .ts-per { font-size: 0.75rem; opacity: 0.8; }

    /* Card Details */
    .ts-details {
        padding: 0 30px 35px;
        text-align: center;
    }

    .ts-unit-tag {
        color: #ff5a5f;
        font-size: 11px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        display: block;
        margin-bottom: 8px;
    }

    .ts-resort-title {
        color: #1d264f;
        font-weight: 800;
        font-size: 1.6rem;
        margin-bottom: 25px;
    }

    .ts-btn-book {
        background: #1d264f;
        color: #fff !important;
        text-decoration: none;
        padding: 15px;
        border-radius: 18px;
        font-weight: 700;
        display: block;
        transition: 0.3s;
    }

    .ts-btn-book:hover {
        background: #ff5a5f;
        box-shadow: 0 10px 20px rgba(255, 90, 95, 0.2);
    }

    /* Navigation Controls */
    .ts-nav-wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
        margin-top: 20px;
    }

    .ts-nav-arrow {
        width: 50px; height: 50px;
        background: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        box-shadow: 0 4px 15px rgba(0,0,0,0.08);
        color: #1d264f;
    }

    .ts-nav-arrow:hover { background: #1d264f; color: #fff; }
    
    /* Pagination Color */
    .swiper-pagination-bullet-active {
        background: #ff5a5f !important;
        width: 25px !important;
        border-radius: 5px !important;
    }

    /* Mobile Fixes */
    @media (max-width: 768px) {
        .ts-rental-section { padding: 50px 0; }
        .ts-img-wrapper { height: 250px; }
        .ts-header-block h2 { font-size: 2rem; }
    }











    @import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;600;800&display=swap');

    .ts-bcrumb-section {
        position: relative;
        min-height: 350px;
        display: flex;
        align-items: center;
        /* Replace with your local asset path: {{ asset('asset/img/img1.avif') }} */
        background: url('https://images.unsplash.com/photo-1566073771259-6a8506099945?auto=format&fit=crop&w=1920&q=80');
        background-size: cover;
        background-position: center;
        font-family: 'Plus Jakarta Sans', sans-serif;
        overflow: hidden;
    }

    /* Darker, sophisticated overlay with a touch of brand color */
    .ts-bcrumb-section::before {
        content: '';
        position: absolute;
        top: 0; left: 0; right: 0; bottom: 0;
        background: linear-gradient(to right, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.4) 100%);
        z-index: 1;
    }

    .ts-bcrumb-container {
        position: relative;
        z-index: 2;
    }

    /* Floating Glass Card Effect for Title */
    .ts-bcrumb-card {
        background: rgba(255, 255, 255, 0.03);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        padding: 40px;
        border-radius: 24px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        display: inline-block;
        max-width: 100%;
    }

    .ts-bcrumb-title {
        font-size: clamp(2.5rem, 5vw, 3.5rem);
        font-weight: 800;
        color: #ffffff;
        margin-bottom: 15px;
        letter-spacing: -1px;
        line-height: 1;
    }

    /* Modern Breadcrumb Styling */
    .ts-bcrumb-nav {
        display: flex;
        align-items: center;
        gap: 12px;
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .ts-bcrumb-item {
        font-size: 0.95rem;
        font-weight: 500;
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .ts-bcrumb-item a {
        color: rgba(255, 255, 255, 0.6);
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .ts-bcrumb-item a:hover {
        color: #ff5f5f;
    }

    /* Custom Dot Separator */
    .ts-bcrumb-item:not(:last-child)::after {
        content: '';
        width: 6px;
        height: 6px;
        background: #ff5f5f;
        border-radius: 50%;
        display: inline-block;
    }

    .ts-bcrumb-item.active {
        color: #ffffff;
        font-weight: 600;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .ts-bcrumb-section { min-height: 280px; text-align: center; }
        .ts-bcrumb-card { padding: 30px 20px; width: 100%; }
        .ts-bcrumb-nav { justify-content: center; }
    }