/* Hero combined section - Simplified */
.hero-combined {
    background: #f8f9fa;
    padding-bottom: 2rem;
}

/* Hero section */
.hero-section {
    text-align: center;
    padding: 2rem 0 1rem 0;
}

.hero-title {
    /* font-size: 2.5rem; */
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
            animation: fadeInUp 1s ease-out 0s;

}

.highlight-text {
    color: #975B94;
            animation: fadeInUp 3s ease-out 0s;

}

.hero-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
            animation: fadeInUp 3s ease-out 0s;

}

.hero-stats {
    justify-content: center;
    margin-top: 2rem;
}

.stat-item {
    
    text-align: center;
    min-width: 120px;
    padding: 1rem;
    transition: transform 0.2s ease-in-out;
        animation: fadeInUp 0.8s ease-out 0.4s;

}

.stat-item:hover {
    transform: translateY(-2px);
}

.stat-number {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
}

.stat-label {
    color: #6c757d;
    font-size: 0.8rem;
    font-weight: 400;
}

.hero-search {
    margin-top: 2rem;
    animation: fadeInUp 0.8s ease-out 0.4s;
    animation-fill-mode: both;
}

.search-container {
    background: white;
    padding: 1rem;
    /* border: 1px solid rgba(102, 126, 234, 0.1); */
    max-width: 700px;
    margin: 0 auto;
}

.search-field {
    position: relative;
    margin-bottom: 0.75rem;
}

.search-field i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #667eea;
    font-size: 1rem;
    z-index: 3;
}

.search-input {
    width: 100%;
    padding: 0.9rem 1rem 0.9rem 2.5rem;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    background: #f8f9fa;
    transition: all 0.3s ease;
    color: #495057;
}

.search-input:focus {
    outline: none;
    border-color: #667eea;
    background: white;
    box-shadow: 0 0 0 0.15rem rgba(102, 126, 234, 0.15);
}

.search-filters {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.filter-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.25rem;
}

/* Gender Radio Buttons */
.gender-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.gender-options .btn-check:checked+.btn {
    background-color: var(--primary-color) !important; 
    border-color: var(--primary-border)  !important;
    color:white !important;
}

.radio-custom {
    width: 16px;
    height: 16px;
    border: 2px solid #6c757d;
    border-radius: 50%;
    background: transparent;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.gender-option input[type="radio"]:checked + label .radio-custom {
    border-color: white;
    background: white;
}

.radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 6px;
    height: 6px;
    background: #667eea;
    border-radius: 50%;
    transition: transform 0.2s ease;
}

.gender-option input[type="radio"]:checked + label .radio-custom::after {
    transform: translate(-50%, -50%) scale(1);
    background: #667eea;
}

.search-input-location {
    padding: 0.7rem;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    background: #f8f9fa;
    font-size: 0.9rem;
    color: #495057;
    transition: all 0.3s ease;
    width: 100%;
}

.search-input-location:focus {
    outline: none;
    border-color: #667eea;
    background: white;
    box-shadow: 0 0 0 0.15rem rgba(102, 126, 234, 0.15);
}

.search-input-location::placeholder {
    color: #adb5bd;
    font-style: italic;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}
