
/* 移动端按钮点击样式优化 */
button, .btn, [role="button"], .clickable {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    outline: none;
    border: none;
    background: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

button:focus, .btn:focus, [role="button"]:focus, .clickable:focus {
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

button:active, .btn:active, [role="button"]:active, .clickable:active {
    -webkit-tap-highlight-color: transparent;
    outline: none;
}

/* 联系区块 */
.contact-section {
    padding: 80px 0;
    background: white;
}

.contact-section .contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.contact-banner {
    background: url('../images/contact-img.8f5bbd6f.png') center no-repeat;
    border-radius: 32px;
    padding: 60px;
    position: relative;
    /* overflow: hidden; */
}

.contact-content {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 60px;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
    z-index: 2;
}

.contact-text {
    color: white;
}

.contact-title {
    font-family: 'Aeonik TRIAL', sans-serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    color: white;
}

.contact-subtitle {
    font-family: 'Aeonik TRIAL', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 32px;
    color: white;
    opacity: 0.9;
}

.contact-whatsapp-btn {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 12px;
    background: -webkit-linear-gradient(357.31deg, rgba(255, 255, 255, 0.13) 6.01%, rgba(255, 255, 255, 0.245) 90.83%);
    background: linear-gradient(92.69deg, rgba(255, 255, 255, 0.13) 6.01%, rgba(255, 255, 255, 0.245) 90.83%);
    color: white;
    padding: 16px 20px;
    border-radius: 12px;
    text-decoration: none;
    font-family: 'Aeonik TRIAL', sans-serif;
    font-size: 16px;
    font-weight: 700;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-whatsapp-btn:hover {
    -webkit-transform: translateY(-2px);
        -ms-transform: translateY(-2px);
            transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    background: -webkit-linear-gradient(315deg, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0.58) 100%);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0.58) 100%);
}
.contact-whatsapp-btn img{
    width: 20px;
    height: 20px;
}

.contact-btn-text {
    color: white;
    font-weight: 700;
}

.contact-whatsapp-icon {
    width: 20px;
    height: 20px;
}

.contact-whatsapp-icon path {
    fill: url(#whatsapp-gradient);
}

.contact-illustration {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
}

.contact-img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
}



@media (min-width: 768px) and (max-width: 1220px) {
    .contact-section .contact-container{
        width: 100%;

    }
    .contact-banner {
        background: url('../images/contact-img-mobile.1fc8e7f5.png') center no-repeat;
        background-size: cover;
        height: 702px;
    }
}
@media (max-width: 767px) {
    .contact-section{
        background: url('../images/contact-img-mobile.1fc8e7f5.png') center no-repeat;
        background-size: cover;
        padding:50px 0;
    }
    .contact-banner {
        background: transparent;
        background-size: 100%;
        height: 702px;
        padding:0;
    }
}