/* ============================= */
/* ROOT SECTION */
/* ============================= */
.drUniqueHeroSlider_root {
    position: relative;
    height: 100vh;
    overflow: hidden;
    font-family: sans-serif;
}

/* ============================= */
/* SLIDER (SNAP CAROUSEL) */
/* ============================= */
.drSnapSlider_wrapper {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

/* Track */
.drSnapSlider_track {
    display: flex;
    height: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;

    /* Hide scrollbar */
    scrollbar-width: none;
}
.drSnapSlider_track::-webkit-scrollbar {
    display: none;
}

/* Slide */
.drSnapSlider_slide {
    min-width: 100%;
    height: 100%;
    flex-shrink: 0;
    scroll-snap-align: start;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    position: relative;
}

@keyframes drSnapSlider_zoom {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

/* ============================= */
/* OVERLAY */
/* ============================= */
.drUniqueHeroSlider_overlayLayer {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.6),
        rgba(0,0,0,0.4),
        rgba(0,0,0,0.7)
    );
    z-index: 1;
}

/* ============================= */
/* CONTENT */
/* ============================= */
.drUniqueHeroSlider_contentWrapper {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
    padding: 0 20px;
}

/* ============================= */
/* TYPOGRAPHY */
/* ============================= */
.drUniqueHeroSlider_heading {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.2;
}

.drUniqueHeroSlider_subheading {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* ============================= */
/* SEARCH BOX */
/* ============================= */
.drSearchBar_root {
    display: flex;
    align-items: center;
    justify-content: space-between;

    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);

    border-radius: 14px;
    padding: 8px;

    max-width: 1000px;
    margin: auto;

    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

/* Item */
.drSearchBar_item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    min-width: 160px;
}

/* Icon */
.drSearchBar_icon {
    font-size: 18px;
    color: #e53935;
}

/* Select */
.drSearchBar_select {
    border: none;
    outline: none;
    background: transparent;
    font-size: 14px;
    color: #444;
    width: 100%;
    cursor: pointer;
}

/* Input */
.drSearchBar_input {
    border: none;
    outline: none;
    background: transparent;
    font-size: 14px;
    width: 100%;
    color: #444;
}

/* Placeholder */
.drSearchBar_input::placeholder {
    color: #777;
}

/* Divider */
.drSearchBar_divider {
    width: 1px;
    height: 30px;
    background: #e0e0e0;
}

/* Button */
.drSearchBar_button {
    background: #ff3b30;
    color: white;
    border: none;

    padding: 12px 20px;
    border-radius: 10px;

    font-weight: 600;
    cursor: pointer;

    transition: all 0.3s ease;
}

.drSearchBar_button:hover {
    background: #e02d24;
    transform: translateY(-1px);
}

/* ============================= */
/* TAGS */
/* ============================= */
.drUniqueHeroSlider_tags {
    margin-top: 18px;
    font-size: 14px;
    opacity: 0.85;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */
@media (max-width: 768px) {
    .drUniqueHeroSlider_heading {
        font-size: 32px;
    }

    .drUniqueHeroSlider_subheading {
        font-size: 15px;
    }

    .drUniqueHeroSlider_searchBox {
        flex-direction: column;
        align-items: center;
    }

    .drUniqueHeroSlider_selectPrimary,
    .drUniqueHeroSlider_selectCity,
    .drUniqueHeroSlider_searchBtn {
        width: 90%;
    }
}