/* Slider */
.san-hero-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: #000;
}

.san-carousel {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
}

.san-carousel-inner {
    position: relative;
    width: 100%;
    height: 100%;
}

.san-carousel-item {
    position: relative;
    width: 100%;
    height: 100%;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.san-hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    transition: transform 0.6s ease-in-out;
}

.san-carousel-item,
.san-hero-slide {
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
}

.san-carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    z-index: 15;
    display: flex;
    justify-content: center;
    padding-left: 0;
    margin-right: 15%;
    margin-left: 15%;
    list-style: none;
    gap: 10px;
}

.san-carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0;
    background-color: #fff;
    opacity: 0.5;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.san-carousel-indicators button.active {
    opacity: 1;
    transform: scale(1.2);
    background-color: #ee6192;
}

.san-carousel-control-prev,
.san-carousel-control-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: #ee6192;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: all 0.3s ease;
    z-index: 20;
}

.san-carousel-control-prev:hover,
.san-carousel-control-next:hover {
    opacity: 1;
    background-color: rgb(238 97 146);
    transform: translateY(-50%) scale(1.05);
}

.san-carousel-control-prev {
    left: 20px;
}

.san-carousel-control-next {
    right: 20px;
}

.san-carousel-control-prev-icon,
.san-carousel-control-next-icon {
    width: 20px;
    height: 20px;
    background-size: 100% 100%;
}

.san-hero-offer {
    position: absolute;
    bottom: 50px;
    right: 30px;
    background: linear-gradient(135deg, #d4af37, #ffd700);
    padding: 15px 25px;
    border-radius: 10px;
    text-align: center;
    z-index: 10;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    animation: san-pulse 2s infinite;
}

.san-box-subtitle {
    font-size: 28px;
    font-weight: bold;
    color: #000;
}

.san-offer-text {
    font-size: 42px;
    font-weight: bold;
    margin-left: 5px;
    color: #000;
}

.san-box-title {
    font-size: 18px;
    margin: 5px 0 0;
    color: #000;
    font-weight: 600;
}

.san-fs-30 {
    font-size: 30px;
}

.san-text-title {
    font-weight: bold;
}

.san-shape-mockup {
    position: absolute;
    z-index: 5;
    pointer-events: none;
}

.san-hero-wrap {
    position: absolute;
}

@keyframes san-pulse {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes san-dance {
    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(5deg);
    }
}

@keyframes san-spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes san-jump {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

.san-dance {
    animation: san-dance 3s ease-in-out infinite;
}

.san-spin {
    animation: san-spin 20s linear infinite;
}

.san-jump {
    animation: san-jump 2s ease-in-out infinite;
}

@media (min-width: 1200px) {
    .san-carousel {
            height: 75vh;
        min-height: 470px;
    }

    .san-hero-offer {
        bottom: 80px;
        right: 50px;
        padding: 20px 35px;
    }

    .san-box-subtitle {
        font-size: 32px;
    }

    .san-offer-text {
        font-size: 48px;
    }

    .san-box-title {
        font-size: 20px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .san-carousel {
        height: 90vh;
        min-height: 600px;
    }

    .san-hero-offer {
        bottom: 60px;
        right: 40px;
        padding: 15px 25px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .san-carousel {
        height: 80vh;
        min-height: 500px;
    }

    .san-carousel-control-prev,
    .san-carousel-control-next {
        width: 40px;
        height: 40px;
    }

    .san-hero-offer {
        bottom: 40px;
        right: 30px;
        padding: 12px 20px;
    }

    .san-box-subtitle {
        font-size: 24px;
    }

    .san-offer-text {
        font-size: 36px;
    }

    .san-box-title {
        font-size: 16px;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .san-carousel {
        height: 70vh;
        min-height: 450px;
    }

    .san-carousel-control-prev,
    .san-carousel-control-next {
        width: 35px;
        height: 35px;
    }

    .san-carousel-indicators {
        bottom: 20px;
    }

    .san-carousel-indicators button {
        width: 10px;
        height: 10px;
    }

    .san-hero-offer {
        bottom: 30px;
        right: 20px;
        padding: 10px 18px;
    }

    .san-box-subtitle {
        font-size: 20px;
    }

    .san-offer-text {
        font-size: 30px;
    }

    .san-box-title {
        font-size: 14px;
    }
}

@media (max-width: 575px) {
    .san-carousel {
        height: 30vh;
        min-height: 200px;
    }

    .san-carousel-control-prev,
    .san-carousel-control-next {
        width: 30px;
        height: 30px;
    }

    .san-carousel-control-prev {
        left: 10px;
    }

    .san-carousel-control-next {
        right: 10px;
    }

    .san-carousel-indicators {
        bottom: 15px;
        gap: 8px;
    }

    .san-carousel-indicators button {
        width: 8px;
        height: 8px;
    }

    .san-hero-offer {
        bottom: 20px;
        right: 15px;
        padding: 8px 15px;
    }

    .san-box-subtitle {
        font-size: 18px;
    }

    .san-offer-text {
        font-size: 26px;
    }

    .san-box-title {
        font-size: 12px;
    }
}

/*@media (max-width: 375px) {*/
/*    .san-carousel {*/
/*        height: 55vh;*/
/*        min-height: 350px;*/
/*    }*/

/*    .san-hero-offer {*/
/*        bottom: 15px;*/
/*        right: 10px;*/
/*        padding: 6px 12px;*/
/*    }*/

/*    .san-box-subtitle {*/
/*        font-size: 16px;*/
/*    }*/

/*    .san-offer-text {*/
/*        font-size: 22px;*/
/*    }*/

/*    .san-box-title {*/
/*        font-size: 10px;*/
/*    }*/
/*}*/

.san-carousel-item img,
.san-hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 768px) and (orientation: landscape) {
    .san-carousel {
        height: 100vh;
        min-height: 400px;
    }

    .san-hero-offer {
        bottom: 15px;
        right: 15px;
        padding: 6px 12px;
    }

    .san-box-subtitle {
        font-size: 16px;
    }

    .san-offer-text {
        font-size: 22px;
    }

    .san-box-title {
        font-size: 10px;
    }
}

@media (max-width: 768px) {
    .san-shape-mockup {
        display: none;
    }
}

.san-carousel-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}
/* Custom Spacing */
section#service-sec {
    padding-bottom: 30px;
}
