.tz-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #FFFFFF;
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.tz-preloader.is-loaded {
    opacity: 0;
    visibility: hidden;
}

.tz-preloader-inner {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tz-spinner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 4px solid rgba(27, 122, 43, 0.1);
    border-top: 4px solid #1B7A2B;
    border-radius: 50%;
    animation: tz-spin 1s linear infinite;
}

.tz-spinner::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 4px solid transparent;
    border-top: 4px solid #F5A623;
    border-radius: 50%;
    animation: tz-spin 1.5s linear infinite;
}

.tz-preloader-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: #1B7A2B;
    z-index: 1;
    animation: tz-pulse 2s ease-in-out infinite;
}

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

@keyframes tz-pulse {
    0%, 100% { opacity: 0.6; transform: scale(0.95); }
    50% { opacity: 1; transform: scale(1.05); }
}
