/* Wego Global Website Styles */
:root {
    --primary: #0052CC;
    --primary-dark: #003D99;
    --secondary: #00875A;
    --accent: #FF6B35;
    --dark: #172B4D;
    --gray: #6B778C;
    --light: #F4F5F7;
    --white: #FFFFFF;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--white);
    color: var(--dark);
    line-height: 1.6;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(10px);
    padding: 16px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    z-index: 1000;
}

.nav-logo {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -1px;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--dark);
    text-decoration: none;
    transition: color 0.2s;
    padding: 8px 0;
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
}

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

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.lang-switch {
    display: flex;
    gap: 4px;
    background: var(--light);
    padding: 4px;
    border-radius: 8px;
}

.lang-btn {
    padding: 6px 12px;
    border: none;
    background: transparent;
    font-size: 13px;
    font-weight: 500;
    color: var(--gray);
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.2s;
}

.lang-btn.active {
    background: var(--white);
    color: var(--primary);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.nav-btn {
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

.nav-btn-outline {
    border: 2px solid var(--primary);
    background: transparent;
    color: var(--primary);
}

.nav-btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.nav-btn-primary {
    background: var(--primary);
    color: var(--white);
    border: none;
}

.nav-btn-primary:hover {
    background: var(--primary-dark);
}

/* Hero Section */
.hero {
    padding: 180px 48px 120px;
    text-align: center;
    background: linear-gradient(180deg, #F0F5FF 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(0,82,204,0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0,135,90,0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 32px;
}

.hero h1 {
    font-size: 64px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 24px;
    line-height: 1.1;
    position: relative;
    z-index: 1;
}

.hero h1 .highlight {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 22px;
    color: var(--gray);
    max-width: 800px;
    margin: 0 auto 48px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.hero-cta .cta-btn {
    padding: 16px 40px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.cta-btn-primary {
    background: var(--primary);
    color: white;
}

.cta-btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.cta-btn-secondary {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
}

.cta-btn-secondary:hover {
    background: var(--primary);
    color: white;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-top: 80px;
    position: relative;
    z-index: 1;
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    font-size: 56px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.hero-stat-label {
    font-size: 16px;
    color: var(--gray);
    margin-top: 8px;
}

/* Page Container */
.page-container {
    padding-top: 80px;
}

/* Section Styles */
.section {
    padding: 100px 48px;
}

.section-light {
    background: var(--light);
}

.section-dark {
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary-dark) 100%);
    color: white;
}

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

.section-label {
    display: inline-block;
    background: rgba(0,82,204,0.1);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.section-dark .section-label {
    background: rgba(255,255,255,0.15);
    color: white;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
}

.section-dark .section-title {
    color: white;
}

.section-desc {
    font-size: 18px;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}

.section-dark .section-desc {
    color: rgba(255,255,255,0.8);
}

/* Focus Section - Africa */
.focus-section {
    background: linear-gradient(135deg, var(--dark) 0%, #0a1628 100%);
    padding: 100px 48px;
    color: white;
    position: relative;
    overflow: hidden;
}

.focus-section::before {
    content: '🌍';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 600px;
    opacity: 0.03;
}

.focus-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.focus-header {
    text-align: center;
    margin-bottom: 60px;
}

.focus-header .section-label {
    background: rgba(255,107,53,0.2);
    color: var(--accent);
}

.focus-header h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
}

.focus-header p {
    font-size: 20px;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

.focus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.focus-grid.fixed-2 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 900px;
    gap: 40px;
}

.focus-grid.fixed-2 .focus-card-icon {
    width: 72px;
    height: 72px;
    font-size: 36px;
    margin-bottom: 24px;
}

.focus-grid.fixed-2 .focus-card h3 {
    font-size: 26px;
    margin-bottom: 16px;
}

.focus-grid.fixed-2 .focus-card p {
    font-size: 16px;
    line-height: 1.8;
}

.focus-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 36px;
    transition: all 0.3s;
}

.focus-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-8px);
}

.focus-card-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--accent) 0%, #FF8F66 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 20px;
}

.focus-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.focus-card p {
    font-size: 15px;
    opacity: 0.8;
    line-height: 1.7;
}

/* Countries Grid */
.countries-section {
    padding: 100px 48px;
    background: var(--white);
}

.countries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.country-card {
    background: var(--light);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s;
}

.country-card:hover {
    background: #E8EEF8;
    transform: translateY(-4px);
}

.country-card.active {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
}

.country-card.pending {
    border: 2px dashed var(--gray);
    background: transparent;
}

.country-flag {
    font-size: 40px;
    margin-bottom: 12px;
}

.country-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.country-currency {
    font-size: 14px;
    opacity: 0.7;
}

.country-status {
    display: inline-block;
    background: rgba(255,107,53,0.2);
    color: var(--accent);
    font-size: 11px;
    padding: 4px 8px;
    border-radius: 4px;
    margin-top: 8px;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    border: 1px solid #E8EEF8;
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,82,204,0.12);
    border-color: var(--primary);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, #0088FF 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 24px;
}

.service-card:nth-child(2) .service-icon {
    background: linear-gradient(135deg, var(--accent) 0%, #FF8F66 100%);
}

.service-card:nth-child(3) .service-icon {
    background: linear-gradient(135deg, var(--secondary) 0%, #00B377 100%);
}

.service-card:nth-child(4) .service-icon {
    background: linear-gradient(135deg, #FFB800 0%, #FFCC33 100%);
}

.service-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.service-desc {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.7;
}

/* Process Steps */
.process-steps {
    display: flex;
    justify-content: center;
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
}

.process-step::after {
    content: '→';
    position: absolute;
    top: 30px;
    right: -24px;
    font-size: 32px;
    color: var(--primary);
    opacity: 0.4;
}

.process-step:last-child::after {
    display: none;
}

.step-number {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.step-desc {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    padding: 100px 48px;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

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

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.contact-label {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 4px;
}

.contact-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
}

.contact-qr {
    background: var(--light);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
}

.contact-qr h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 24px;
}

.qr-code {
    width: 200px;
    height: 200px;
    background: white;
    border-radius: 16px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    overflow: hidden;
}

.qr-code img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.qr-hint {
    font-size: 14px;
    color: var(--gray);
}

/* Footer */
.footer {
    padding: 60px 48px;
    background: var(--dark);
    color: rgba(255,255,255,0.7);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
}

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

.footer-link {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-link:hover {
    color: var(--white);
}

.footer-copyright {
    font-size: 14px;
}

/* Responsive */
@media (max-width: 1000px) {
    .nav {
        padding: 16px 24px;
    }
    
    .nav-links {
        display: none;
    }
    
    .hero h1 {
        font-size: 42px;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 40px;
    }
    
    .focus-grid {
        grid-template-columns: 1fr;
    }
    
    .countries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .process-step::after {
        display: none;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Page Header */
.page-header {
    padding: 140px 48px 60px;
    text-align: center;
    background: linear-gradient(180deg, #F0F5FF 0%, var(--white) 100%);
}

.page-header h1 {
    font-size: 48px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
}

.page-header p {
    font-size: 18px;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}
