* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1e3a5f;
    --secondary-color: #2c5f8d;
    --accent-color: #3d7bb3;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --whatsapp-color: #25D366;
}

html, body {
    height: 100%;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.4;
    color: var(--text-dark);
    background: var(--bg-light);
    background-image: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(248, 249, 250, 0.85);
    z-index: -1;
}

.maintenance-page {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    gap: 1.5rem;
    padding-top: 3rem;
    position: relative;
    z-index: 1;
}

/* Status Banner */
.status-banner {
    text-align: center;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-shrink: 0;
}

.status-icon {
    font-size: 2rem;
    animation: pulse 2s infinite;
    flex-shrink: 0;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.status-text {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.status-banner h1 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
}

.status-banner p {
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.95;
    line-height: 1.4;
}

/* Services Section */
.services-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.section-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    width: 100%;
}

.service-card {
    background: var(--white);
    padding: 1.25rem;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid var(--border-color);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.service-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.service-icon {
    font-size: 2rem;
    display: block;
}

.service-card h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
    line-height: 1.3;
}

/* Contact Section */
.contact-section {
    width: 100%;
    flex-shrink: 0;
}

.contact-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.contact-btn {
    flex: 1;
    max-width: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.2s;
    border: 2px solid transparent;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.phone-btn:hover {
    border-color: var(--primary-color);
}

.whatsapp-btn:hover {
    border-color: var(--whatsapp-color);
    background: #f0f9f4;
}

.btn-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-text {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
}

.phone-btn .contact-text {
    color: var(--primary-color);
}

.whatsapp-btn .contact-text {
    color: var(--whatsapp-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .maintenance-page {
        padding: 1.5rem 1rem;
        gap: 1.25rem;
        padding-top: 2rem;
    }

    .status-banner {
        padding: 1rem;
        gap: 0.75rem;
        flex-direction: column;
    }

    .status-banner h1 {
        font-size: 1.1rem;
    }

    .status-banner p {
        font-size: 0.85rem;
    }

    .status-icon {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }

    .services-grid {
        gap: 0.75rem;
    }

    .service-card {
        padding: 1rem;
        gap: 0.5rem;
    }

    .service-icon {
        font-size: 1.75rem;
    }

    .service-card h3 {
        font-size: 0.85rem;
    }

    .contact-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .contact-btn {
        max-width: 100%;
        padding: 0.875rem 1.25rem;
    }

    .btn-icon {
        font-size: 1.25rem;
    }

    .contact-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .maintenance-page {
        padding: 1rem 0.75rem;
        gap: 1rem;
        padding-top: 1.5rem;
    }

    .status-banner {
        padding: 0.875rem;
        gap: 0.5rem;
    }

    .status-banner h1 {
        font-size: 0.95rem;
    }

    .status-banner p {
        font-size: 0.8rem;
    }

    .status-icon {
        font-size: 1.25rem;
    }

    .section-title {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .service-card {
        padding: 0.875rem;
    }

    .service-icon {
        font-size: 1.5rem;
    }

    .service-card h3 {
        font-size: 0.8rem;
    }

    .contact-btn {
        padding: 0.75rem 1rem;
    }
}

