 /* 优化后的dubai-critical css - 精简版 */
        /* 全局样式重置 */
        @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');
        
        :root {
            --gold-gradient: linear-gradient(135deg, #FFD700 0%, #FFC107 50%, #FFD700 100%);
            --dark-gold: #B8860B;
            --light-gold: #FFD700;
            --transparent-black: rgba(0, 0, 0, 0.6);
            --transparent-white: rgba(255, 255, 255, 0.1);
        }
        body {
            font-family: 'Poppins', sans-serif;
            color: #333;
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
        }
        
        .gold-bg {
            background: var(--gold-gradient);
        }
        
        .gold-border {
            border-image: linear-gradient(to right, #FFD700, #B8860B) 1;
        }
        
        /* 调整所有section的间距 */
        .section {
            padding: 3rem 0;
            position: relative;
        }
        
        /* 如果需要，可以单独调整特定section的间距 */
        #benefits {
            padding-bottom: 2rem;
        }
        
        #options {
            padding-top: 2rem;
            padding-bottom: 2rem;
        }
        
        #process {
            padding-top: 2rem;
            padding-bottom: 2rem;
        }
        
        #fees {
            padding-top: 2rem;
            padding-bottom: 2rem;
        }
        
        #contact {
            padding-top: 2rem;
        }
        
        /* 在移动端进一步减小特定section的间距 */
        @media (max-width: 768px) {
            #benefits {
                padding-bottom: 1rem;
            }
            
            #options {
                padding-top: 1rem;
                padding-bottom: 1rem;
            }
            
            #process {
                padding-top: 1rem;
                padding-bottom: 1rem;
            }
            
            #fees {
                padding-top: 1rem;
                padding-bottom: 1rem;
            }
            
            #contact {
                padding-top: 1rem;
            }
        }
        
        .section-title {
            position: relative;
            display: inline-block;
            margin-bottom: 1.5rem;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 3px;
            background: var(--gold-gradient);
        }
        
        .card {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
        }
        
        .benefit-card {
            padding: 1.5rem;
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }
        
        .benefit-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        /* 修改图标和标题布局 - 关键修改 */
        .benefit-header {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
        }
        
        .benefit-icon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 215, 0, 0.1);
            color: var(--light-gold);
            transition: all 0.3s ease;
            flex-shrink: 0;
            margin-right: 1rem;
        }
        
        .benefit-title {
            font-size: 1.25rem;
            font-weight: bold;
            margin: 0;
        }
        
        .benefit-card:hover .benefit-icon {
            background: var(--gold-gradient);
            color: #000;
        }
        
        /* 修改后的申请流程样式 - 横向布局 */
        .process-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 1rem;
        }
        
        .process-step {
            flex: 1;
            min-width: 200px;
            padding: 1.5rem;
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            margin-bottom: 1.5rem;
            transition: all 0.3s ease;
        }
        
        .process-step:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        .process-step::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gold-gradient);
            border-radius: 10px 10px 0 0;
        }
        
        .process-number {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: var(--gold-gradient);
            color: #000;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            margin-bottom: 0; /* 移除或减少底部外边距 */
            flex-shrink: 0; /* 防止圆圈被压缩 */
            margin-right: 1rem; /* 添加右边距 */
            font-size: 1.25rem; /* 添加字体大小，与内联样式一致 */
        }
        /* 添加流程步骤标题容器样式 */
        .process-step-header {
            display: flex;
            align-items: center;
            margin-bottom: 0.5rem;
        }

        /* 修复流程步骤标题对齐问题 */
        .process-step-header h3 {
            margin: 0;
            padding: 0;
            line-height: 1.2;
            display: flex;
            align-items: center; /* 确保标题与圆圈垂直居中对齐 */
            min-height: 48px; /* 与圆圈高度匹配 */
        }
        @media (max-width: 768px) {
            .process-container {
                flex-direction: column;
            }
            
            .process-step {
                width: 100%;
            }
        }
        
        .form-control {
            width: 100%;
            padding: 1rem;
            border-radius: 5px;
            border: 1px solid #ddd;
            margin-bottom: 1.5rem;
            transition: all 0.3s ease;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: #fff;
        }
        
        .form-control:focus {
            border-color: var(--light-gold);
            box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.2);
            outline: none;
        }
        
        /* 修复下拉菜单样式 */
        select.form-control {
            background: rgba(0, 0, 0, 0.8);
            color: #fff;
        }
        
        select.form-control option {
            background: rgba(0, 0, 0, 0.9);
            color: #fff;
        }
        
        .btn {
            padding: 0.8rem 2rem;
            border-radius: 5px;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .btn-gold {
            background: var(--gold-gradient);
            color: #000;
        }
        
        .btn-gold:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(255, 215, 0, 0.2);
        }
        
        .btn-outline {
            background: transparent;
            border: 2px solid var(--light-gold);
            color: var(--light-gold);
        }
        
        .btn-outline:hover {
            background: var(--gold-gradient);
            color: #000;
        }
        
        .arabic-pattern {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url("img/dubai1.jpg");
            z-index: -1;
        }
        
        .nav-link {
            color: #fff;
            margin: 0 1rem;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gold-gradient);
            transition: all 0.3s ease;
        }
        
        .nav-link:hover {
            color: var(--light-gold);
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        .mobile-menu-btn {
            display: none;
            background: transparent;
            border: none;
            color: #fff;
            font-size: 1.5rem;
            cursor: pointer;
            z-index: 1002;
        }
        
        /* 修复移动端菜单问题 */
        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 80%;
                height: 100vh;
                background: rgba(0, 0, 0, 0.95);
                backdrop-filter: blur(10px);
                z-index: 1001;
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                transition: all 0.3s ease;
                padding: 2rem 0;
            }
            
            .nav-menu.active {
                right: 0;
            }
            
            .nav-link {
                margin: 1rem 0;
                font-size: 1.2rem;
                padding: 0.5rem 1rem;
                width: 100%;
                text-align: center;
            }
            
            .mobile-menu-btn {
                display: block;
                position: fixed;
                top: 1rem;
                right: 1rem;
            }
            
            /* 添加遮罩层 */
            .menu-overlay {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: rgba(0, 0, 0, 0.5);
                z-index: 1000;
                display: none;
            }
            
            .menu-overlay.active {
                display: block;
            }
        }
        
        .investment-option {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            position: relative;
            height: 350px;
        }
        
        .investment-option:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
        }
        
        .investment-option::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.7));
            z-index: 1;
        }
        
        .investment-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 0;
        }
        
        .investment-content {
            position: relative;
            z-index: 2;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 1.5rem;
            color: #fff;
        }
        
        .investment-title {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }
        
        .investment-amount {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--light-gold);
        }
        
        .investment-description {
            margin-bottom: 1.5rem;
        }
        
        .fee-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 1.5rem;
        }
        
        .fee-table th, .fee-table td {
            padding: 1rem;
            text-align: left;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .fee-table th {
            color: var(--light-gold);
        }
        
        .fee-table tr:last-child td {
            border-bottom: none;
        }
        
        .testimonial {
            padding: 1.5rem;
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            margin-bottom: 1.5rem;
            position: relative;
        }
        
        .testimonial::before {
            content: '"';
            position: absolute;
            top: 10px;
            left: 20px;
            font-size: 5rem;
            color: rgba(255, 215, 0, 0.2);
            font-family: 'Playfair Display', serif;
            line-height: 1;
        }
        
        .testimonial-content {
            position: relative;
            z-index: 2;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
            margin-top: 1rem;
        }
        
        .testimonial-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 1rem;
        }
        
        .testimonial-name {
            font-weight: 600;
            color: var(--light-gold);
        }
        
        .testimonial-position {
            font-size: 0.875rem;
            color: #aaa;
        }
        
        .faq-item {
            margin-bottom: 1rem;
            border-radius: 10px;
            overflow: hidden;
        }
        
        .faq-question {
            padding: 1rem;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }
        
        .faq-question:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        
        .faq-answer {
            padding: 0;
            height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
            background: rgba(255, 255, 255, 0.03);
        }
        
        .faq-answer.active {
            padding: 1rem;
            height: auto;
        }
        
        .faq-question.active i {
            transform: rotate(180deg);
            transition: transform 0.3s ease;
        }
        
        .footer {
            padding: 3rem 0 2rem;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(10px);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .footer-logo {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
        }
        
        /* 修复底部国旗大小 */
        .footer-logo img {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            margin-right: 1rem;
        }
        
        .footer-logo-text {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--light-gold);
        }
        
        .footer-description {
            margin-bottom: 1.5rem;
            color: #aaa;
        }
        
        .footer-title {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--light-gold);
        }
        
        .footer-link {
            display: block;
            margin-bottom: 0.75rem;
            color: #aaa;
            transition: all 0.3s ease;
        }
        
        .footer-link:hover {
            color: var(--light-gold);
            transform: translateX(5px);
        }
        
        .social-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.05);
            color: #aaa;
            margin-right: 0.5rem;
            transition: all 0.3s ease;
        }
        
        .social-icon:hover {
            background: var(--gold-gradient);
            color: #000;
            transform: translateY(-3px);
        }
        
        .copyright {
            padding-top: 1.5rem;
            margin-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #aaa;
            font-size: 0.875rem;
            text-align: center;
        }
        
        /* 自定义滚动条 */
        ::-webkit-scrollbar {
            width: 8px;
        }
        
        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }
        
        ::-webkit-scrollbar-thumb {
            background: var(--dark-gold);
            border-radius: 4px;
        }
        
        ::-webkit-scrollbar-thumb:hover {
            background: var(--light-gold);
        }
        
        /* 表单验证 */
        .form-error {
            color: #ff4444;
            font-size: 0.875rem;
            margin-top: -1rem;
            margin-bottom: 1rem;
            display: none;
        }
        
        .form-control.error {
            border-color: #ff4444;
        }
        
        .form-control.success {
            border-color: #00C851;
        }
        
        /* 加载动画 */
        .loader {
            width: 48px;
            height: 48px;
            border: 5px solid var(--light-gold);
            border-bottom-color: transparent;
            border-radius: 50%;
            display: inline-block;
            box-sizing: border-box;
            animation: rotation 1s linear infinite;
            display: none;
        }
        
        @keyframes rotation {
            0% {
                transform: rotate(0deg);
            }
            100% {
                transform: rotate(360deg);
            }
        }
        
        /* 成功消息 */
        .success-message {
            padding: 1rem;
            border-radius: 5px;
            background: rgba(0, 200, 81, 0.1);
            border: 1px solid #00C851;
            color: #00C851;
            margin-top: 1.5rem;
            display: none;
        }
        
        /* 页脚响应式布局优化 - 关键修改 */
        @media (max-width: 768px) {
            .footer-grid-container {
                display: flex;
                overflow-x: auto;
                gap: 2rem;
                padding-bottom: 1rem;
                -ms-overflow-style: none;  /* IE and Edge */
                scrollbar-width: none;  /* Firefox */
            }
            
            .footer-grid-container::-webkit-scrollbar {
                display: none; /* Chrome, Safari and Opera */
            }
            
            .footer-grid-container > div {
                flex: 0 0 auto;
                min-width: 200px;
                white-space: nowrap;
            }
            
            .footer-grid-container > div:first-child {
                display: none;
            }
        }

        /* 桌面端调整热门护照和投资居留列的位置 */
        @media (min-width: 1024px) {
            .footer-grid-container > div:nth-child(2),
            .footer-grid-container > div:nth-child(3) {
                margin-left: 1rem; /* 减少左边距，使列更靠近右边 */
            }
        }
        
        /* 移除费用表格滚动条 */
        .fee-table-container {
            width: 100%;
        }
        
        /* 字数统计样式 */
        .char-count {
            text-align: right;
            font-size: 0.875rem;
            color: #aaa;
            margin-top: -0.5rem;
            margin-bottom: 1rem;
        }
        
        .char-count.warning {
            color: #ff4444;
        }

