@charset "UTF-8";

.wjs-contact-banner {
    background: linear-gradient(135deg, #1a237e 0%, #3949ab 100%);
    padding: 120px 0 80px;
    color: #ffffff;
    text-align: center;
}

.wjs-contact-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 14px;
}

.wjs-contact-breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.wjs-contact-breadcrumb a:hover {
    color: #ff9800;
}

.wjs-contact-breadcrumb i {
    margin: 0 10px;
    color: rgba(255, 255, 255, 0.5);
}

.wjs-contact-breadcrumb span {
    color: #ff9800;
}

.wjs-contact-banner-content h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.wjs-contact-banner-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
}

.wjs-contact-banner-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.wjs-contact-stat {
    display: flex;
    align-items: center;
    gap: 15px;
}

.wjs-contact-stat i {
    font-size: 32px;
    color: #ff9800;
}

.wjs-contact-stat-value {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
}

.wjs-contact-stat-value a {
    color: #ffffff;
    text-decoration: none;
}

.wjs-contact-stat-value a:hover {
    color: #ff9800;
}

.wjs-contact-stat-label {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 5px;
}

.wjs-contact-info-section {
    padding: 80px 0;
    background: #ffffff;
}

.wjs-contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.wjs-contact-info-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.wjs-contact-info-card:hover {
    background: #ffffff;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.wjs-contact-info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1a237e, #3949ab);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #ffffff;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.wjs-contact-info-card:hover .wjs-contact-info-icon {
    background: linear-gradient(135deg, #ff9800, #f57c00);
    transform: scale(1.1);
}

.wjs-contact-info-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1a237e;
    margin-bottom: 8px;
}

.wjs-contact-info-content p {
    font-size: 16px;
    color: #333;
    margin-bottom: 5px;
}

.wjs-contact-info-content a {
    color: #ff9800;
    text-decoration: none;
    font-weight: 700;
}

.wjs-contact-info-desc {
    font-size: 13px !important;
    color: #999 !important;
}

.wjs-contact-form-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.wjs-section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.wjs-section-title::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #1a237e, #ff9800);
    border-radius: 2px;
}

.wjs-section-title h2 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.wjs-section-title h2::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: #ff9800;
}

.wjs-section-title p {
    font-size: 16px;
    color: #666;
    margin-top: 20px;
}

.wjs-contact-form-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.wjs-contact-form-left {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.wjs-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.wjs-form-group {
    margin-bottom: 20px;
}

.wjs-form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
}

.wjs-form-group input,
.wjs-form-group select,
.wjs-form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.wjs-form-group input:focus,
.wjs-form-group select:focus,
.wjs-form-group textarea:focus {
    outline: none;
    border-color: #1a237e;
}

.wjs-form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.wjs-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.wjs-btn-primary {
    background: linear-gradient(135deg, #1a237e, #3949ab);
    color: #ffffff;
    width: 100%;
}

.wjs-btn-primary:hover {
    background: linear-gradient(135deg, #3949ab, #1a237e);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(26, 35, 126, 0.3);
}

.wjs-contact-form-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.wjs-contact-form-right-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.wjs-contact-form-right-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1a237e;
    margin-bottom: 20px;
    padding-left: 15px;
    border-left: 4px solid #ff9800;
}

.wjs-contact-form-right-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wjs-contact-form-right-card ul li {
    padding: 10px 0;
    font-size: 14px;
    color: #666;
    border-bottom: 1px dashed #eee;
}

.wjs-contact-form-right-card ul li:last-child {
    border-bottom: none;
}

.wjs-contact-form-right-card ul li i {
    color: #4caf50;
    margin-right: 10px;
}

.wjs-service-promise {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.wjs-service-promise-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    font-size: 13px;
    color: #666;
}

.wjs-service-promise-item i {
    color: #1a237e;
    font-size: 16px;
}

.wjs-wechat-qr {
    text-align: center;
}

.wjs-wechat-qr img {
    width: 150px;
    height: 150px;
    border-radius: 12px;
    margin-bottom: 15px;
}

.wjs-wechat-qr p {
    font-size: 14px;
    color: #666;
}

.wjs-contact-stations {
    padding: 80px 0;
    background: #ffffff;
}

.wjs-contact-stations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.wjs-contact-station-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.wjs-contact-station-card:hover {
    background: #ffffff;
    border-color: #e0e0e0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.wjs-contact-station-city {
    font-size: 20px;
    font-weight: 700;
    color: #1a237e;
    margin-bottom: 15px;
}

.wjs-contact-station-phone {
    font-size: 16px;
    color: #ff9800;
    font-weight: 600;
    margin-bottom: 10px;
}

.wjs-contact-station-phone a {
    color: #ff9800;
    text-decoration: none;
}

.wjs-contact-station-address {
    font-size: 13px;
    color: #999;
    line-height: 1.6;
}

.wjs-contact-stations-more {
    text-align: center;
    margin-top: 40px;
}

.wjs-btn-secondary {
    background: #ffffff;
    color: #1a237e;
    border: 2px solid #1a237e;
}

.wjs-btn-secondary:hover {
    background: #1a237e;
    color: #ffffff;
}

@media (max-width: 1024px) {
    .wjs-contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .wjs-contact-form-wrapper {
        grid-template-columns: 1fr;
    }
    
    .wjs-contact-stations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .wjs-contact-banner {
        padding: 100px 0 60px;
    }
    
    .wjs-contact-banner-content h1 {
        font-size: 32px;
    }
    
    .wjs-contact-banner-content p {
        font-size: 16px;
    }
    
    .wjs-contact-banner-stats {
        flex-direction: column;
        gap: 30px;
        margin-top: 30px;
        padding-top: 30px;
    }
    
    .wjs-contact-info-section,
    .wjs-contact-form-section,
    .wjs-contact-stations {
        padding: 50px 0;
    }
    
    .wjs-contact-info-grid {
        grid-template-columns: 1fr;
    }
    
    .wjs-contact-info-card {
        flex-direction: column;
        text-align: center;
    }
    
    .wjs-form-row {
        grid-template-columns: 1fr;
    }
    
    .wjs-contact-form-left {
        padding: 30px;
    }
    
    .wjs-contact-stations-grid {
        grid-template-columns: 1fr;
    }
    
    .wjs-service-promise {
        grid-template-columns: 1fr;
    }
}