/* Contact Footer Style */
.lingcharm-contact {
background: #0f0f0f;
color: #e6e6e6;
padding: 60px 20px 30px;
font-family: "Helvetica Neue", Arial, sans-serif;
}
.contact-container {
max-width: 1100px;
margin: auto;
display: flex;
flex-wrap: wrap;
gap: 40px;
}
.contact-info {
flex: 1;
min-width: 260px;
}
.contact-info h2 {
font-size: 26px;
margin-bottom: 15px;
letter-spacing: 1px;
/* 金色渐变效果 */
background: linear-gradient(90deg, #b88a44, #f3d38a, #b88a44);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.brand-desc {
font-size: 14px;
line-height: 1.7;
color: #cfcfcf;
margin-bottom: 20px;
}
.contact-details {
list-style: none;
padding: 0;
font-size: 14px;
}
.contact-details li {
margin-bottom: 10px;
}
.contact-form {
flex: 1;
min-width: 260px;
}
.contact-form input,
.contact-form textarea {
width: 100%;
padding: 12px;
margin-bottom: 14px;
background: #1a1a1a;
border: 1px solid #333;
color: #fff;
font-size: 14px;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
color: #888;
}
.contact-form button {
width: 100%;
padding: 12px;
background: #b88a44; /* 按钮金色 */
border: none;
color: #000;
font-weight: bold;
cursor: pointer;
transition: 0.3s ease;
}
.contact-form button:hover {
background: #d4a95c;
}
.footer-bottom {
text-align: center;
margin-top: 40px;
font-size: 12px;
color: #777;
}