/* ===========================
   Under Construction Pages
   Fully Responsive Design
   =========================== */

:root {
    --construction-gradient-start: #667eea;
    --construction-gradient-end: #764ba2;
}

/* ===========================
   Construction Section
   =========================== */
.construction-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
    padding: clamp(40px, 8vw, 80px) 20px;
}

.construction-container {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 0.6s ease-out;
}

/* ===========================
   Construction Icon
   =========================== */
.construction-icon {
    font-size: clamp(4rem, 12vw, 6rem);
    margin-bottom: clamp(1.5rem, 4vw, 2rem);
    animation: bounce 2s infinite;
}

/* Alternative icon styles */
.construction-icon-alt {
    width: clamp(100px, 20vw, 150px);
    height: clamp(100px, 20vw, 150px);
    margin: 0 auto clamp(1.5rem, 4vw, 2rem);
    background: linear-gradient(135deg, var(--electric-blue), var(--teal));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(3rem, 10vw, 4.5rem);
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.3);
    animation: pulse 2s infinite;
}

/* ===========================
   Construction Content
   =========================== */
.construction-title {
    font-size: clamp(2rem, 5vw, 3rem);
    color: #FF8C1A;
    background: linear-gradient(90deg, #FFB347 0%, #FF8C1A 50%, #FFD580 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: clamp(1rem, 3vw, 1.5rem);
    font-weight: 700;
    line-height: 1.2;
}

.construction-subtitle {
    font-size: clamp(1.125rem, 3vw, 1.5rem);
    color: var(--navy);
    margin-bottom: clamp(0.75rem, 2vw, 1rem);
    font-weight: 600;
}

.construction-description {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: var(--dark-gray);
    line-height: 1.6;
    margin-bottom: clamp(2rem, 5vw, 3rem);
}

.construction-description strong {
    color: var(--electric-blue);
    font-weight: 700;
}

/* ===========================
   Feature Preview List
   =========================== */
.feature-preview {
    background: white;
    border-radius: 16px;
    padding: clamp(24px, 5vw, 32px);
    margin: clamp(2rem, 5vw, 3rem) 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    text-align: left;
}

.feature-preview h3 {
    font-size: clamp(1.125rem, 3vw, 1.375rem);
    color: var(--navy);
    margin-bottom: clamp(1rem, 3vw, 1.5rem);
    text-align: center;
}

.feature-preview ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-preview li {
    padding: 12px 0 12px 36px;
    position: relative;
    color: var(--dark-gray);
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    line-height: 1.5;
    border-bottom: 1px solid var(--light-gray);
}

.feature-preview li:last-child {
    border-bottom: none;
}

.feature-preview li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
    font-size: 1.25rem;
}

/* ===========================
   Action Buttons
   =========================== */
.construction-actions {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(12px, 3vw, 16px);
    justify-content: center;
    margin-top: clamp(2rem, 5vw, 3rem);
}

.construction-btn {
    padding: clamp(12px, 3vw, 16px) clamp(24px, 5vw, 32px);
    border-radius: 8px;
    font-weight: 600;
    font-size: clamp(0.9rem, 2vw, 1rem);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    display: inline-block;
}

.construction-btn-primary {
    background: linear-gradient(135deg, #4285f4, #007bff);
    color: white;
}

.construction-btn-primary:hover {
    background: linear-gradient(135deg, #007bff, #00b4d8);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(66, 133, 244, 0.3);
}

.construction-btn-secondary {
    background: white;
    color: var(--electric-blue);
    border: 2px solid var(--electric-blue);
}

.construction-btn-secondary:hover {
    background: var(--electric-blue);
    color: white;
}

/* ===========================
   Progress Indicator
   =========================== */
.construction-progress {
    margin-top: clamp(2rem, 5vw, 3rem);
    padding: clamp(20px, 4vw, 24px);
    background: rgba(59, 130, 246, 0.05);
    border-radius: 12px;
    border: 2px dashed var(--electric-blue);
}

.progress-label {
    font-size: clamp(0.875rem, 2vw, 1rem);
    color: var(--dark-gray);
    margin-bottom: 12px;
    font-weight: 500;
}

.progress-bar-container {
    width: 100%;
    height: 12px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--electric-blue), var(--teal));
    border-radius: 6px;
    animation: progressAnimation 2s ease-in-out infinite;
}

.progress-text {
    margin-top: 8px;
    font-size: clamp(0.813rem, 2vw, 0.875rem);
    color: var(--electric-blue);
    font-weight: 600;
}

/* ===========================
   Newsletter Signup
   =========================== */
.construction-newsletter {
    max-width: 500px;
    margin: clamp(2rem, 5vw, 3rem) auto 0;
    padding: clamp(24px, 5vw, 32px);
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.newsletter-title {
    font-size: clamp(1.125rem, 3vw, 1.375rem);
    color: var(--navy);
    margin-bottom: 12px;
    font-weight: 600;
}

.newsletter-text {
    font-size: clamp(0.9rem, 2vw, 1rem);
    color: var(--dark-gray);
    margin-bottom: clamp(1rem, 3vw, 1.5rem);
}

.newsletter-form {
    display: flex;
    gap: 12px;
}

.newsletter-input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    font-size: clamp(0.9rem, 2vw, 1rem);
    transition: border-color 0.3s ease;
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--electric-blue);
}

.newsletter-submit {
    padding: 12px clamp(20px, 4vw, 24px);
    background: linear-gradient(135deg, #4285f4, #007bff);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-submit:hover {
    background: linear-gradient(135deg, #007bff, #00b4d8);
    transform: translateY(-2px);
}

/* ===========================
   Animations
   =========================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 20px 60px rgba(59, 130, 246, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 25px 70px rgba(59, 130, 246, 0.4);
    }
}

@keyframes progressAnimation {
    0% {
        width: 0%;
    }
    50% {
        width: 75%;
    }
    100% {
        width: 75%;
    }
}

/* ===========================
   Mobile Responsive
   =========================== */
@media (max-width: 640px) {
    .construction-section {
        min-height: 60vh;
    }
    
    .feature-preview {
        padding: 20px;
    }
    
    .construction-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .construction-btn {
        width: 100%;
        text-align: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-submit {
        width: 100%;
    }
}

/* ===========================
   Reduced Motion
   =========================== */
@media (prefers-reduced-motion: reduce) {
    .construction-container,
    .construction-icon,
    .construction-icon-alt,
    .progress-bar {
        animation: none;
    }
    
    .construction-btn:hover {
        transform: none;
    }
}

/* ===========================
   Print Styles
   =========================== */
@media print {
    .construction-section {
        min-height: auto;
    }
    
    .construction-actions,
    .construction-newsletter {
        display: none;
    }
}
