/* Coming Soon Page Specific Styles */
.coming-soon-main {
    margin-top: 70px;
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.coming-soon-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.coming-soon-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.coming-soon-content {
    color: white;
    text-align: center;
}

.coming-soon-icon {
    margin-bottom: 30px;
}

.construction-icon {
    font-size: 4rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.coming-soon-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #fff, #e3f2fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.coming-soon-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
    font-weight: 300;
    line-height: 1.6;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.coming-soon-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: transform 0.3s ease, background 0.3s ease;
    min-width: 120px;
}

.feature-item:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.2);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 5px;
}

.feature-item span {
    font-size: 0.9rem;
    font-weight: 500;
}

.coming-soon-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.btn-home, .btn-notify {
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-home {
    background: rgba(255,255,255,0.2);
    color: white;
}

.btn-home:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.btn-notify {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(255,107,107,0.4);
}

.btn-notify:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255,107,107,0.6);
}

.btn-icon {
    font-size: 1.1rem;
}

.coming-soon-progress {
    text-align: center;
}

.progress-bar {
    width: 100%;
    max-width: 400px;
    height: 8px;
    background: rgba(255,255,255,0.2);
    border-radius: 10px;
    margin: 0 auto 15px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    width: 75%;
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    border-radius: 10px;
    position: relative;
    animation: progressShine 2s infinite;
}

@keyframes progressShine {
    0% {
        box-shadow: 0 0 5px rgba(255,107,107,0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(255,107,107,0.8);
    }
    100% {
        box-shadow: 0 0 5px rgba(255,107,107,0.5);
    }
}

.progress-text {
    font-size: 0.9rem;
    opacity: 0.8;
}

.progress-percentage {
    font-weight: 600;
    color: #ff6b6b;
}

.coming-soon-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.coming-soon-logo {
    max-width: 300px;
    width: 100%;
    height: auto;
    filter: brightness(1.2) drop-shadow(0 10px 30px rgba(0,0,0,0.3));
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .coming-soon-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 60px 20px;
        text-align: center;
    }
    
    .coming-soon-title {
        font-size: 2.5rem;
    }
    
    .coming-soon-subtitle {
        font-size: 1.1rem;
    }
    
    .coming-soon-features {
        gap: 20px;
    }
    
    .feature-item {
        min-width: 100px;
        padding: 15px;
    }
    
    .coming-soon-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-home, .btn-notify {
        width: 200px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .coming-soon-title {
        font-size: 2rem;
    }
    
    .coming-soon-subtitle {
        font-size: 1rem;
    }
    
    .construction-icon {
        font-size: 3rem;
    }
    
    .coming-soon-features {
        flex-direction: column;
        align-items: center;
    }
    
    .feature-item {
        width: 200px;
    }
    
    .btn-home, .btn-notify {
        padding: 12px 24px;
        font-size: 14px;
        width: 180px;
    }
}

/* Loading Animation */
.coming-soon-main::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}
