/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Construction Container */
.construction-container {
    width: 100%;
    max-width: 600px;
    padding: 40px 20px;
    text-align: center;
}

.construction-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 60px 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.construction-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Logo */
.logo h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.logo p {
    font-size: 1.2rem;
    color: #7f8c8d;
    font-weight: 400;
    margin-bottom: 40px;
}

/* Construction Icon */
.construction-icon {
    margin: 40px 0;
}

.construction-icon i {
    font-size: 4rem;
    color: #3498db;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

/* Construction Text */
.construction-text h2 {
    font-size: 2.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.construction-text p {
    font-size: 1.1rem;
    color: #7f8c8d;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Contact Info */
.contact-info {
    margin: 40px 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 20px;
    background: rgba(52, 152, 219, 0.1);
    border-radius: 15px;
    border: 2px solid rgba(52, 152, 219, 0.2);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(52, 152, 219, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(52, 152, 219, 0.2);
}

.contact-item i {
    font-size: 1.5rem;
    color: #3498db;
    flex-shrink: 0;
}

.contact-link {
    font-size: 1.1rem;
    color: #2c3e50;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #3498db;
}

/* Progress Bar */
.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(52, 152, 219, 0.2);
    border-radius: 10px;
    margin: 40px 0;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #3498db, #2980b9);
    border-radius: 10px;
    width: 75%;
    animation: progress 3s ease-in-out infinite;
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: progressShimmer 2s infinite;
}

@keyframes progress {
    0%, 100% {
        width: 75%;
    }
    50% {
        width: 85%;
    }
}

@keyframes progressShimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.social-link i {
    font-size: 1.2rem;
}

/* Email Footer */
.email-footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(52, 152, 219, 0.2);
}

.email-footer p {
    font-size: 1rem;
    color: #7f8c8d;
    margin: 0;
}

.email-footer a {
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.email-footer a:hover {
    color: #2980b9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .construction-container {
        padding: 20px;
    }
    
    .construction-content {
        padding: 40px 30px;
    }
    
    .logo h1 {
        font-size: 2rem;
    }
    
    .construction-text h2 {
        font-size: 1.8rem;
    }
    
    .construction-text p {
        font-size: 1rem;
    }
    
    .contact-item {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .contact-link {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .construction-content {
        padding: 30px 20px;
    }
    
    .logo h1 {
        font-size: 1.8rem;
    }
    
    .construction-text h2 {
        font-size: 1.5rem;
    }
    
    .construction-icon i {
        font-size: 3rem;
    }
    
    .contact-item {
        padding: 15px;
    }
    
    .social-links {
        gap: 15px;
    }
    
    .social-link {
        width: 45px;
        height: 45px;
    }
} 