/* Contact Page Styles */

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 15px;
}

.contact-banner {
    padding: 80px 0;
    background-color: #f8f8f9;
    background-image: linear-gradient(rgba(51, 89, 232, 0.05), rgba(51, 89, 232, 0.02));
    text-align: center;
}

.contact-banner h1 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.contact-banner p {
    font-size: 18px;
    color: #666;
    margin: 0 auto;
    max-width: 600px;
}

/* Contact Info Section */
.contact-info {
    padding-bottom: 30px;
    background-color: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 0 auto;
    max-width: 1300px;
    padding: 0 20px;
}

.contact-item {
    text-align: center;
    padding: 30px 20px;
    background-color: #f8f8f9;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.contact-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
    border-color: #3359e8;
}

.contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background-color: rgba(51, 89, 232, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #3359e8;
}

.contact-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.contact-item p {
    font-size: 16px;
    color: #666;
    margin: 5px 0;
}

/* Contact Form Section */
.contact-form-section {
    background-color: #3359e8;
}

.contact-form {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    border: 2px solid #3359e8;
    box-shadow: none;

}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.form-group {
    flex: 1;
    margin-bottom: 0;
}

.form-group.full-width {
    width: 100%;
    margin-bottom: 25px;
}

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    font-size: 16px;
    color: #333;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    background-color: #fff;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #3359e8;
    box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.1);
}

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

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23666'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 20px;
}

.form-actions {
    text-align: center;
}

.submit-btn {
    padding: 15px 40px;
    background: #3359e8;
    border-radius: 8px;
    color: white;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-bottom: 15px;
}

.submit-btn:hover {
    background: #1557b0;
}

.consent-text {
    font-size: 14px;
    color: #666;
    margin: 0;
    text-align: center;
    line-height: 1.5;
}

/* 新增的CTA部分样式 */
.contact-cta {
    background-color: #3359e8;
    padding-bottom: 30px;
    color: white;
    overflow: hidden;
    position: relative;
}

/* Business Info Section */
.business-info {
    background-color: #3359e8;
    padding: 30px 0px;
}

.business-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1300px;
    margin: 0 auto;
}

.business-info-card {
    background-color: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.business-info-card>div:first-child,
.business-info-card>h3 {
    display: inline-flex;
    align-items: center;
}

.business-info-icon {
    font-size: 36px;
    color: #3359e8;
    margin-right: 15px;
    margin-bottom: 10px;
}

.business-info-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin-top: 0;
    margin-left: 24px;
}

.business-hours {
    margin-bottom: 20px;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
}

.hour-item span {
    font-size: 16px;
    color: #666;
}

.time-note {
    background-color: rgba(51, 89, 232, 0.05);
    padding: 15px;
    border-radius: 8px;
    margin-top: 30px;
    font-size: 14px;
    font-weight: bold;
    color: #3359E8;
}

.service-area {
    margin-bottom: 25px;
}

.service-area h4 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.service-area p {
    font-size: 16px;
    color: #666;
    margin: 0;
}

.contact-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/zcgs-banner_bg.png');
    background-size: cover;

}

.cta-content {
    position: relative;
    margin: 60px 0;
    margin-left: auto;
    margin-right: auto;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
    text-align: center;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 auto;
    max-width: 600px;
}

.cta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
}

.cta-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 300px;
}

.cta-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.cta-icon {
    font-size: 48px;
    margin-bottom: 25px;
    display: inline-block;
}

.cta-icon i.fab.fa-whatsapp {
    color: #25D366;
}

.cta-icon img {
    vertical-align: middle;
}

.cta-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.cta-card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
    line-height: 1.6;
}

.cta-card .cta_num {
    font-size: 18px;
    font-weight: 700;
    color: #00A63E;
    margin-top: auto;
}

.cta-card:last-child .cta_num {
    color: #E69D00;
}

.cta-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.btn-whatsapp {
    background-color: #00A63E;
    color: white;
}

.btn-whatsapp:hover {
    background-color: #12b755;
}

.btn-line {
    background-color: #00A63E;
    color: white;
}

.btn-line:hover {
    background-color: #12b755;
}

.btn-email {
    background-color: #E69D00;
    color: white;
}

.btn-email:hover {
    background-color: #bd8204;
}

/* SEO内容项目CTA部分样式 */
.seo-cta-section {
    background-color: #3359e8;
    padding-bottom: 30px;
}

.seo-cta-content {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    margin: 0 auto;
}

.seo-cta-content h2 {
    font-size: 38px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.seo-cta-content p {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.seo-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.seo-cta-buttons .btn-whatsapp {
    background: #00A63E;
    color: white;
    padding: 18px 35px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    letter-spacing: 2px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.seo-cta-buttons .btn-whatsapp img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.seo-cta-buttons .btn-email {
    background-color: white;
    color: #000;
    padding: 18px 80px;
    font-size: 16px;
    font-weight: 600;
    border: 1px solid #000;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.seo-cta-buttons .btn-email img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}





/* Responsive Design */
@media (max-width: 768px) {

    /* Banner Responsive */
    .contact-banner {
        padding-bottom: 30px;
    }

    .contact-banner h1 {
        font-size: 28px;
    }

    .contact-banner p {
        font-size: 16px;
    }

    /* Contact Info Responsive */
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .cta-content {
        margin-top: 0px;
        margin-bottom: 30px;
    }

    /* CTA Section Responsive */
    .cta-content h2 {
        font-size: 28px;
    }

    .cta-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .cta-card {
        padding: 30px 20px;
        min-height: 280px;
    }

    .cta-card h3 {
        font-size: 18px;
    }

    /* Form Responsive */
    .form-row {
        flex-direction: column;
        gap: 25px;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .submit-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {

    /* Banner Responsive */
    .contact-banner h1 {
        font-size: 24px;
    }

    .contact-banner p {
        font-size: 15px;
    }

    /* Contact Info Responsive */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-item {
        padding: 20px 15px;
    }

    .contact-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }

    .contact-item h3 {
        font-size: 18px;
    }

    .contact-item p {
        font-size: 14px;
    }

    /* CTA Section Responsive */
    .contact-cta {
        padding: 30px 15px;
    }

    .cta-content h2 {
        font-size: 24px;
    }

    .cta-content p {
        font-size: 16px;
    }

    .cta-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .cta-card {
        padding: 25px 15px;
        min-height: 260px;
    }

    .cta-icon {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .cta-btn {
        padding: 10px 20px;
        font-size: 13px;
    }

    /* Form Responsive */
    .contact-form {
        padding: 25px 15px;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        font-size: 14px;
        padding: 10px 12px;
    }

    .consent-text {
        font-size: 12px;
    }

    /* Business Info Responsive */
    .business-info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .business-info-card {
        padding: 30px 20px;
    }

    /* SEO内容项目CTA部分响应式样式 */
    .seo-cta-section {
        padding: 40px 15px;
        padding-top: 0px;
    }

    .seo-cta-content {
        padding: 30px 20px;
    }

    .seo-cta-content h2 {
        font-size: 22px;
    }

    .seo-cta-content p {
        font-size: 14px;
    }

    .seo-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .seo-cta-buttons button {
        width: 100%;
    }
}