* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a1628 0%, #1a365d 50%, #2c5282 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

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

.loader-content i {
    font-size: 60px;
    color: #4fd1c5;
    animation: pulse 2s ease-in-out infinite;
}

.loader-content span {
    font-size: 24px;
    font-weight: 600;
    color: white;
    letter-spacing: 3px;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(10, 22, 40, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 20px;
    font-weight: 700;
}

.logo i {
    color: #4fd1c5;
    font-size: 24px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #4fd1c5;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #4fd1c5;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a1628 0%, #1a365d 50%, #2c5282 100%);
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    color: white;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    background: rgba(79, 209, 197, 0.2);
    color: #4fd1c5;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(79, 209, 197, 0.3);
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-sub {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.company-intro {
    max-width: 800px;
    margin: 0 auto 40px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.company-intro p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

.core-strengths {
    margin-bottom: 40px;
}

.core-strengths h3 {
    font-size: 24px;
    margin-bottom: 25px;
    color: #4fd1c5;
}

.strengths-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.strength-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.strength-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.strength-item i {
    color: #4fd1c5;
    font-size: 20px;
    flex-shrink: 0;
}

.strength-item span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    text-align: left;
}

.quote-prompt {
    margin-bottom: 30px;
}

.quote-prompt p {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.prompt-sub {
    font-size: 14px !important;
    color: rgba(255, 255, 255, 0.7) !important;
    font-weight: 400 !important;
}

.cta-btn {
    display: inline-block;
    background: linear-gradient(135deg, #4fd1c5 0%, #38b2ac 100%);
    color: #0a1628;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(79, 209, 197, 0.4);
}

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

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

.section-badge {
    display: inline-block;
    background: rgba(79, 209, 197, 0.1);
    color: #319795;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #0a1628;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 16px;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.stats-section {
    background: linear-gradient(135deg, #0a1628 0%, #1a365d 100%);
    padding: 60px 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 30px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #4fd1c5;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.service-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e6fffa 0%, #c6f6d5 100%);
}

.service-icon i {
    font-size: 48px;
    color: #319795;
}

.service-content {
    padding: 25px;
}

.service-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #0a1628;
    margin-bottom: 12px;
}

.service-content p {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 15px;
    line-height: 1.7;
}

.service-features {
    list-style: none;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #4a5568;
    margin-bottom: 8px;
}

.service-features i {
    color: #4fd1c5;
    font-size: 14px;
}

.about-section {
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.about-text h3 {
    font-size: 24px;
    font-weight: 600;
    color: #0a1628;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 15px;
}

.about-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 22, 40, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-image:hover .image-overlay {
    opacity: 1;
}

.overlay-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: white;
}

.overlay-content i {
    font-size: 40px;
    color: #4fd1c5;
}

.overlay-content span {
    font-size: 16px;
    font-weight: 600;
}

.advantages-section {
    margin-top: 40px;
}

.advantages-section h3 {
    font-size: 24px;
    font-weight: 600;
    color: #0a1628;
    margin-bottom: 30px;
    text-align: center;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.advantage-card {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-5px);
}

.advantage-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #4fd1c5 0%, #38b2ac 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.advantage-icon i {
    font-size: 24px;
    color: white;
}

.advantage-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: #0a1628;
    margin-bottom: 10px;
}

.advantage-card p {
    font-size: 13px;
    color: #64748b;
    line-height: 1.6;
}

.certifications-section {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
}

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

.cert-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.cert-card:hover {
    transform: translateY(-5px);
}

.cert-card i {
    font-size: 36px;
    color: #4fd1c5;
    margin-bottom: 15px;
}

.cert-card span {
    font-size: 14px;
    font-weight: 600;
    color: #0a1628;
}

.routes-section {
    background: white;
}

.routes-content {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

.routes-content p {
    font-size: 16px;
    color: #64748b;
    line-height: 1.8;
}

.world-map {
    margin-bottom: 40px;
}

.map-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.map-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.map-point {
    position: absolute;
    width: 20px;
    height: 20px;
    background: #4fd1c5;
    border-radius: 50%;
    border: 3px solid white;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.map-point:hover {
    transform: scale(1.5);
}

.map-point.asia { top: 30%; left: 60%; }
.map-point.europe { top: 25%; left: 40%; }
.map-point.america { top: 35%; left: 15%; }
.map-point.africa { top: 50%; left: 45%; }
.map-point.oceania { top: 65%; left: 75%; }

.regions-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.region-tag {
    background: rgba(79, 209, 197, 0.1);
    color: #319795;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.region-tag:hover {
    background: rgba(79, 209, 197, 0.2);
}

.cases-section {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
}

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

.case-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.case-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

.case-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #e6fffa 0%, #c6f6d5 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.case-icon i {
    font-size: 22px;
    color: #319795;
}

.case-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #0a1628;
    margin-bottom: 12px;
}

.case-card p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.7;
}

.testimonials-section {
    background: white;
}

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

.testimonial-card {
    background: linear-gradient(135deg, #0a1628 0%, #1a365d 100%);
    padding: 30px;
    border-radius: 15px;
    color: white;
}

.testimonial-content p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.author-avatar {
    width: 45px;
    height: 45px;
    background: rgba(79, 209, 197, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-avatar i {
    font-size: 20px;
    color: #4fd1c5;
}

.author-info h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 3px;
}

.author-info p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.testimonial-rating {
    color: #fbbf24;
}

.testimonial-rating i {
    font-size: 14px;
    margin-right: 2px;
}

.news-section {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
}

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

.news-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-date {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #64748b;
    margin-bottom: 15px;
}

.news-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #e6fffa 0%, #c6f6d5 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.news-icon i {
    font-size: 18px;
    color: #319795;
}

.news-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #0a1628;
    margin-bottom: 12px;
}

.news-card p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.7;
}

.quote-section {
    background: linear-gradient(135deg, #0a1628 0%, #1a365d 100%);
    padding: 80px 20px;
}

.quote-intro {
    text-align: center;
    margin-bottom: 50px;
}

.quote-intro h2 {
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.quote-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

.client-access {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.access-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.access-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.login-link {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.login-link:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.register-link {
    background: #00d4ff;
    color: #0a1628;
}

.register-link:hover {
    background: #00b8e6;
    transform: translateY(-2px);
}

.access-hint {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    margin-left: 10px;
}

@media (max-width: 768px) {
    .client-access {
        flex-direction: column;
        gap: 10px;
    }
    .access-hint {
        margin-left: 0;
        text-align: center;
    }
}

.quote-form {
    max-width: 800px;
    margin: 0 auto 40px;
    background: white;
    padding: 40px;
    border-radius: 15px;
}

.form-section {
    margin-bottom: 30px;
}

.form-section h3 {
    font-size: 18px;
    font-weight: 600;
    color: #0a1628;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e2e8f0;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #4a5568;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4fd1c5;
    box-shadow: 0 0 0 3px rgba(79, 209, 197, 0.1);
}

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

.error-message {
    display: none;
    font-size: 12px;
    color: #e53e3e;
    margin-top: 5px;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: #e53e3e;
}

.form-group.error .error-message {
    display: block;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #4fd1c5 0%, #38b2ac 100%);
    color: #0a1628;
    padding: 15px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(79, 209, 197, 0.4);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.success-message {
    text-align: center;
    padding: 30px;
    background: rgba(66, 153, 225, 0.1);
    border-radius: 12px;
    margin-top: 20px;
}

#quote-success .success-icon {
    font-size: 48px;
    color: #4fd1c5;
    margin-bottom: 15px;
}

#quote-success h4 {
    font-size: 20px;
    font-weight: 600;
    color: #0a1628;
    margin-bottom: 10px;
}

#quote-success p {
    font-size: 14px;
    color: #64748b;
}

.trust-guarantee {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.trust-guarantee p {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.trust-guarantee i {
    color: #4fd1c5;
}

.contact-section {
    background: white;
}

.company-info {
    text-align: center;
    margin-bottom: 40px;
}

.company-info h3 {
    font-size: 24px;
    font-weight: 700;
    color: #0a1628;
    margin-bottom: 10px;
}

.business-scope {
    font-size: 14px;
    color: #64748b;
}

.branches-section {
    margin-bottom: 50px;
}

.branches-section h3 {
    font-size: 20px;
    font-weight: 600;
    color: #0a1628;
    margin-bottom: 30px;
    text-align: center;
}

.branches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.branch-card {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
}

.branch-card i {
    font-size: 24px;
    color: #4fd1c5;
    margin-bottom: 12px;
}

.branch-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: #0a1628;
    margin-bottom: 10px;
}

.branch-card p {
    font-size: 13px;
    color: #64748b;
    line-height: 1.6;
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: #333;
}

.contact-info i {
    color: #4fd1c5;
    font-size: 18px;
}

.social-qrcodes {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #e2e8f0;
}

.social-qrcodes h3 {
    font-size: 20px;
    font-weight: 600;
    color: #0a1628;
    margin-bottom: 30px;
}

.qrcode-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.qrcode-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.qrcode-wrapper {
    width: 150px;
    height: 150px;
    background: white;
    border-radius: 12px;
    padding: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.qrcode-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.qrcode-label {
    font-size: 14px;
    font-weight: 600;
    color: #0a1628;
}

.info-item {
    display: flex;
    gap: 15px;
}

.info-item i {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #e6fffa 0%, #c6f6d5 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #319795;
    flex-shrink: 0;
}

.info-item h4 {
    font-size: 15px;
    font-weight: 600;
    color: #0a1628;
    margin-bottom: 3px;
}

.info-item p {
    font-size: 14px;
    color: #64748b;
}

.contact-form-container {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    padding: 30px;
    border-radius: 15px;
}

.contact-form-container h3 {
    font-size: 18px;
    font-weight: 600;
    color: #0a1628;
    margin-bottom: 20px;
}

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

#contact-success {
    padding: 20px;
    color: #319795;
    font-weight: 500;
}

.floating-quote-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #4fd1c5 0%, #38b2ac 100%);
    color: #0a1628;
    padding: 15px 25px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(79, 209, 197, 0.4);
    z-index: 999;
    animation: bounce 2s infinite;
    transition: transform 0.3s ease;
}

.floating-quote-btn:hover {
    transform: scale(1.05);
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0a1628 0%, #1a365d 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #2c5282;
}

.footer {
    background: linear-gradient(135deg, #0a1628 0%, #1a365d 100%);
    padding: 50px 20px;
}

.footer-content {
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: white;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-logo i {
    color: #4fd1c5;
}

.footer p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin-bottom: 10px;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 500;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 25px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #4fd1c5;
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(10, 22, 40, 0.98);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        transform: translateY(-150%);
        transition: transform 0.3s ease;
    }

    .nav-links.active {
        transform: translateY(0);
    }

    .menu-toggle {
        display: block;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-sub {
        font-size: 16px;
    }

    .strengths-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-number {
        font-size: 32px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .certifications-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cases-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .branches-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .trust-guarantee {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .trust-guarantee p {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 26px;
    }

    .stat-number {
        font-size: 28px;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
    }

    .certifications-grid {
        grid-template-columns: 1fr;
    }

    .branches-grid {
        grid-template-columns: 1fr;
    }

    .quote-form {
        padding: 20px;
    }

    .floating-quote-btn span {
        display: none;
    }
}