
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Microsoft YaHei', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 60px;
    line-height: 60px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

/* Navigation Right Side */
.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Language Toggle */
.lang-toggle {
    display: flex;
    align-items: center;
    margin-left: 15px;
}

.lang-btn {
    background: #c8860d;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(200, 134, 13, 0.3);
    min-width: 40px;
}

.lang-btn:hover {
    background: #b8750a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(200, 134, 13, 0.4);
}

.lang-btn:active {
    transform: translateY(0);
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #c8860d;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 120px 0 80px;
    margin-top: 60px;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 36px;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.4;
}

.hero-text p {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.8;
}

.cta-button {
    background: #c8860d;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
}

.cta-button:hover {
    background: #b8750a;
    transform: translateY(-2px);
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Malta Section */
.malta-section {
    padding: 80px 0;
    background: #fff;
}

.section-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.malta-image {
    flex: 1;
}

.malta-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.malta-info {
    flex: 1;
}

.malta-info h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 30px;
}

.info-list {
    list-style: none;
}

.info-list li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 20px;
}

.info-list li:before {
    content: "•";
    color: #c8860d;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.highlight-text {
    background: #fff3cd;
    padding: 15px;
    border-left: 4px solid #c8860d;
    margin: 20px 0;
    font-size: 14px;
    line-height: 1.6;
}

/* Process Section */
.process-section {
    background: #f8f9fa;
    padding: 80px 0;
}

/* Dual Passport Usage Section */
.dual-passport-section {
    background: #fff;
    padding: 80px 0;
}

.dual-passport-section h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 50px;
    color: #333;
}

.usage-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.usage-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.usage-card h3 {
    font-size: 22px;
    margin-bottom: 25px;
    color: #333;
    text-align: center;
}

.usage-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: white;
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.step-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.step-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #c8860d, #e6a00f);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
    flex-shrink: 0;
}

.step-text h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: #333;
}

.step-text p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.usage-advantages {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid #c8860d;
}

.usage-advantages h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #333;
    text-align: center;
}

.advantage-list {
    list-style: none;
    padding: 0;
}

.advantage-list li {
    padding: 8px 0;
    font-size: 14px;
    color: #555;
    position: relative;
    padding-left: 25px;
}

.advantage-list li:before {
    content: "✨";
    position: absolute;
    left: 0;
    top: 8px;
}

.process-section h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 50px;
    color: #333;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.process-item {
    background: white;
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.process-item:hover {
    transform: translateY(-5px);
}

.process-item .step-number {
    background: #c8860d;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-weight: bold;
}

.process-item h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
}

.process-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* Requirements Table */
.requirements-section {
    padding: 80px 0;
    background: white;
}

.requirements-section h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 50px;
    color: #333;
}

.requirements-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.requirements-table th {
    background: #c8860d;
    color: white;
    padding: 20px;
    text-align: center;
    font-weight: 600;
}

.requirements-table td {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.requirements-table tr:hover {
    background: #f8f9fa;
}

/* Consultation Section */
.consultation-section {
    background: url('../images/3.jpg')no-repeat center center;
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    color: white;
    text-align: center;
}

.consultation-section h2 {
    font-size: 32px;
    margin-bottom: 30px;
}

.consultation-form {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.consultation-form input,
.consultation-form select {
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    min-width: 210px;
}

.consultation-form button {
    background: #c8860d;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
}

.consultation-form button:hover {
    background: #b8750a;
}

/* Contact Buttons */
.contact-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 10px;
}

.contact-btn {
    padding: 12px 20px;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 120px;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.telegram-btn {
    background: #0088cc;
    color: white;
}

.telegram-btn:hover {
    background: #006699;
}

.whatsapp-btn {
    background: #25d366;
    color: white;
}

.whatsapp-btn:hover {
    background: #1eb354;
}

.wechat-btn {
    background: #07c160;
    color: white;
}

.wechat-btn:hover {
    background: #06a050;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.team-section h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 20px;
    color: #333;
}

.team-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 50px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.team-member {
    text-align: center;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.team-member img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

.team-member h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: #333;
}

.team-member p {
    font-size: 14px;
    color: #666;
}

.team-member .role {
    background: #c8860d;
    color: white;
    padding: 4px 8px;
    border-radius: 15px;
    font-size: 12px;
    display: inline-block;
    margin-top: 10px;
}

/* Why Choose Section */
.why-choose-section {
    padding: 80px 0;
    background: white;
}

.why-choose-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.why-choose-video {
    flex: 1;
}

.video-placeholder {
    width: 100%;
    height: 300px;
    background: #f0f0f0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #666;
    position: relative;
}

.play-button {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(200, 134, 13, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s;
}

.play-button:hover {
    background: rgba(200, 134, 13, 1);
    transform: scale(1.1);
}

.why-choose-text {
    flex: 1;
}

.why-choose-text h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #333;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    font-size: 16px;
    position: relative;
    padding-left: 30px;
}

.feature-list li:before {
    content: "✓";
    color: #c8860d;
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 18px;
}

/* Video Section */
.video-section {
    background: #f8f9fa;
    padding: 50px 0;
}

.video-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.video-left {
    flex: 1;
}

.video-thumbnail {
    width: 100%;
    height: 200px;
    background: #ddd;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.video-right {
    flex: 1;
}

.expert-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 20px;
}

.expert-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #ddd;
    flex-shrink: 0;
}

