:root {
        --primary-purple: #8e44ad;
        --light-purple: #f3e5f5;
        --dark-bg: #1a1a1a;
        --text-gray: #555;
        --white: #ffffff;
        --transition: all 0.3s ease;
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    body {
        background-color: #f9f9fb;
        color: #333;
        overflow-x: hidden;
    }

    /* --- Navigation --- */
    nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 8%;
        background: rgba(255, 255, 255, 0.95);
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 1000;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    }

    .logo {
        font-size: 24px;
        font-weight: bold;
        display: flex;
        align-items: center;
        gap: 10px;
    }

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

    .nav-links a {
        text-decoration: none;
        color: #333;
        font-weight: 500;
        transition: var(--transition);
    }

    .nav-links a:hover { color: var(--primary-purple); }

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

    /* --- Hero Section --- */
    .hero {
        padding: 160px 8% 80px;
        background: linear-gradient(135deg, #fdfcfd 0%, #e2e2e2 100%);
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-badge {
        display: flex;
        align-items: center;
        gap: 10px;
        color: var(--primary-purple);
        font-weight: 600;
        margin-bottom: 20px;
    }

    .hero h1 {
        font-size: 3.5rem;
        max-width: 600px;
        line-height: 1.2;
        margin-bottom: 20px;
    }

    .hero p {
        max-width: 500px;
        color: var(--text-gray);
        line-height: 1.6;
        margin-bottom: 30px;
    }

    .btn-group { display: flex; gap: 15px; }

    .btn {
        padding: 12px 30px;
        border-radius: 25px;
        text-decoration: none;
        font-weight: 600;
        transition: var(--transition);
        display: inline-block;
    }

    .btn-primary { background: var(--primary-purple); color: white; border: none; cursor: pointer; }
    .btn-secondary { border: 2px solid var(--primary-purple); color: var(--primary-purple); }

    .btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(142, 68, 173, 0.3);
    }

    /* --- General Section Layout --- */
    .section { padding: 80px 8%; }
    .section-header { text-align: center; margin-bottom: 50px; }

    /* --- Services Grid --- */
    .grid-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }

    .card {
        background: white;
        padding: 40px;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.03);
        transition: var(--transition);
        border: 1px solid #eee;
    }

    .card-purple { background: var(--primary-purple); color: white; }
    .icon-box {
        width: 50px;
        height: 50px;
        background: var(--light-purple);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
        color: var(--primary-purple);
    }

    /* --- NEW: World Map & Currency Table --- */
    .map-section {
        background: #fdfdfd;
        text-align: center;
        padding: 100px 8%;
    }

    .map-container {
        position: relative;
        background: url('https://upload.wikimedia.org/wikipedia/commons/e/ec/World_map_blank_without_borders.svg') no-repeat center;
        background-size: contain;
        padding: 60px 0;
        margin-bottom: 40px;
        opacity: 0.8;
    }

    .currency-table {
        width: 100%;
        max-width: 1000px;
        margin: 0 auto;
        display: flex;
        justify-content: space-around;
        flex-wrap: wrap;
        gap: 20px;
    }

    .currency-item {
        background: white;
        padding: 25px;
        border-radius: 15px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        flex: 1;
        min-width: 250px;
        text-align: left;
    }

    /* --- NEW: Smart Planning Timeline --- */
    .timeline-section {
        display: flex;
        align-items: center;
        gap: 50px;
        padding: 100px 8%;
    }

    .timeline {
        border-left: 2px dashed var(--primary-purple);
        padding-left: 30px;
        margin-top: 30px;
    }

    .step {
        position: relative;
        margin-bottom: 40px;
    }

    .step::before {
        content: '';
        position: absolute;
        left: -41px;
        top: 5px;
        width: 20px;
        height: 20px;
        background: var(--primary-purple);
        border-radius: 50%;
        border: 4px solid white;
    }

    /* --- NEW: Testimonials --- */
    .testimonial-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }

    .testimonial-card {
        background: white;
        padding: 30px;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    }

    .stars { color: #f1c40f; margin-bottom: 15px; }

    .client { display: flex; align-items: center; gap: 15px; margin-top: 20px; }
    .client-img { width: 50px; height: 50px; background: #ddd; border-radius: 50%; }

    /* --- Footer --- */
    footer {
        background: #111;
        color: white;
        padding: 80px 8% 30px;
    }

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

    .footer-col h4 { margin-bottom: 25px; font-size: 1.2rem; }
    .footer-col p, .footer-col li { color: #999; font-size: 14px; margin-bottom: 12px; list-style: none; }

    .copyright {
        text-align: center;
        padding-top: 30px;
        border-top: 1px solid #333;
        font-size: 13px;
        color: #666;
    }

    /* --- Mobile Responsive --- */
    @media (max-width: 992px) {
        .hero h1 { font-size: 2.8rem; }
        .timeline-section { flex-direction: column; }
    }

    @media (max-width: 768px) {
        .nav-links {
            position: fixed;
            top: 0; right: -100%; height: 100vh; width: 75%;
            background: white; flex-direction: column;
            padding: 100px 40px; transition: 0.4s;
            box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        }
        .nav-links.active { right: 0; }
        .menu-toggle { display: block; }
        .hero { text-align: center; align-items: center; padding-top: 120px; }
        .btn-group { justify-content: center; }
    }