/* Homepage Specific Styles */

/* Package Tabs Styles */
.package-tabs {
    margin-bottom: 30px;
    border-bottom: 2px solid #e0e0e0;
}

.package-tabs .nav-tabs {
    border: none;
    display: inline-flex;
}

.package-tabs .nav-tabs > li {
    margin-right: 30px;
}

.package-tabs .nav-tabs > li > a {
    border: none !important;
    border-bottom: 3px solid transparent !important;
    padding: 12px 0 !important;
    color: #333 !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
    background: transparent !important;
    margin-right: 0 !important;
}

.package-tabs .nav-tabs > li > a:hover {
    color: #FA831A !important;
    border-bottom: 3px solid #FA831A !important;
    background: transparent !important;
}

.package-tabs .nav-tabs > li.active > a,
.package-tabs .nav-tabs > li.active > a:hover,
.package-tabs .nav-tabs > li.active > a:focus {
    color: #FA831A !important;
    border-bottom: 3px solid #FA831A !important;
    background: transparent !important;
}

/* Packages Slider Styles */
.packages-slider-wrapper {
    position: relative;
    padding: 0 ;
}

.packages-slider .slick-list {
    margin: 0 -10px;
}

/* .packages-slider .slick-slide {
    padding: 0 10px;
} */

/* Equal height for package cards */
.packages-slider .slick-track {
    display: flex;
    align-items: stretch;
}

.packages-slider .slick-slide {
    height: auto;
    margin-bottom: 10px;
}

.packages-slider .slick-slide > div {
    height: 100%;
}

.subtitle p{
    font-size: 14px;
    color: #666;
    margin-top: 5px;
    margin-bottom: 20px;
    margin-left: 0;
    text-align: left;
}

