* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette - Inspired by IDS Info */
    --primary-blue: #1e3a8a;
    --secondary-blue: #3b82f6;
    --accent-cyan: #06b6d4;
    --light-blue: #dbeafe;
    --dark-blue: #0f172a;
    --gradient-start: #1e40af;
    --gradient-end: #06b6d4;

    /* Neutral Colors */
    --white: #ffffff;
    --light-gray: #f8fafc;
    --gray: #64748b;
    --dark-gray: #334155;

    /* Status Colors */
    --success: #10b981;
    --warning: #f59e0b;

    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 0.75rem;
    --spacing-lg: 1rem;
    --spacing-xl: 1.5rem;
    --spacing-2xl: 2rem;

    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 30px rgba(6, 182, 212, 0.3);

    /* Animation */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

body {
    font-family: var(--font-family);
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    color: var(--white);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    line-height: 1.6;
}



.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(30, 58, 138, 0.1));
    animation: wave 20s linear infinite;
}

.wave1 {
    animation-duration: 20s;
    opacity: 0.3;
}

.wave2 {
    animation-duration: 15s;
    opacity: 0.2;
    animation-delay: -5s;
}

.wave3 {
    animation-duration: 25s;
    opacity: 0.15;
    animation-delay: -10s;
}

@keyframes wave {
    0% {
        transform: translateX(0) translateY(0);
    }

    50% {
        transform: translateX(-25%) translateY(-20px);
    }

    100% {
        transform: translateX(-50%) translateY(0);
    }
}

/* Floating Particles */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: float 8s infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100vh) translateX(50px);
        opacity: 0;
    }
}

/* ========================================
   MAIN CONTAINER
   ======================================== */

/* ========================================
   MAIN CONTAINER
   ======================================== */

.container {
    position: relative;
    z-index: 10;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
}

/* ========================================
   TOP CONTACT BAR
   ======================================== */
.top-bar {
    position: absolute;
    top: 0.9rem;
    display: flex;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.9rem 1.5rem;
    border-radius: 50px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeInDown 0.8s ease;
    font-size: 1rem;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    font-size: 1.2rem;
}

.contact-item svg {
    width: 24px;
    height: 24px;
    color: var(--accent-cyan);
}

.contact-item a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
}

/* ========================================
   BRAND HEADER
   ======================================== */


.logo-container {
    width: 250px;
    height: 270px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    border-radius: 7px;
    padding: 5px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    margin: 1rem auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.logo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* ========================================
   MAINTENANCE CARD
   ======================================== */
.maintenance-card {
    background: var(--white);
    border-radius: 20px;
    padding: 1.5rem 5rem;
    width: 100%;
    max-width: 900px;
    text-align: center;
    box-shadow: 0 30px 40px -5px rgba(0, 0, 0, 0.15), 0 15px 15px -5px rgba(0, 0, 0, 0.04);
    position: relative;
    border-top: 6px solid var(--primary-blue);
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

/* Badge */
.badge-container {
    margin-bottom: 0.75rem;
}

.status-badge {
    background: #e0f2fe;
    /* Light blue bg */
    color: #0284c7;
    /* Darker blue text */
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Maintenance Icon */
.maintenance-icon-wrapper {
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: center;
}

.main-icon-img {
    width: 80px;
    height: auto;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* Typography */
.card-title {
    color: var(--dark-blue);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.card-text {
    color: var(--dark-gray);
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.card-footer-text {
    color: var(--gray);
    font-size: 0.95rem;
    margin-top: 1rem;
}

/* Progress Bar */
.progress-container {
    background: #f1f5f9;
    height: 15px;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.5rem;
    position: relative;
}

.progress-bar {
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-cyan));
    width: 67%;
    /* Simulated progress */
    height: 100%;
    border-radius: 6px;
    animation: shimmer 2s linear infinite;
    position: relative;
    overflow: hidden;
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-image: linear-gradient(-45deg,
            rgba(255, 255, 255, 0.2) 25%,
            transparent 25%,
            transparent 50%,
            rgba(255, 255, 255, 0.2) 50%,
            rgba(255, 255, 255, 0.2) 75%,
            transparent 75%,
            transparent);
    background-size: 20px 20px;
    animation: moveStripes 1s linear infinite;
}

@keyframes moveStripes {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 20px 20px;
    }
}

/* ========================================
   PAGE FOOTER
   ======================================== */
.page-footer {
    margin-top: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    animation: fadeIn 1s ease 0.6s backwards;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 768px) {
    .maintenance-card {
        padding: 2rem;
    }

    .card-title {
        font-size: 1.5rem;
    }

    .top-bar {
        position: relative;
        top: 0;
        margin-bottom: 2rem;
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
        width: 100%;
        max-width: 300px;
    }
}