/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    overflow-x: hidden;
    background: #0a0a0a;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Coming Soon Section */
.coming-soon {
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 25%, #16213e 50%, #0f3460 75%, #0a0a0a 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 100px 0 50px;
}

.coming-soon-content {
    text-align: center;
    color: white;
    z-index: 2;
    position: relative;
}

.logo-section {
    margin-bottom: 4rem;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.logo-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4);
    background-size: 400% 400%;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: gradientShift 3s ease infinite;
    box-shadow: 0 20px 40px rgba(255, 107, 107, 0.3);
}

.logo-icon i {
    font-size: 2.5rem;
    color: white;
    animation: pulse 2s ease-in-out infinite;
}

.company-logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 5rem;
    font-weight: 800;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
    text-shadow: 0 0 30px rgba(255, 107, 107, 0.5);
    letter-spacing: -2px;
}

.tagline {
    font-size: 1.6rem;
    opacity: 0.9;
    font-weight: 300;
    letter-spacing: 1px;
    color: #b8c5d1;
    margin-top: 1rem;
}

.countdown-section {
    margin-bottom: 4rem;
}

.countdown-section h2 {
    font-size: 3.2rem;
    margin-bottom: 3rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    letter-spacing: -1px;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.time-unit {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 3rem 2.5rem;
    min-width: 160px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.time-unit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.time-unit:hover::before {
    left: 100%;
}

.time-unit:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 107, 107, 0.3);
}

.time-value {
    display: block;
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(255, 107, 107, 0.3);
    font-family: 'Space Grotesk', sans-serif;
}

.time-label {
    font-size: 1.2rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    color: #b8c5d1;
}

.description-section {
    margin-bottom: 4rem;
}

.description-section p {
    font-size: 1.4rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
    line-height: 1.8;
    font-weight: 300;
    color: #d1d9e0;
}

.newsletter-section {
    margin-bottom: 4rem;
}

.newsletter-section h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.newsletter-section p {
    margin-bottom: 2.5rem;
    opacity: 0.8;
    font-size: 1.2rem;
    color: #b8c5d1;
}

.newsletter-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    /* background: rgba(255, 255, 255, 0.05); */
    border-radius: 50px;
    padding: 8px;
    /* border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px); */
}

.form-group input {
    flex: 1;
    padding: 20px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    min-width: 300px;
    background: transparent;
    color: white;
    transition: all 0.3s ease;
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.1);
}

.btn-notify {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    color: white;
    padding: 20px 35px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-size: 1.2rem;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-notify:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.6);
}

.social-section {
    margin-bottom: 3rem;
}

.social-section h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 600;
    color: #ffffff;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.08);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.4s ease;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.5rem;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50%;
}

.social-link:hover::before {
    opacity: 1;
}

.social-link:hover {
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 20px 40px rgba(255, 107, 107, 0.3);
}

.social-link i {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.social-link:hover i {
    color: white;
}

.contact-info {
    margin-top: 3rem;
}

.contact-info p {
    font-size: 1.3rem;
    opacity: 0.9;
    font-weight: 500;
    color: #b8c5d1;
}

.contact-info i {
    margin-right: 15px;
    color: #ff6b6b;
    font-size: 1.4rem;
}

/* Background Animation */
.bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.floating-shapes {
    position: relative;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(255, 107, 107, 0.1), rgba(78, 205, 196, 0.1));
    animation: float 12s ease-in-out infinite;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.shape-1 {
    width: 120px;
    height: 120px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
    background: linear-gradient(45deg, rgba(255, 107, 107, 0.15), rgba(78, 205, 196, 0.1));
}

.shape-2 {
    width: 180px;
    height: 180px;
    top: 60%;
    right: 5%;
    animation-delay: 3s;
    background: linear-gradient(45deg, rgba(78, 205, 196, 0.12), rgba(69, 183, 209, 0.08));
}

.shape-3 {
    width: 100px;
    height: 100px;
    top: 30%;
    left: 90%;
    animation-delay: 6s;
    background: linear-gradient(45deg, rgba(69, 183, 209, 0.1), rgba(150, 206, 180, 0.12));
}

.shape-4 {
    width: 140px;
    height: 140px;
    top: 70%;
    left: 10%;
    animation-delay: 2s;
    background: linear-gradient(45deg, rgba(150, 206, 180, 0.08), rgba(255, 107, 107, 0.1));
}

.shape-5 {
    width: 110px;
    height: 110px;
    top: 5%;
    right: 20%;
    animation-delay: 4s;
    background: linear-gradient(45deg, rgba(255, 107, 107, 0.12), rgba(78, 205, 196, 0.08));
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-40px) rotate(180deg);
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Contact Page Styles */
.contact-page {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    min-height: 100vh;
}

.contact-header {
    text-align: center;
    margin-bottom: 5rem;
}

.contact-header h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4rem;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -2px;
}

