/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    max-width: 800px;
    width: 90%;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    padding: 50px;
    text-align: center;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

/* Header styles */
header {
    margin-bottom: 40px;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.logo-image {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    position: relative;
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo h1 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
    letter-spacing: 1px;
    line-height: 1.2;
}

.subtitle {
    font-size: 1.3rem;
    color: #6c757d;
    font-weight: 400;
    font-style: italic;
    letter-spacing: 0.5px;
    margin-top: 10px;
}

/* Main content */
.construction-content {
    margin: 40px 0;
}

.construction-icon {
    margin: 40px 0;
    position: relative;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gear {
    font-size: 2.5rem;
    color: #6c757d;
    animation: rotate 4s linear infinite;
    margin: 0 15px;
    opacity: 0.7;
}

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

.gear-2 {
    animation-delay: 1.3s;
    animation-direction: reverse;
}

.gear-3 {
    animation-delay: 2.6s;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.construction-content h2 {
    font-size: 2.8rem;
    color: #2c3e50;
    margin: 30px 0 25px 0;
    font-weight: 600;
}

.description {
    font-size: 1.2rem;
    color: #495057;
    margin: 25px 0;
    line-height: 1.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.coming-soon {
    margin: 40px 0;
    padding: 25px 30px;
    background: #2c3e50;
    color: white;
    border-radius: 12px;
    font-size: 1.3rem;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(44, 62, 80, 0.2);
    transition: all 0.3s ease;
}

/* Footer */
footer {
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid #e9ecef;
}

.contact-info p {
    color: #6c757d;
    margin: 8px 0;
    font-size: 1rem;
}

.contact-info p:first-child {
    font-weight: 700;
    color: #2c3e50;
    font-size: 1.1rem;
}

.contact-info p:last-child {
    color: #6c757d;
    font-style: italic;
    font-weight: 500;
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        width: 95%;
        padding: 40px 25px;
        margin: 20px;
    }
    
    .logo h1 {
        font-size: 1.8rem;
        letter-spacing: 0.5px;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
    
    .logo-image {
        width: 100px;
        height: 100px;
    }
    
    .construction-content h2 {
        font-size: 2.2rem;
    }
    
    .description {
        font-size: 1.1rem;
    }
    
    .gear {
        font-size: 2rem;
        margin: 0 10px;
    }
    
    .construction-icon {
        height: 70px;
    }
    
    .coming-soon {
        font-size: 1.2rem;
        padding: 20px 25px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 30px 20px;
    }
    
    .logo h1 {
        font-size: 1.5rem;
        letter-spacing: 0.3px;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .logo-image {
        width: 80px;
        height: 80px;
    }
    
    .construction-content h2 {
        font-size: 1.8rem;
    }
    
    .description {
        font-size: 1rem;
    }
    
    .gear {
        font-size: 1.8rem;
        margin: 0 8px;
    }
    
    .construction-icon {
        height: 60px;
    }
    
    .coming-soon {
        font-size: 1.1rem;
        padding: 18px 20px;
    }
}

/* Hover effects */
.container:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.coming-soon:hover {
    transform: scale(1.02);
    background: #34495e;
    transition: all 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}