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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0f0f23 0%, #1a0f3d 50%, #0f0f23 100%);
    color: #e0e0e0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
    position: relative;
}

/* Animated background elements */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 153, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
    animation: glowShift 8s ease-in-out infinite;
}

@keyframes glowShift {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 0.8;
    }
}

.container {
    width: 100%;
    max-width: 900px;
    padding: 40px 20px;
    position: relative;
    z-index: 1;
}

.content {
    text-align: center;
}

.logo-section {
    margin-bottom: 50px;
}

.logo {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #00d4ff, #0099ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
}

.tagline {
    font-size: 1.2rem;
    color: #00d4ff;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.main-section {
    margin-bottom: 60px;
    animation: fadeIn 1s ease-out 0.3s both;
}

.title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

.description {
    font-size: 1.1rem;
    color: #b0b0b0;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.countdown {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 20px;
    margin: 50px 0;
    animation: slideUp 0.8s ease-out 0.5s both;
}

.countdown-item {
    background: rgba(0, 212, 255, 0.1);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 12px;
    padding: 20px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.countdown-item:hover {
    border-color: #00d4ff;
    background: rgba(0, 212, 255, 0.2);
    transform: translateY(-5px);
}

.countdown-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #00d4ff;
    margin-bottom: 5px;
}

.countdown-label {
    display: block;
    font-size: 0.9rem;
    color: #a0a0a0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.email-form {
    display: flex;
    gap: 10px;
    margin: 40px 0;
    animation: slideUp 0.8s ease-out 0.7s both;
    flex-wrap: wrap;
    justify-content: center;
}

.email-form input {
    flex: 1;
    min-width: 250px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 8px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.email-form input:focus {
    outline: none;
    border-color: #00d4ff;
    background: rgba(0, 212, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

.email-form input::placeholder {
    color: #707070;
}

.email-form button {
    padding: 15px 40px;
    background: linear-gradient(135deg, #00d4ff, #0099ff);
    border: none;
    border-radius: 8px;
    color: #0f0f23;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.email-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
}

.email-form button:active {
    transform: translateY(-1px);
}

.subscription-text {
    font-size: 0.95rem;
    color: #00d4ff;
    min-height: 24px;
    margin-top: 15px;
}

.features {
    margin: 80px 0;
    animation: fadeIn 1s ease-out 1s both;
}

.features h3 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: #ffffff;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    padding: 0 20px;
}

.feature-item {
    background: rgba(0, 212, 255, 0.08);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 12px;
    padding: 30px 20px;
    transition: all 0.3s ease;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.feature-item:hover {
    background: rgba(0, 212, 255, 0.15);
    border-color: #00d4ff;
    transform: translateY(-10px);
}

.feature-icon {
    display: block;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.feature-item p {
    font-size: 1.1rem;
    color: #b0b0b0;
    line-height: 1.5;
}

/* Contact Section */
.contact-section {
    margin: 80px 0;
    padding: 50px 40px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(0, 153, 255, 0.05) 100%);
    border: 2px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.contact-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.contact-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -30%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(0, 153, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.contact-section h3 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: #ffffff;
    position: relative;
    z-index: 1;
}

.contact-form {
    margin: 0 auto;
    position: relative;
    z-index: 1;
    max-width: 600px;
}

.contact-form .form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    flex: 1;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 8px;
    color: #ffffff;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.contact-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2300d4ff' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

.contact-form select option {
    background: #1a0f3d;
    color: #ffffff;
}

.contact-form textarea {
    width: 100%;
    resize: vertical;
    min-height: 120px;
    margin-bottom: 15px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #00d4ff;
    background: rgba(0, 212, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #707070;
}

.contact-form button {
    width: 100%;
    padding: 15px 40px;
    background: linear-gradient(135deg, #00d4ff, #0099ff);
    border: none;
    border-radius: 8px;
    color: #0f0f23;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-form button:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
}

.contact-form button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.contact-status {
    font-size: 0.95rem;
    min-height: 24px;
    margin-top: 15px;
}

.footer {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 212, 255, 0.1);
    animation: fadeIn 1s ease-out 1.2s both;
}

.footer p {
    font-size: 0.9rem;
    color: #707070;
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 50%;
    color: #00d4ff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 600;
}

.social-links a:hover {
    background: rgba(0, 212, 255, 0.3);
    border-color: #00d4ff;
    transform: translateY(-3px);
}

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

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

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

@media (max-width: 768px) {
    .logo {
        font-size: 2.5rem;
    }
    
    .title {
        font-size: 2rem;
    }
    
    .countdown {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .countdown-value {
        font-size: 2rem;
    }
    
    .email-form {
        flex-direction: column;
    }
    
    .email-form input,
    .email-form button {
        width: 100%;
    }
    
    .contact-form .form-row {
        flex-direction: column;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }

    .whatsapp-button {
        bottom: 30px;
        right: 30px;
        width: 60px;
        height: 60px;
    }
}

/* WhatsApp Chatbot Styles */
.whatsapp-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.whatsapp-button {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25d366, #20ba5a);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    padding: 0;
}

.whatsapp-button:hover {
    background: linear-gradient(135deg, #20ba5a, #1fa851);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
    transform: scale(1.1);
}

.whatsapp-button:active {
    transform: scale(0.95);
}

.whatsapp-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

/* Chatbot Bubble */
.whatsapp-bubble {
    position: absolute;
    bottom: 90px;
    right: 0;
    width: 320px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
    display: none;
    flex-direction: column;
    overflow: hidden;
    animation: slideUp 0.3s ease;
    opacity: 0;
}

.whatsapp-bubble.active {
    display: flex;
    opacity: 1;
}

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

.bubble-header {
    background: linear-gradient(135deg, #00d4ff, #0099ff);
    color: white;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bubble-header h3 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

.bubble-close {
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.bubble-close:hover {
    transform: scale(1.2);
}

.bubble-content {
    padding: 20px 15px;
    color: black;
    font-size: 0.95rem;
    line-height: 1.5;
    border-bottom: 1px solid #f0f0f0;
}

.bubble-content p {
    margin: 0;
}

.bubble-cta {
    display: block;
    padding: 12px 15px;
    background: linear-gradient(135deg, #00d4ff, #0099ff);
    color: white;
    text-decoration: none;
    text-align: center;
    font-weight: 600;
    transition: background 0.3s ease;
}

.bubble-cta:hover {
    background: linear-gradient(135deg, #0099ff, #0077cc);
}

@media (max-width: 480px) {
    .whatsapp-container {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-button {
        width: 60px;
        height: 60px;
    }

    .whatsapp-icon {
        width: 35px;
        height: 35px;
    }

    .whatsapp-bubble {
        width: 280px;
        bottom: 80px;
    }
}