/* Contact Page Styles */
.body-contact-page-01 .map_section {
    margin-top: 40px;
}

.body-contact-page-01 .map_container {
    position: relative;
    width: 100%;
    height: 53rem;
    border-radius: 0;
    overflow: hidden;
    /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); */
}

.body-contact-page-01 .map_background {
    width: 100%;
    height: 100%;
}

.body-contact-page-01 .map_image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.body-contact-page-01 .contact_info_box {
    position: absolute;
    top: 50%;
    right: 15rem;
    width: 56rem;
    background: white;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    z-index: 10;
    transform: translateY(-50%);
}

.body-contact-page-01 .contact_tabs {
    display: flex;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.body-contact-page-01 .tab_button {
    flex: 1;
    padding: 1.7rem 0;
    border: none;
    background: #f8f9fa;
    color: #495057;
    font-size: 1.5rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    white-space: nowrap;
    cursor: pointer;
}

.body-contact-page-01 .tab_button:hover {
    background: #e9ecef;
}

.body-contact-page-01 .tab_button.active {
    background: #0057CF;
    color: white;
}

.body-contact-page-01 .tab_content {
    padding: 3rem;
    min-height: 20rem;
    display: block;
}

.body-contact-page-01 .tab_panel {
    display: none;
}

.body-contact-page-01 .tab_panel.active {
    display: block;
}

.body-contact-page-01 .contact_item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 16px;
}

.body-contact-page-01 .contact_item:last-child {
    margin-bottom: 0;
}

.body-contact-page-01 .contact_icon {
    width: 2rem;
    height: 2rem;
    margin-right: 0;
    margin-top: 2px;
    flex-shrink: 0;
    /* font-size: 16px; */
}

.body-contact-page-01 .contact_icon img {
    height: 1.5rem;
    max-height: 100%;
}

.body-contact-page-01 .contact_text {
    flex: 1;
    font-size: 14px;
    line-height: 1.5;
    color: #333;
    word-wrap: break-word;
    text-align: left;
    font-size: 1.4rem;
    font-family: sans-serif;
    font-weight: 400;
    letter-spacing: 0;
    white-space: normal;
}

/* Responsive Design */
@media (max-width: 768px) {
    .body-contact-page-01 .contact_info_box {
        position: static;
        width: 100%;
        margin-top: 20px;
        transform: none;
    }
    
    .body-contact-page-01 .map_container {
        height: 90vw;
        display: block;
    }
    
    html .body-contact-page-01 .tab_button {
        font-size: 11px;
        padding: 10px 6px;
    }
    
    .body-contact-page-01 .contact_text {
        font-size: 13px;
    }
}

/* National Service Points Section */
.body-contact-page-01 .national_service_points_section {
    padding: 2rem 0 9rem;
    background: #ffffff;
}

.body-contact-page-01 .service_points_content {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

html body.contact-page  .shihao_section_title h2 {
    text-align: center;
    font-size: 4.5rem;
    font-weight: 700;
    color: #333;
    margin: 3rem;
    text-transform: none;
    letter-spacing: 1px;
}

html body.contact-page .message_form_container .shihao_section_title * {
    text-align: left;
}

html body.contact-page .message_form_container .shihao_section_title h2 {
    margin: 0;
}

.shihao_section_title {
    margin-bottom: 6rem;
}

html body.contact-page .shihao_section_title h2 +p {
    color: #666;
    font-size: 2rem;
    font-weight: 400;
    font-family: sans-serif;
    max-width: 100%;
    text-transform: none;
    /* margin-bottom: 6rem; */
    line-height: 1.6;
}

.body-contact-page-01 .service_points_title .highlight {
    color: #007bff;
}

.body-contact-page-01 .service_points_cards {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
    /* max-width: 1100px; */
    margin: 0 auto;
}

.body-contact-page-01 .service_point_card {
    background: #ffffff;
    border: 1px solid #EFEFEF;
    border-top-width: 4px;
    border-radius: 8px;
    padding: 4rem 3rem;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.body-contact-page-01 .service_point_card:hover {
    border-color: #007bff;
    box-shadow: 0 4px 20px rgba(0, 123, 255, 0.1);
    transform: translateY(-2px);
}

.body-contact-page-01 .service_point_card.active,.body-contact-page-01 .service_point_card:hover {
    border-color: #dfdfdf;
    border-top-color: #1D4398;
    /* box-shadow: 0 4px 20px rgba(0, 123, 255, 0.15); */
    background: #F9FBFF;
}

.body-contact-page-01 .card_icon {
    flex-shrink: 0;
    width: 9rem;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.body-contact-page-01 .card_icon img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
    max-height: 9rem;
}

.body-contact-page-01 .service_point_card.active .card_icon img {
    filter: grayscale(0%);
}

.body-contact-page-01 .card_content {
    flex: 1;
}

.body-contact-page-01 .card_title {
    font-size: 2.4rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    margin-top: 0;
}

.body-contact-page-01 .card_address {
    font-size: 1.7rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Responsive Design for Service Points */
@media (max-width: 768px) {
    .body-contact-page-01 .national_service_points_section {
        padding: 0px 0;
    }
    
    .body-contact-page-01 .service_points_title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .body-contact-page-01 .service_points_cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .body-contact-page-01 .service_point_card {
        padding: 20px;
        gap: 15px;
    }
    
    .body-contact-page-01 .card_icon {
        width: 50px;
        height: 50px;
    }
    
    .body-contact-page-01 .card_title {
        font-size: 1.1rem;
    }
    
    .body-contact-page-01 .card_address {
        font-size: 0.9rem;
    }
}
