.hero-bg {
    background-image: url('https://images.unsplash.com/photo-1580587771525-78b9dba3b914?auto=format&fit=crop&w=1900&q=80');
    background-size: cover;
    background-position: center;
}

.backdrop-blur-card {
    backdrop-filter: blur(12px);
}

.radio-card-selected {
    border-color: rgba(250, 204, 21, 0.7) !important;
    background-color: rgba(15, 23, 42, 0.85);
    box-shadow: 0 20px 45px rgba(250, 204, 21, 0.15);
}

details > summary {
    list-style: none;
}
details > summary::-webkit-details-marker {
    display: none;
}
details > summary::marker {
    display: none;
}


.location-field {
    margin-top: 1rem;
    padding: 1.5rem;
    border-radius: 1.75rem;
    border: 1px solid rgba(148, 163, 184, 0.35);
    background: rgba(15, 23, 42, 0.85);
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.35);
}

.location-field__label {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(226, 232, 240, 0.85);
}

.location-field__description {
    margin-top: 0.35rem;
    font-size: 0.85rem;
    color: rgba(148, 163, 184, 0.85);
}

.location-field__selectors {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.location-field__select {
    flex: 1 1 240px;
    min-width: 220px;
}


.location-field__select label {
    display: block;
    font-size: 0.9rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    font-weight: 700;
    color: #facc15;
}

.location-field__select select {
    margin-top: 0.9rem;
    width: 100%;
    border-radius: 1.35rem;
    border: 1px solid rgba(250, 204, 21, 0.55);
    background: rgba(15, 23, 42, 0.82);
    padding: 1rem 1.2rem;
    color: #facc15;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1.1rem;
}

.location-field__select select option {
    background: #0f172a;
    color: #facc15;
    font-weight: 700;
    text-transform: uppercase;
}

.location-field__select select option:checked {
    background: rgba(250, 204, 21, 0.28);
    color: #fefce8;
}

.location-field__select select:focus {
    outline: 2px solid rgba(250, 204, 21, 0.65);
    border-color: rgba(250, 204, 21, 0.65);
    box-shadow: 0 0 0 6px rgba(250, 204, 21, 0.08);
}

.location-field__select select:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.location-field__helper {
    margin-top: 1.25rem;
    font-size: 0.85rem;
    color: #fef3c7;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

@media (max-width: 640px) {
    .location-field {
        padding: 1.25rem;
    }

    .location-field__selectors {
        gap: 1rem;
    }
}
