/* ============================================================
   PAGE LOADER
   ============================================================ */
#page-loader {
    position: fixed;
    inset: 0;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}
#page-loader.loader-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.loader-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: loaderPop 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
.loader-svg {
    width: 100px;
    height: 100px;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 16px rgba(38,168,230,0.35));
}
.loader-path-stroke {
    fill: none;
    stroke: #26A8E6;
    stroke-width: 10;
    stroke-linejoin: round;
    stroke-linecap: round;
}
.loader-path-fill {
    fill: #26A8E6;
    opacity: 0;
    animation: loaderFillFade 0.35s 0.65s ease forwards;
}
.loader-ring {
    position: absolute;
    width: 155px;
    height: 155px;
    border-radius: 50%;
    border: 1.5px solid rgba(38, 168, 230, 0.4);
    animation: loaderRingOut 1s 0.45s cubic-bezier(0.2, 0.6, 0.4, 1) forwards;
    opacity: 0;
    transform: scale(0.55);
    z-index: 1;
}
.loader-ring--delay {
    animation-delay: 0.7s;
}
@keyframes loaderPop {
    from { transform: scale(0.6); opacity: 0; }
    to   { transform: scale(1);   opacity: 1; }
}
@keyframes loaderFillFade {
    to { opacity: 1; }
}
@keyframes loaderRingOut {
    0%   { opacity: 0;   transform: scale(0.55); }
    25%  { opacity: 0.7; }
    100% { opacity: 0;   transform: scale(1.9);  }
}
