/* Loader Styles */
.loader-gsap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loader-gsap-content {
    text-align: center;
}

.loader-gsap-icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    will-change: transform, opacity;
}

.loader-gsap-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    border-radius: 50%;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.loader-gsap-icon-container {
    position: relative;
    margin: 0 auto 24px;
}

.loader-gsap-pulse-bg {
    position: absolute;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 50%;
    filter: blur(24px);
    z-index: -1;
    top: -16px;
    left: -16px;
}

.loader-gsap-text {
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #3b82f6;
    margin-bottom: 12px;
}

.loader-gsap-dots {
    display: flex;
    gap: 4px;
    justify-content: center;
    margin-top: 8px;
}

.loader-gsap-dot {
    width: 6px;
    height: 6px;
    background: #3b82f6;
    border-radius: 50%;
    opacity: 0.3;
}

.loader-gsap-dot:nth-child(1) { animation: loaderPulseDot 1.5s infinite; }
.loader-gsap-dot:nth-child(2) { animation: loaderPulseDot 1.5s infinite 0.2s; }
.loader-gsap-dot:nth-child(3) { animation: loaderPulseDot 1.5s infinite 0.4s; }

@keyframes loaderPulseDot {
    0%, 60%, 100% { opacity: 0.3; transform: scale(0.8); }
    30% { opacity: 1; transform: scale(1); }
}