﻿/* ================== Contact Section ================== */
.section {
    padding: 10px 0 0 0px;
    max-width: 900px;
    margin: auto;
    background: #0b0b0f;
    color: #eaeaea;
}

.section h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 10px;
}
.section p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 40px;
}
@media screen and (max-width:768px) {
    .section {
        padding: 10px 8vw 0px;
        max-width: 100%;
    }
    .section h1 {
        font-size: 35px;
        margin-bottom: 5px;
    }
}
/* ================== 表单 ================== */
.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.form-group label {
    margin-bottom: 6px;
    font-size: 14px;
    opacity: 0.8;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 12px;
    border-radius: 8px;
    border: none;
    background: rgba(255,255,255,0.08);
    color: #fff;
    font-size: 15px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: 1px solid #FFC300;
}

.submit-btn {
    margin-top: 10px;
    padding: 14px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    cursor: pointer;
	background: linear-gradient(90deg, #FF5733, #FFC300);
    color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255,195,0,0.4);
	color: #631b87;
}

.form-status {
    margin-top: 20px;
    font-size: 16px;
}


.contact-info {
    margin-bottom: 50px;
    width:100%;
    padding:5px;
}
.contact-info h2{
    margin-bottom: 10px;
}
.contact-info h2 a{
	font-size:24px;
	color: #ffc300;
    text-decoration: none;
    font-weight: bolder;
	display: inline-block; /* 将链接转为行内块级元素，支持 transform */
    transition: transform 0.3s ease, color 0.3s ease;
}

.contact-info h2 a:hover {
    color: #cb3ffc; /* 字体颜色变化 */
    transform: scale(1.2);
	transform-origin: left;
}
.contact-info h2 a:not(:hover) {
    transform-origin: left
}

.section-divider {
    position: relative;
    height: 40px;
    margin: 10px 0;
}
    /* 主品牌光线 */
    .section-divider::before {
        content: "";
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        height: 1px;
        background: linear-gradient( 90deg, transparent, rgba(255, 195, 0, 0.8), rgba(230, 0, 73, 0.7), transparent );
        filter: blur(0.5px);
    }

    /* 柔光扩散层 */
    .section-divider::after {
        content: "";
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        height: 1px;
        background: radial-gradient( ellipse, rgba(255, 195, 0, 0.12), transparent 70% );
        filter: blur(35px);
    }