/**
 * 底部联系表单专用样式
 */

/* 底部CTA区域 */
.footer-cta-section {
    position: relative;
    width: 100%;
    padding: 80px 0 0 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    overflow: hidden;
    margin: 0;
    border: none;
}

.footer-cta-container {
    position: relative;
    z-index: 10;
    max-width: 75vw;
    width: 75%;
    margin: 0 auto;
    padding-bottom: 80px;
}

.footer-cta-content {
    color: white;
    position: relative;
    z-index: 10;
    margin: 0;
}

.footer-cta-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 10;
}

.footer-cta-header h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 15px;
    letter-spacing: 2px;
    color: #ffffff;
    margin-top: 0;
}

.footer-cta-header p {
    font-size: 20px;
    opacity: 0.9;
    color: #ffffff;
    margin: 0;
}

.footer-cta-body {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 10;
}

/* 左侧联系信息 */
.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: #ffffff;
}

.contact-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 3px;
    opacity: 0.9;
    color: #ffffff;
}

.contact-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-label {
    font-size: 14px;
    opacity: 0.8;
    color: #ffffff;
}

.contact-value {
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
}

/* 右侧表单 */
.footer-contact-form {
    background: rgba(255, 255, 255, 0.95);
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 10;
    margin: 0;
}

/* 传统底部 */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 30px 20px;
    text-align: center;
    margin: 0;
    border: none;
}

.footer .footer-content {
    max-width: 75vw;
    width: 75%;
    margin: 0 auto;
}

.footer p {
    font-size: 14px;
    opacity: 0.7;
    margin: 0;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .footer-cta-section {
        padding: 50px 0 0 0;
    }

    .footer-cta-container {
        width: 95%;
    }

    .footer-cta-header h2 {
        font-size: 24px;
        white-space: nowrap;
        letter-spacing: 1px;
    }

    .footer-cta-header p {
        font-size: 16px;
    }

    .footer-cta-body {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-contact-form {
        padding: 25px;
    }

}