/* ===== Coming Soon Page Layout ===== */
.coming-soon-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-3xl) 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.03) 0%, rgba(30, 27, 41, 0.03) 100%);
    min-height: calc(100vh - var(--nav-height) - 300px); /* Approximate footer height */
}

.coming-soon-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    padding: var(--spacing-xl);
}

/* ===== Animated Icon ===== */
.animated-icon {
    position: relative;
    width: 160px;
    height: 160px;
    margin: 0 auto var(--spacing-2xl);
}

.icon-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    box-shadow: 0 10px 40px rgba(139, 92, 246, 0.2);
    z-index: 4;
}

.icon-container svg {
    color: var(--primary);
    animation: float-icon 3s ease-in-out infinite;
}

@keyframes float-icon {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Pulse Circles */
.pulse-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3), transparent);
    animation: pulse 3s ease-out infinite;
}

.pulse-1 {
    animation-delay: 0s;
}

.pulse-2 {
    animation-delay: 1s;
}

.pulse-3 {
    animation-delay: 2s;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

/* ===== Content ===== */
.status-badge {
    display: inline-block;
    background: var(--secondary);
    color: white;
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
    animation: badge-pop 0.5s ease-out;
}

@keyframes badge-pop {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.page-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.page-subtitle {
    color: var(--gray-600);
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: var(--spacing-2xl);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== Notify Section ===== */
.notify-section {
    background: white;
    padding: var(--spacing-2xl);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin-top: var(--spacing-2xl);
}

.notify-section h2 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: var(--spacing-xs);
}

.notify-section p {
    color: var(--gray-600);
    margin-bottom: var(--spacing-lg);
}

.notify-form .form-group {
    display: flex;
    gap: var(--spacing-sm);
    max-width: 400px;
    margin: 0 auto;
}

.notify-form input {
    flex: 1;
    padding: var(--spacing-sm) var(--spacing-md);
    border: 2px solid var(--gray-300);
    border-radius: 12px;
    font-size: 1rem;
    transition: border-color var(--transition-fast);
}

.notify-form input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.notify-form .btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    white-space: nowrap;
}

.form-note {
    display: block;
    margin-top: var(--spacing-sm);
    color: var(--gray-500);
    font-size: 0.875rem;
}

.form-message {
    margin-top: var(--spacing-md);
    padding: var(--spacing-md);
    border-radius: 8px;
    display: none;
    animation: slideDown 0.3s ease-out;
}

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

.form-message.success {
    display: block;
    background: rgba(40, 167, 69, 0.1);
    color: #155724;
    border: 1px solid rgba(40, 167, 69, 0.2);
}

/* ===== Background Decoration ===== */
.bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    left: -150px;
    animation: float-shape 20s ease-in-out infinite;
}

.shape-2 {
    width: 400px;
    height: 400px;
    bottom: -200px;
    right: -200px;
    animation: float-shape 25s ease-in-out infinite reverse;
}

.shape-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    right: 10%;
    animation: float-shape 15s ease-in-out infinite;
}

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

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .coming-soon-main {
        min-height: calc(100vh - var(--nav-height) - 400px);
        padding: var(--spacing-2xl) var(--spacing-lg);
    }
    
    .page-title {
        font-size: 1.75rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .notify-form .form-group {
        flex-direction: column;
    }
    
    .notify-form .btn {
        width: 100%;
        justify-content: center;
    }
    
    .animated-icon {
        width: 120px;
        height: 120px;
    }
    
    .icon-container svg {
        width: 60px;
        height: 60px;
    }
}

/* ===== Tablets and smaller desktops ===== */
@media (max-width: 1024px) {
    .coming-soon-main {
        min-height: calc(100vh - var(--nav-height) - 350px);
    }
}

/* ===== Very tall screens ===== */
@media (min-height: 900px) {
    .coming-soon-main {
        min-height: calc(100vh - var(--nav-height) - 300px);
    }
}
