/* GMIC联系页面样式 */

/* 表单部分样式 */
.contact-section {
    background: #f9f9f9;
    padding: 80px 0;
    margin: 40px 0;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000000;
}

.contact-subtitle {
    font-size: 18px;
    color: #2d3748;
    line-height: 1.6;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
}

.contact-form {
    background: white;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.input-group {
    margin-bottom: 30px;
}

.input-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #1e3a8a;
    font-size: 16px;
}

.input-group input {
    width: 100%;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: white;
}

.input-group input:focus {
    outline: none;
    border-color: #1e3a8a;
    background: white;
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.optional {
    color: #888;
    font-weight: 400;
    font-size: 12px;
}

.error-msg {
    color: #e74c3c;
    font-size: 12px;
    margin-top: 5px;
    display: none;
}

.contact-btn {
    width: 100%;
    background: #4285f4;
    color: white;
    border: 2px solid #4285f4;
    padding: 18px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(66, 133, 244, 0.3);
}

.contact-btn:hover {
    background: #3367d6;
    border-color: #3367d6;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(66, 133, 244, 0.4);
}

.contact-btn:active {
    transform: translateY(0);
}

.trial-note {
    text-align: center;
    margin-top: 20px;
    color: #718096;
    font-size: 14px;
    font-style: italic;
}

/* 特性部分 */
.features {
    display: flex;
    flex-direction: column;
    gap: 35px;
    padding: 50px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
    justify-content: center;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #4285f4;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    position: relative;
}

.feature-icon.security::before {
    content: "🛡️";
    font-size: 22px;
}

.feature-icon.support::before {
    content: "🎧";
    font-size: 22px;
}

.feature-icon.integration::before {
    content: "⚡";
    font-size: 22px;
}

.feature-info h4 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #2d3748;
    line-height: 1.2;
    text-align: left;
}

.feature-info p {
    color: #718096;
    font-size: 13px;
    line-height: 1.4;
    margin: 0;
    text-align: left;
}

/* 表单状态信息样式 */
.form-status {
    margin: 20px 0;
    padding: 12px;
    border-radius: 5px;
    font-size: 14px;
    text-align: center;
    border: 2px solid transparent;
    display: none;
}

.form-status.success {
    display: block;
    border-color: #10b981;
    background-color: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.form-status.error {
    display: block;
    border-color: #e74c3c;
    background-color: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
}

.form-status.loading {
    display: block;
    border-color: #3498db;
    background-color: rgba(52, 152, 219, 0.1);
    color: #3498db;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form {
        padding: 40px;
    }
    
    .features {
        padding: 40px;
    }
    
    .contact-title {
        font-size: 30px;
    }
}

/* 页脚区域样式 */
.footer-bg {
    background-image: url('/static-web07/gmic1/picture/背景2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 60px 20px;
    text-align: center;
    color: #333;
    position: relative;
    width: 100%;
    min-height: 300px;
}

.footer-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    overflow-x: auto;
}

.footer-title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
    white-space: nowrap;
}

.footer-subtitle {
    font-size: 18px;
    margin-bottom: 40px;
    color: #555;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.footer-btn {
    display: inline-block;
    background-color: white;
    color: #4285f4;
    padding: 12px 36px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: 18px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    border: 2px solid #4285f4;
}

.footer-btn:hover {
    background-color: #4285f4;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(66, 133, 244, 0.4);
    transition: all 0.3s ease;
}

@media (max-width: 480px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-form {
        padding: 30px;
    }
    
    .features {
        padding: 30px;
    }
    
    .contact-title {
        font-size: 26px;
    }
    
    .contact-subtitle {
        font-size: 16px;
    }
    
    .input-group {
        margin-bottom: 25px;
    }
    
    .input-group label {
        font-size: 15px;
    }
    
    .input-group input {
        padding: 12px;
        font-size: 15px;
    }
    
    .contact-btn {
        padding: 15px;
        font-size: 15px;
    }
}
