        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #4D148C;
            --primary-light: #6B21A8;
            --primary-dark: #3D0F6E;
            --secondary: #EC4899;
            --accent: #F59E0B;
            --text-dark: #1F2937;
            --text-light: #6B7280;
            --bg-light: #F9FAFB;
            --white: #FFFFFF;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
            background: var(--white);
            overflow-x: hidden;
        }

        /* ===== INTERACTIVE MAP HERO ===== */
        .map-hero-section {
            position: relative;
            min-height: 100vh;
            padding-top: 6rem;
            overflow: hidden;
            background: linear-gradient(135deg, #1e293b 0%, #581c87 50%, #1e293b 100%);
        }

        /* Animated Grid Background */
        .grid-background {
            position: absolute;
            inset: 0;
            opacity: 0.2;
            background-image: 
                linear-gradient(rgba(77, 20, 140, 0.3) 1px, transparent 1px),
                linear-gradient(90deg, rgba(77, 20, 140, 0.3) 1px, transparent 1px);
            background-size: 50px 50px;
            animation: gridMove 20s linear infinite;
        }

        @keyframes gridMove {
            0% { transform: translate(0, 0); }
            100% { transform: translate(50px, 50px); }
        }

        .map-hero-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 2rem;
            position: relative;
            z-index: 10;
        }

        /* Header */
        .map-hero-header {
            text-align: center;
            margin-bottom: 3rem;
            padding-top: 2rem;
        }

        .live-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
            background: rgba(168, 85, 247, 0.2);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(168, 85, 247, 0.3);
            border-radius: 9999px;
            margin-bottom: 1.5rem;
        }

        .live-icon {
            width: 1rem;
            height: 1rem;
            color: #d8b4fe;
            animation: spin 3s linear infinite;
        }

        .live-text {
            color: #d8b4fe;
            font-size: 0.875rem;
        }

        @keyframes spin {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .map-hero-title {
            font-size: 3.5rem;
            color: white;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            font-weight: 800;
        }

        .gradient-text {
            background: linear-gradient(to right, #c084fc, #f9a8d4, #93c5fd);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .map-hero-subtitle {
            font-size: 1.25rem;
            color: #d1d5db;
            max-width: 42rem;
            margin: 0 auto 2rem;
        }

        /* Live Stats */
        .live-stats {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .stat-card {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.75rem 1.5rem;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(24px);
            border-radius: 1rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: transform 0.3s ease;
        }

        .stat-card:hover {
            transform: scale(1.05);
        }

        .stat-icon {
            width: 3rem;
            height: 3rem;
            border-radius: 0.75rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .stat-icon.blue {
            background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
        }

        .stat-icon.green {
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
        }

        .stat-icon.purple {
            background: linear-gradient(135deg, #a855f7 0%, #9333ea 100%);
        }

        .stat-content {
            text-align: left;
        }

        .stat-number {
            font-size: 1.5rem;
            color: white;
            font-weight: 700;
        }

        .stat-label {
            font-size: 0.875rem;
            color: #d1d5db;
        }

        /* World Map Container */
        .world-map-wrapper {
            position: relative;
            width: 100%;
            max-width: 72rem;
            margin: 0 auto;
        }

        .world-map-container {
            position: relative;
            aspect-ratio: 2 / 1;
            background: linear-gradient(135deg, rgba(30, 41, 59, 0.5) 0%, rgba(88, 28, 135, 0.3) 100%);
            backdrop-filter: blur(40px);
            border-radius: 1.5rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
            overflow: hidden;
        }

        /* Map SVG */
        .map-svg {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            opacity: 0.3;
        }

        .continent-path {
            fill: rgba(255, 255, 255, 0.1);
            stroke: rgba(148, 163, 184, 0.3);
            stroke-width: 0.2;
        }

        /* Routes SVG */
        .routes-svg {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .route-path {
            fill: none;
            stroke-width: 0.3;
            stroke-dasharray: 2 2;
        }

        .route-path.air {
            stroke: rgba(139, 92, 246, 0.5);
        }

        .route-path.sea {
            stroke: rgba(59, 130, 246, 0.5);
        }

        .route-marker {
            r: 0.8;
            opacity: 1;
            animation: markerPulse 1s infinite;
        }

        .route-marker.air {
            fill: #a78bfa;
        }

        .route-marker.sea {
            fill: #60a5fa;
        }

        @keyframes markerPulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }

        /* Location Markers */
        .location-marker {
            position: absolute;
            transform: translate(-50%, -50%);
            cursor: pointer;
            z-index: 50;
            transition: transform 0.3s ease;
        }

        .location-marker:hover {
            transform: translate(-50%, -50%) scale(1.2);
        }

        .marker-dot {
            width: 1rem;
            height: 1rem;
            border-radius: 50%;
            border: 2px solid white;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
            position: relative;
        }

        .marker-dot.primary {
            background: linear-gradient(135deg, #4D148C 0%, #7e22ce 100%);
        }

        .marker-dot.red {
            background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
        }

        .marker-dot.yellow {
            background: linear-gradient(135deg, #eab308 0%, #ea580c 100%);
        }

        .marker-dot.blue {
            background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
        }

        .marker-dot.green {
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
        }

        .marker-dot.indigo {
            background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
        }

        .marker-dot.teal {
            background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
        }

        .marker-pulse {
            position: absolute;
            inset: 0;
            border-radius: 50%;
            background: #a855f7;
            animation: pulse-ring 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
        }

        @keyframes pulse-ring {
            0%, 100% {
                opacity: 1;
                transform: scale(1);
            }
            50% {
                opacity: 0;
                transform: scale(1.5);
            }
        }

        /* Marker Tooltip */
        .marker-tooltip {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            bottom: 125%;
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
            white-space: nowrap;
        }

        .location-marker:hover .marker-tooltip {
            opacity: 1;
        }

        .tooltip-content {
            background: #111827;
            color: white;
            padding: 0.5rem 0.75rem;
            border-radius: 0.5rem;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
            border: 1px solid #374151;
            font-size: 0.75rem;
        }

        .tooltip-city {
            font-weight: 600;
        }

        .tooltip-country {
            color: #9ca3af;
        }

        .tooltip-arrow {
            position: absolute;
            left: 50%;
            transform: translateX(-50%) rotate(45deg);
            bottom: -0.25rem;
            width: 0.5rem;
            height: 0.5rem;
            background: #111827;
            border-right: 1px solid #374151;
            border-bottom: 1px solid #374151;
        }

        /* Map Legend */
        .map-legend {
            position: absolute;
            bottom: 1rem;
            left: 1rem;
            display: flex;
            gap: 1rem;
            font-size: 0.75rem;
            color: #d1d5db;
        }

        .legend-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(10px);
            padding: 0.5rem 0.75rem;
            border-radius: 0.5rem;
        }

        .legend-icon {
            width: 0.75rem;
            height: 0.75rem;
        }

        /* Country Info Card */
        .country-info-card {
            position: absolute;
            top: 0;
            right: 0;
            width: 20rem;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(40px);
            border-radius: 1rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
            padding: 1.5rem;
            color: white;
            display: none;
            animation: slideIn 0.3s ease;
        }

        .country-info-card.show {
            display: block;
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateX(20px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .close-btn {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: none;
            border: none;
            color: #9ca3af;
            cursor: pointer;
            font-size: 1.25rem;
            transition: color 0.3s;
        }

        .close-btn:hover {
            color: white;
        }

        .country-header {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 1rem;
        }

        .country-flag {
            font-size: 2.5rem;
        }

        .country-name {
            font-size: 1.25rem;
            font-weight: 600;
        }

        .country-code {
            font-size: 0.875rem;
            color: #d1d5db;
        }

        .country-details {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
            margin-bottom: 1.5rem;
        }

        .detail-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .detail-label {
            color: #d1d5db;
            font-size: 0.875rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .detail-value {
            font-weight: 600;
        }

        .country-description {
            font-size: 0.875rem;
            color: #d1d5db;
            margin-bottom: 1rem;
        }

        .cta-button {
            width: 100%;
            padding: 0.75rem 1rem;
            background: linear-gradient(to right, #4D148C 0%, #7e22ce 100%);
            color: white;
            border: none;
            border-radius: 0.75rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
            font-weight: 600;
        }

        .cta-button:hover {
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
        }

        /* Bottom CTA */
        .map-cta {
            text-align: center;
            margin-top: 3rem;
            padding-bottom: 3rem;
        }

        .cta-text {
            color: #d1d5db;
            margin-bottom: 1.5rem;
        }

        .cta-buttons {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1rem;
        }

        .cta-btn-primary {
            padding: 1rem 2rem;
            background: white;
            color: #581c87;
            border-radius: 9999px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
            font-weight: 600;
        }

        .cta-btn-primary:hover {
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
        }

        .cta-btn-secondary {
            padding: 1rem 2rem;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            color: white;
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 9999px;
            text-decoration: none;
            transition: all 0.3s ease;
            font-weight: 600;
        }

        .cta-btn-secondary:hover {
            background: rgba(255, 255, 255, 0.2);
        }

        /* ===== FEATURES SECTION ===== */
        .features-section {
            padding: 5rem 2rem;
            background: linear-gradient(135deg, #f9fafb 0%, #f3e8ff 50%, #dbeafe 100%);
            position: relative;
            overflow: hidden;
        }

        .organic-shape {
            position: absolute;
            width: 24rem;
            height: 24rem;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.2;
            animation: pulse 4s ease-in-out infinite;
        }

        .organic-shape.top {
            top: 0;
            right: 0;
            background: #c084fc;
        }

        .organic-shape.bottom {
            bottom: 0;
            left: 0;
            background: #93c5fd;
            animation-delay: 1s;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }

        .features-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 10;
        }

        .section-header {
            text-align: center;
            max-width: 48rem;
            margin: 0 auto 4rem;
        }

        .section-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
            background: white;
            border-radius: 9999px;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            margin-bottom: 1.5rem;
        }

        .badge-icon {
            width: 1rem;
            height: 1rem;
            color: var(--primary);
        }

        .badge-text {
            color: var(--primary);
            font-size: 0.875rem;
            font-weight: 500;
        }

        .section-title {
            font-size: 3rem;
            color: #111827;
            margin-bottom: 1.5rem;
            font-weight: 800;
        }

        .section-subtitle {
            font-size: 1.25rem;
            color: #4b5563;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .feature-card {
            position: relative;
            background: white;
            border-radius: 1.5rem;
            padding: 2rem;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            transition: all 0.5s ease;
            overflow: hidden;
        }

        .feature-card:hover {
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        }

        .feature-bg-gradient {
            position: absolute;
            inset: 0;
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .feature-card:hover .feature-bg-gradient {
            opacity: 1;
        }

        .feature-decor {
            position: absolute;
            top: -2.5rem;
            right: -2.5rem;
            width: 8rem;
            height: 8rem;
            background: linear-gradient(135deg, #f3e8ff 0%, #dbeafe 100%);
            border-radius: 50%;
            opacity: 0.5;
            transition: opacity 0.3s;
        }

        .feature-card:hover .feature-decor {
            opacity: 0;
        }

        .feature-content {
            position: relative;
            z-index: 10;
        }

        .feature-top {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 1.5rem;
        }

        .feature-icon-wrapper {
            width: 4rem;
            height: 4rem;
            border-radius: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .feature-card:hover .feature-icon-wrapper {
            background: white !important;
            transform: scale(1.1);
        }

        .feature-icon {
            width: 2rem;
            height: 2rem;
            color: white;
            transition: color 0.3s;
        }

        .feature-card:hover .feature-icon {
            color: var(--primary);
        }

        .feature-stat {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary);
            transition: color 0.3s;
        }

        .feature-card:hover .feature-stat {
            color: white;
        }

        .feature-title {
            font-size: 1.25rem;
            color: #111827;
            margin-bottom: 0.75rem;
            font-weight: 700;
            transition: color 0.3s;
        }

        .feature-card:hover .feature-title {
            color: white;
        }

        .feature-description {
            color: #4b5563;
            line-height: 1.75;
            transition: color 0.3s;
        }

        .feature-card:hover .feature-description {
            color: rgba(255, 255, 255, 0.9);
        }

        .feature-learn-more {
            margin-top: 1.5rem;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .feature-card:hover .feature-learn-more {
            opacity: 1;
        }

        .learn-more-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: white;
            font-size: 0.875rem;
            text-decoration: none;
        }

        /* Trust Section */
        .trust-section {
            margin-top: 5rem;
            background: white;
            border-radius: 1.5rem;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            padding: 3rem;
        }

        .trust-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .trust-title {
            font-size: 1.5rem;
            color: #111827;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .trust-subtitle {
            color: #4b5563;
        }

        .logos-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 2rem;
            align-items: center;
        }

        .logo-card {
            aspect-ratio: 16/9;
            border-radius: 0.75rem;
            background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .logo-card:hover {
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        }

        .logo-icon {
            width: 3rem;
            height: 3rem;
            color: #9ca3af;
            transition: color 0.3s;
        }

        .logo-card:hover .logo-icon {
            color: var(--primary);
        }

        .certifications {
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid #e5e7eb;
        }

        .cert-badges {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 2rem;
        }

        .cert-badge {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.75rem 1.5rem;
            background: linear-gradient(135deg, #f3e8ff 0%, #dbeafe 100%);
            border-radius: 9999px;
        }

        .cert-icon {
            width: 1.25rem;
            height: 1.25rem;
            color: var(--primary);
        }

        .cert-text {
            color: #374151;
            font-weight: 500;
        }

        /* ===== STATS SECTION ===== */
        .stats-section {
            padding: 5rem 2rem;
            position: relative;
            overflow: hidden;
        }

        .stats-bg {
            position: absolute;
            inset: 0;
        }

        .stats-bg-base {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, #4D148C 0%, #7e22ce 50%, #4338ca 100%);
        }

        .stats-bg-diagonal {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(147, 51, 234, 0.5) 0%, transparent 100%);
            clip-path: polygon(0 0, 100% 0, 100% 80%, 0 100%);
        }

        .stats-bg-shape1 {
            position: absolute;
            top: 0;
            right: 0;
            width: 24rem;
            height: 24rem;
            background: #a855f7;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.2;
        }

        .stats-bg-shape2 {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 24rem;
            height: 24rem;
            background: #60a5fa;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.2;
        }

        .stats-bg-dots {
            position: absolute;
            inset: 0;
            opacity: 0.1;
            background-image: radial-gradient(circle, white 1px, transparent 1px);
            background-size: 30px 30px;
        }

        .stats-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 10;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .stat-glass-card {
            position: relative;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(24px);
            border-radius: 1.5rem;
            padding: 2rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.5s ease;
            overflow: hidden;
        }

        .stat-glass-card:hover {
            background: rgba(255, 255, 255, 0.2);
            border-color: rgba(255, 255, 255, 0.3);
            transform: scale(1.05);
        }

        .stat-gradient-overlay {
            position: absolute;
            inset: 0;
            opacity: 0;
            transition: opacity 0.5s;
        }

        .stat-glass-card:hover .stat-gradient-overlay {
            opacity: 0.2;
        }

        .stat-glow {
            position: absolute;
            inset: -0.25rem;
            background: linear-gradient(to right, #9333ea 0%, #2563eb 100%);
            border-radius: 1.5rem;
            opacity: 0;
            filter: blur(40px);
            transition: opacity 0.3s;
        }

        .stat-glass-card:hover .stat-glow {
            opacity: 0.2;
        }

        .stat-inner {
            position: relative;
            z-index: 10;
            text-align: center;
        }

        .stat-icon-container {
            display: inline-flex;
            margin-bottom: 1.5rem;
        }

        .stat-icon-box {
            width: 5rem;
            height: 5rem;
            border-radius: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
            transition: transform 0.3s;
            position: relative;
        }

        .stat-glass-card:hover .stat-icon-box {
            transform: scale(1.1);
        }

        .stat-icon-overlay {
            position: absolute;
            inset: 0;
            border-radius: 1rem;
            background: white;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .stat-glass-card:hover .stat-icon-overlay {
            opacity: 0.2;
        }

        .stat-icon-svg {
            width: 2.5rem;
            height: 2.5rem;
            color: white;
        }

        .stat-value {
            font-size: 3rem;
            color: white;
            margin-bottom: 0.75rem;
            font-weight: 800;
            transition: transform 0.3s;
        }

        .stat-glass-card:hover .stat-value {
            transform: scale(1.1);
        }

        .stat-label-text {
            font-size: 1.125rem;
            color: #ddd6fe;
            transition: color 0.3s;
        }

        .stat-glass-card:hover .stat-label-text {
            color: white;
        }

        .stat-progress {
            margin-top: 1.5rem;
            height: 0.25rem;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 9999px;
            overflow: hidden;
        }

        .stat-progress-bar {
            height: 100%;
            border-radius: 9999px;
            width: 0;
            transition: width 1s ease-out;
        }

        .stat-glass-card:hover .stat-progress-bar {
            width: 100%;
        }

        /* Achievement Banner */
        .achievement-banner {
            margin-top: 5rem;
        }

        .achievement-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(24px);
            border-radius: 1.5rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
            padding: 3rem;
        }

        .achievement-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: space-between;
            gap: 2rem;
        }

        @media (min-width: 1024px) {
            .achievement-content {
                flex-direction: row;
            }
        }

        .achievement-text {
            text-align: center;
            flex: 1;
        }

        @media (min-width: 1024px) {
            .achievement-text {
                text-align: left;
            }
        }

        .achievement-title {
            font-size: 2rem;
            color: white;
            margin-bottom: 0.75rem;
            font-weight: 800;
        }

        .achievement-subtitle {
            font-size: 1.125rem;
            color: #ddd6fe;
        }

        .achievement-cta {
            flex-shrink: 0;
        }

        .achievement-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 1rem 2rem;
            background: white;
            color: var(--primary);
            border-radius: 9999px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .achievement-btn:hover {
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
            transform: scale(1.05);
        }

        /* ===== CONTACT SECTION ===== */
        .contact-section {
            padding: 5rem 2rem;
            background: white;
            position: relative;
            overflow: hidden;
        }

        .contact-bg-curve {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 24rem;
            background: linear-gradient(135deg, #f3e8ff 0%, #dbeafe 50%, #f3e8ff 100%);
            clip-path: ellipse(80% 100% at 50% 0%);
        }

        .contact-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 10;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
            align-items: start;
        }

        @media (min-width: 1024px) {
            .contact-grid {
                grid-template-columns: 2fr 3fr;
            }
        }

        /* Contact Methods */
        .contact-left {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .contact-intro h3 {
            font-size: 1.5rem;
            color: #111827;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .contact-intro p {
            color: #4b5563;
            line-height: 1.75;
        }

        .contact-methods {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .contact-method-card {
            display: block;
            background: white;
            border-radius: 1rem;
            padding: 1.5rem;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            border: 1px solid #f3f4f6;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .contact-method-card:hover {
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            border-color: var(--primary);
        }

        .method-content {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }

        .method-icon-wrapper {
            width: 3.5rem;
            height: 3.5rem;
            border-radius: 0.75rem;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            flex-shrink: 0;
            transition: transform 0.3s;
        }

        .contact-method-card:hover .method-icon-wrapper {
            transform: scale(1.1);
        }

        .method-icon {
            width: 1.75rem;
            height: 1.75rem;
            color: white;
        }

        .method-details {
            flex: 1;
            min-width: 0;
        }

        .method-label {
            font-size: 0.75rem;
            color: #6b7280;
            margin-bottom: 0.25rem;
        }

        .method-value {
            font-size: 1rem;
            color: #111827;
            margin-bottom: 0.25rem;
            transition: color 0.3s;
            word-break: break-word;
        }

        .contact-method-card:hover .method-value {
            color: var(--primary);
        }

        .method-subvalue {
            font-size: 0.75rem;
            color: #6b7280;
        }

        /* Working Hours */
        .working-hours {
            background: linear-gradient(135deg, #4D148C 0%, #7e22ce 100%);
            border-radius: 1rem;
            padding: 1.5rem;
            color: white;
        }

        .working-hours h4 {
            font-size: 1.125rem;
            margin-bottom: 1rem;
        }

        .hours-list {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            font-size: 0.875rem;
        }

        .hours-row {
            display: flex;
            justify-content: space-between;
        }

        .hours-day {
            color: #ddd6fe;
        }

        .hours-note {
            margin-top: 1rem;
            padding-top: 1rem;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            font-size: 0.875rem;
        }

        /* Contact Form */
        .contact-right {
        }

        .contact-form-wrapper {
            background: white;
            border-radius: 1.5rem;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            border: 1px solid #f3f4f6;
            overflow: hidden;
        }

        .contact-form {
            padding: 2.5rem;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }

        @media (min-width: 640px) {
            .form-row {
                grid-template-columns: 1fr 1fr;
            }
        }

        .form-group {
        }

        .form-label {
            display: block;
            color: #374151;
            margin-bottom: 0.5rem;
            font-weight: 500;
        }

        .required {
            color: #ef4444;
        }

        .form-input,
        .form-select,
        .form-textarea {
            width: 100%;
            padding: 0.875rem 1rem;
            background: #f9fafb;
            border: 1px solid #e5e7eb;
            border-radius: 0.75rem;
            outline: none;
            transition: all 0.3s ease;
            font-family: inherit;
        }

        .form-input:focus,
        .form-select:focus,
        .form-textarea:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(77, 20, 140, 0.1);
        }

        .form-textarea {
            resize: none;
        }

        .form-submit {
            width: 100%;
            padding: 1rem;
            background: linear-gradient(to right, #4D148C 0%, #7e22ce 100%);
            color: white;
            border: none;
            border-radius: 0.75rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
            font-weight: 600;
            font-size: 1rem;
        }

        .form-submit:hover {
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
            transform: scale(1.02);
        }

        .form-note {
            font-size: 0.75rem;
            color: #6b7280;
            text-align: center;
            margin-top: 1rem;
        }

        .form-note a {
            color: var(--primary);
            text-decoration: none;
        }

        .form-note a:hover {
            text-decoration: underline;
        }

        /* Success Message */
        .success-message {
            padding: 4rem;
            text-align: center;
            display: none;
        }

        .success-message.show {
            display: block;
        }

        .success-icon-wrapper {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 5rem;
            height: 5rem;
            border-radius: 50%;
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            margin-bottom: 1.5rem;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
        }

        .success-icon {
            width: 2.5rem;
            height: 2.5rem;
            color: white;
        }

        .success-title {
            font-size: 1.5rem;
            color: #111827;
            margin-bottom: 0.75rem;
            font-weight: 700;
        }

        .success-text {
            color: #4b5563;
            margin-bottom: 1.5rem;
        }

        .success-status {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--primary);
        }

        .status-dot {
            width: 0.5rem;
            height: 0.5rem;
            background: var(--primary);
            border-radius: 50%;
            animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
        }

        @keyframes ping {
            0%, 100% {
                opacity: 1;
            }
            50% {
                opacity: 0.5;
            }
        }

        .status-text {
            font-size: 0.875rem;
        }

        /* Map Placeholder */
        .map-placeholder {
            margin-top: 5rem;
            border-radius: 1.5rem;
            overflow: hidden;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            height: 24rem;
            background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .map-content {
            text-align: center;
        }

        .map-icon {
            width: 4rem;
            height: 4rem;
            color: #9ca3af;
            margin: 0 auto 1rem;
        }

        .map-title {
            color: #4b5563;
            font-size: 1.125rem;
            margin-bottom: 0.5rem;
        }

        .map-address {
            color: #6b7280;
            font-size: 0.875rem;
        }

        /* ===== FOOTER ===== */
        .footer {
            background: linear-gradient(135deg, #3D0F6E 0%, #4D148C 100%);
            color: white;
            padding: 3rem 2rem 1.5rem;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-section h3 {
            font-size: 1.25rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .footer-section p,
        .footer-section a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            display: block;
            margin-bottom: 0.5rem;
            transition: all 0.3s ease;
        }

        .footer-section a:hover {
            color: white;
            transform: translateX(4px);
        }

        .footer-bottom {
            max-width: 1200px;
            margin: 0 auto;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            color: rgba(255, 255, 255, 0.7);
        }

        /* SVG Icons */
        .icon {
            display: inline-block;
            width: 1em;
            height: 1em;
            fill: currentColor;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .map-hero-title {
                font-size: 2rem;
            }

            .map-hero-subtitle {
                font-size: 1rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .features-grid,
            .stats-grid {
                grid-template-columns: 1fr;
            }

            .country-info-card {
                position: fixed;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                width: 90%;
                max-width: 20rem;
            }
        }
