#global-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    z-index: 1000000;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 0.3s ease-in-out;
}

.loader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.spinner-circle {
    width: 80px;
    height: 80px;
    border: 6px solid #E6EBE9;
    border-top: 6px solid #286851;
    border-radius: 50%;
    animation: loader-rotate 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    margin-bottom: 20px;
}

.loader-text {
    font-size: 22px;
    font-weight: 700;
    color: #286851;
    margin-bottom: 15px;
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    letter-spacing: -0.5px;
}

.loader-dots {
    display: flex;
    gap: 10px;
}

.loader-dot {
    width: 10px;
    height: 10px;
    background-color: #286851;
    border-radius: 50%;
    animation: dot-loading 1.4s infinite ease-in-out both;
}

.loader-dot:nth-child(1) {
    animation-delay: -0.32s;
}

.loader-dot:nth-child(2) {
    animation-delay: -0.16s;
}

@keyframes loader-rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes dot-loading {
    0%, 80%, 100% { 
        transform: scale(0);
        opacity: 0.3;
    } 
    40% { 
        transform: scale(1.0);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .spinner-circle {
        width: 60px;
        height: 60px;
        border-width: 5px;
    }
    .loader-text {
        font-size: 18px;
    }
}
