/* -------------------------------------------------------------------------- */
/*                                Ionic VoIP Custom Styles                    */
/* -------------------------------------------------------------------------- */
/* prettier-ignore */

.iframe-mockup {
    left: 60px;
    transform: scale(0.7);
    top: -160px;
    z-index: 20 !important;
}

.iframe-mockup .chat-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
}

.img-mockup {
    height: 860px;
    width: 480px;
    position: relative;
}

.iframe-mockup iframe {
    height: 801px;
    width: 406px;
    position: absolute;
    top: 27px;
    left: 39px;
    padding-top: 40px;
    background-color: #fff;
    z-index: 20;
    border-radius: 40px;
}

/* -------------------------------------------------------------------------- */
/*                          Mobile Screenshots Slider                         */
/* -------------------------------------------------------------------------- */

.mobile-slider-container {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    padding: 40px 20px;
}

.mobileSwiper {
    width: 100%;
    height: 600px;
    padding: 20px 50px;
}

.mobileSwiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
}

.mobile-screenshot {
    max-height: 550px;
    width: auto;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

.swiper-slide-active .mobile-screenshot {
    transform: scale(1.05);
}

/* Navigation buttons */
.mobileSwiper .swiper-button-next,
.mobileSwiper .swiper-button-prev {
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.mobileSwiper .swiper-button-next:after,
.mobileSwiper .swiper-button-prev:after {
    font-size: 20px;
    font-weight: bold;
}

.mobileSwiper .swiper-button-next:hover,
.mobileSwiper .swiper-button-prev:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* Pagination */
.mobileSwiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    transition: all 0.3s ease;
}

.mobileSwiper .swiper-pagination-bullet-active {
    background: #fff;
    width: 30px;
    border-radius: 6px;
}

/* Responsive */
@media (max-width: 768px) {
    .mobileSwiper {
        height: 500px;
        padding: 20px 30px;
    }
    
    .mobile-screenshot {
        max-height: 450px;
    }
    
    .mobileSwiper .swiper-button-next,
    .mobileSwiper .swiper-button-prev {
        width: 35px;
        height: 35px;
    }
    
    .mobileSwiper .swiper-button-next:after,
    .mobileSwiper .swiper-button-prev:after {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .mobile-slider-container {
        padding: 20px 10px;
    }
    
    .mobileSwiper {
        height: 400px;
        padding: 10px 25px;
    }
    
    .mobile-screenshot {
        max-height: 350px;
    }
}