.contact-section {
    background-color: #fff;
    width: 100%;
    overflow: hidden;
}

.contact-container {
    display: flex;
    align-items: stretch;
    width: 100%;
}

.contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 60px;
    padding-left: 143px;

}

.contact-item {
    display: flex;
    gap: 20px;
}

.contact-icon {
    width: 64px;
    height: 64px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.contact-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.contact-text {
    display: flex;
    flex-direction: column;
    padding-top: 12px;
}

.contact-label {
    font-size: 14px;
    color: #A3A3A3;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 15px;
}

.contact-value {
    font-size: 18px;
    color: #000;
    font-weight: 500;
    line-height: 24px;
    max-width: 530px;
}

.contact-map {
    position: relative;
    width: 960px;
    height: 700px;
}

.map-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.map-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.map-pin {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
}

.map-label {
    background-color: var(--primary-color);
    color: #fff;
    padding: 18px 30px;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 500;
    white-space: nowrap;
    margin-bottom: 25px;
    position: relative;
    box-shadow: 0 10px 30px rgba(223, 121, 61, 0.4);
}

.map-label::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 12px solid var(--primary-color);
}

.pin-icon {
    width: 44px;
    height: auto;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.2));
}

/* ==================== 响应式适配 ==================== */

/* 大屏幕 (1400px 以下) */
@media screen and (max-width: 1400px) {
    .contact-info {
        padding-left: 80px;
    }

    .contact-map {
        width: 50%;
    }
}

/* 平板设备 (1024px 以下) */
@media screen and (max-width: 1024px) {
    .contact-container {
        flex-direction: column;
    }

    .contact-info {
        padding: 60px 40px;
        gap: 40px;
        order: 2;
    }

    .contact-map {
        width: 100%;
        height: 400px;
        order: 1;
    }

    .contact-item {
        gap: 15px;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
    }

    .contact-label {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .contact-value {
        font-size: 16px;
        max-width: 100%;
    }

    .map-label {
        font-size: 14px;
        padding: 12px 20px;
    }

    .pin-icon {
        width: 36px;
    }
}

/* 小平板/大手机 (768px 以下) */
@media screen and (max-width: 768px) {
    .contact-info {
        padding: 40px 25px;
        gap: 30px;
    }

    .contact-map {
        height: 350px;
    }

    .contact-item {
        gap: 12px;
    }

    .contact-icon {
        width: 45px;
        height: 45px;
    }

    .contact-text {
        padding-top: 8px;
    }

    .contact-label {
        font-size: 12px;
        margin-bottom: 8px;
    }

    .contact-value {
        font-size: 15px;
        line-height: 1.5;
    }

    .map-label {
        font-size: 12px;
        padding: 10px 15px;
        margin-bottom: 15px;
    }

    .map-label::after {
        bottom: -10px;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-top: 10px solid var(--primary-color);
    }

    .pin-icon {
        width: 32px;
    }
}

/* 手机设备 (480px 以下) */
@media screen and (max-width: 480px) {
    .contact-info {
        padding: 30px 20px;
        gap: 25px;
    }

    .contact-map {
        height: 300px;
    }

    .contact-item {
        gap: 10px;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
    }

    .contact-text {
        padding-top: 5px;
    }

    .contact-label {
        font-size: 11px;
        margin-bottom: 6px;
    }

    .contact-value {
        font-size: 14px;
    }

    .map-label {
        font-size: 11px;
        padding: 8px 12px;
        margin-bottom: 12px;
    }

    .map-label::after {
        bottom: -8px;
        border-left: 8px solid transparent;
        border-right: 8px solid transparent;
        border-top: 8px solid var(--primary-color);
    }

    .pin-icon {
        width: 28px;
    }
}