* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #0a0a0a;
    color: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 100vh;
    padding: 4rem 2rem;
    position: relative;
    z-index: 1;
}

.logo-container {
    margin-bottom: 3rem;
}

.logo {
    max-width: 200px;
    height: auto;
    opacity: 0;
    transform: translateY(-20px);
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.content {
    text-align: center;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.coming-soon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
}

.motto {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    opacity: 0;
    margin-bottom: 3rem;
}

.motto-text {
    font-size: 1.2rem;
    color: #a0a0a0;
}

.company-info {
    max-width: 600px;
    margin: 3rem auto;
    opacity: 0;
    transform: translateY(20px);
}

.description {
    color: #a0a0a0;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    justify-items: center;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    color: #a0a0a0;
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    width: 100%;
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.feature span:last-child {
    font-size: 0.95rem;
    line-height: 1.4;
}

.contact-section {
    margin-top: 4rem;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(20px);
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

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

.notify-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
    width: 100%;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.notify-form input[type="email"],
.notify-form textarea {
    padding: 0.8rem 1.5rem;
    border: 1px solid #333;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    width: 100%;
    font-family: 'Poppins', sans-serif;
}

.notify-form textarea {
    resize: vertical;
    min-height: 100px;
    max-height: 200px;
}

.notify-form input::placeholder,
.notify-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.notify-form button {
    padding: 0.8rem 1.5rem;
    background: linear-gradient(45deg, #3498db, #2ecc71);
    border: none;
    border-radius: 5px;
    color: white;
    cursor: pointer;
    transition: transform 0.3s ease;
    width: 100%;
}

.notify-form button:hover {
    transform: translateY(-2px);
}

.contact-info {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.contact-link {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.contact-link:hover {
    color: #2ecc71;
    transform: translateY(-1px);
}

.contact-info p {
    color: #a0a0a0;
    margin: 0.5rem 0;
}

.address {
    color: #a0a0a0;
    margin-top: 0.5rem;
}

.animated-circles {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    pointer-events: none;
}

.circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, #3498db, #2ecc71);
    opacity: 0.1;
}

.circle:nth-child(1) {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -150px;
}

.circle:nth-child(2) {
    width: 400px;
    height: 400px;
    bottom: -200px;
    left: -200px;
}

.circle:nth-child(3) {
    width: 200px;
    height: 200px;
    top: 50%;
    right: 10%;
}

@media (max-width: 768px) {
    .container {
        padding: 2rem 1rem;
    }

    .logo-container {
        margin-bottom: 2rem;
    }

    .logo {
        max-width: 150px;
    }
    
    .coming-soon {
        font-size: 2rem;
    }
    
    .motto-text {
        font-size: 1rem;
    }

    .features {
        gap: 2rem;
    }

    .feature {
        flex-basis: 100%;
    }

    .notify-form {
        padding: 0 1rem;
    }

    .contact-section {
        margin-top: 3rem;
        margin-bottom: 2rem;
        padding: 1.5rem;
    }
}
