/* FontAwesome Import */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 40px;
    width: auto;
}

.logo span {
    color: white;
    font-weight: bold;
    font-size: 18px;
    letter-spacing: 1px;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav a:hover,
.nav a.active {
    color: rgb(253, 152, 0);
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: rgb(253, 152, 0);
    transition: width 0.3s ease;
}

.nav a:hover::after,
.nav a.active::after {
    width: 100%;
}

.cta-button {
    background: rgb(253, 152, 0);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Language Switcher */
.language-switcher {
    position: relative;
    margin-left: 20px;
}

.language-btn {
    background: none;
    border: 2px solid rgb(253, 152, 0);
    color: rgb(253, 152, 0);
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.language-btn:hover {
    background: rgb(253, 152, 0);
    color: white;
}

.language-btn i {
    font-size: 12px;
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    min-width: 150px;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.language-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    padding: 10px 15px;
    cursor: pointer;
    transition: background 0.3s ease;
    border-bottom: 1px solid #eee;
}

.language-option:last-child {
    border-bottom: none;
}

.language-option:hover {
    background: #f5f5f5;
}

.language-option.active {
    background: rgb(253, 152, 0);
    color: white;
}

.cta-button i {
    font-size: 14px;
}

.cta-button:hover {
    background: rgb(233, 140, 0);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    z-index: 1002;
    padding: 5px;
    background: none;
    border: none;
    outline: none;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    transition: all 0.3s ease;
    border-radius: 2px;
    display: block;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    background-image: url(https://jinchuan-1350177618.cos.ap-hongkong.myqcloud.com/img/nav.png);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
}

.hero-text {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 800px;
    padding: 0 20px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

/* Swiper Styles */
.hero-swiper {
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.swiper-slide {
   background-image: url(https://jinchuan-1350177618.cos.ap-hongkong.myqcloud.com/img/nav.png);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    height: 100%;
}

.swiper-slide .hero-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.swiper-slide .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
}

.swiper-slide .hero-text {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 800px;
    padding: 0 20px;
    text-align: center;
}

.swiper-pagination-bullet {
    background: white;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background: rgb(253, 152, 0);
    opacity: 1;
}

.swiper-button-next,
.swiper-button-prev {
    color: rgb(253, 152, 0);
}

/* Content Section */
.content-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.content-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.card-accent {
    position: absolute;
    top: 0;
    height: 4px;
    background: rgb(253, 152, 0);
    border-radius: 2px;
}

.content-card h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

.content-card p {
    color: #666;
    line-height: 1.6;
}

.content-card ul {
    list-style: none;
    padding: 0;
}

.content-card li {
    margin-bottom: 10px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 10px;
}

.content-card li i {
    color: rgb(253, 152, 0);
    font-size: 16px;
    min-width: 16px;
}

.arrow {
    color: rgb(253, 152, 0);
    font-size: 12px;
}

/* Why Choose Section */
.why-choose {
    padding: 80px 0;
    background: white;
}

.why-choose h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 50px;
    color: #333;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}
.swiper-button-next:after, .swiper-button-prev:after,.swiper-pagination-bullet-active{
    color: rgb(253, 152, 0) !important;
}
.swiper-pagination-bullet-active{
    background: rgb(253, 152, 0) !important;
}
.reason-item {
    background: #f8f9fa;
    padding: 20px 40px;
    border-radius: 10px;
    border-left: 4px solid rgb(253, 152, 0);
    position: relative;
}

.reason-item i {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 24px;
    color: rgb(253, 152, 0);
}

.reason-item p {
    color: #666;
    line-height: 1.6;
}

.learn-more-btn {
    display: inline-block;
    background: rgb(253, 152, 0);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s ease;
    text-align: center;
    margin: 0 auto;
    display: block;
    width: fit-content;
}

.learn-more-btn:hover {
    background: rgb(233, 140, 0);
}

/* Fund Details */
.fund-details {
    padding: 80px 0;
    background: #f8f9fa;
}

.fund-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 50px;
}

.fund-info h3 {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 30px;
    color: #333;
}

.fund-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.fund-item:last-child {
    border-bottom: none;
}

.fund-item .label {
    font-weight: bold;
    color: #333;
}

.fund-item .value {
    color: rgb(253, 152, 0);
    font-weight: 500;
}

/* Golden Visa Section */
.golden-visa {
    padding: 80px 0;
    background: white;
}

.golden-visa h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

.golden-visa h3 {
    text-align: center;
    font-size: 1.5rem;
    color: #666;
    margin-bottom: 30px;
}

.golden-visa > .container > p {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.visa-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.benefit-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.benefit-item h4 {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
}

.benefit-item p {
    color: #666;
    line-height: 1.6;
}

.eu-benefits h3 {
    text-align: center;
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 40px;
    color: #333;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.benefit-card {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
}

.benefit-card h4 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

.benefit-card ul {
    list-style: none;
    padding: 0;
}

.benefit-card li {
    padding: 8px 0;
    color: #666;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 10px;
}

.benefit-card li i {
    color: rgb(253, 152, 0);
    font-size: 14px;
    min-width: 14px;
}

.benefit-card li:last-child {
    border-bottom: none;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.team-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

.team-section > .container > p {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.team-content {
    display: flex;
    flex-direction: column;
    gap: 50px;
    align-items: center;
}

.team-text p {
    margin-bottom: 20px;
    color: #666;
    line-height: 1.6;
}

.partnership {
    font-weight: bold;
    color: #333;
    font-style: italic;
    margin-top: 30px;
}

.team-images {
    display: flex;
   
    gap: 20px;
}

.team-images img {
    height: 200px;
  

    border-radius: 3px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.team-images img:hover {
    transform: scale(1.05);
}

/* Concierge Section */
.concierge-section {
    padding: 80px 0;
    background: white;
}

.concierge-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

.concierge-section > .container > p {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.concierge-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.concierge-item {
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    border-top: 4px solid rgb(253, 152, 0);
    position: relative;
}

.concierge-item i {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: rgb(253, 152, 0);
    border: 3px solid rgb(253, 152, 0);
}

.concierge-item h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
    margin-top: 15px;
}

.concierge-item p {
    color: #666;
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 50px;
    color: #333;
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    position: relative;
    padding-left: 40px;
}

.contact-item i {
    position: absolute;
    left: 0;
    top: 5px;
    font-size: 20px;
    color: rgb(253, 152, 0);
}

.contact-item h4 {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.contact-item p {
    color: #666;
    line-height: 1.6;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgb(253, 152, 0);
}

.submit-btn {
    background: rgb(253, 152, 0);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.submit-btn i {
    font-size: 14px;
}

.submit-btn:hover {
    background: rgb(233, 140, 0);
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo img {
    height: 30px;
    width: auto;
}

.footer-logo span {
    font-weight: bold;
    font-size: 16px;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.footer-links a i {
    font-size: 14px;
}

.footer-links a:hover {
    color: rgb(253, 152, 0);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #555;
    color: #ccc;
}

/* Company Story Section */
.company-story {
    padding: 80px 0;
    background: white;
}

.company-story h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 50px;
    color: #333;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.story-text h3 {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: rgb(253, 152, 0);
}

.story-text p {
    margin-bottom: 20px;
    color: #666;
    line-height: 1.6;
}

/* Project Details */
.project-details {
    padding: 80px 0;
    background: white;
}

.project-header {
    text-align: center;
    margin-bottom: 50px;
}

.project-header h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

.project-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.project-info {
    margin-bottom: 60px;
}

.info-section {
    margin-bottom: 40px;
}

.info-section h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
    border-left: 4px solid rgb(253, 152, 0);
    padding-left: 15px;
}

.info-section p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.info-section ul {
    list-style: none;
    padding-left: 20px;
}

.info-section li {
    color: #666;
    margin-bottom: 8px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-section li i {
    color: rgb(253, 152, 0);
    font-size: 16px;
    min-width: 16px;
}

.info-section li::before {
    content: '•';
    color: rgb(253, 152, 0);
    font-weight: bold;
    position: absolute;
    left: -20px;
}

.project-english {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
    margin-top: 50px;
}

.project-english h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

.project-english h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
}

.project-english h4 {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
}

.project-english p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.project-english ul {
    list-style: none;
    padding-left: 20px;
    margin-bottom: 15px;
}

.project-english li {
    color: #666;
    margin-bottom: 8px;
    position: relative;
}

.project-english li::before {
    content: '•';
    color: rgb(253, 152, 0);
    font-weight: bold;
    position: absolute;
    left: -20px;
}
.mobile-language-switcher{
    display: none;
}
/* Responsive Design */
@media (max-width: 768px) {
    
    .mobile-language-switcher{
        display: block;
    }
    .cta-button{
        display: none;
    }
    .container {
        padding: 0 15px;
    }
    
    .header {
        width: 100vw;
        max-width: 100vw;
    }
    
    .header .container {
        padding: 0 15px;
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    .nav {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        z-index: 1001;
        width: 100vw;
        max-width: 100vw;
        box-sizing: border-box;
        overflow-x: hidden;
        backdrop-filter: blur(10px);
    }
    
    .nav.active {
        display: flex !important;
        animation: slideDown 0.3s ease-out;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .nav a {
        padding: 15px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
        text-align: center;
        color: white !important;
        font-size: 16px;
        font-weight: 500;
    }
    
    .nav a:last-child {
        border-bottom: none;
    }
    
    .nav a:hover {
        color: rgb(253, 152, 0) !important;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
    }
    
    .language-switcher {
        position: static;
        margin: 10px 0;
        width: 100%;
        display: block !important;
    }
    
    /* 在移动端隐藏桌面版的语言选择器 */
    .header .language-switcher {
        display: none !important;
    }
    
    /* 移动端语言选择器样式 */
    .mobile-language-switcher {
        display: none; /* 默认隐藏 */
        width: 100%;
        margin-top: 20px;
        padding: 0 20px;
    }
    
    .mobile-language-switcher .language-switcher {
        display: block !important;
    }
    
    /* 在移动端显示移动端语言选择器 */
    @media (max-width: 768px) {
        .mobile-language-switcher {
            display: block;
        }
    }
    
    .language-btn {
        width: 100%;
        justify-content: center;
        background: rgba(253, 152, 0, 0.1);
        border-color: rgb(253, 152, 0);
        color: rgb(253, 152, 0);
    }
    
    .language-dropdown {
        position: static;
        width: 100%;
        margin-top: 5px;
        box-shadow: none;
        border: 1px solid rgba(253, 152, 0, 0.3);
        background: rgba(0, 0, 0, 0.8);
    }
    
    .language-option {
        color: white;
        border-bottom-color: rgba(255, 255, 255, 0.1);
    }
    
    .language-option:hover {
        background: rgba(253, 152, 0, 0.2);
    }
    
    .language-option.active {
        background: rgb(253, 152, 0);
        color: white;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .hero-text p {
        font-size: 1rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .swiper-slide .hero-text {
        padding: 0 30px;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .fund-grid {
        grid-template-columns: 1fr;
    }
    
    .team-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .team-images {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .team-images img {
        height: 200px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .reasons-grid {
        grid-template-columns: 1fr;
    }
    
    .visa-benefits {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .concierge-grid {
        grid-template-columns: 1fr;
    }
}

/* Medium screens */
@media (max-width: 1024px) and (min-width: 769px) {
    .team-images {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .team-images img {
        height: 220px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .header .container {
        padding: 0 15px;
    }
    
    .logo span {
        font-size: 14px;
    }
    
    .logo img {
        height: 30px;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 15px;
    }
    
    .hero-text p {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }
    
    .swiper-slide .hero-text {
        padding: 0 50px;
    }
    
    .content-card {
        padding: 25px 15px;
    }
    
    .why-choose h2,
    .golden-visa h2,
    .team-section h2,
    .concierge-section h2,
    .contact-section h2,
    .company-story h2,
    .project-header h2 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .contact-form {
        padding: 25px 15px;
    }
    
    .project-english {
        padding: 25px 15px;
    }
    
    .team-images {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .team-images img {
        height: 180px;
    }
    
    .nav {
        padding: 15px;
        top: 60px;
    }
    
    .nav a {
        font-size: 14px;
        padding: 8px 0;
    }
    
    .cta-button {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    .contact-item {
        padding-left: 30px;
    }
    
    .contact-item i {
        font-size: 16px;
        top: 3px;
    }
    
    .reason-item i {
        font-size: 20px;
        top: 20px;
        right: 20px;
    }
    
    .content-card li i {
        font-size: 14px;
    }
    
    .concierge-item i {
        width: 25px;
        height: 25px;
        font-size: 14px;
        top: -12px;
    }
    
    .benefit-card li i {
        font-size: 12px;
    }
    
    .info-section li i {
        font-size: 14px;
    }
    
    .footer-links a i {
        font-size: 12px;
    }
    
    .cta-button i {
        font-size: 12px;
    }
    
    .submit-btn i {
        font-size: 12px;
    }
    
    .language-switcher {
        margin-left: 10px;
    }
    
    .language-btn {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .language-dropdown {
        min-width: 120px;
    }
    
    .language-option {
        padding: 8px 12px;
        font-size: 12px;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    .container {
        padding: 0 10px;
    }
    
    .header .container {
        padding: 0 10px;
    }
    
    .hero-text h1 {
        font-size: 1.5rem;
        line-height: 1.2;
    }
    
    .hero-text p {
        font-size: 0.8rem;
    }
    
    .swiper-slide .hero-text {
        padding: 0 8px;
    }
    
    .logo span {
        font-size: 12px;
    }
    
    .logo img {
        height: 25px;
    }
    
    .nav {
        padding: 10px;
        top: 55px;
    }
    
    .nav a {
        font-size: 13px;
        padding: 6px 0;
    }
    
    .cta-button {
        padding: 6px 12px;
        font-size: 11px;
    }
    
    .content-card {
        padding: 20px 12px;
    }
    
    .contact-form {
        padding: 20px 12px;
    }
    
    .project-english {
        padding: 20px 12px;
    }
    
    .team-images {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .team-images img {
        height: 160px;
    }
}
