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

body {
    font-family: 'Poppins', sans-serif;
    background: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
}

.container {
    width: 100%;
    max-width: 1000px;
    padding: 20px;
}

.coming-soon-wrapper {
    background: white;
    border-radius: 0;
    box-shadow: none;
    padding: 60px 40px;
    text-align: center;
    animation: slideIn 0.6s ease-out;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

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

.content {
    max-width: 100%;
    margin: 0 auto;
    text-align: left;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.logo h1 {
    font-size: 2rem;
    color: #ec5f65;
    margin-bottom: 30px;
    font-weight: 700;
    letter-spacing: -1px;
    text-align: center;
}

.heading {
    font-size: 2.8rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.subheading {
    font-size: 1rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
    font-weight: 400;
}

.countdown {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
    margin-top: 30px;
}

.countdown-item {
    background: #f8f8f8;
    padding: 25px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    border-top: 4px solid #ec5f65;
}

.countdown-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(236, 95, 101, 0.15);
}

.countdown-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ec5f65;
    margin-bottom: 8px;
}

.countdown-label {
    font-size: 0.8rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.newsletter-section {
    margin-bottom: 40px;
}

.newsletter-text {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 15px;
    font-weight: 500;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-size: 0.95rem;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #ec5f65;
}

.newsletter-form button {
    padding: 14px 32px;
    background: #ec5f65;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.newsletter-form button:hover {
    background: #d94a4f;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(236, 95, 101, 0.3);
}

.newsletter-form button:active {
    transform: translateY(0);
}

.newsletter-success {
    color: #4caf50;
    font-size: 0.95rem;
    font-weight: 600;
}

.social-links {
    display: flex;
    justify-content: flex-start;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
    border-radius: 50%;
    color: #ec5f65;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

.social-icon:hover {
    background: #ec5f65;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(236, 95, 101, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .coming-soon-wrapper {
        padding: 40px 20px;
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .logo h1 {
        font-size: 1.8rem;
    }

    .heading {
        font-size: 2rem;
    }

    .subheading {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }

    .countdown {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-bottom: 25px;
    }

    .countdown-value {
        font-size: 2rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form button {
        width: 100%;
    }

    .social-links {
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .coming-soon-wrapper {
        padding: 25px 15px;
        border-radius: 0;
    }

    .logo h1 {
        font-size: 1.5rem;
    }

    .heading {
        font-size: 1.6rem;
    }

    .countdown {
        grid-template-columns: repeat(2, 1fr);
    }

    .countdown-item {
        padding: 15px 10px;
    }

    .countdown-value {
        font-size: 1.8rem;
    }

    .countdown-label {
        font-size: 0.7rem;
    }

    .social-links {
        gap: 12px;
    }

    .social-icon {
        width: 36px;
        height: 36px;
    }

    .social-icon svg {
        width: 18px;
        height: 18px;
    }
}
