/* ----------------------------------------------------
   HERO SECTION
---------------------------------------------------- */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    transition: opacity 0.4s ease;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.55);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: #fff;
    max-width: 900px;
    padding: 20px;
}

.hero-search {
    max-width: 650px;
}

.hero-search .form-control {
    border-left: none;
    box-shadow: none !important;
}

.hero-search .input-group-text {
    background: #fff;
    border-right: none;
}

/* ----------------------------------------------------
   HOMEPAGE AUTOCOMPLETE
---------------------------------------------------- */
.ud-suggestions {
    background: #c91530;
    border-radius: 6px;
    display: none;
    list-style: none;
    margin: 10px auto 0;
    max-width: 650px;
    overflow: hidden;
    padding: 0;
    position: relative;
    z-index: 10;
}

.ud-suggestions li {
    border-bottom: 1px solid #eee;
    cursor: pointer;
    font-size: 0.9rem;
    padding: 10px 14px;
}

.ud-suggestions li:last-child {
    border-bottom: none;
}

.ud-suggestions li:hover,
.ud-suggestions li.active {
    background: #fff;
    color: #000;
}

/* ----------------------------------------------------
   COUNTRY BADGES
---------------------------------------------------- */
.ud-country-badge {
    background: rgba(0,0,0,0.35);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 999px;
    color: #fff;
    font-size: 0.75rem;
    margin: 3px;
    transition: 0.2s;
}

.ud-country-badge:hover {
    background: #fff;
    border-color: #fff;
    color: var(--ud-red);
}

/* ----------------------------------------------------
   HOMEPAGE MAP
---------------------------------------------------- */
#ud-map {
    height: 500px;
    width: 100%;
}

/* ----------------------------------------------------
   HOMEPAGE CAROUSEL
---------------------------------------------------- */
.carousel-control-prev,
.carousel-control-next {
    display: none !important;
}

#featuredCarousel .carousel-indicators {
    bottom: -40px !important;
}

#featuredCarousel .carousel-indicators [data-bs-target] {
    background-color: #ccc;
}

#featuredCarousel .carousel-indicators .active {
    background-color: var(--ud-red);
}

/* ----------------------------------------------------
   RESPONSIVE (HOMEPAGE ONLY)
---------------------------------------------------- */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-search {
        max-width: 100%;
    }

    .operator-card img {
        height: 160px;
    }
}