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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Top Contact Bar */
.top-bar {
    background: #0a0c0f;
    color: #ccc;
    font-size: 0.85rem;
    padding: 0.5rem 0;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar a {
    color: #ccc;
    text-decoration: none;
    margin-left: 1.5rem;
}

/* Header */
.header {
    background: #12161b;
    color: #fff;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #00d4ff;
}

.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background: #1a1e23;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    z-index: 1;
    padding: 0.5rem 0;
    top: 100%;
    left: 0;
}

.dropdown-content a {
    display: block;
    padding: 0.5rem 1rem;
    color: #fff;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.header-buttons {
    display: flex;
    gap: 1rem;
}

.btn-primary {
    background: #00d4ff;
    color: #12161b;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border: 2px solid #fff;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #fff;
    color: #12161b;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(18, 22, 27, 0.7), rgba(18, 22, 27, 0.7)), url('images/hero.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    padding: 5rem 0;
    text-align: center;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 400;
    color: #00d4ff;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #12161b 0%, #1a1e23 100%);
    color: #fff;
    padding: 3rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.2rem;
    color: #00d4ff;
}

/* Market Ticker */
.market-ticker {
    background: #f8f9fa;
    padding: 2rem 0;
}

/* Forex Achievement */
.forex-achievement {
    background: #fff;
    padding: 4rem 0;
    text-align: center;
}

.forex-achievement h2 {
    font-size: 2.5rem;
    color: #12161b;
    margin-bottom: 1rem;
}

.forex-achievement h2 span {
    color: #00d4ff;
    font-size: 3rem;
    font-weight: 700;
}

.forex-achievement p {
    max-width: 800px;
    margin: 0 auto 2rem;
    color: #666;
    line-height: 1.8;
}

.success-icon {
    display: block;
    margin: 0 auto 2rem;
    max-width: 80px;
    height: auto;
}

/* Feature Boxes */
.features {
    background: #f8f9fa;
    padding: 4rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.feature-box {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    background: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-box h3 {
    color: #12161b;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.feature-box p {
    color: #666;
    font-size: 0.9rem;
}

/* Market Analysts Section */
.market-analysts {
    background: #fff;
    padding: 4rem 0;
}

.analysts-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

.analysts-image {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 1rem;
}

.analysts-image img {
    max-width: 100%;
    height: auto;
    width: 500px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.analysts-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #12161b;
}

.analysts-text > p {
    color: #666;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.analysts-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.analyst-feature {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.feature-small-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.analyst-feature h3 {
    color: #12161b;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.analyst-feature p {
    color: #666;
    line-height: 1.8;
    font-size: 0.95rem;
}

/* Global Presence */
.global-presence {
    background: #f8f9fa;
    padding: 4rem 0;
}

.global-presence h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #12161b;
}

.world-map {
    position: relative;
    width: 100%;
    height: 550px;
    background: linear-gradient(180deg, #f0f3f7 0%, #e4e9f0 100%);
    overflow: hidden;
}

.map-container {
    position: relative;
    width: 100%;
    height: 100%;
    background-image: url('images/shape-2.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.location-marker {
    position: absolute;
    width: 11px;
    height: 11px;
    background: #d82c3e;
    transform: rotate(45deg);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 0 0 3px rgba(216, 44, 62, 0.15);
}

.location-marker::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid #d82c3e;
    opacity: 0.6;
    animation: markerPulse 2.8s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes markerPulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(2.2);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

.location-marker:hover {
    background: #b52333;
    transform: rotate(45deg) scale(1.25);
    box-shadow: 0 0 0 5px rgba(216, 44, 62, 0.25);
}

.location-label {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%) rotate(-45deg);
    background: rgba(18, 22, 27, 0.96);
    color: #fff;
    padding: 0.45rem 0.75rem;
    border-radius: 5px;
    font-size: 0.65rem;
    white-space: pre-line;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    font-weight: 400;
    letter-spacing: 0.1px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    min-width: 280px;
    text-align: left;
    line-height: 1.3;
}

.location-label::before {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 6px;
    height: 6px;
    background: rgba(18, 22, 27, 0.96);
}

.location-marker:hover .location-label {
    opacity: 1;
    bottom: 22px;
}

/* Geographically accurate marker positions based on dotted map */
.marker-canada { top: 26%; left: 29%; }
.marker-usa { top: 34%; left: 29%; }
.marker-brazil { top: 84%; left: 35%; }
.marker-uk { top: 27%; left: 47%; }
.marker-southafrica { top: 87%; left: 53%; }
.marker-australia { top: 87%; left: 83%; }

/* Global availability message */
.global-message {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.global-message h3 {
    color: #12161b;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.global-message p {
    color: #666;
    font-size: 0.95rem;
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
    .world-map {
        height: 400px;
    }

    .location-marker {
        width: 9px;
        height: 9px;
    }

    .location-label {
        font-size: 0.65rem;
        padding: 0.35rem 0.7rem;
    }
}

@media (max-width: 480px) {
    .world-map {
        height: 300px;
    }

    .location-marker {
        width: 8px;
        height: 8px;
    }

    .location-label {
        font-size: 0.6rem;
        padding: 0.3rem 0.6rem;
    }

    .location-marker::before {
        top: -4px;
        left: -4px;
        right: -4px;
        bottom: -4px;
        border-width: 1.5px;
    }
}

/* Testimonials */
.testimonials {
    background: #fff;
    padding: 4rem 0;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #12161b;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 3px solid #f0f0f0;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-card p {
    color: #666;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: 600;
    color: #12161b;
    font-style: normal;
    margin-bottom: 0.3rem;
}

.testimonial-location {
    font-size: 0.85rem;
    color: #999;
}

/* Blog Section */
.blog {
    background: #f8f9fa;
    padding: 4rem 0;
}

.blog h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #12161b;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.blog-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s;
}

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

.blog-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #ddd;
    border-radius: 10px 10px 0 0;
}

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

.blog-content {
    padding: 1.5rem;
}

.blog-date {
    color: #00d4ff;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.blog-card h3 {
    color: #12161b;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.blog-card p {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.blog-link {
    color: #00d4ff;
    text-decoration: none;
    font-weight: 600;
}

/* Payment Methods */
.payment-methods {
    background: #fff;
    padding: 3rem 0;
    text-align: center;
}

.payment-methods h3 {
    color: #12161b;
    margin-bottom: 1.5rem;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    align-items: center;
}

.payment-icon {
    width: 70px;
    height: 45px;
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    transition: transform 0.3s, box-shadow 0.3s;
    padding: 0.5rem;
}

.payment-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.payment-icon.crypto {
    font-size: 2rem;
}

/* Footer */
.footer {
    background: #12161b;
    color: #ccc;
    padding: 3rem 0 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer h4 {
    color: #00d4ff;
    margin-bottom: 1rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 0.5rem;
}

.footer a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer a:hover {
    color: #00d4ff;
}

.footer-contact p {
    margin-bottom: 0.5rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icon {
    color: #ccc;
    font-size: 1.5rem;
    transition: color 0.3s;
}

.social-icon:hover {
    color: #00d4ff;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1rem;
    text-align: center;
    font-size: 0.85rem;
}

/* Content Sections */
.content-section {
    padding: 4rem 0;
}

.content-section.bg-light {
    background: #f8f9fa;
}

.content-section.bg-white {
    background: #fff;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #12161b;
}

.lead-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #666;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu, .header-buttons {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

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

    .analysts-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .analysts-image img {
        width: 200px;
    }

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

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

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

    .hero h1 {
        font-size: 2rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }
}