.package-card {
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 0 10px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.btn-orange{
    background: #FA831A; color: #fff; padding: 12px 30px; border-radius: 6px; font-weight: 600; text-decoration: none; display: inline-block;
}

.package-card a {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.package-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.package-content {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.package-content h3 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0 0 8px 0;
    line-height: 1.3;
    text-align: left;
}

.package-content > p {
    font-size: 13px;
    color: #666;
    margin: 0 0 8px 0;
    text-align: left;
}

.package-content .flight-info {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.package-content .flight-info i {
    color: #666;
    font-size: 12px;
    margin-right: 6px;
}

.package-content .flight-info span {
    font-size: 12px;
    color: #666;
}

.package-content .discount-badge {
    margin-bottom: 12px;
}

.package-content .discount-badge span {
    background: #28a745;
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
}

.package-content .price-container {
    margin-bottom: 8px;
}

.package-content .price-container .current-price {
    font-size: 22px;
    font-weight: 700;
    color: #1A5490
}

.package-content .price-container .original-price {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
    margin-left: 8px;
}

.package-content .per-traveller {
    font-size: 11px;
    color: #666;
    margin: 0 0 8px 0;
}

.package-content .package-dates {
    font-size: 12px;
    color: #666;
    margin: 0 0 4px 0;
}

.package-content .found-time {
    font-size: 11px;
    color: #999;
    margin: 0;
}

.package-card.empty-state {
    padding: 40px;
    text-align: center;
    color: #999;
}

/* Blog Carousel Styles */
.blog-carousel-wrapper {
    position: relative;
    padding: 0;
}

.blog-slider .slick-list {
    margin: 0 -10px;
}

/* Equal height for blog cards */
.blog-slider .slick-track {
    display: flex;
    align-items: stretch;
}

.blog-slider .slick-slide {
    height: auto;
}

.blog-slider .slick-slide > div {
    height: 100%;
}

.blog-card {
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 0 10px;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.blog-card a {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.blog-image {
    position: relative;
    height: 300px;
    overflow: hidden;
    flex: 1;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
    padding: 20px;
    color: #fff;
}

.blog-title {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin: 0;
    line-height: 1.4;
    text-align: left;
}

.blog-card.empty-state {
    padding: 40px;
    text-align: center;
    color: #999;
}

.blog-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    cursor: pointer;
    z-index: 10;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0;
    pointer-events: none;
}

.blog-nav-btn i {
    color: #d4222d;
    font-size: 12px;
}

.blog-prev {
    left: -20px;
}

.blog-next {
    right: -20px;
}

.blog-carousel-wrapper:hover .blog-nav-btn {
    opacity: 1;
    pointer-events: auto;
}

.blog-nav-btn.slick-disabled {
    opacity: 0 !important;
    pointer-events: none !important;
    cursor: not-allowed !important;
}

.blog-carousel-wrapper:hover .blog-nav-btn:not(.slick-disabled) {
    opacity: 1;
    pointer-events: auto;
}

.blog-nav-btn:hover:not(.slick-disabled) {
    background: #d4222d !important;
    transform: translateY(-50%) scale(1.05) !important;
}

.blog-nav-btn:hover:not(.slick-disabled) i {
    color: #fff !important;
}

/* Responsive adjustments for blog carousel */
@media (max-width: 991px) {
    
    .blog-nav-btn {
        width: 40px !important;
        height: 40px !important;
    }
    
    .blog-prev {
        left: 0 !important;
    }
    
    .blog-next {
        right: 0 !important;
    }
}

@media (max-width: 767px) {
    
    .blog-nav-btn {
        width: 35px !important;
        height: 35px !important;
    }
    
    .blog-image {
        height: 250px;
    }
    
    .blog-title {
        font-size: 16px;
    }
}

@media (max-width: 479px) {
    
    .blog-nav-btn {
        display: flex !important;
        width: 30px !important;
        height: 30px !important;
    }
    
    .blog-prev {
        left: 5px !important;
    }
    
    .blog-next {
        right: 5px !important;
    }
    
    .blog-image {
        height: 200px;
    }
}

.blog-view-all {
    margin-top: 30px;
}

/* Blog Scroller/Pagination Indicator */
.blog-scroller-wrapper {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.blog-scroller-track {
    width: 40px;
    height: 6px;
    background: #e0e0e0;
    border-radius: 20px;
    position: relative;
    overflow: visible;
}

.blog-scroller-thumb {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 6px;
    width: 15px;
    background: #1A5490;
    border-radius: 20px;
    transition: left 0.3s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
/* 
.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15) !important;
} */

.package-tabs .nav-tabs>li {
    margin-bottom: -8px;
}

.package-nav-btn {
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

.packages-slider-wrapper:hover .package-nav-btn {
    opacity: 1;
    pointer-events: auto;
}

.package-nav-btn.slick-disabled {
    opacity: 0 !important;
    pointer-events: none !important;
    cursor: not-allowed !important;
}

.packages-slider-wrapper:hover .package-nav-btn:not(.slick-disabled) {
    opacity: 1;
    pointer-events: auto;
}

.package-nav-btn:hover:not(.slick-disabled) {
    background: #d4222d !important;
    transform: translateY(-50%) scale(1.05) !important;
}

.package-nav-btn:hover:not(.slick-disabled) i {
    color: #fff !important;
}

/* Locations Carousel Styles - Slick Slider */
.locations-carousel-wrapper {
    padding: 0;
}

.locations-slider {
    position: relative;
}

.locations-slider .slick-list {
    margin: 0 -10px;
}

/* .locations-slider .slick-slide {
    padding: 0 10px;
} */

.location-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15) !important;
}

/* Ensure anchor tags in location slides work properly */
.locations-slider .location-slide a {
    display: block;
    text-decoration: none;
    height: 100%;
}

.locations-slider .location-slide a:hover {
    text-decoration: none;
}

.carousel-nav-btn {
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

.locations-carousel-wrapper:hover .carousel-nav-btn {
    opacity: 1;
    pointer-events: auto;
}

.carousel-nav-btn.slick-disabled {
    opacity: 0 !important;
    pointer-events: none !important;
    cursor: not-allowed !important;
}

.locations-carousel-wrapper:hover .carousel-nav-btn:not(.slick-disabled) {
    opacity: 1;
    pointer-events: auto;
}

.carousel-nav-btn:hover:not(.slick-disabled) {
    background: #d4222d !important;
    transform: translateY(-50%) scale(1.05) !important;
}

.carousel-nav-btn:hover:not(.slick-disabled) i {
    color: #fff !important;
}

/* Slick Slider Custom Styles */
.locations-slider .slick-track {
    display: flex;
    align-items: stretch;
}

.locations-slider .slick-slide {
    height: auto;
}

.locations-slider .slick-slide > div {
    height: 100%;
}

.locations-slider .slick-slide a {
    display: block;
    height: 100%;
    text-decoration: none;
}

/* Remove focus styles from location slides - keep only active state */
.locations-slider .location-slide:focus,
.locations-slider .location-slide.slick-current:focus,
.locations-slider .location-slide.slick-active:focus,
.locations-slider .location-slide.slick-current.slick-active:focus {
    outline: none !important;
    box-shadow: none !important;
}

.locations-slider .location-slide a:focus,
.locations-slider .location-slide a:focus-visible {
    outline: none !important;
    box-shadow: none !important;
}

.locations-slider .location-slide .location-card:focus,
.locations-slider .location-slide .location-card:focus-visible {
    outline: none !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1) !important;
}

/* Responsive adjustments for locations carousel - Slick Slider */
@media (max-width: 991px) {

    
    .carousel-nav-btn {
        width: 40px !important;
        height: 40px !important;
    }
    
    .locations-prev {
        left: 0 !important;
    }
    
    .locations-next {
        right: 0 !important;
    }
}

@media (max-width: 767px) {

    
    .carousel-nav-btn {
        width: 35px !important;
        height: 35px !important;
    }
    
    .locations-prev {
        left: 0 !important;
    }
    
    .locations-next {
        right: 0 !important;
    }
    
    .location-card {
        height: 250px !important;
    }
}

@media (max-width: 479px) {

    
    .carousel-nav-btn {
        display: flex !important;
        width: 30px !important;
        height: 30px !important;
    }
    
    .locations-prev {
        left: 5px !important;
    }
    
    .locations-next {
        right: 5px !important;
    }
}

/* Room Guest Configuration */
.list-content {
    display: grid !important;
}

.roomConfig {
    display: none;
    width: 420px;
    position: fixed;
    margin-left: 0;
    border: 1px solid #e0e0e0;
    margin-top: 0;
    right: auto;
    border-radius: 12px;
    z-index: 10000;
    background-color: #FFF;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.12);
    overflow: hidden;
}

.roomConfig .roomConfigHeader {
    width: 100%;
    background: linear-gradient(135deg, #F6F9FC 0%, #ffffff 100%);
    padding: 16px 24px;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e8e8e8;
}

.roomConfigHeader .arrow {
    width: 15px;
    height: 15px;
    transform: rotateZ(45deg);
    -ms-transform: rotateZ(45deg);
    -moz-transform: rotateZ(45deg);
    -webkit-transform: rotateZ(45deg);
    -o-transform: rotateZ(45deg);
    border-left: 1px solid #d4dee5 !important;
    border-top: 1px solid #d4dee5 !important;
    top: -8px;
    left: 25px;
    display: inline-block;
    position: absolute;
    background-color: #F6F9FC;
    z-index: 0;
    transition: left 0.2s ease;
}

.roomConfigHeader .text {
    font-size: 15px;
    font-weight: 600;
    position: relative;
    display: inline-block;
    color: #333;
    letter-spacing: 0.3px;
}

.roomConfigHeader .close-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #666;
    cursor: pointer;
    font-size: 20px;
    font-weight: 300;
    line-height: 1;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    transition: all 0.2s ease;
    background-color: transparent;
}

.roomConfigHeader .close-button:hover {
    background-color: rgba(0, 0, 0, 0.08);
    color: #333;
    transform: scale(1.1);
}

.roomConfig .roomConfigBody {
    max-height: 320px;
    overflow-y: auto;
    padding: 8px 0;
    background-color: #fff;
}

.roomConfig .roomConfigBody::-webkit-scrollbar {
    width: 6px;
}

.roomConfig .roomConfigBody::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.roomConfig .roomConfigBody::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 3px;
}

.roomConfig .roomConfigBody::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.roomConfigBody .roomDiv {
    padding: 20px 24px;
    border-top: 1px solid #e8e8e8;
    overflow: hidden;
    background-color: #fff;
    transition: background-color 0.2s ease;
}

.roomConfigBody .roomDiv:first-child {
    border-top: none;
}

.roomConfigBody .roomDiv:hover {
    background-color: #fafafa;
}

.roomDiv .roomNumber {
    font-weight: 600;
    font-size: 18px;
    color: #333;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.roomDiv .roomNumber i {
    color: #FFA500;
    font-size: 16px;
}

.roomDiv .removeRoom {
    float: right;
    color: #ED1C24;
    font-size: 12px;
    display: none;
    cursor: pointer
}

.searchbox .hotelSearchForm .panel .counter-element {
    width: 100%;
    display: block;
    margin-top: 16px;
    font-weight: 500;
}

.counter-element {
    margin-bottom: 16px;
}

.counter-element:last-child {
    margin-bottom: 0;
}

.counter-element label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 13px;
    color: #333;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.counter-element label i {
    color: #FFA500;
    font-size: 16px;
}

.counter-element label span {
    font-weight: 400;
    padding-left: 4px;
    color: #666;
    text-transform: none;
    letter-spacing: 0;
    font-size: 12px;
}

.guest-group {
    width: 100%;
    max-width: 200px;
    border: 1px solid #e0e0e0;
    margin-top: 0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    background-color: #fff;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.counter-element .minus {
    cursor: pointer;
    color: #12B58A;
    height: 30px;
    position: relative
}

.counter-element div div {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    vertical-align: middle;
    min-height: 40px;
}

.counter-element .plus {
    border-left: 1px solid #e0e0e0;
    flex: 0 0 45px;
}

.counter-element .minus {
    border-right: 1px solid #e0e0e0;
    flex: 0 0 45px;
}

.counter-element .count {
    flex: 1;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fafafa;
}

.counter-element .plus,
.counter-element .minus {
    cursor: pointer;
    height: 40px;
    position: relative;
    background: #FFA500;
    color: white;
    font-size: 20px;
    font-weight: 600;
    line-height: 1;
    transition: all 0.2s ease;
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.counter-element .plus:hover,
.counter-element .minus:hover {
    background: #e6740f;
    transform: scale(1.05);
}

.counter-element .plus:active,
.counter-element .minus:active {
    transform: scale(0.95);
}

.counter-element .minus:disabled,
.counter-element .plus:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #ccc;
}

.roomDiv .removeRoom {
    float: right;
    color: #ED1C24;
    font-size: 12px;
    display: none;
    cursor: pointer
}

.roomConfig .roomConfigFooter {
    padding: 16px 24px;
    min-height: 70px;
    width: 100%;
    background: linear-gradient(135deg, #F6F9FC 0%, #ffffff 100%);
    border-top: 1px solid #e8e8e8;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.roomConfigFooter .addRoom {
    border: 2px solid #ED1C24;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 14px;
    color: #ED1C24;
    background-color: #fff;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.roomConfigFooter .addRoom:hover {
    background-color: #ED1C24;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(237, 28, 36, 0.3);
}

.roomConfigFooter .done-rooms {
    padding: 12px 28px;
    background: linear-gradient(135deg, #FFA500 0%, #e6740f 100%);
    text-align: center;
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s ease;
    min-width: 100px;
    box-shadow: 0 2px 8px rgba(255, 165, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 14px;
}

.roomConfigFooter .done-rooms:hover {
    background: linear-gradient(135deg, #e6740f 0%, #d4630d 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 165, 0, 0.4);
}

.roomConfigFooter .done-rooms:active {
    transform: translateY(0);
}

.roomConfigFooter .cancel {
    color: #666;
    font-size: 14px;
    cursor: pointer;
    padding: 10px 16px;
    border-radius: 8px;
    transition: all 0.2s ease;
    font-weight: 500;
    border: 1px solid transparent;
}

.roomConfigFooter .cancel:hover {
    background-color: rgba(112, 112, 112, 0.1);
    color: #333;
    border-color: #e0e0e0;
}

.roomDiv .removeRoom:after {
    content: '\e60f';
    font-size: 10px;
    font-family: 'icomoon'
}

.roomDiv .childAgeSelectContainer {
    display: block;
    margin-left: 0;
    margin-top: 20px;
    margin-bottom: 0;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.roomDiv .childAgeSelectContainer .row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 0;
}

.roomConfigBody .childAge {
    width: auto;
    min-width: 120px;
    margin: 8px 12px 8px 0;
    display: inline-block;
    vertical-align: top;
}

.roomConfigBody .childAge:last-child {
    margin-right: 0;
}

.childAge .ageChildNo {
    font-weight: 600;
    font-size: 12px;
    display: block;
    margin-bottom: 8px;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ageChildNo .ageLabel {
    font-weight: 600;
    color: #333;
    margin-right: 4px;
}

label.customSBox {
    position: relative;
    display: block;
}

.childAge select {
    height: auto;
    padding: 10px 35px 10px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background-color: #fff;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    transition: all 0.2s ease;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    width: 100%;
    margin: 0;
    font-weight: 500;
}

.childAge select:hover {
    border-color: #FFA500;
    box-shadow: 0 2px 6px rgba(255, 165, 0, 0.15);
}

.childAge select:focus {
    outline: none;
    border-color: #FFA500;
    box-shadow: 0 0 0 3px rgba(255, 165, 0, 0.1);
}

.customSBox select {
    background: #fff;
    color: #333;
    outline: none;
    display: block;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    padding: 10px 35px 10px 12px;
    font-weight: 500;
    font-size: 14px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin: 0;
    height: auto;
    min-height: 42px;
    transition: all 0.2s ease;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.customSBox select:hover {
    border-color: #FFA500;
    box-shadow: 0 2px 6px rgba(255, 165, 0, 0.15);
}

.customSBox select:focus {
    outline: none;
    border-color: #FFA500;
    box-shadow: 0 0 0 3px rgba(255, 165, 0, 0.1);
}

/* Responsive styles for roomConfig modal */
@media (max-width: 768px) {
    .roomConfig {
        width: calc(100vw - 40px);
        max-width: 400px;
        left: 20px !important;
        right: 20px !important;
    }
    
    .roomConfig .roomConfigHeader {
        padding: 14px 18px;
    }
    
    .roomConfigHeader .text {
        font-size: 14px;
    }
    
    .roomConfigBody .roomDiv {
        padding: 16px 18px;
    }
    
    .roomDiv .roomNumber {
        font-size: 16px;
    }
    
    .counter-element label {
        font-size: 12px;
    }
    
    .guest-group {
        max-width: 100%;
    }
    
    .roomConfig .roomConfigFooter {
        padding: 14px 18px;
        flex-direction: column;
        gap: 10px;
    }
    
    .roomConfigFooter .addRoom,
    .roomConfigFooter .done-rooms,
    .roomConfigFooter .cancel {
        width: 100%;
        text-align: center;
    }
    
    .roomConfigBody .childAge {
        width: 100%;
        margin: 8px 0;
    }
}

/* Duplicate addRoom styles removed - using the improved version defined earlier */

.addRoom:hover .add-icon {
    color: #fff;
}

.roomConfigFooter div {
    display: inline-block;
    cursor: pointer
}

.orangeBox {
    background: #f90;
    color: #fff;
    font-family: 'Helvetica', 'Arial', sans-serif;
    font-size: 2em;
    font-weight: 700;
    text-align: center;
    width: 40px;
    height: 40px;
    border-radius: 8px
}

.child_ages option {
    display: block;
    font-weight: 600;
    font-size: 12px;
    margin-bottom: .5rem
}

/* Multi City Form */
.mc_add3 {
    display: none;
}

.mc_add4 {
    display: none;
}

.add_form {
    color: #fff;
    font-size: 14px;
    display: block;
    width: 100%;
    padding: 5px !important;
    background: #faa61a;
    border-radius: 8px;
}

.pdt10 {
    padding-top: 10px;
}

.removeButton {
    float: right;
    color: #fff;
    font-size: 22px;
    position: absolute;
    top: 5px;
    right: -25px;
}

.nopd2,
.m_bom13,
.no-pad {
    padding: 0px;
}

#multicity-form .form-group {
    margin-bottom: 0px;
}

.mform {
    margin-top: 15px !important;
}

.mform .form-group {
    margin-bottom: 15px !important;
}

/* Slider Overlay Box */
.slider-overlay-box {
    background: #FA831A;
    border-radius: 8px;
    padding: 25px 30px;
    max-width: 500px;
    position: absolute;
    left: 50px;
    bottom: 80px;
    z-index: 10;
}

.slider-overlay-box h2 {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px 0;
    text-transform: none;
    letter-spacing: 0;
    font-family: 'Georgia', serif;
}

.slider-overlay-box h1 {
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 20px 0;
    text-transform: none;
    letter-spacing: 0;
    font-family: 'Georgia', serif;
}

.slider-overlay-box p {
    font-size: 16px;
    color: #fff;
    margin: 0 0 30px 0;
    line-height: 1.6;
    font-weight: 400;
}

.slider-overlay-box .overlay-btn {
    background: #1a5490;
    color: #fff;
    border: none;
    padding: 10px 27px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-block;
}

.slider-overlay-box .overlay-btn:hover {
    background: #0f3d6b;
}

@media (max-width: 768px) {
    .slider-overlay-box {
        left: 20px;
        right: 20px;
        bottom: 20px;
        padding: 10px 10px;
        max-width: 100%;
    }


    .slider-overlay-box h2 {
        font-size: 22px;
    }

    .slider-overlay-box h1 {
        font-size: 22px;
        margin-bottom: 5px;
    }

    .slider-overlay-box p {
        font-size: 14px;
        margin: 0 0 10px 0;
    }

    .slider-overlay-box .overlay-btn{
        padding: 8px 20px;
    font-size: 11px;
    }
}

/* Member Pricing Banner */
.member-pricing-banner {
    background: #1a5490;
    border-radius: 16px;
    padding: 16px 24px;
    margin: 30px auto;
    /* max-width: 1200px; */
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.member-pricing-banner .banner-content {
    display: flex;
    align-items: center;
    flex: 1;
}

.member-pricing-banner .banner-icon {
    width: 40px;
    height: 40px;
    margin-right: 16px;
    flex-shrink: 0;
}

.member-pricing-banner .banner-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.member-pricing-banner .banner-text {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    margin: 0;
    line-height: 1.5;
}

.member-pricing-banner .banner-btn {
    background: #fff;
    color: #1a5490;
    border: none;
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    margin-left: 20px;
    flex-shrink: 0;
}

.member-pricing-banner .banner-btn:hover {
    background: #f0f0f0;
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .member-pricing-banner {
        flex-direction: column;
        align-items: flex-start;
        padding: 16px 20px;
    }

    .member-pricing-banner .banner-content {
        width: 100%;
        margin-bottom: 12px;
    }

    .member-pricing-banner .banner-btn {
        width: 100%;
        text-align: center;
        margin-left: 0;
    }
}

/* Filter form styles moved to filter-form.css - keeping only homepage-specific styles here */


