.builders-hero {
    background: linear-gradient(135deg, #1a314d 0%, #2c5577 100%);
    padding: 80px 0 60px;
    color: white;
    position: relative;
    overflow: hidden;
}

.builders-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23c4933f" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') bottom center no-repeat;
    background-size: cover;
}

.builders-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.builders-hero p {
    font-size: 1.2rem;
    opacity: 0.95;
}

.filter-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    padding: 2rem;
    margin-top: -40px;
    position: relative;
    z-index: 10;
}

.builder-card-enhanced {
    transition: all 0.3s ease;
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    height: 100%;
}

.builder-card-enhanced:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(196, 147, 63, 0.2);
}

.builder-logo-container {
    height: 200px;
    background: linear-gradient(135deg, #1a314d 0%, #2c5577 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.builder-logo-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.2);
}

.builder-logo-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.builder-card-enhanced:hover .builder-logo-container img {
    transform: scale(1.1);
}

.builder-logo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a314d 0%, #2c5577 100%);
}

.builder-logo-placeholder i {
    font-size: 4rem;
    color: rgba(196, 147, 63, 0.5);
}

.builder-stats {
    display: flex;
    gap: 1.5rem;
    padding: 1rem 0;
    border-top: 1px solid #e9ecef;
    margin-top: 1rem;
}

.builder-stat {
    text-align: center;
    flex: 1;
}

.builder-stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    display: block;
}

.builder-stat-label {
    font-size: 0.75rem;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-view-builder {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-view-builder:hover {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary-darker) 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(196, 147, 63, 0.3);
}

.form-select, .form-control {
    border-radius: 10px;
    border: 2px solid #e9ecef;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.form-select:focus, .form-control:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 0.2rem rgba(196, 147, 63, 0.15);
}

.btn-search {
    background: linear-gradient(135deg, #1a314d 0%, #2c5577 100%);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-search:hover {
    background: linear-gradient(135deg, #2c5577 0%, #1a314d 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 49, 77, 0.3);
}

.btn-clear {
    background: white;
    color: #6c757d;
    border: 2px solid #e9ecef;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-clear:hover {
    background: #f8f9fa;
    border-color: var(--color-primary);
    color: var(--color-primary);
}
