/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Header Styles */
.header {
    padding: 2rem 0;
    text-align: center;
}

.logo-img {
    height: 80px;
    width: auto;
    margin-bottom: 0.5rem;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.tagline {
    font-size: 1.2rem;
    color: #e0e6ff;
    font-weight: 300;
    letter-spacing: 2px;
}

/* Main Content */
.main-content {
    padding: 2rem 0;
}

.hero-section {
    text-align: center;
    margin-bottom: 4rem;
}

.coming-soon {
    font-size: 4rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease-out;
}

.description {
    font-size: 1.3rem;
    color: #e0e6ff;
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.8;
    animation: fadeInUp 1s ease-out 0.3s both;
}

/* Features Section */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.feature i {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 1rem;
    display: block;
}

.feature h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature p {
    color: #e0e6ff;
    font-size: 1rem;
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem;
    margin: 2rem 0;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    animation: fadeInUp 1s ease-out 0.9s both;
}

.contact-section h3 {
    font-size: 2.5rem;
    color: #333;
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-section > p {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e1e5e9;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #00d4ff;
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

/* Checkbox Styling */
.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 0;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #e1e5e9;
    border-radius: 4px;
    margin-right: 10px;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #00d4ff;
    border-color: #00d4ff;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.submit-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

/* Contact Info */
.contact-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 1rem;
}

.contact-item i {
    color: #667eea;
    font-size: 1.2rem;
}

/* Footer */
.footer {
    text-align: center;
    padding: 2rem 0;
    color: #e0e6ff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: #e0e6ff;
    font-size: 1.5rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
    color: #fff;
    transform: translateY(-2px);
}

/* Data Grid Background Animation */
.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* Data Grid Dots */
.circle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: #00ffff;
    border-radius: 50%;
    box-shadow: 0 0 8px #00ffff, 0 0 16px #00ffff;
    animation: dot-pulse 4s ease-in-out infinite;
}

.circle-1 { top: 15%; left: 10%; animation-delay: 0s; }
.circle-2 { top: 15%; left: 20%; animation-delay: 0.2s; }
.circle-3 { top: 15%; left: 30%; animation-delay: 0.4s; }
.circle-4 { top: 15%; left: 40%; animation-delay: 0.6s; }
.circle-5 { top: 15%; left: 50%; animation-delay: 0.8s; }
.circle-6 { top: 15%; left: 60%; animation-delay: 1s; }
.circle-7 { top: 15%; left: 70%; animation-delay: 1.2s; }
.circle-8 { top: 15%; left: 80%; animation-delay: 1.4s; }
.circle-9 { top: 15%; left: 90%; animation-delay: 1.6s; }

.circle-10 { top: 25%; left: 5%; animation-delay: 0.1s; }
.circle-11 { top: 25%; left: 15%; animation-delay: 0.3s; }
.circle-12 { top: 25%; left: 25%; animation-delay: 0.5s; }
.circle-13 { top: 25%; left: 35%; animation-delay: 0.7s; }
.circle-14 { top: 25%; left: 45%; animation-delay: 0.9s; }
.circle-15 { top: 25%; left: 55%; animation-delay: 1.1s; }
.circle-16 { top: 25%; left: 65%; animation-delay: 1.3s; }
.circle-17 { top: 25%; left: 75%; animation-delay: 1.5s; }
.circle-18 { top: 25%; left: 85%; animation-delay: 1.7s; }
.circle-19 { top: 25%; left: 95%; animation-delay: 1.9s; }

.circle-20 { top: 35%; left: 10%; animation-delay: 0.2s; }
.circle-21 { top: 35%; left: 20%; animation-delay: 0.4s; }
.circle-22 { top: 35%; left: 30%; animation-delay: 0.6s; }
.circle-23 { top: 35%; left: 40%; animation-delay: 0.8s; }
.circle-24 { top: 35%; left: 50%; animation-delay: 1s; }
.circle-25 { top: 35%; left: 60%; animation-delay: 1.2s; }
.circle-26 { top: 35%; left: 70%; animation-delay: 1.4s; }
.circle-27 { top: 35%; left: 80%; animation-delay: 1.6s; }
.circle-28 { top: 35%; left: 90%; animation-delay: 1.8s; }

.circle-29 { top: 45%; left: 5%; animation-delay: 0.3s; }
.circle-30 { top: 45%; left: 15%; animation-delay: 0.5s; }
.circle-31 { top: 45%; left: 25%; animation-delay: 0.7s; }
.circle-32 { top: 45%; left: 35%; animation-delay: 0.9s; }
.circle-33 { top: 45%; left: 45%; animation-delay: 1.1s; }
.circle-34 { top: 45%; left: 55%; animation-delay: 1.3s; }
.circle-35 { top: 45%; left: 65%; animation-delay: 1.5s; }
.circle-36 { top: 45%; left: 75%; animation-delay: 1.7s; }
.circle-37 { top: 45%; left: 85%; animation-delay: 1.9s; }
.circle-38 { top: 45%; left: 95%; animation-delay: 2.1s; }

.circle-39 { top: 55%; left: 10%; animation-delay: 0.4s; }
.circle-40 { top: 55%; left: 20%; animation-delay: 0.6s; }
.circle-41 { top: 55%; left: 30%; animation-delay: 0.8s; }
.circle-42 { top: 55%; left: 40%; animation-delay: 1s; }
.circle-43 { top: 55%; left: 50%; animation-delay: 1.2s; }
.circle-44 { top: 55%; left: 60%; animation-delay: 1.4s; }
.circle-45 { top: 55%; left: 70%; animation-delay: 1.6s; }
.circle-46 { top: 55%; left: 80%; animation-delay: 1.8s; }
.circle-47 { top: 55%; left: 90%; animation-delay: 2s; }

.circle-48 { top: 65%; left: 15%; animation-delay: 0.5s; }
.circle-49 { top: 65%; left: 25%; animation-delay: 0.7s; }
.circle-50 { top: 65%; left: 35%; animation-delay: 0.9s; }

@keyframes dot-pulse {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
        box-shadow: 0 0 8px #00ffff, 0 0 16px #00ffff;
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
        box-shadow: 0 0 12px #00ffff, 0 0 24px #00ffff;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .logo-img {
        height: 60px;
    }
    
    .coming-soon {
        font-size: 3rem;
    }
    
    .description {
        font-size: 1.1rem;
    }
    
    .features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-section {
        padding: 2rem 1.5rem;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .footer {
        flex-direction: column;
        text-align: center;
    }
    
    .circle {
        display: none;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 50px;
    }
    
    .coming-soon {
        font-size: 2.5rem;
    }
    
    .contact-section h3 {
        font-size: 2rem;
    }
    
    .feature {
        padding: 1.5rem;
    }
}
