/* ===== CAROUSEL SLIDER STYLES ===== */

/* Carousel Container */
#heroCarousel {
    position: relative;
    overflow: hidden;
}

.carousel-inner {
    min-height: 90vh;
}

.carousel-item {
    min-height: 90vh;
    position: relative;
}

.carousel-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    transition: transform 8s ease-in-out;
}

.carousel-item.active .carousel-slide-bg {
    animation: kenburns 8s ease-in-out infinite alternate;
}

@keyframes kenburns {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

.min-vh-90 {
    min-height: 90vh;
}

/* Carousel Content */
.carousel-content {
    position: relative;
    z-index: 2;
    animation: slideInLeft 0.8s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.carousel-item.active .carousel-content {
    animation: slideInLeft 0.8s ease-out;
}

/* Badge Premium */
.badge-premium {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: rgba(249, 115, 22, 0.2);
    border: 2px solid rgba(249, 115, 22, 0.5);
    border-radius: 50px;
    color: #f97316;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
}

.badge-premium-white {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50px;
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
}

/* Slide Title */
.slide-title {
    font-family: 'Outfit', sans-serif;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

/* Carousel Buttons */
.btn-carousel-primary {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.4);
    transition: all 0.3s ease;
}

.btn-carousel-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(249, 115, 22, 0.6);
    color: white;
}

.btn-carousel-outline {
    background: transparent;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.btn-carousel-outline:hover {
    background: white;
    color: #0f172a;
    border-color: white;
}

.btn-carousel-white {
    background: white;
    color: #0f172a;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.btn-carousel-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    color: #0f172a;
}

.btn-carousel-outline-white {
    background: transparent;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    border: 2px solid white;
    transition: all 0.3s ease;
}

.btn-carousel-outline-white:hover {
    background: white;
    color: #f97316;
}

/* Carousel Stats */
.carousel-stats {
    display: grid;
    gap: 1.5rem;
}

.stat-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    border-color: #f97316;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: #f97316;
    font-family: 'Outfit', sans-serif;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    font-weight: 600;
}

/* Service Highlights */
.service-highlights {
    display: grid;
    gap: 1.5rem;
}

.highlight-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.highlight-card:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.15);
    border-color: #f97316;
}

.highlight-card i {
    font-size: 2.5rem;
    color: #f97316;
    margin-bottom: 1rem;
}

.highlight-card h5 {
    color: white;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.highlight-card p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 0.9rem;
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(249, 115, 22, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.carousel-control-prev {
    left: 2rem;
}

.carousel-control-next {
    right: 2rem;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    background: rgba(249, 115, 22, 0.6);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 24px;
    height: 24px;
}

/* Carousel Indicators */
.carousel-indicators {
    bottom: 2rem;
    margin-bottom: 0;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid white;
    background: transparent;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.carousel-indicators button.active {
    width: 40px;
    border-radius: 10px;
    background: #f97316;
    opacity: 1;
}

/* Trust Badges Bar */
.trust-badges-bar {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 2rem 0;
    border-top: 1px solid rgba(249, 115, 22, 0.3);
}

.trust-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem;
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.trust-badge i {
    font-size: 1.5rem;
    color: #f97316;
}

.trust-badge:hover {
    color: #f97316;
}

.trust-badge:hover i {
    transform: scale(1.2);
}

/* Responsive - Tablet */
@media (max-width: 991px) {

    .carousel-inner,
    .carousel-item {
        min-height: 85vh;
    }

    .min-vh-90 {
        min-height: 85vh;
        padding: 4rem 0;
    }

    .slide-title {
        font-size: 2.5rem !important;
        line-height: 1.2 !important;
    }

    .carousel-content {
        text-align: center;
        padding: 3rem 1rem;
    }

    .carousel-content .lead {
        font-size: 1rem !important;
        padding: 0 !important;
        width: 100% !important;
    }

    .carousel-content .slider-action-btns {
        justify-content: center;
        flex-direction: column;
        gap: 1rem !important;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .carousel-content .d-flex:not(.slider-action-btns) {
        /* Keep list items horizontal */
        flex-direction: row !important;
        text-align: left;
        justify-content: flex-start;
    }

    .carousel-content ul {
        text-align: left;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .btn-carousel-primary,
    .btn-carousel-outline,
    .btn-carousel-white,
    .btn-carousel-outline-white {
        width: 100%;
        padding: 1rem 1.5rem !important;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 50px;
        height: 50px;
        background: rgba(249, 115, 22, 0.8);
    }

    .carousel-control-prev {
        left: 0.5rem;
    }

    .carousel-control-next {
        right: 0.5rem;
    }

    .carousel-indicators {
        bottom: 1rem;
    }

    .badge-premium,
    .badge-premium-white {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }
}

/* Responsive - Mobile */
@media (max-width: 576px) {

    .carousel-inner,
    .carousel-item {
        min-height: 80vh;
    }

    .min-vh-90 {
        min-height: 80vh;
        padding: 6rem 0 3rem;
    }

    .slide-title {
        font-size: 2rem !important;
        margin-bottom: 1rem !important;
        word-wrap: break-word;
    }

    .carousel-content {
        padding: 1rem 1rem;
        text-align: center;
    }

    .carousel-content .lead {
        font-size: 1rem !important;
        margin-bottom: 2rem !important;
        opacity: 0.95 !important;
    }

    .btn-carousel-primary,
    .btn-carousel-outline,
    .btn-carousel-white,
    .btn-carousel-outline-white {
        padding: 0.875rem 1.25rem !important;
        font-size: 0.95rem !important;
        width: 100%;
    }

    .trust-badge {
        font-size: 0.75rem;
        padding: 0.5rem 0.25rem;
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
        height: 100%;
        justify-content: start;
    }

    .trust-badge i {
        font-size: 1.25rem;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 18px;
        height: 18px;
    }

    .carousel-indicators button {
        width: 8px;
        height: 8px;
        margin: 0 4px;
    }

    .carousel-indicators button.active {
        width: 24px;
    }

    .badge-premium,
    .badge-premium-white {
        font-size: 0.65rem;
        padding: 0.4rem 0.8rem;
        letter-spacing: 0.5px;
    }

    .trust-badges-bar {
        padding: 1.5rem 0;
    }
}

/* Landscape Mobile */
@media (max-width: 991px) and (orientation: landscape) {

    .carousel-inner,
    .carousel-item {
        min-height: 100vh;
    }

    .min-vh-90 {
        min-height: 100vh;
        padding: 2rem 0;
    }

    .carousel-content {
        padding: 1rem;
    }

    .slide-title {
        font-size: 2rem !important;
        margin-bottom: 1rem !important;
    }

    .carousel-content .lead {
        font-size: 0.9rem !important;
        margin-bottom: 1.5rem !important;
    }

    .carousel-content ul {
        margin-bottom: 1.5rem !important;
    }

    .carousel-content ul li {
        margin-bottom: 0.5rem !important;
        font-size: 0.9rem;
    }
}

/* Carousel Fade Effect */
.carousel-fade .carousel-item {
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.carousel-fade .carousel-item.active {
    opacity: 1;
}