/* Globe Animation Styles */
.export-destinations {
    background: linear-gradient(135deg, #f0fdfa 0%, #fff5f5 100%);
    padding: 5rem 0;
}

.globe-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 0;
}

.globe {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.globe-sphere {
    font-size: 8rem;
    animation: rotate 20s linear infinite;
    filter: drop-shadow(0 10px 30px rgba(78, 205, 196, 0.3));
}

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

.orbit {
    position: absolute;
    border: 2px solid;
    border-radius: 50%;
    opacity: 0.3;
}

.orbit-1 {
    width: 220px;
    height: 220px;
    border-color: var(--primary);
    animation: orbit 15s linear infinite;
}

.orbit-2 {
    width: 260px;
    height: 260px;
    border-color: var(--secondary);
    animation: orbit 20s linear infinite reverse;
}

.orbit-3 {
    width: 300px;
    height: 300px;
    border-color: #ffe66d;
    animation: orbit 25s linear infinite;
}

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

.globe-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text);
    text-align: center;
}
