

.maintenance-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 70px;
}

.maintenance-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 600px;
    width: 90%;
    padding: 3rem;
    text-align: center;
}

.maintenance-icon {
    font-size: 4rem;
    color: #2196f3;
    margin-bottom: 2rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.maintenance-title {
    color: #1976d2;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.maintenance-text {
    color: #546e7a;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.progress-container {
    margin: 2rem 0;
}

.progress {
    height: 8px;
    border-radius: 10px;
    background-color: #e3f2fd;
}

.progress-bar {
    background: linear-gradient(90deg, #2196f3, #64b5f6);
    border-radius: 10px;
    animation: loading 3s ease-in-out infinite;
}

@keyframes loading {
    0% { width: 0%; }
    50% { width: 70%; }
    100% { width: 100%; }
}

.contact-info {
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #e3f2fd, #f3e5f5);
    border-radius: 15px;
    border-left: 4px solid #2196f3;
}

.contact-info h5 {
    color: #1976d2;
    margin-bottom: 1rem;
}

.contact-info p {
    color: #546e7a;
    margin-bottom: 0;
}

.floating-shapes {
    position: fixed;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.shape {
    position: absolute;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.shape:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape:nth-child(2) {
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.shape:nth-child(3) {
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

@media (max-width: 768px) {
    .maintenance-card {
        padding: 2rem;
        margin: 1rem;
    }

    .maintenance-title {
        font-size: 2rem;
    }

    .maintenance-icon {
        font-size: 3rem;
    }
}
