/* ============ Contact Layout ============ */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

/* ============ Contact Info ============ */
.contact-info-wrap {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 0, 102, 0.2);
}

.contact-info-wrap h2 {
    font-size: 28px;
    color: var(--text-white);
    margin-bottom: 30px;
}

.contact-info-wrap h2 .highlight {
    color: var(--neon-pink);
    text-shadow: 0 0 20px var(--neon-pink);
}

.contact-list {
    margin-bottom: 30px;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-list li:last-child {
    border-bottom: none;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(255,0,102,0.2), rgba(0,212,255,0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 20px;
    color: var(--neon-pink);
}

.contact-content h4 {
    font-size: 16px;
    color: var(--text-white);
    margin-bottom: 5px;
}

.contact-content p {
    color: var(--text-gray);
    font-size: 14px;
}

.contact-content .phone-big {
    color: var(--neon-blue);
    font-size: 24px;
    font-weight: bold;
    text-shadow: 0 0 10px var(--neon-blue);
}

.contact-content .wechat-big {
    color: var(--neon-purple);
    font-weight: bold;
    text-shadow: 0 0 10px var(--neon-purple);
}

/* ============ QR Code ============ */
.qr-code-section {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.qr-code-item {
    text-align: center;
}

.qr-code-item img {
    width: 120px;
    height: 120px;
    border-radius: 10px;
    border: 2px solid var(--neon-pink);
    padding: 5px;
    background: white;
}

.qr-code-item p {
    color: var(--text-gray);
    font-size: 13px;
    margin-top: 10px;
}

/* ============ Contact Form ============ */
.contact-form-wrap {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 0, 102, 0.2);
}

.contact-form-wrap h2 {
    font-size: 28px;
    color: var(--text-white);
    margin-bottom: 30px;
}

.contact-form-wrap h2 .highlight {
    color: var(--neon-pink);
    text-shadow: 0 0 20px var(--neon-pink);
}

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

.form-group label {
    display: block;
    color: var(--text-white);
    font-size: 14px;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: var(--bg-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-white);
    font-size: 14px;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--neon-pink);
    box-shadow: 0 0 10px rgba(255, 0, 102, 0.3);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23ff0066' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
    color: var(--text-white);
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 0 20px rgba(255, 0, 102, 0.4);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(255, 0, 102, 0.6);
}

/* ============ Map Section ============ */
.map-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.map-container {
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 0, 102, 0.3);
    box-shadow: 0 0 30px rgba(255, 0, 102, 0.2);
}

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

/* ============ Success Modal ============ */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid var(--neon-pink);
    box-shadow: 0 0 50px rgba(255, 0, 102, 0.3);
    max-width: 400px;
    width: 90%;
}

.modal-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.modal-icon i {
    font-size: 40px;
    color: var(--text-white);
}

.modal-content h3 {
    font-size: 24px;
    color: var(--text-white);
    margin-bottom: 10px;
}

.modal-content p {
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 20px;
}

.modal-close {
    background: var(--neon-pink);
    color: var(--text-white);
    padding: 10px 30px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--neon-purple);
}

/* ============ Responsive ============ */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .qr-code-section {
        flex-direction: column;
        align-items: center;
    }

    .map-container {
        height: 300px;
    }
}
