.city-card {
    background: white;
    border-radius: 12px;
    padding: 0;
    height: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: none;
    overflow: hidden;
}
.city-card:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
}
.city-card-body {
    padding: 24px;
}
.city-card-title {
    font-size: 18px;
    display: block;
}
.city-card-title:hover {
    color: #d01884;
}
.city-card-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.city-card-links a {
    color: #333;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
    padding: 6px 0;
}
.city-card-links a:hover {
    color: #A01469;
    padding-left: 4px;
}

/* Home hero and search */
.container-top-pasion {
    padding: 28px clamp(16px, 7vw, 200px);
}
.hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
}
.hero-form-container {
    position: relative;
    z-index: 10;
    width: 100%;
}
.search-form {
    background-color: white !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 50px !important;
    overflow: hidden;
    border: 2px solid #ddd;
}
.search-form input {
    border: none !important;
    background-color: transparent !important;
    box-shadow: none !important;
}
.search-form input::placeholder {
    color: #999;
}
.search-form input:focus {
    outline: none;
    box-shadow: none !important;
}
.search-form .btn-link {
    text-decoration: none;
    padding: 0 10px;
}
/* Category Tabs Style */
.category-tabs {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: nowrap;
}
.category-tab {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    padding: 8px 18px;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
}
.category-tab:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.category-tab.active {
    background: #5a4a6f;
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
    box-shadow: 0 4px 15px rgba(160, 20, 105, 0.4);
    transform: translateY(-2px);
}
/* Mobile - 3 tabs on first row, 2 on second */
@media (max-width: 768px) {
    .category-tabs {
        flex-wrap: wrap;
        gap: 8px;
    }
    .category-tab {
        font-size: 12px;
        padding: 7px 14px;
    }
}