/* 联系我们页面专用样式 - 避免与其他页面冲突 */

/* 页面横幅 */
.ct-page-banner {
    background: var(--gradient-1);
    padding: 100px 20px 80px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.ct-page-banner::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    animation: ct-float 20s ease-in-out infinite;
}

@keyframes ct-float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-40px); }
}

.ct-banner-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.ct-banner-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.ct-banner-subtitle {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.ct-breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    opacity: 0.9;
}

.ct-breadcrumb a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

.ct-breadcrumb a:hover {
    opacity: 0.7;
}

/* 联系方式卡片 */
.ct-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.ct-info-card {
    background: white;
    padding: 40px 30px;
    border-radius: 5px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 169, 236, 0.15);
    box-shadow: var(--shadow-sm);
}

.ct-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 169, 236, 0.25);
    border-color: rgba(0, 169, 236, 0.3);
}

.ct-info-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--gradient-1);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: white;
    transition: all 0.4s;
}

.ct-info-card:hover .ct-info-icon {
    transform: scale(1.1) rotate(5deg);
}

.ct-info-card:nth-child(2) .ct-info-icon {
    background: var(--gradient-2);
}

.ct-info-card:nth-child(3) .ct-info-icon {
    background: var(--gradient-3);
}

.ct-info-card:nth-child(4) .ct-info-icon {
    background: var(--gradient-1);
}

.ct-info-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-weight: 700;
}

.ct-info-value {
    font-size: 18px;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 10px;
}

.ct-info-desc {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 20px;
}

.ct-info-btn {
    display: inline-block;
    padding: 10px 25px;
    background: linear-gradient(135deg, rgba(0, 169, 236, 0.1) 0%, rgba(0, 136, 194, 0.1) 100%);
    color: var(--primary-color);
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
    border: 1px solid rgba(0, 169, 236, 0.2);
}

.ct-info-btn:hover {
    background: var(--gradient-1);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
}

/* 微信二维码样式 */
.ct-wechat-qrcode {
    margin: 20px auto;
    width: 180px;
    height: 180px;
    padding: 10px;
    background: white;
    border: 2px solid rgba(0, 169, 236, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 169, 236, 0.15);
    transition: all 0.3s;
}

.ct-wechat-qrcode img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ct-wechat-card:hover .ct-wechat-qrcode {
    border-color: rgba(0, 169, 236, 0.4);
    box-shadow: 0 6px 20px rgba(0, 169, 236, 0.25);
    transform: scale(1.05);
}

.ct-wechat-card .ct-info-desc {
    margin-bottom: 5px;
    font-size: 13px;
}

.ct-wechat-card .ct-info-value {
    font-size: 14px;
    margin-bottom: 0;
}

/* 表单区域 */
.ct-form-wrapper {
    max-width: 800px;
    margin: 50px auto 0;
    background: white;
    padding: 50px;
    border-radius: 5px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 169, 236, 0.1);
}

.ct-contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.ct-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.ct-form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ct-form-group label {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.ct-form-group label i {
    color: var(--primary-color);
    font-size: 14px;
}

.ct-required {
    color: var(--primary-color);
}

.ct-form-group input,
.ct-form-group select,
.ct-form-group textarea {
    padding: 14px 18px;
    border: 2px solid rgba(0, 169, 236, 0.15);
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.3s;
    font-family: inherit;
}

.ct-form-group input:focus,
.ct-form-group select:focus,
.ct-form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(0, 169, 236, 0.1);
}

.ct-form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.ct-form-submit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
}

.ct-submit-btn {
    padding: 16px 50px;
    background: var(--gradient-1);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 25px rgba(0, 169, 236, 0.3);
}

.ct-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 169, 236, 0.4);
}

.ct-submit-btn:active {
    transform: translateY(-1px);
}

.ct-form-tip {
    font-size: 13px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 6px;
}

.ct-form-tip i {
    color: var(--primary-color);
}

/* 地图区域 */
.ct-map-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-top: 50px;
}

