/* 精选阿姨推荐区域样式 */
#featured-maids-section {
    padding: 100px 0;
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.featured-maids-header {
    text-align: center;
    margin-bottom: 60px;
}

.featured-maids-subtitle {
    font-size: 18px;
    color: var(--text-color);
    max-width: 800px;
    margin: 20px auto 0;
}

.featured-maids-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.maid-card {
    background-color: var(--secondary-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.maid-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.maid-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.maid-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
    background: var(--dark-bg);
}

.maid-card:hover .maid-image img {
    transform: scale(1.05);
}

.maid-content {
    padding: 25px;
}

.maid-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1.3;
}

.maid-details {
    list-style: none;
    padding: 0;
    margin: 0;
}

.maid-details li {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 8px;
    padding-left: 15px;
    position: relative;
}

.maid-details li::before {
    content: '•';
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.maid-details li strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* 添加装饰元素 */
#featured-maids-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, var(--primary-color), transparent);
    border-radius: 50%;
    opacity: 0.05;
    z-index: 0;
}

#featured-maids-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, var(--primary-color), transparent);
    border-radius: 50%;
    opacity: 0.05;
    z-index: 0;
}

.featured-maids-header,
.featured-maids-grid {
    position: relative;
    z-index: 1;
}

/* 响应式设计 */
@media (max-width: 992px) {
    #featured-maids-section {
        padding: 80px 0;
    }
    
    .featured-maids-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }
    
    .featured-maids-subtitle {
        font-size: 16px;
    }
    
    .maid-name {
        font-size: 17px;
    }
}

@media (max-width: 768px) {
    .featured-maids-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .maid-content {
        padding: 20px;
    }
    
    .maid-image {
        height: 180px;
    }
}

@media (max-width: 576px) {
    #featured-maids-section {
        padding: 60px 0;
    }
    
    .featured-maids-header {
        margin-bottom: 40px;
    }
    
    .maid-name {
        font-size: 16px;
    }
    
    .maid-details li {
        font-size: 13px;
    }
    
    .maid-image {
        height: 160px;
    }
}
