/* Global Styles */
body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, #87CEEB, #6495ED, #4682B4);
    color: #333333;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
}

/* Coming Soon Page Styles */
.coming-soon-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 1rem 0;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
}

.content-wrapper {
    text-align: center;
    padding: 1.5rem;
    max-width: 1600px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(100, 149, 237, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    position: relative;
}

.logo h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    background: linear-gradient(to right, #1E90FF, #4169E1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 10px rgba(70, 130, 180, 0.3);
}

.tagline h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: #4682B4;
}

.coming-soon-text {
    margin-bottom: 1rem;
}

.coming-soon-text h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #2C3E50;
}

.coming-soon-text p {
    font-size: 1rem;
    color: #5D6D7E;
}

.contact-info {
    margin-top: 1rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(70, 130, 180, 0.3);
}

.contact-info p {
    font-size: 0.9rem;
    color: #5D6D7E;
}

.contact-info a {
    color: #1E90FF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #4169E1;
    text-decoration: underline;
}

/* Floating particles animation */
.coming-soon-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, transparent 20%, rgba(100, 149, 237, 0.1) 100%);
    animation: pulse 15s infinite alternate;
}

@keyframes pulse {
    0% {
        opacity: 0.3;
        transform: scale(1);
    }
    100% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

/* Construction Image Styles */
.construction-image-container {
    margin: 1.5rem 0;
}

.construction-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.construction-image svg,
.construction-image .construction-icon {
    filter: drop-shadow(0 4px 6px rgba(70, 130, 180, 0.3));
    transition: transform 0.3s ease;
    margin-bottom: 1rem;
}

.construction-image svg:hover,
.construction-image .construction-icon:hover {
    transform: scale(1.05) rotate(5deg);
}

.construction-image .construction-icon {
    font-size: 120px;
    color: #1E90FF;
    display: block;
}

.construction-text {
    font-size: 1.1rem;
    color: #2C3E50;
    font-weight: 500;
    text-align: center;
    margin-top: 0.5rem;
}

/* Services Section Styles */
.services-section {
    margin: 1rem 0;
    text-align: center;
}

.services-section h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: #2C3E50;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.8rem;
    margin-top: 0.8rem;
}

.service-item {
    background: rgba(100, 149, 237, 0.1);
    border-radius: 8px;
    padding: 0.8rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(100, 149, 237, 0.2);
    box-shadow: 0 4px 10px rgba(70, 130, 180, 0.1);
}

.service-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(70, 130, 180, 0.2);
    background: rgba(100, 149, 237, 0.2);
}

.service-icon {
    font-size: 1.5rem;
    color: #1E90FF;
    margin-bottom: 0.5rem;
}

.service-item h4 {
    font-size: 1rem;
    margin-bottom: 0.4rem;
    color: #2C3E50;
}

.service-item p {
    font-size: 0.8rem;
    color: #5D6D7E;
    line-height: 1.3;
}

/* Language Switcher Styles */
.language-switcher {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    z-index: 10;
}

.language-switcher a {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: rgba(100, 149, 237, 0.2);
    color: #2C3E50;
    text-decoration: none;
    border-radius: 16px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(100, 149, 237, 0.3);
}

.language-switcher a:hover {
    background: rgba(100, 149, 237, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(70, 130, 180, 0.2);
}

/* Social Media Styles */
.social-media {
    margin: 1rem 0;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(100, 149, 237, 0.2);
    color: #4682B4;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(100, 149, 237, 0.3);
}

.social-icon:hover {
    background: rgba(100, 149, 237, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(70, 130, 180, 0.3);
    color: #1E90FF;
}

/* Responsive styles */
/* Laptop screens */
@media (min-width: 1024px) and (max-height: 768px) {
    .content-wrapper {
        padding: 1rem;
        max-width: 95%;
    }

    .logo h1 {
        font-size: 2.5rem;
        margin-bottom: 0.2rem;
    }

    .tagline h2 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .coming-soon-text {
        margin-bottom: 0.5rem;
    }

    .countdown-container {
        margin: 0.5rem 0;
    }

    .services-section {
        margin: 0.5rem 0;
    }

    .services-section h3 {
        margin-bottom: 0.5rem;
    }

    .services-container {
        margin-top: 0.5rem;
    }

    .social-media {
        margin: 0.5rem 0;
    }

    .contact-info {
        margin-top: 0.5rem;
    }
}

/* Tablets */
@media (max-width: 768px) {
    .logo h1 {
        font-size: 2.5rem;
    }

    .tagline h2 {
        font-size: 1.1rem;
    }

    .coming-soon-text h3 {
        font-size: 1.3rem;
    }

    .coming-soon-text p {
        font-size: 0.9rem;
    }

    .services-container {
        grid-template-columns: repeat(4, 1fr);
    }

    .services-section h3 {
        font-size: 1.3rem;
    }

    .service-item h4 {
        font-size: 0.9rem;
    }

    .service-item p {
        font-size: 0.8rem;
    }

    .content-wrapper {
        max-width: 95%;
        padding: 1rem;
    }

    .language-switcher {
        top: 0.5rem;
        right: 0.5rem;
    }

    .language-switcher a {
        padding: 0.3rem 0.8rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 2rem;
    }

    .content-wrapper {
        padding: 0.8rem;
    }

    .services-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-icon {
        font-size: 1.3rem;
    }

    .service-item {
        padding: 0.6rem;
    }

    .service-item p {
        font-size: 0.7rem;
        line-height: 1.2;
    }

    .coming-soon-container {
        padding: 0.5rem 0;
    }

    .language-switcher {
        top: 0.3rem;
        right: 0.3rem;
    }

    .language-switcher a {
        padding: 0.2rem 0.6rem;
        font-size: 0.8rem;
    }
}
