/* Maintenance Page Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #17a2b8;
    --text-dark: #2c2c2c;
    --text-light: #666666;
    --white: #ffffff;
    --light-bg: #f8f9fa;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #e8f5f5 0%, #ffffff 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.maintenance-container {
    max-width: 800px;
    width: 100%;
}

.maintenance-content {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo {
    margin-bottom: 2rem;
}

.logo img {
    max-width: 250px;
    height: auto;
}

.maintenance-icon {
    margin: 2rem 0;
    animation: rotate 3s linear infinite;
}

.maintenance-icon svg {
    stroke: var(--primary-color);
}

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

h1 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 600;
}

.message {
    margin: 2rem 0;
    padding: 2rem;
    background: #f0f9f9;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.message p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.message p:last-child {
    margin-bottom: 0;
}

.contact-info {
    margin: 2.5rem 0;
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 12px;
}

.contact-info h3 {
    color: var(--text-dark);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 500;
}

.contact-item svg {
    stroke: var(--primary-color);
    flex-shrink: 0;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem 0;
}

.social-links a {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a svg {
    fill: var(--white);
    width: 24px;
    height: 24px;
}

.social-links a:hover {
    background: #128c7e;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(23, 162, 184, 0.3);
}

.footer-text {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding: 1rem;
    }
    
    .maintenance-content {
        padding: 2rem 1.5rem;
    }
    
    .logo img {
        max-width: 200px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .maintenance-icon svg {
        width: 80px;
        height: 80px;
    }
    
    .message {
        padding: 1.5rem;
    }
    
    .contact-info {
        padding: 1.5rem;
    }
    
    .contact-details {
        gap: 0.75rem;
    }
    
    .contact-item {
        font-size: 0.95rem;
    }
    
    .social-links a {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.6rem;
    }
    
    .logo img {
        max-width: 180px;
    }
    
    .contact-details {
        align-items: flex-start;
    }
    
    .contact-item {
        font-size: 0.9rem;
    }
}