.contact-header p {
    font-size: 1.4rem;
    color: #b8c5d1;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 300;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 5rem;
    align-items: start;
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 107, 0.1), transparent);
    transition: left 0.6s ease;
}

.contact-card:hover::before {
    left: 100%;
}

.contact-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 107, 107, 0.3);
}

.contact-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 15px 30px rgba(255, 107, 107, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

.contact-icon i {
    font-size: 2.5rem;
    color: white;
}

.contact-card h3 {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-size: 1.8rem;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
}

.contact-card p {
    color: #b8c5d1;
    line-height: 1.6;
    font-size: 1.2rem;
    font-weight: 300;
}

.contact-form-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 4rem;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
}

.form-container h2 {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    text-align: center;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 18px 25px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    font-family: inherit;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    backdrop-filter: blur(10px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b6b;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 160px;
}

.btn-submit {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    color: white;
    padding: 20px 40px;
    border: none;
    border-radius: 15px;
    font-size: 1.3rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
    font-family: 'Space Grotesk', sans-serif;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.6);
}

.btn-submit:disabled {
    background: #6b7280;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.success-message {
    text-align: center;
    padding: 5rem 3rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(34, 197, 94, 0.1) 100%);
    border-radius: 25px;
    border: 2px solid rgba(16, 185, 129, 0.3);
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.2);
    backdrop-filter: blur(20px);
}

.success-content i {
    font-size: 6rem;
    color: #10b981;
    margin-bottom: 2rem;
    animation: pulse 2s ease-in-out infinite;
}

.success-content h3 {
    color: #10b981;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
}

.success-content p {
    color: #b8c5d1;
    font-size: 1.3rem;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.btn-reset {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    color: white;
    padding: 18px 35px;
    border: none;
    border-radius: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
    font-family: 'Space Grotesk', sans-serif;
}

.btn-reset:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
    .company-logo {
        font-size: 3.5rem;
    }
    
    .tagline {
        font-size: 1.3rem;
    }
    
    .countdown-section h2 {
        font-size: 2.5rem;
    }
    
    .time-unit {
        padding: 2.5rem 2rem;
        min-width: 140px;
    }
    
    .time-value {
        font-size: 3.5rem;
    }
    
    .description-section p {
        font-size: 1.2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .contact-form-section {
        padding: 3rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-header h1 {
        font-size: 3rem;
    }
    
    .logo-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .countdown-timer {
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .company-logo {
        font-size: 2.8rem;
    }
    
    .countdown-timer {
        gap: 1rem;
    }
    
    .time-unit {
        padding: 2rem 1.5rem;
        min-width: 120px;
    }
    
    .time-value {
        font-size: 3rem;
    }
    
    .contact-form-section {
        padding: 2.5rem;
    }
    
    .contact-header h1 {
        font-size: 2.5rem;
    }
    
    .form-group input {
        min-width: 250px;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a2e;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #ff5252, #26a69a);
}