/* 主体容器 */
        .contact-wrapper {
            max-width: 1300px;
            margin: 40px auto 60px;
            padding: 0 20px;
        }
        /* 页面标题区 - 更生动 */
        .page-header {
            text-align: center;
            margin-bottom: 45px;
        }
        .page-header h1 {
            font-family: "华文楷书", cursive;
            font-size: 38px;
            background: linear-gradient(115deg, #c49a6c, #e8b87a);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 12px;
            position: relative;
            display: inline-block;
        }
        .page-header h1:before, .page-header h1:after {
            content: "☯";
            font-size: 26px;
            background: none;
            -webkit-background-clip: unset;
            background-clip: unset;
            color: #d4b87a;
            margin: 0 18px;
            opacity: 0.7;
            display: inline-block;
            animation: floatIcon 3s ease-in-out infinite;
        }
        @keyframes floatIcon {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-5px); }
        }
        .page-header p {
            color: #b8946a;
            font-size: 16px;
        }
        /* 联系方式卡片 - 多彩灵动 */
        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 25px;
            margin-bottom: 45px;
        }
        .contact-card {
            background: #fffefb;
            border-radius: 28px;
            padding: 28px 20px;
            text-align: center;
            transition: all 0.35s ease;
            border: 1px solid #f0dc9c;
            position: relative;
            overflow: hidden;
        }
        .contact-card:nth-child(1) { background: linear-gradient(135deg, #fffefb, #fef5e8); }
        .contact-card:nth-child(2) { background: linear-gradient(135deg, #fffefb, #f0f5ec); }
        .contact-card:nth-child(3) { background: linear-gradient(135deg, #fffefb, #f0ecf5); }
        .contact-card:nth-child(4) { background: linear-gradient(135deg, #fffefb, #fef0ec); }
        .contact-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 30px -12px rgba(60,40,20,0.15);
        }
        .contact-icon {
            width: 70px;
            height: 70px;
            margin: 0 auto 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            font-size: 32px;
            color: white;
        }
        .contact-card:nth-child(1) .contact-icon { background: linear-gradient(135deg, #f0a87c, #e8885c); box-shadow: 0 8px 20px rgba(232,136,92,0.3); }
        .contact-card:nth-child(2) .contact-icon { background: linear-gradient(135deg, #5cbc7c, #3c9c5c); box-shadow: 0 8px 20px rgba(60,156,92,0.3); }
        .contact-card:nth-child(3) .contact-icon { background: linear-gradient(135deg, #7c9ce0, #5c7cc0); box-shadow: 0 8px 20px rgba(92,124,192,0.3); }
        .contact-card:nth-child(4) .contact-icon { background: linear-gradient(135deg, #d4a76a, #c49a6c); box-shadow: 0 8px 20px rgba(196,154,108,0.3); }
        .contact-card h3 {
            font-size: 18px;
            color: #5e3a22;
            margin-bottom: 10px;
        }
        .contact-card p {
            font-size: 14px;
            color: #8a6a4a;
            line-height: 1.5;
        }
        /* 联系表单区域 - 灵动卡片 */
        .form-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin-bottom: 45px;
        }
        .form-card {
            background: #fffefb;
            border-radius: 32px;
            overflow: hidden;
            box-shadow: 0 15px 30px -10px rgba(0,0,0,0.08);
            border: 1px solid #f0dc9c;
        }
        .form-header {
            background: linear-gradient(115deg, #fdf3e0, #faeccc);
            padding: 20px 28px;
            border-bottom: 1px solid #e8d4b0;
        }
        .form-header h3 {
            font-size: 22px;
            color: #5e3a22;
            font-weight: 600;
        }
        .form-header h3 i {
            margin-right: 10px;
            color: #d4a76a;
        }
        .contact-form {
            padding: 28px;
        }
        .form-row {
            margin-bottom: 20px;
        }
        .form-label {
            display: block;
            font-weight: 600;
            color: #7a5a42;
            margin-bottom: 8px;
            font-size: 14px;
        }
        .form-label i {
            margin-right: 6px;
            color: #d4a76a;
        }
        .form-control {
            width: 100%;
            background: #fffef7;
            border: 1px solid #e2d0b0;
            border-radius: 48px;
            padding: 12px 20px;
            font-family: inherit;
            font-size: 14px;
            outline: none;
            transition: 0.2s;
        }
        .form-control:focus {
            border-color: #d4b87a;
            box-shadow: 0 0 0 3px rgba(212,184,122,0.2);
        }
        textarea.form-control {
            border-radius: 24px;
            resize: vertical;
        }
        .submit-btn {
            width: 100%;
            background: linear-gradient(115deg, #e8b87a, #d49c5c);
            border: none;
            padding: 14px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 16px;
            color: white;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 4px 12px rgba(212,156,92,0.3);
        }
        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(212,156,92,0.4);
        }
        /* 地图区域 */
        .map-card {
            background: #fffefb;
            border-radius: 32px;
            overflow: hidden;
            box-shadow: 0 15px 30px -10px rgba(0,0,0,0.08);
            border: 1px solid #f0dc9c;
            margin-bottom: 30px;
        }
        .map-header {
            background: linear-gradient(115deg, #fdf3e0, #faeccc);
            padding: 18px 28px;
            border-bottom: 1px solid #e8d4b0;
        }
        .map-header h3 {
            font-size: 20px;
            color: #5e3a22;
        }
        .map-container {
            height: 320px;
            background: #e8dcc8;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #b8946a;
            font-size: 16px;
        }
        /* 社交关注 */
        .social-section {
            text-align: center;
            margin-top: 20px;
        }
        .social-title {
            font-size: 18px;
            color: #5e3a22;
            margin-bottom: 20px;
        }
        .social-icons {
            display: flex;
            justify-content: center;
            gap: 25px;
        }
        .social-icon {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            transition: all 0.3s;
            cursor: pointer;
            color: white;
        }
        .social-icon:nth-child(1) { background: linear-gradient(135deg, #f0a87c, #e8885c); box-shadow: 0 6px 14px rgba(232,136,92,0.3); }
        .social-icon:nth-child(2) { background: linear-gradient(135deg, #5cbc7c, #3c9c5c); box-shadow: 0 6px 14px rgba(60,156,92,0.3); }
        .social-icon:nth-child(3) { background: linear-gradient(135deg, #7c9ce0, #5c7cc0); box-shadow: 0 6px 14px rgba(92,124,192,0.3); }
        .social-icon:nth-child(4) { background: linear-gradient(135deg, #d4a76a, #c49a6c); box-shadow: 0 6px 14px rgba(196,154,108,0.3); }
        .social-icon:hover {
            transform: scale(1.12) translateY(-3px);
        }