/* 
 * 云南震序律师事务所网站 - 联系我们页面样式
 */

/* 联系页面 */
.contact-page {
    padding-bottom: 80px;
}



.contact-info-item {
    background-color: #fff;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
}

.contact-info-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-info-icon i {
    font-size: 28px;
    color: #002b70;
}


.contact-info-content p {
    margin-bottom: 0;
    color: #666;
}

/* 联系表单区块 */
.contact-form-section {
    margin-bottom: 60px;
}

.contact-form-container {
    background-color: #fff;
    padding: 40px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-form h2 {
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 30px;
    color: #002b70;
    text-align: center;
}

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

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

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 3px;
    background-color: #f9f9f9;
    font-size: 14px;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #002b70;
    background-color: #fff;
    box-shadow: 0 0 5px rgba(0, 43, 112, 0.2);
    outline: none;
}

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

.contact-form button {
    display: block;
    width: 100%;
    padding: 12px;
    background-color: #002b70;
    color: #fff;
    border: none;
    border-radius: 3px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form button:hover {
    background-color: #f4ad03;
}

/* 地图区块 */
.contact-map-section {
    margin-bottom: 60px;
}

.contact-map {
    height: 400px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}


.contact-card p {
    font-size: 14px ;
    margin-bottom: 20px ;
    width: 100% ;
    text-align: center ;
}

/* Keyframes and base styles moved from page/contact.css */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.scroll-down {
    transition: opacity 0.3s ease;
}


.contact-banner .chinese-text h1 {
    font-size: 60px;
    color: #F4AD03;
    font-weight: bold;
    margin-bottom: 20px; /* Keep bottom margin for spacing below title */
    text-shadow: 2px 2px 6px rgba(0,0,0,0.5);
}

/* Style for H2 (CONTACT US and potentially Chinese lines if kept as H2) */
.contact-banner .chinese-text h2 {
    font-size: 24px;
    color: #ffffff;
    font-weight: normal;
    /* REMOVED line-height: 1.5; */
    /* REMOVED margin: 10px 0; */
    text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
    margin-bottom: 60px; /* Add some space below H2 */
}

/* Style for H3 (Chinese description lines) */
.contact-banner .chinese-text h3 {
    font-weight: bold;
    font-size: 42px;
    color: #ffffff; /* Explicitly white */
    font-weight: normal; /* Assuming h3 itself isn't bold */
    margin-bottom: 40px 0; /* Add vertical spacing */
    /* font-size and text-shadow will be mainly handled by strong inside */
}

/* Style for P (English lines and potentially Chinese lines if changed to P) */
.contact-banner .chinese-text p {
    font-size: 24px; /* Re-add PC font-size for p */
    color: #ffffff;
    font-weight: normal;
    /* REMOVED line-height: 1.6; */
    /* REMOVED margin: 10px 0; */
    text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
}

/* Add default color for plain text inside chinese-text */
.contact-banner .chinese-text {
    color: #ffffff; /* Default white color */
    text-shadow: 1px 1px 3px rgba(0,0,0,0.6); /* Add shadow for visibility */
}

/* 联系页面 Banner */
.contact-banner {
    position: relative;
    width: 100%;
    height: 100%; /* 让 banner 填充父容器高度 */
    background-size: cover;
    background-position: center;
}

.contact-banner .container {
    height: 100%;
    position: relative;
}

.contact-banner .banner-text {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 100%;
    z-index: 2;
}
