/* Reset & Core Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background: radial-gradient(circle at 10% 20%, rgb(242, 252, 243) 0%, rgb(227, 247, 229) 90%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    color: #2c3e50;
}

/* Container */
.maintenance-container {
    width: 100%;
    max-width: 600px;
    perspective: 1000px;
}

/* Premium Card */
.card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 24px;
    padding: 40px 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

/* Image Wrapper */
.image-wrapper {
    margin-bottom: 30px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
    background: #fff;
    padding: 10px;
}

.maintenance-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* Info Section */
.info-section h1 {
    font-size: 2rem;
    font-weight: 800;
    color: #1e3d2f;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.info-section p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #576f63;
    margin-bottom: 20px;
}

.divider {
    height: 2px;
    width: 60px;
    background: linear-gradient(90deg, #4caf50, #8bc34a);
    margin: 20px auto;
    border-radius: 2px;
}

.contact-info {
    font-size: 0.95rem !important;
    margin-bottom: 0 !important;
}

.contact-info a {
    color: #2e7d32;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.contact-info a:hover {
    color: #1b5e20;
    text-decoration: underline;
}

/* Responsive adjust */
@media (max-width: 480px) {
    .card {
        padding: 30px 20px;
    }
    .info-section h1 {
        font-size: 1.6rem;
    }
}
