.hero {
    overflow: hidden;
}


.splide__arrow {
    background-color: var(--color-secondary);
    opacity: 0;
    transition: all 0.3s ease-out;
}

.splide:hover .splide__arrow,
.slide:focus .splide__arrow {
    opacity: 1
}

.splide__arrow svg {
    fill: #fff;
}
.splide__pagination__page {
    background-color: #fff;
}
.splide__pagination__page.is-active {
    opacity: 1;
}


/* Toll Free Number */
.toll-free {
    position: absolute;
    bottom: 0;
    right: 0;
    display: grid;
    grid-template-columns: 30px 1fr;
    gap: 15px;
    padding-right: 15px;
}

.toll-free--desktop {
    display: none;
}


.toll-free--mobile {
    position: relative;
    bottom: auto;
    right: auto;
    border-top: 1px solid rgba(255,255,255,0.3);
    padding-top: 15px;
}

@media (min-width: 768px) {
    .toll-free--desktop {
        display: grid;
    }

    .toll-free--mobile{
        display: none;
    }
}

.toll-free .number {
    font-size:  2rem;
    font-weight: 700;
}

.toll-free--mobile .number {
    font-size: 1.5rem;
}

.toll-free .label {
    line-height: 1;
    text-transform:uppercase;
    letter-spacing: 1px;
}

@media (max-width: 991px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero .container {
        min-height: 60vh!important;
    }
}

/* Booking Bar */
.booking-bar {
    position: fixed;
    z-index: 9999;
    background: rgba(255,255,255,0.9);
    width: 100%;
    bottom: 0;
    left: 0;
    padding: 15px;
    backdrop-filter: blur(3px);
    opacity: 0;
    transform: translateY(100%);
    transition: transform 0.3s ease-out
}

@media (min-width: 768px) {
    .booking-bar {
        bottom: auto;
        top: 0;
        transform: translateY(-100%);
    }
}

.booking-bar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.booking-bar .package-value {
    font-size: 0.9rem;
    line-height: 1
}

.scrolled .booking-bar {
    transform: none;
    opacity: 1;
}

.aspect-4-3 {
    aspect-ratio: 4/3;
    object-fit: cover;
}


form.start-booking {
    display: flex;
    flex-wrap: wrap;
}

form.start-booking .half {
    padding-right: 7.5px;
}

form.start-booking .half + .half {
    padding-right: 0;
    padding-left: 7.5px;
}

.timer {
    font-weight: bold;
    background: #E64A19;
    border-radius: 5px;
    padding: 5px 10px;
    font-size: 20px;
}

.hero .hero-package-value {
    font-size: 26px;
}

.sticky-phone {
    border-right: 1px solid #ccc;
    display: inline-block;
    margin-right: 15px;
    padding-right: 15px;
    color: var(--color-primary);
}

@media (max-width: 767px) {
    .booking-bar .package-value {
        display: none;
    }
    .booking-bar .container {
        justify-content: center;
    }
}


@media (max-width: 767px) {
    .hide-mobile {
        display: none!important;
    }

    .booking-bar .button {
        font-size: 14px;
    }
}
@media (min-width: 768px) {
    .hide-desktop {
        display: none!important;
    }

    .booking-bar .button + .button {
        margin-left: 10px;
    }
}