/* Packages Section Premium Redesign */
.rs-packages {
    background-color: #f7f9fc;
    position: relative;
    z-index: 1;
}

.rs-packages .container {
    max-width: 1200px;
}

/* Card Style for Package Item */
.rs-packages .package-item {
    background: #ffffff;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    margin: 15px;
    /* Spacing for shadow */
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.rs-packages .package-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
}

/* Title Styling */
.rs-packages .package-title {
    font-size: 28px;
    font-weight: 700;
    color: #010d14;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
    letter-spacing: -0.5px;
}

.rs-packages .package-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #7DA33F;
    border-radius: 2px;
}

/* Package Header Styling inside Carousel */
.rs-packages .package-name {
    font-size: 24px;
    font-weight: 700;
    color: #010d14;
    margin-bottom: 0;
    position: relative;
    padding-bottom: 10px;
}

.rs-packages .package-name:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: #7DA33F;
    border-radius: 2px;
}

/* Carousel Dots Customization */
/* Package Slider - Thumbnail Navigation */
/* Package Slider - Text Based Pill Navigation */
.rs-packages .package-slider-nav {
    max-width: 900px;
    margin: 0 auto 40px auto;
    display: flex;
    justify-content: center;
}

.rs-packages .package-slider-nav .nav-item {
    padding: 10px;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
}

.rs-packages .package-slider-nav .thumb-wrap {
    background: #f8f9fa;
    border-radius: 50px;
    padding: 12px 35px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #e0e0e0;
    display: inline-block;
}

.rs-packages .package-slider-nav .nav-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    color: #555;
    transition: all 0.3s ease;
    white-space: nowrap;
}

/* Hover State */
.rs-packages .package-slider-nav .nav-item:hover .thumb-wrap {
    background: #e9ecef;
    transform: translateY(-2px);
}

/* Active Thumbnail State */
.rs-packages .package-slider-nav .slick-current .thumb-wrap {
    background: #7DA33F;
    border-color: #7DA33F;
    box-shadow: 0 5px 15px rgba(125, 163, 63, 0.3);
    transform: translateY(-2px);
}

.rs-packages .package-slider-nav .slick-current .nav-title {
    color: #fff;
    font-weight: 700;
}

/* Main Content Slider Wrapper */
/* .rs-packages .package-slider-for handled by slick */

/* Checklist Styling */
.rs-packages .check-lists2 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rs-packages .check-lists2 li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    font-size: 16px;
    color: #444;
    font-weight: 500;
    border-bottom: 1px dashed #eee;
    padding-bottom: 8px;
}

.rs-packages .check-lists2 li:last-child {
    border-bottom: none;
}

.rs-packages .check-lists2 li::before {
    content: '\f101';
    /* FontAwesome check or angle right */
    font-family: 'FontAwesome';
    position: absolute;
    left: 0;
    top: 2px;
    color: #fff;
    background: #7DA33F;
    width: 22px;
    height: 22px;
    line-height: 22px;
    text-align: center;
    border-radius: 50%;
    font-size: 12px;
}

/* Package Image Styling */
.rs-packages .package-image {
    padding: 10px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease;
}

.rs-packages .package-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.rs-packages .package-image img {
    border-radius: 8px;
    display: block;
}

/* Responsive Tweak */
@media (max-width: 768px) {
    .rs-packages .package-item {
        padding: 20px;
    }

    .rs-packages .package-title {
        font-size: 24px;
    }

    .rs-packages .nav-pills .nav-link {
        padding: 8px 20px;
        font-size: 14px;
    }
}