* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2c5aa0;
    --secondary-color: #d4af37;
    --accent-color: #e74c3c;
    --text-dark: #2d3748;
    --text-light: #718096;
    --background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --card-bg: #ffffff;
    --shadow: 0 20px 40px rgba(0,0,0,0.1);
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--background);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    line-height: 1.6;
}

.maintenance-container {
    background: var(--card-bg);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    box-shadow: var(--shadow);
    max-width: 1000px;
    width: 95%;
    margin: 20px;
    animation: fadeIn 0.8s ease-in-out;
}

/* Header Styles */
.header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid #f1f5f9;
}

.logo {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), #4a6fc1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: white;
    font-weight: bold;
    box-shadow: 0 8px 20px rgba(44, 90, 160, 0.3);
}

.company-info {
    text-align: left;
}

.company-name {
    font-size: 2.5em;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.company-tagline {
    font-size: 1.2em;
    color: var(--text-light);
    font-weight: 400;
}

/* Main Content */
.main-content {
    margin-bottom: 40px;
}

.construction-status {
    margin-bottom: 30px;
}

.status-icon {
    font-size: 4em;
    margin-bottom: 20px;
}

.construction-status h2 {
    font-size: 2.2em;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.status-description {
    font-size: 1.2em;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Progress Section */
.progress-section {
    margin: 40px 0;
}

.progress-bar {
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
    margin: 20px auto;
    overflow: hidden;
    max-width: 400px;
}

.progress {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    width: 75%;
    animation: progressAnimation 2s ease-in-out infinite;
}

@keyframes progressAnimation {
    0% { transform: translateX(-100%); }
    50% { transform: translateX(0); }
    100% { transform: translateX(100%); }
}

.progress-text {
    font-size: 0.9em;
    color: var(--text-light);
    font-weight: 500;
}

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.info-card {
    background: #f8fafc;
    border-radius: 16px;
    padding: 30px;
    text-align: left;
    border-left: 4px solid var(--primary-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.card-icon {
    font-size: 2.5em;
    margin-bottom: 15px;
}

.info-card h3 {
    font-size: 1.4em;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.card-content {
    color: var(--text-dark);
}

.address {
    margin-top: 10px;
    line-height: 1.5;
    color: var(--text-light);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}

.contact-icon {
    font-size: 1.2em;
    margin-top: 2px;
}

.contact-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

/* About Section */
.about-section {
    background: #f1f8ff;
    border-radius: 16px;
    padding: 30px;
    margin-top: 40px;
    text-align: left;
}

.about-section h3 {
    font-size: 1.6em;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

.about-content p {
    margin-bottom: 15px;
    color: var(--text-dark);
    line-height: 1.7;
}

.highlight {
    background: linear-gradient(120deg, var(--secondary-color) 0%, var(--secondary-color) 100%);
    background-repeat: no-repeat;
    background-size: 100% 0.4em;
    background-position: 0 88%;
    font-weight: 600;
    padding: 5px 0;
}

/* Footer */
.footer {
    border-top: 1px solid #e2e8f0;
    padding-top: 30px;
    margin-top: 40px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 25px;
    background: #f7fafc;
    transition: all 0.3s ease;
    font-weight: 500;
}

.social-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.social-icon {
    font-size: 1.2em;
}

.copyright {
    color: var(--text-light);
    font-size: 0.9em;
}

/* Animations */
@keyframes fadeIn {
    from { 
        opacity: 0; 
        transform: translateY(30px) scale(0.95); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0) scale(1); 
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .maintenance-container {
        padding: 30px 20px;
        margin: 15px;
    }

    .header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .company-info {
        text-align: center;
    }

    .company-name {
        font-size: 2em;
    }

    .logo {
        width: 80px;
        height: 80px;
        font-size: 36px;
    }

    .construction-status h2 {
        font-size: 1.8em;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .info-card {
        padding: 20px;
    }

    .social-links {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .social-link {
        width: 200px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .maintenance-container {
        padding: 20px 15px;
    }

    .company-name {
        font-size: 1.8em;
    }

    .construction-status h2 {
        font-size: 1.5em;
    }

    .status-icon {
        font-size: 3em;
    }
}