/* 转化率优化样式 - CTA按钮和关键信息突出 */

/* CTA按钮优化 */
.cta-primary {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.6);
}

.cta-primary:active {
    transform: translateY(-1px);
}

.cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.cta-primary:hover::before {
    left: 100%;
}

/* 次要CTA按钮 */
.cta-secondary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

/* 紧急CTA按钮 */
.cta-urgent {
    background: linear-gradient(135deg, #ff4757 0%, #c44569 100%);
    color: white;
    padding: 14px 28px;
    border: none;
    border-radius: 10px;
    font-size: 17px;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(255, 71, 87, 0.4);
    animation: pulse 2s infinite;
    cursor: pointer;
}

@keyframes pulse {
    0% { box-shadow: 0 6px 20px rgba(255, 71, 87, 0.4); }
    50% { box-shadow: 0 6px 20px rgba(255, 71, 87, 0.8); }
    100% { box-shadow: 0 6px 20px rgba(255, 71, 87, 0.4); }
}

/* 车辆信息突出显示 */
.vehicle-highlight {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
    border: 2px solid #ff6b6b;
    border-radius: 12px;
    padding: 20px;
    margin: 16px 0;
    position: relative;
    overflow: hidden;
}

.vehicle-highlight::before {
    content: '🔥 热门推荐';
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ff6b6b;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

/* 价格突出显示 */
.price-highlight {
    font-size: 28px;
    font-weight: 900;
    color: #ff4757;
    text-shadow: 0 2px 4px rgba(255, 71, 87, 0.3);
    margin: 8px 0;
}

.price-highlight::before {
    content: '💰 ';
    font-size: 24px;
}

.price-highlight::after {
    content: ' 起';
    font-size: 16px;
    color: #666;
    font-weight: 400;
}

/* 车况信息突出 */
.condition-highlight {
    background: linear-gradient(135deg, #e8f5e8 0%, #d4edda 100%);
    border: 2px solid #28a745;
    border-radius: 8px;
    padding: 12px;
    margin: 8px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.condition-highlight::before {
    content: '✅';
    font-size: 20px;
}

/* 联系按钮组 */
.contact-buttons {
    display: flex;
    gap: 12px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.contact-btn {
    flex: 1;
    min-width: 120px;
    padding: 12px 16px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.contact-btn-phone {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
}

.contact-btn-wechat {
    background: linear-gradient(135deg, #1e7e34 0%, #28a745 100%);
    color: white;
}

.contact-btn-email {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* 浮动联系按钮 */
.floating-contact {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.floating-contact-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-contact-btn:hover {
    transform: scale(1.1);
}

.floating-contact-btn-phone {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

.floating-contact-btn-wechat {
    background: linear-gradient(135deg, #1e7e34 0%, #28a745 100%);
}

/* 车辆卡片优化 */
.vehicle-card-enhanced {
    position: relative;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    overflow: hidden;
}

.vehicle-card-enhanced:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* 关键信息标签 */
.info-tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin: 4px;
}

.info-tag-price {
    background: #ffebee;
    color: #c62828;
    border: 1px solid #ffcdd2;
}

.info-tag-condition {
    background: #e8f5e8;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
}

.info-tag-warranty {
    background: #e3f2fd;
    color: #1565c0;
    border: 1px solid #bbdefb;
}

/* 移动端优化 */
@media (max-width: 768px) {
    .cta-primary {
        padding: 14px 24px;
        font-size: 16px;
    }
    
    .contact-buttons {
        flex-direction: column;
    }
    
    .contact-btn {
        width: 100%;
    }
    
    .floating-contact {
        bottom: 10px;
        right: 10px;
    }
    
    .floating-contact-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

/* 高对比度模式 */
@media (prefers-contrast: high) {
    .cta-primary {
        border: 3px solid #000;
    }
    
    .vehicle-highlight {
        border-width: 3px;
    }
    
    .price-highlight {
        text-shadow: 0 0 0 #000;
    }
}
