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

body {
    font-family: 'Arial', sans-serif;
    height: 100vh;
    overflow: hidden;
    background: #1a1a1a;
}

.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(191, 0, 19, 0.13) 0%, rgba(0, 86, 135, 0.9) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 20px;
}

.logo {
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.5s forwards;
}

.logo-placeholder {
    width: 120px;
    height: 120px;
    border: 3px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.content {
    max-width: 600px;
    opacity: 0;
    animation: fadeInUp 1s ease-out 1s forwards;
}

.coming-soon {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.subtitle {
    font-size: 1.4rem;
    margin-bottom: 30px;
    font-weight: 300;
    opacity: 0.9;
    line-height: 1.6;
}

.description {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.8;
    line-height: 1.8;
}

.contact-info {
    margin-top: 40px;
    opacity: 0;
    animation: fadeInUp 1s ease-out 1.5s forwards;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 15px 0;
    font-size: 1.1rem;
    opacity: 0.9;
}

.contact-item svg {
    width: 24px;
    height: 24px;
    margin-right: 15px;
    fill: currentColor;
}

.address-link {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.address-link:hover {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: underline;
}

.phone-link {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.phone-link:hover {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: underline;
}

.notification-form {
    margin-top: 40px;
    opacity: 0;
    animation: fadeInUp 1s ease-out 2s forwards;
}

.form-group {
    display: flex;
    max-width: 400px;
    margin: 0 auto;
    gap: 10px;
}

.email-input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.email-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.email-input:focus {
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.2);
}

.notify-btn {
    padding: 15px 30px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.notify-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.social-links {
    margin-top: 40px;
    margin-bottom: 50px;
    display: flex;
    justify-content: center;
    gap: 20px;
    opacity: 0;
    animation: fadeInUp 1s ease-out 2.5s forwards;
}

.social-link {
    width: 50px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

.social-link svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.mobile-logo {
    display: none;
}

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

@media (max-width: 768px) {
    .mobile-logo {
        display: block;
        margin-bottom: 30px;
        padding-top: 20px;
        opacity: 0;
        animation: fadeInUp 1s ease-out 0.3s forwards;
    }
    
    .mobile-logo img {
        width: 300px;
        height: 300px;
        object-fit: contain;
    }
    
    .coming-soon {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1.2rem;
    }
    
    .description {
        font-size: 1rem;
    }
    
    .form-group {
        flex-direction: column;
        gap: 15px;
    }
    
    .contact-item {
        font-size: 1rem;
    }
    
    .social-links {
        gap: 15px;
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .mobile-logo {
        padding-top: 15px;
        margin-bottom: 25px;
    }
    
    .mobile-logo img {
        width: 300px;
        height: 300px;
    }
    
    .coming-soon {
        font-size: 2rem;
    }
    
    .overlay {
        padding: 15px;
        padding-bottom: 60px;
    }
    
    .logo-placeholder {
        width: 100px;
        height: 100px;
        font-size: 20px;
    }
    
    .social-links {
        gap: 12px;
        margin-bottom: 30px;
    }
    
    .social-link {
        width: 45px;
        height: 45px;
    }
    
    .social-link svg {
        width: 20px;
        height: 20px;
    }
}