/* .Search-btn {
    background-color: var(--dynamic-color);
    color: white;
    font-size: 16px;
    font-weight: 600;
    padding: 10px 20px;
    border: none;
}

.field {
    border-right: 1px solid #ddd;
    padding: 5px 7px !important;
}

.upperTabs a {
    text-decoration: none;
    color: inherit;
}

.upperTabs .tab {
    font-size: 14px;
    font-weight: 600;
    padding: 13px 30px;
    cursor: pointer;
}

.upperTabs .tab.active {
    color: var(--dynamic-color);
    border-bottom: 2px solid var(--dynamic-color);
}

.field svg g {
    fill: var(--dynamic-color);
}

.holiday-sel {
    font-size: 16px;
    font-weight: 600;
    cursor: pointer !important;
    outline: 0;
    border: 0;
}
 */

/* ===============================
   Holiday Package Section
================================= */

/* Each card */
.holidayDivniIin {
    background: #fff;
    border-radius: 18px;
    /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); */
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    border: 1px solid #ddd;
    height: 100%;

}

.holidayDivniIin:hover {
    transform: translateY(-6px);
    /* box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12); */
}

/* Image section */
.holidayDivniIin .first {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.holidayDivniIin .first img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.holidayDivniIin:hover .first img {
    transform: scale(1.08);
}

/* Content section */
.holidayDivniIin .second {
    padding: 16px 18px;
    background: #fff;
}

.holidayDivniIin .second h5 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 8px;
}

.holidayDivniIin .second p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
}

/* Price text styling */
.holidayDivniIin .second i {
    color: var(--dynamic-color);
    margin-right: 3px;
}

/* Title */
.container>h3.fs-1 {
    font-weight: 700;
    color: #1c1c1c;
    margin-bottom: 15px;
    position: relative;
}

.container>h3.fs-1::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 70px;
    height: 3px;
    background: var(--dynamic-color);
    border-radius: 2px;
}

/* Responsive */
@media (max-width: 768px) {
    .holidayDivniIin .first {
        height: 180px;
    }

    .holidayDivniIin .second h5 {
        font-size: 1rem;
    }

    .holidayPackageSlider {
        gap: 12px;
    }
}

/* ===============================
   Slick Carousel Arrows
================================= */

.holidayPackageSlider {
    position: relative;
}

/* Common arrow styling */
.holidayPackageSlider .left,
.holidayPackageSlider .right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    background: white;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Left Arrow */
.holidayPackageSlider .left {
    left: -20px;
}

/* Right Arrow */
.holidayPackageSlider .right {
    right: -20px;
}

/* Icon style */
.slide-left,
.slide-right {
    font-size: 18px;
    color: var(--dynamic-color);
    transition: transform 0.3s ease, color 0.3s ease;
}

/* Hover effects */
.holidayPackageSlider .left:hover,
.holidayPackageSlider .right:hover {
    background: var(--dynamic-color);
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.2);
}

.holidayPackageSlider .left:hover i,
.holidayPackageSlider .right:hover i {
    color: #fff;
    transform: scale(1.15);
}

/* Disable state (Slick adds .slick-disabled) */
.holidayPackageSlider .slick-disabled {
    opacity: 0.4;
    pointer-events: none;
}

/* Responsive positioning */
@media (max-width: 992px) {
    .holidayPackageSlider .left {
        left: -10px;
    }

    .holidayPackageSlider .right {
        right: -10px;
    }

    .holidayPackageSlider .left,
    .holidayPackageSlider .right {
        width: 40px;
        height: 40px;
    }

    .slide-left,
    .slide-right {
        font-size: 16px;
    }
}

@media (max-width: 576px) {

    .holidayPackageSlider .left,
    .holidayPackageSlider .right {
        width: 36px;
        height: 36px;
    }

    .slide-left,
    .slide-right {
        font-size: 14px;
    }
}