* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    overflow-x: hidden;
    position: relative;
}

/* Video Background */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 60, 114, 0.85);
    z-index: 1;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeIn 1s ease-in;
}

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

/* Logo Section */
.logo-section {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(255, 204, 0, 0.3);
}

.logo {
    max-width: 300px;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Construction Section */
.construction-section {
    text-align: center;
    margin-bottom: 3rem;
}

.construction-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.construction-icon i {
    color: #ffcc00;
    animation: bounce 2s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(255, 204, 0, 0.5));
}

.construction-icon i:nth-child(2) {
    animation-delay: 0.3s;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.construction-section h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 700;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.tagline {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    margin-bottom: 2.5rem;
}

.contact-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    color: #ffcc00;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 1.8rem;
    background: rgba(30, 60, 114, 0.6);
    border-radius: 12px;
    border: 1px solid rgba(255, 204, 0, 0.3);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(30, 60, 114, 0.8);
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(255, 204, 0, 0.3);
    border-color: #ffcc00;
}

.contact-item i {
    font-size: 2.2rem;
    color: #ffcc00;
    min-width: 40px;
    margin-top: 4px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.contact-details .label {
    font-size: 0.85rem;
    color: #ffcc00;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.contact-details a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #ffcc00;
}

.contact-details span:not(.label) {
    font-size: 1.05rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.5;
}

/* Info Section */
.info-section {
    text-align: center;
    padding-top: 2rem;
    border-top: 2px solid rgba(255, 204, 0, 0.3);
}

.mc-number {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffcc00;
    margin-bottom: 0.8rem;
    letter-spacing: 2px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
    .content {
        padding: 2rem 1.5rem;
    }

    .logo {
        max-width: 220px;
    }

    .construction-section h1 {
        font-size: 2.2rem;
    }

    .tagline {
        font-size: 1.1rem;
    }

    .contact-section h2 {
        font-size: 1.8rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .contact-item {
        padding: 1.5rem;
    }

    .construction-icon {
        font-size: 2.5rem;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .content {
        padding: 1.5rem 1rem;
    }

    .logo {
        max-width: 180px;
    }

    .construction-section h1 {
        font-size: 1.8rem;
    }

    .tagline {
        font-size: 1rem;
    }

    .contact-section h2 {
        font-size: 1.5rem;
    }

    .construction-icon {
        font-size: 2rem;
        gap: 1rem;
    }

    .contact-item {
        padding: 1.2rem;
    }

    .contact-item i {
        font-size: 1.8rem;
    }
}