.expert-info h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.expert-info p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Success Stories */
.success-section {
    padding: 80px 0;
    background: white;
}

.success-section h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 50px;
    color: #333;
}

.success-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.success-item {
    background: #f8f9fa;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.success-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.success-content {
    padding: 25px;
}

.success-content h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.success-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    background: url('../images/10.jpg')no-repeat center center;
    background-size: cover;
    background-position: center;
    padding: 60px 0;
    text-align: center;
}

.contact-section h2 {
    color: white;
    font-size: 28px;
    margin-bottom: 30px;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.contact-item {
    color: white;
    text-align: center;
}

.contact-item h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.contact-item p {
    font-size: 16px;
}

/* Footer */
footer {
    background: #2c3e50;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #c8860d;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #c8860d;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #34495e;
    color: #bbb;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #34495e;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.social-links a:hover {
    background: #c8860d;
    transform: translateY(-2px);
}

.qr-codes {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}

.qr-item {
    text-align: center;
}

.qr-code {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 5px;
    margin-bottom: 10px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .usage-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-text h1 {
        font-size: 28px;
    }

    .process-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .hero-text h1 {
        font-size: 24px;
    }

    .hero-text p {
        font-size: 14px;
    }

    .section-content {
        flex-direction: column;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .consultation-form {
        flex-direction: column;
        align-items: center;
    }

    .contact-buttons {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        align-items: center;
    }

    .contact-btn {
        min-width: auto;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }

    .nav-right {
        flex-direction: row;
        gap: 10px;
        align-items: center;
    }

    .nav-links {
        display: none;
    }

    .lang-toggle {
        margin-left: 0;
    }

    .lang-btn {
        padding: 6px 12px;
        font-size: 12px;
        min-width: 35px;
    }

    /* 移动端菜单按钮样式 */
    .mobile-menu-btn {
        background: none !important;
        border: none !important;
        font-size: 18px !important;
        color: #c8860d !important;
        cursor: pointer !important;
        display: block !important;
        padding: 6px 8px !important;
        margin: 0 !important;
        transition: all 0.3s ease !important;
        height: 35px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .mobile-menu-btn:hover {
        color: #b8750a !important;
        transform: scale(1.1) !important;
    }

    .success-grid {
        grid-template-columns: 1fr;
    }

    .contact-info {
        flex-direction: column;
        gap: 30px;
    }

    .usage-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .why-choose-content {
        flex-direction: column;
        gap: 30px;
    }

    .video-content {
        flex-direction: column;
        gap: 30px;
    }

    .expert-card {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .step-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .step-icon {
        align-self: center;
    }

    .requirements-table {
        font-size: 12px;
    }

    .requirements-table th,
    .requirements-table td {
        padding: 10px 5px;
    }

    .social-floating {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }

    .social-icon {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }

    .logo {
        font-size: 18px;
    }

    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 0 60px;
    }

    .hero-text h1 {
        font-size: 20px;
        line-height: 1.3;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .process-item {
        padding: 20px 15px;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .usage-card {
        padding: 20px;
    }

    .step-item {
        padding: 12px;
    }

    .step-icon {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .step-text h4 {
        font-size: 14px;
    }

    .step-text p {
        font-size: 12px;
    }

    .requirements-table th,
    .requirements-table td {
        padding: 8px 3px;
        font-size: 11px;
    }

    .social-floating {
        bottom: 15px;
        right: 15px;
    }

    .social-icon {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.95);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease-out;
}

.slide-in-left {
    animation: slideInLeft 0.8s ease-out;
}

.slide-in-right {
    animation: slideInRight 0.8s ease-out;
}

.bounce-in {
    animation: bounceIn 0.8s ease-out;
}

.pulse-animation {
    animation: pulse 2s ease-in-out infinite;
}

/* Floating Action Button */
.floating-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #c8860d;
    color: white;
    padding: 15px 20px;
    border-radius: 25px;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(200, 134, 13, 0.3);
    z-index: 1000;
    transition: all 0.3s;
    font-size: 14px;
}

.floating-btn:hover {
    background: #b8750a;
    transform: translateY(-2px);
}

/* Social Floating Icons */
.social-floating {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.social-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    font-size: 24px;
    color: white;
}

.telegram-icon {
    background: #0088cc;
}

.telegram-icon:hover {
    background: #006699;
    transform: translateY(-3px) scale(1.1);
}

.whatsapp-icon {
    background: #25d366;
}

.whatsapp-icon:hover {
    background: #1eb354;
    transform: translateY(-3px) scale(1.1);
}

.consult-btn {
    background: #c8860d;
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    white-space: nowrap;
}

.consult-btn:hover {
    background: #b8750a;
}
