.glass-nav {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-bg {
    background-image: url("/wp-content/themes/gadimat/assets/images/contact/hero.png");
    background-size: cover;
    background-position: center;
}

/* Autocomplete dropdown */
.autocomplete-wrapper {
    position: relative;
}

.autocomplete-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 50;
    max-height: 240px;
    overflow-y: auto;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 0.75rem;
    margin-top: 4px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    list-style: none;
    padding: 0.25rem 0;
}

.autocomplete-dropdown.hidden {
    display: none;
}

.autocomplete-dropdown li {
    padding: 0.625rem 1.25rem;
    cursor: pointer;
    font-size: 0.95rem;
    transition: background 0.15s;
}

.autocomplete-dropdown li:hover,
.autocomplete-dropdown li.active {
    background: rgba(42, 82, 145, 0.08);
}

.autocomplete-dropdown li[aria-selected="true"] {
    font-weight: 600;
    color: #2A5291;
}

.autocomplete-dropdown li .ac-match {
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: rgba(42, 82, 145, 0.3);
}

/* Autocomplete error message */
.ac-error {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 50;
    margin-top: 4px;
    padding: 0.5rem 1rem;
    background: #fef2f2;
    color: #dc2626;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid #fecaca;
    border-radius: 0.75rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
