/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    overflow-x: hidden;
    position: relative;
}

/* Dark Background with Subtle Pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 25% 25%, rgba(120, 119, 198, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 119, 198, 0.1) 0%, transparent 50%),
        linear-gradient(45deg, transparent 49%, rgba(255, 255, 255, 0.02) 50%, transparent 51%);
    background-size: 100% 100%, 100% 100%, 20px 20px;
    z-index: -1;
}

/* Maintenance Container */
.maintenance-container {
    min-height: 100vh;
    position: relative;
    padding: 20px;
}

/* Company Logo - Top Left */
.logo-top-left {
    position: fixed;
    top: 30px;
    left: 30px;
    z-index: 1000;
}

.company-logo {
    max-width: 180px;
    max-height: 80px;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
}

.company-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.4));
}

/* Message Section - Left Side */
.message-section {
    padding: 40px;
    max-width: 600px;
    margin: 0 auto;
}

.maintenance-icon {
    text-align: center;
    margin-bottom: 30px;
}

.maintenance-icon i {
    font-size: 4rem;
    color: #667eea;
    text-shadow: 0 0 20px rgba(102, 126, 234, 0.5);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.maintenance-title {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(45deg, #667eea, #764ba2, #f093fb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
    line-height: 1.2;
    text-align: center;
}

.maintenance-description {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #e0e0e0;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 400;
}

/* Progress Bar */
.progress-container {
    margin-bottom: 30px;
}

.progress {
    height: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.progress-bar {
    background: linear-gradient(45deg, #667eea, #764ba2, #f093fb);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.progress-text {
    color: #b0b0b0;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    display: block;
}

/* Contact Section */
.contact-section {
    margin-bottom: 30px;
}

.contact-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(102, 126, 234, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.contact-icon i {
    font-size: 1.2rem;
    color: #ffffff;
}

.contact-info h5 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 5px;
}

.contact-info p {
    margin: 0;
    color: #b0b0b0;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Social Media Section */
.social-section {
    margin-bottom: 30px;
}

.social-title {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.1rem;
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #ffffff;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    background: linear-gradient(45deg, #833ab4, #fd1d1d);
    box-shadow: 0 4px 12px rgba(131, 58, 180, 0.3);
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 20px rgba(131, 58, 180, 0.4);
    color: #ffffff;
    text-decoration: none;
}

/* WhatsApp Section */
.whatsapp-section {
    text-align: center;
}

.whatsapp-btn {
    background: linear-gradient(45deg, #25d366, #128c7e);
    color: #ffffff;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    color: #ffffff;
    text-decoration: none;
}

.whatsapp-btn i {
    font-size: 1.3rem;
}

/* Illustration Section - Right Side */
.illustration-section {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    padding: 40px;
}

.illustration-container {
    position: relative;
    max-width: 500px;
    width: 100%;
}

.maintenance-illustration {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    transition: all 0.4s ease;
    filter: drop-shadow(0 10px 20px rgba(102, 126, 234, 0.2));
}

.maintenance-illustration:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    filter: drop-shadow(0 15px 30px rgba(102, 126, 234, 0.3));
}

.illustration-container::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, #667eea, #764ba2, #f093fb);
    border-radius: 25px;
    opacity: 0.3;
    z-index: -1;
    animation: borderGlow 3s ease-in-out infinite;
}

@keyframes borderGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

/* Responsive Design */
@media (max-width: 991px) {
    .logo-top-left {
        position: relative;
        top: 20px;
        left: 20px;
        margin-bottom: 30px;
    }
    
    .company-logo {
        max-width: 150px;
        max-height: 60px;
    }
    
    .message-section {
        padding: 20px;
        text-align: center;
    }
    
    .maintenance-title {
        font-size: 2.5rem;
    }
    
    .maintenance-description {
        font-size: 1.1rem;
    }
    
    .illustration-section {
        height: auto;
        padding: 20px;
        margin-top: 30px;
    }
    
    .maintenance-illustration {
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .maintenance-container {
        padding: 10px;
    }
    
    .logo-top-left {
        text-align: center;
        position: relative;
        top: 10px;
        left: 0;
        margin-bottom: 20px;
    }
    
    .company-logo {
        max-width: 120px;
        max-height: 50px;
    }
    
    /* Move illustration to top on mobile */
    .row {
        flex-direction: column-reverse;
    }
    
    .illustration-section {
        order: -1;
        height: auto;
        padding: 10px;
        margin-bottom: 20px;
    }
    
    .illustration-container {
        max-width: 100%;
        width: 100%;
    }
    
    .maintenance-illustration {
        width: 100%;
        max-width: 100%;
        height: auto;
        border-radius: 15px;
    }
    
    .message-section {
        padding: 15px;
        order: 1;
    }
    
    .maintenance-title {
        font-size: 2rem;
    }
    
    .maintenance-description {
        font-size: 1rem;
    }
    
    .contact-card {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        padding: 15px;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
    }
    
    .contact-icon i {
        font-size: 1rem;
    }
    
    .social-link {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .whatsapp-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .maintenance-title {
        font-size: 1.8rem;
    }
    
    .maintenance-description {
        font-size: 0.95rem;
    }
    
    .contact-section .row {
        margin: 0;
    }
    
    .contact-section .col-md-6 {
        padding: 0 5px;
    }
    
    .illustration-section {
        padding: 5px;
        margin-bottom: 15px;
    }
    
    .maintenance-illustration {
        width: 100%;
        max-width: 100%;
        border-radius: 12px;
    }
}

/* Loading Animation */
.loading-dots {
    display: inline-block;
}

.loading-dots::after {
    content: '';
    animation: dots 1.5s steps(5, end) infinite;
}

@keyframes dots {
    0%, 20% { content: ''; }
    40% { content: '.'; }
    60% { content: '..'; }
    80%, 100% { content: '...'; }
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #764ba2, #f093fb);
}

/* Smooth transitions */
* {
    transition: all 0.3s ease;
}

/* Cursor pointer for interactive elements */
.contact-card, .social-link, .whatsapp-btn {
    cursor: pointer;
}