.ct-map-container {
    border-radius: 5px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.ct-map-placeholder {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, rgba(0, 169, 236, 0.05) 0%, rgba(0, 136, 194, 0.05) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.ct-map-placeholder i {
    font-size: 80px;
    color: var(--primary-color);
    opacity: 0.3;
}

.ct-map-placeholder p {
    font-size: 18px;
    color: var(--text-dark);
    font-weight: 600;
    margin: 0;
}

.ct-map-desc {
    font-size: 14px !important;
    color: var(--text-light) !important;
    font-weight: 400 !important;
}

.ct-map-info {
    background: white;
    padding: 35px;
    border-radius: 5px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 169, 236, 0.1);
}

.ct-map-info h3 {
    font-size: 24px;
    margin-bottom: 25px;
    color: var(--text-dark);
    font-weight: 700;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-color);
}

.ct-map-detail {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ct-map-item {
    display: flex;
    gap: 15px;
}

.ct-map-item i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(0, 169, 236, 0.1) 0%, rgba(0, 136, 194, 0.1) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 18px;
    flex-shrink: 0;
}

.ct-map-item div {
    flex: 1;
}

.ct-map-item strong {
    display: block;
    font-size: 15px;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.ct-map-item p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

/* 工作时间 */
.ct-hours-section {
    padding: 60px 20px;
    color: white;
}

.ct-hours-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.ct-hours-left h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 15px;
}

.ct-hours-left p {
    font-size: 18px;
    opacity: 0.95;
}

.ct-hours-right {
    display: flex;
    gap: 30px;
}

.ct-hours-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 25px 30px;
    border-radius: 5px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 150px;
}

.ct-hours-day {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.ct-hours-time {
    font-size: 20px;
    font-weight: 700;
}

/* FAQ区域 */
.ct-faq-list {
    max-width: 900px;
    margin: 50px auto 0;
}

.ct-faq-item {
    background: white;
    border-radius: 5px;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 169, 236, 0.15);
    overflow: hidden;
    transition: all 0.3s;
}

.ct-faq-item:hover {
    box-shadow: var(--shadow-md);
}

.ct-faq-question {
    padding: 25px 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: all 0.3s;
}

.ct-faq-question:hover {
    background: rgba(0, 169, 236, 0.03);
}

.ct-faq-question > i:first-child {
    color: var(--primary-color);
    font-size: 24px;
}

.ct-faq-question h3 {
    flex: 1;
    font-size: 18px;
    color: var(--text-dark);
    font-weight: 600;
    margin: 0;
}

.ct-faq-toggle {
    color: var(--primary-color);
    font-size: 16px;
    transition: transform 0.3s;
}

.ct-faq-item.active .ct-faq-toggle {
    transform: rotate(180deg);
}

.ct-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.ct-faq-item.active .ct-faq-answer {
    max-height: 500px;
}

.ct-faq-answer p {
    padding: 0 30px 25px 69px;
    color: var(--text-light);
    line-height: 1.8;
    font-size: 15px;
    margin: 0;
}

.ct-faq-answer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.ct-faq-answer a:hover {
    text-decoration: underline;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .ct-map-wrapper {
        grid-template-columns: 1fr;
    }

    .ct-hours-content {
        flex-direction: column;
        text-align: center;
    }

    .ct-hours-right {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .ct-banner-title {
        font-size: 32px;
    }

    .ct-banner-subtitle {
        font-size: 16px;
    }

    .ct-form-wrapper {
        padding: 30px 25px;
    }

    .ct-form-row {
        grid-template-columns: 1fr;
    }

    .ct-map-placeholder {
        height: 300px;
    }

    .ct-hours-left h2 {
        font-size: 28px;
    }

    .ct-hours-right {
        width: 100%;
    }

    .ct-hours-item {
        flex: 1;
        min-width: auto;
    }

    .ct-faq-question {
        padding: 20px;
    }

    .ct-faq-answer p {
        padding: 0 20px 20px 55px;
    }
}
