:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --text-color: #333;
    --light-bg: #f8f9fa;
}

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

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-bg);
}

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

header {
    background-color: var(--primary-color);
    color: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.hero {
    padding: 8rem 0 4rem;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.services {
    padding: 4rem 0;
    background-color: white;
}

.services h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.service-card {
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background-color: white;
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
    margin-bottom: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    border-color: var(--secondary-color);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    display: block;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.service-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

.service-card:hover h3::after {
    width: 100px;
}

.service-card p {
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

.advantages {
    padding: 4rem 0;
    background-color: var(--light-bg);
}

.advantages h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.advantages-list {
    list-style: none;
    padding: 0;
}

.advantages-list li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--text-color);
}

.contact-form {
    padding: 4rem 0;
    background-color: var(--light-bg);
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

input, textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

button {
    background-color: var(--secondary-color);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: var(--primary-color);
}

footer {
    background-color: var(--primary-color);
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 25px;
    border-radius: 5px;
    background-color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateX(120%);
    transition: transform 0.3s ease;
    z-index: 1000;
}

.notification.show {
    transform: translateX(0);
}

.notification.success {
    border-left: 4px solid #28a745;
}

.notification.error {
    border-left: 4px solid #dc3545;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.notification-content i {
    font-size: 1.2rem;
}

.notification.success i {
    color: #28a745;
}

.notification.error i {
    color: #dc3545;
}

.notification-content span {
    color: var(--text-color);
    font-size: 0.95rem;
}

.hero-animation {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
}

.hero-animation svg {
    width: 100%;
    height: auto;
}

.globe-container {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
}

.globe {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto;
}

.globe-sphere {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, #3498db, #2c3e50);
    box-shadow: 
        inset -25px -25px 40px rgba(0,0,0,.5),
        0 0 20px rgba(52, 152, 219, 0.3);
}

.globe-outer-shadow {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 50%, 
        rgba(0,0,0,0) 0%,
        rgba(0,0,0,0.1) 30%,
        rgba(0,0,0,0.2) 60%,
        rgba(0,0,0,0.3) 100%);
}

.globe-worldmap {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
}

.continents {
    width: 100%;
    height: 100%;
    transform: rotate(-23.5deg);
}

.continents path {
    stroke-linecap: round;
    stroke-linejoin: round;
    opacity: 0.6;
}

.continent {
    animation: pulse 4s ease-in-out infinite;
}

.continent-detail {
    animation: pulse 4s ease-in-out infinite;
    animation-delay: 0.5s;
}

.parallel, .meridian {
    animation: rotate 20s linear infinite;
    transform-origin: center;
}

.money-orbit {
    animation: rotate 15s linear infinite;
}

.money-orbit:nth-child(1) { animation-duration: 20s; }
.money-orbit:nth-child(2) { animation-duration: 25s; }
.money-orbit:nth-child(3) { animation-duration: 30s; }
.money-orbit:nth-child(4) { animation-duration: 35s; }

.money-symbol {
    font-size: 24px;
    fill: var(--secondary-color);
    font-weight: bold;
    animation: float 3s ease-in-out infinite;
}

.money-symbol:nth-child(1) { animation-delay: 0s; }
.money-symbol:nth-child(2) { animation-delay: 0.5s; }
.money-symbol:nth-child(3) { animation-delay: 1s; }
.money-symbol:nth-child(4) { animation-delay: 1.5s; }

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.7;
        stroke-width: 2;
    }
    50% {
        opacity: 1;
        stroke-width: 2.5;
    }
}

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

@keyframes globe-rotate {
    from {
        transform: rotateY(0deg);
    }
    to {
        transform: rotateY(360deg);
    }
}

@keyframes worldmap-rotate {
    from {
        transform: rotateY(0deg);
    }
    to {
        transform: rotateY(-360deg);
    }
}

.globe-static {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.globe-static img {
    width: 100%;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 4px 24px rgba(44, 62, 80, 0.15);
    background: white;
}

.globe-orbits-wrapper {
    position: relative;
}
.globe-orbits {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}
.orbit-symbol {
    font-size: 2.2rem;
    font-weight: bold;
    dominant-baseline: middle;
    text-anchor: middle;
    paint-order: stroke fill;
    stroke: #fff;
    stroke-width: 2px;
    filter: drop-shadow(0 2px 6px rgba(44,62,80,0.15));
}
.orbit1 {
    fill: #3498db;
    animation: orbit-rotate1 7s linear infinite;
    transform-origin: 200px 200px;
}
.orbit2 {
    fill: #2c3e50;
    animation: orbit-rotate2 10s linear infinite;
    transform-origin: 200px 200px;
}
.orbit3 {
    fill: #bfa14a;
    animation: orbit-rotate3 13s linear infinite;
    transform-origin: 200px 200px;
}
@keyframes orbit-rotate1 {
    100% { transform: rotate(360deg); }
}
@keyframes orbit-rotate2 {
    100% { transform: rotate(-360deg); }
}
@keyframes orbit-rotate3 {
    100% { transform: rotate(360deg); }
}
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .service-card {
        margin-bottom: 1rem;
        padding: 1.5rem;
    }
    
    .service-icon {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
    }
    
    .service-card p {
        font-size: 0.9rem;
    }
    
    .notification {
        left: 20px;
        right: 20px;
        transform: translateY(-120%);
    }
    
    .notification.show {
        transform: translateY(0);
    }
    
    .hero-animation {
        max-width: 300px;
        margin-top: 2rem;
    }
    
    .money-symbol {
        font-size: 20px;
    }
    
    .globe-container {
        max-width: 300px;
        margin-top: 2rem;
    }
    
    .globe {
        width: 250px;
        height: 250px;
    }
    
    .globe-static {
        max-width: 300px;
        margin-top: 2rem;
    }
    .globe-orbits {
        width: 100%;
        height: 100%;
    }
    .orbit-symbol {
        font-size: 1.5rem;
    }
}

.navbar-brand {
    font-size: 2.1rem;
    font-weight: bold;
    letter-spacing: 1px;
} 