/* Footer 页脚样式 - 独立文件避免冲突 */

/* CTA行动号召区域 */
.cta-section {
    background: var(--gradient-1);
    padding: 80px 0;
    color: white;
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 500px;
    gap: 60px;
    align-items: center;
}

.cta-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.cta-badge i {
    margin-right: 6px;
}

.cta-left h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 800;
}

.cta-left p {
    font-size: 17px;
    line-height: 1.8;
    opacity: 0.95;
    margin-bottom: 30px;
}

.cta-features {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    align-items: center;
    margin-left: -28px;
}

.cta-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.cta-feature-item i {
    color: #FFD700;
    font-size: 18px;
    flex-shrink: 0;
}

.cta-form-box {
    background: white;
    padding: 40px;
    border-radius: 5px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.cta-form-box h3 {
    color: var(--text-dark);
    font-size: 24px;
    margin-bottom: 25px;
    text-align: center;
    font-weight: 700;
}

.cta-form .form-group {
    position: relative;
    margin-bottom: 20px;
}

.cta-form .form-group i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 16px;
}

.cta-form input,
.cta-form select {
    width: 100%;
    padding: 15px 15px 15px 50px;
    border: 2px solid rgba(230, 57, 70, 0.15);
    border-radius: 5px;
    font-size: 15px;
    transition: all 0.3s;
}

.cta-form input:focus,
.cta-form select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(230, 57, 70, 0.1);
}

.cta-submit-btn {
    width: 100%;
    padding: 16px;
    background: var(--gradient-1);
    border: none;
    border-radius: 5px;
    color: white;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
}

.cta-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(230, 57, 70, 0.4);
}

.cta-contact-info {
    text-align: center;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid rgba(230, 57, 70, 0.1);
}

.cta-contact-info p {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 10px;
}

.cta-phone {
    color: var(--primary-color);
    font-size: 24px;
    font-weight: 800;
    text-decoration: none;
}

.cta-phone:hover {
    opacity: 0.8;
}

/* Footer 页脚主体 */
.footer {
    background: #1a202c;
    color: #a0aec0;
}

.footer-main {
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr 1fr;
    gap: 50px;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

/* 公司信息区域 */
.footer-about {
    max-width: 100%;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 45px;
}

.footer-logo h3 {
    color: white;
    font-size: 22px;
    font-weight: 700;
}

.footer-desc {
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 14px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(230, 57, 70, 0.1);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 18px;
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

/* Footer 标题 */
.footer-title {
    color: white;
    font-size: 18px;
    margin-bottom: 25px;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: #a0aec0;
    border-radius: 5px;
}

/* Footer 链接列表 */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #a0aec0;
    text-decoration: none;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-links a i {
    font-size: 12px;
}

/* Footer 联系方式 */
.footer-contact {
    max-width: 100%;
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.footer-contact-list i {
    font-size: 20px;
    color: var(--primary-color);
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact-list .contact-label {
    display: block;
    font-size: 13px;
    color: #718096;
    margin-bottom: 5px;
}

.footer-contact-list .contact-value {
    display: block;
    color: white;
    font-size: 15px;
    text-decoration: none;
}

.footer-contact-list .contact-value:hover {
    color: var(--primary-color);
}

/* Footer 二维码 */
.footer-qrcode {
    text-align: center;
}

.qrcode-wrapper {
    text-align: center;
}

.qrcode-wrapper img {
    width: 150px;
    height: 150px;
    border-radius: 5px;
    border: 3px solid rgba(230, 57, 70, 0.2);
    margin-bottom: 15px;
}

.qrcode-wrapper p {
    font-size: 14px;
    line-height: 1.6;
    color: #a0aec0;
}

/* Footer 底部 */
.footer-bottom {
    background: #0f1419;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    flex: 1;
}

.copyright p {
    font-size: 14px;
    margin: 0;
    color: #a0aec0;
}

.copyright a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s;
}

.copyright a:hover {
    color: var(--primary-color);
}

.footer-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-tags span {
    padding: 6px 15px;
    background: rgba(230, 57, 70, 0.1);
    border-radius: 5px;
    font-size: 13px;
    color: var(--primary-color);
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .cta-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-about {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .cta-left h2 {
        font-size: 32px;
    }
    
    .cta-form-box {
        padding: 30px 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-tags {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .cta-content {
        grid-template-columns: 1fr;
    }
    
    .cta-left h2 {
        font-size: 28px;
    }
    
    .cta-left p {
        font-size: 15px;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 15px;
    }
}

