/* Homepage carousels & gallery */

.hero-swiper {
    min-height: 60vh;
}

@media (min-width: 768px) {
    .hero-swiper {
        min-height: 72vh;
    }
}

.hero-swiper .swiper-slide {
    position: relative;
    background-size: cover;
    background-position: center;
}

.hero-swiper .swiper-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 31, 61, 0.82) 0%, rgba(18, 50, 92, 0.65) 50%, rgba(10, 31, 61, 0.78) 100%);
}

.hero-swiper .swiper-pagination-bullet {
    background: #6ee7a8;
    opacity: 0.5;
    width: 10px;
    height: 10px;
}

.hero-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    width: 28px;
    border-radius: 6px;
}

.hero-location-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
    padding: 0.5rem 1.1rem;
    border-radius: 9999px;
    background: rgba(10, 31, 61, 0.45);
    border: 1px solid rgba(110, 231, 168, 0.55);
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 24px rgba(10, 31, 61, 0.25);
    color: #bbf7d0;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

@media (min-width: 768px) {
    .hero-location-badge {
        font-size: 1rem;
        padding: 0.6rem 1.25rem;
        margin-bottom: 1.5rem;
    }
}

.hero-location-icon {
    width: 1rem;
    height: 1rem;
    color: #6ee7a8;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .hero-location-icon {
        width: 1.125rem;
        height: 1.125rem;
    }
}

.enterprise-swiper .swiper-slide {
    height: auto;
}

.enterprise-card {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(10, 31, 61, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
}

.enterprise-swiper .swiper-slide-active .enterprise-card {
    transform: scale(1.02);
    box-shadow: 0 16px 40px rgba(10, 31, 61, 0.18);
}

.gallery-main-swiper {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(10, 31, 61, 0.15);
}

.gallery-main-swiper .swiper-slide img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

@media (min-width: 768px) {
    .gallery-main-swiper .swiper-slide img {
        height: 520px;
    }
}

.gallery-thumbs-swiper {
    margin-top: 1rem;
    padding: 0.25rem 0;
}

.gallery-thumbs-swiper .swiper-slide {
    opacity: 0.55;
    cursor: pointer;
    border-radius: 0.5rem;
    overflow: hidden;
    border: 3px solid transparent;
    transition: opacity 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.gallery-thumbs-swiper .swiper-slide-thumb-active {
    opacity: 1;
    border-color: #6ee7a8;
    transform: scale(1.04);
}

.gallery-thumbs-swiper .swiper-slide img {
    width: 100%;
    height: 72px;
    object-fit: cover;
}

@media (min-width: 768px) {
    .gallery-thumbs-swiper .swiper-slide img {
        height: 88px;
    }
}

.swiper-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0a1f3d 0%, #1a4478 100%);
    color: #6ee7a8;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(10, 31, 61, 0.25);
    transition: transform 0.2s ease, background 0.2s ease;
}

.swiper-nav-btn:hover {
    transform: scale(1.08);
    background: linear-gradient(135deg, #12325c 0%, #1a4478 100%);
}

.swiper-nav-btn::after {
    font-size: 1rem !important;
    font-weight: 700;
}

.mission-image-grid img {
    border-radius: 0.75rem;
    object-fit: cover;
    box-shadow: 0 8px 24px rgba(10, 31, 61, 0.12);
}

.gallery-caption-bar {
    background: linear-gradient(90deg, #0a1f3d 0%, #12325c 100%);
}
