:root {
    --primary-gold: #d4af37;
    --dark-gray: #333333;
    --light-bg: #f9f6f6;
}



/* Contact Section */
.contact-section {
    background-color: #fff;
    padding: 3rem 0;
}
.content{
    margin: 0 auto;
}

.contact-info-card {
    background: url('/template/default/pc/skin/images/contact_bg.jpg');
    color: #fff;
    background-position: left;
    border-radius: 0;
    /* 关键：保持图片比例，完整显示（优先保证图片完整，容器可能有空白） */
    background-size: contain;
    /* 图片居中显示 */
    /* 禁止图片重复平铺 */
   /* background-repeat: no-repeat;*/
    /* 必须设置容器尺寸（宽高根据需求调整） */
    width: 100%;
    height: 990px; /* 示例高度，可改为vh、rem等适配单位 */
    padding-left: 60px;
    padding-top: 50px;
}

.contact-info-card h1 {
    color: #fff;
    margin-bottom: 100px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding-left: 50px;
}

.contact-info-item img {
    margin-right: 20px;
}
.contact-info{
    display: flex;
    align-items: center;
}
.social-links{
    margin-top:150px;
}
.social-links a {
    color: #fff;
    font-size: 1.5rem;
    margin-right: 1rem;
    transition: color 0.3s;
}



.contact-form-card {
    background-color: #fbf7f8;
    padding: 100px 80px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    height: 100%;
}

.form-label {
    margin-bottom: 0.5rem;
    color: #666;
}

.form-control {
    border-radius: 0;
    border: 1px solid #eee;
    padding: 0.75rem;
    margin-bottom: 1rem;
}

.btn-send {
    background-color: #6f42c1;
    color: #fff;
    border-radius: 4px;
    padding: 0.5rem 1.25rem;
    border: none;
    transition: background-color 0.3s;
}

.btn-send:hover {
    background-color: #5a32a3;
    color: #fff;
}

/* Team Section */
.team-section {
    padding: 4rem 0;
}

.team-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
}

.team-card {
    text-align: center;
    margin-bottom: 2rem;
}

.team-img-wrapper {

}



.team-name {
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.team-title {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.team-phone {
    font-size: 0.85rem;
    font-weight: 600;
}

/* Map Section */
.map-section {
    padding: 2rem 0 4rem;
}

.map-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-style: italic;
}

.map-placeholder {
    border: 1px solid #ccc;
    padding: 6rem 0;
    text-align: center;
}

.btn-quote1 {
    min-width: 180px;
    height: 60px;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    font-family: Arial, sans-serif;
    letter-spacing: 0.5px;
    text-align: center;
    line-height: 60px;
    text-transform: capitalize;
    background: linear-gradient(to right, #9c27f5, #4169e1);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0 30px;
    outline: none;
    box-shadow: 0 2px 8px rgba(156, 39, 245, 0.3);
}

/* Responsive Adjustments */
@media (max-width: 768px) {

    .contact-info-card h1 {
        margin-bottom: 30px;
    }

    .contact-info-card, .contact-form-card {
        margin-bottom: 1rem;
    }
    .content{
        margin: 0;
    }

    .contact-info-card {
        height: 550px;
        padding-left: 20px;
        padding-top: 50px;
    }

    .contact-info-item{
        padding-left:0;
        margin-bottom:2rem;
    }

    .contact-info-item img {
        width: 30px;
    }


    .contact-info{
        display: block;
        height: unset;
    }

    .social-links{
        margin-top:0;
    }

    .social-links img{
        height: 50px;
    }

    .contact-form-card {
        padding: 20px;
    }


}
