/* --- Hero Carousels --- */
.hero-carousels {
    display: flex;
    gap: 24px;
    justify-content: center;
    align-items: stretch;
    padding: 10px 0;
}

.hero-carousel-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 20px 20px 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.4);
    flex: 1;
    max-width: 320px;
    min-width: 0;
    transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.hero-carousel-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20px;
    right: 20px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-orange), #ffbb33);
    border-radius: 2px;
    opacity: 0.6;
}

.hero-carousel-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 68, 129, 0.12);
    background: rgba(255, 255, 255, 0.97);
}

.hero-carousel-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    font-weight: 800;
    color: var(--primary-blue);
    font-size: 1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero-carousel-header i {
    color: var(--primary-orange);
    font-size: 1.1rem;
}

.hero-carousel {
    border-radius: 12px;
}

.hero-carousel .carousel-inner {
    border-radius: 12px;
    overflow: hidden;
    background: rgba(0, 68, 129, 0.03);
}

.hero-carousel .carousel-item {
    height: 130px;
    text-align: center;
}

.hero-carousel .carousel-item::before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}

.hero-carousel .carousel-item img {
    display: inline-block;
    max-height: 100px;
    width: auto;
    max-width: 90%;
    vertical-align: middle;
    padding: 8px;
    transition: transform 0.4s ease;
}

.hero-carousel .carousel-item:hover img {
    transform: scale(1.08);
}

.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
    width: 34px;
    height: 34px;
    background: var(--primary-blue);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 68, 129, 0.25);
    z-index: 5;
}

.hero-carousel-card:hover .carousel-control-prev,
.hero-carousel-card:hover .carousel-control-next {
    opacity: 0.9;
}

.hero-carousel-card:hover .carousel-control-prev:hover,
.hero-carousel-card:hover .carousel-control-next:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.hero-carousel .carousel-control-prev {
    left: -12px;
}

.hero-carousel .carousel-control-next {
    right: -12px;
}

.hero-carousel .carousel-control-prev-icon,
.hero-carousel .carousel-control-next-icon {
    width: 14px;
    height: 14px;
}

@media (max-width: 991px) {
    .hero-carousels {
        gap: 16px;
    }
    .hero-carousel-card {
        max-width: 280px;
    }
}

@media (max-width: 768px) {
    .hero-carousels {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    .hero-carousel-card {
        max-width: 100%;
        width: 100%;
        padding: 16px 16px 12px;
    }
    .hero-carousel-card::after {
        left: 16px;
        right: 16px;
    }
    .hero-carousel-header {
        font-size: 0.85rem;
        margin-bottom: 10px;
    }
    .hero-carousel .carousel-item {
        height: 100px;
    }
    .hero-carousel .carousel-item img {
        max-height: 80px;
    }
    .hero-carousel .carousel-control-prev,
    .hero-carousel .carousel-control-next {
        opacity: 0.9;
    }
    .hero-carousel .carousel-control-prev {
        left: 4px;
    }
    .hero-carousel .carousel-control-next {
        right: 4px;
    }
}
