/* Under Construction Page Styles */
.under-construction-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.construction-hero {
    text-align: center;
    padding: 60px 0;
}

.construction-content {
    max-width: 800px;
    margin: 0 auto;
}

.construction-icon {
    margin-bottom: 30px;
}

.construction-icon svg {
    color: #3b82f6;
}

.construction-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1f2937;
}

.construction-message {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 40px;
    line-height: 1.6;
}

.progress-container {
    margin: 40px 0;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background-color: #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
    border-radius: 4px;
    transition: width 2s ease-in-out;
}

.progress-text {
    font-size: 0.875rem;
    color: #6b7280;
}

.countdown-section {
    margin: 50px 0;
}

.countdown-section h3 {
    margin-bottom: 20px;
    color: #374151;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.countdown-item {
    background: #f8fafc;
    padding: 20px;
    border-radius: 12px;
    min-width: 80px;
    border: 1px solid #e2e8f0;
}

.countdown-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #1e40af;
}

.countdown-label {
    font-size: 0.875rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.construction-features {
    margin: 60px 0;
}

.construction-features h3 {
    margin-bottom: 30px;
    color: #374151;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.feature-icon {
    font-size: 2rem;
}

.feature-content h4 {
    margin-bottom: 8px;
    color: #1f2937;
}

.feature-content p {
    color: #6b7280;
    font-size: 0.875rem;
}

.alternative-options {
    margin: 60px 0;
}

.alternative-options h3 {
    margin-bottom: 30px;
    color: #374151;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.option-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.option-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #3b82f6;
}

.option-icon {
    font-size: 2rem;
}

.option-content {
    flex: 1;
}

.option-content h4 {
    margin-bottom: 8px;
    color: #1f2937;
}

.option-content p {
    color: #6b7280;
    font-size: 0.875rem;
    margin: 0;
}

.option-arrow {
    color: #3b82f6;
    font-size: 1.5rem;
    font-weight: 300;
}

.newsletter-section {
    margin-top: 60px;
    padding: 40px;
    background: #f8fafc;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
}

.newsletter-content h3 {
    margin-bottom: 15px;
    color: #374151;
}

.newsletter-content > p {
    color: #6b7280;
    margin-bottom: 25px;
}

.newsletter-form {
    max-width: 400px;
    margin: 0 auto;
}

.form-group {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.form-group input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
}

.form-group button {
    padding: 12px 24px;
    background: #3b82f6;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.2s;
}

.form-group button:hover {
    background: #2563eb;
}

.newsletter-note {
    font-size: 0.75rem;
    color: #9ca3af;
    text-align: center;
    margin: 0;
}

.launch-message {
    font-size: 1.5rem;
    font-weight: 600;
    color: #059669;
}

/* Responsive Design */
@media (max-width: 768px) {
    .under-construction-container {
        padding: 20px 15px;
    }
    
    .construction-hero {
        padding: 30px 0;
    }
    
    .construction-hero h1 {
        font-size: 2rem;
    }
    
    .construction-message {
        font-size: 1.125rem;
    }
    
    .countdown-timer {
        gap: 10px;
    }
    
    .countdown-item {
        min-width: 60px;
        padding: 15px 10px;
    }
    
    .countdown-number {
        font-size: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .options-grid {
        grid-template-columns: 1fr;
    }
    
    .form-group {
        flex-direction: column;
    }
    
    .newsletter-section {
        padding: 30px 20px;
    }
}