/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    overflow-x: hidden;
    background: linear-gradient(135deg, #0d1f0d 0%, #1a3d1a 50%, #0a150a 100%);
    min-height: 100vh;
}

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

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

.floating-shapes {
    position: relative;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #22c55e, #16a34a);
    border-radius: 50%;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #65a30d, #4d7c0f);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    top: 20%;
    right: 15%;
    animation-delay: 1s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, #15803d, #166534);
    border-radius: 20px;
    bottom: 20%;
    left: 20%;
    animation-delay: 2s;
}

.shape-4 {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, #84cc16, #65a30d);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    bottom: 30%;
    right: 20%;
    animation-delay: 3s;
}

.shape-5 {
    width: 90px;
    height: 90px;
    background: linear-gradient(45deg, #059669, #047857);
    border-radius: 0 50% 50% 50%;
    top: 50%;
    left: 50%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-20px) rotate(120deg);
    }
    66% {
        transform: translateY(20px) rotate(240deg);
    }
}

/* Content Styles */
.content {
    max-width: 800px;
    width: 100%;
    text-align: center;
    z-index: 1;
}

/* Logo Section */
.logo-section {
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.logo-image {
    width: 120px;
    height: auto;
    max-width: 100%;
    filter: drop-shadow(0 0 20px rgba(34, 197, 94, 0.3));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 30px rgba(34, 197, 94, 0.5));
}

.brand-name {
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #22c55e, #16a34a, #15803d);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(34, 197, 94, 0.5);
}

.logo-underline {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #22c55e, #16a34a);
    margin: 0 auto;
    border-radius: 2px;
    animation: expandWidth 1.5s ease-out 0.5s both;
}

@keyframes expandWidth {
    from {
        width: 0;
    }
    to {
        width: 100px;
    }
}

/* Coming Soon Section */
.coming-soon-section {
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.coming-soon-title {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.tagline {
    font-size: 1.5rem;
    font-weight: 400;
    color: #a0aec0;
    margin-bottom: 1.5rem;
}

.description {
    font-size: 1.1rem;
    color: #cbd5e0;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Services Preview */
.services-preview {
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.services-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #ffffff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.service-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem 1rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(34, 197, 94, 0.2);
}

.service-item i {
    font-size: 2.5rem;
    color: #22c55e;
    margin-bottom: 1rem;
}

.service-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.service-item p {
    font-size: 0.9rem;
    color: #a0aec0;
    line-height: 1.5;
}

/* Contact Section */
.contact-section {
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 1.2s both;
}

.contact-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 1rem 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(34, 197, 94, 0.3);
}

.contact-item i {
    font-size: 1.2rem;
    color: #22c55e;
}

.contact-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #22c55e;
}

.contact-text {
    color: #ffffff;
    font-weight: 500;
}

/* Newsletter Section */
.newsletter-section {
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 1.5s both;
}

.newsletter-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.newsletter-description {
    font-size: 1.1rem;
    color: #a0aec0;
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    max-width: 400px;
    margin: 0 auto;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.email-input {
    flex: 1;
    min-width: 250px;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: #ffffff;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.email-input::placeholder {
    color: #a0aec0;
}

.email-input:focus {
    border-color: #22c55e;
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.3);
}

.subscribe-btn {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.subscribe-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(34, 197, 94, 0.4);
}

.form-message {
    margin-top: 1rem;
    padding: 0.8rem;
    border-radius: 8px;
    font-weight: 500;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.form-message.show {
    opacity: 1;
}

.form-message.success {
    background: rgba(72, 187, 120, 0.2);
    border: 1px solid #48bb78;
    color: #48bb78;
}

.form-message.error {
    background: rgba(245, 101, 101, 0.2);
    border: 1px solid #f56565;
    color: #f56565;
}

/* Social Section */
.social-section {
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 1.8s both;
}

.social-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

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

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(34, 197, 94, 0.3);
    background: rgba(34, 197, 94, 0.2);
}

.social-link i {
    font-size: 1.2rem;
}

/* Footer */
.footer {
    margin-top: auto;
    padding: 1rem 0;
    text-align: center;
    color: #718096;
    font-size: 0.9rem;
    animation: fadeIn 1s ease-out 2s both;
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

    .brand-name {
        font-size: 2.5rem;
    }

    .coming-soon-title {
        font-size: 2rem;
    }

    .tagline {
        font-size: 1.2rem;
    }

    .logo-image {
        width: 100px;
    }

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

    .contact-info {
        flex-direction: column;
        gap: 1rem;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 1rem;
    }

    .email-input {
        min-width: 100%;
    }

    .social-links {
        gap: 0.5rem;
    }

    .social-link {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .brand-name {
        font-size: 2rem;
        letter-spacing: 0.1em;
    }

    .coming-soon-title {
        font-size: 1.8rem;
    }

    .services-title,
    .contact-title,
    .newsletter-title {
        font-size: 1.5rem;
    }

    .time-unit .number {
        font-size: 1.5rem;
    }

    .service-item {
        padding: 1.5rem 1rem;
    }

    .service-item i {
        font-size: 2rem;
    }
}