:root {
    --primary-color: #2c3e50;
    --secondary-color: #ffd700;
    --text-color: #ffffff;
    --bg-color: #1a1a1a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    min-height: 100vh;
}

.construction-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    background: radial-gradient(circle at center, #2c3e50, #1a1a1a);
    position: relative;
    overflow: hidden;
}

.construction-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    border: 1px solid rgba(255, 255, 255, 0.18);
    animation: fadeIn 1s ease-in;
}

.construction-icon {
    font-size: 4rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    animation: bounce 2s infinite;
}

.construction-content h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 3px;
}

.divider {
    width: 50px;
    height: 4px;
    background-color: var(--secondary-color);
    margin: 1.5rem auto;
    border-radius: 2px;
}

.construction-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.construction-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.8);
}

.company-info {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.company-info p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.6);
}

.company-info img {
    max-width: 150px;
    margin: 1rem auto;
}

.company-info h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.developer-info {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Contact Widgets */
.contact-widgets {
    position: fixed;
    bottom: 20px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 1000;
    pointer-events: none;
}

.contact-widget {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    pointer-events: auto;
}

.contact-widget:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.phone-widget {
    background: linear-gradient(135deg, #00c853, #009624);
}

.whatsapp-widget {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.construction-footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 1rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.logo h1 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li a {
    color: var(--primary-color);
    text-decoration: none;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: var(--secondary-color);
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
#hero {
    height: 100vh;
    background: linear-gradient(rgba(44, 62, 80, 0.9), rgba(44, 62, 80, 0.9)),
                url('https://source.unsplash.com/random/1920x1080?business') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 1rem;
}

.hero-content {
    max-width: 800px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #2980b9;
}

/* Services Section */
#services {
    padding: 5rem 1rem;
    background-color: var(--light-bg);
}

#services h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

/* About Section */
#about {
    padding: 5rem 1rem;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* Contact Section */
#contact {
    padding: 5rem 1rem;
    background-color: var(--light-bg);
}

#contact h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.submit-btn {
    display: block;
    width: 100%;
    padding: 1rem;
    background-color: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #2980b9;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: white;
    padding: 3rem 1rem 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.social-links a {
    color: white;
    margin-left: 1rem;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Desktop/Laptop (Large Screens) */
@media screen and (min-width: 1200px) {
    .construction-content {
        max-width: 800px;
        padding: 3rem;
    }

    .construction-content h1 {
        font-size: 4rem;
    }

    .construction-content h2 {
        font-size: 2.5rem;
    }

    .contact-widget {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }
}

/* Tablet (Medium Screens) */
@media screen and (min-width: 768px) and (max-width: 1199px) {
    .construction-content {
        max-width: 600px;
        padding: 2rem;
        margin: 2rem;
    }

    .construction-content h1 {
        font-size: 3rem;
    }

    .construction-content h2 {
        font-size: 2rem;
    }

    .contact-widget {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .construction-icon {
        font-size: 3rem;
    }

    .company-info img {
        max-width: 120px;
    }
}

/* Mobile Phones (Small Screens) */
@media screen and (max-width: 767px) {
    .construction-content {
        max-width: 100%;
        margin: 1rem;
        padding: 1.5rem;
    }

    .construction-content h1 {
        font-size: 2rem;
    }

    .construction-content h2 {
        font-size: 1.5rem;
    }

    .construction-content p {
        font-size: 1rem;
    }

    .construction-icon {
        font-size: 2.5rem;
    }

    .divider {
        width: 40px;
        margin: 1rem auto;
    }

    .company-info {
        margin-top: 2rem;
    }

    .company-info img {
        max-width: 100px;
    }

    .company-info h3 {
        font-size: 1.2rem;
    }

    .contact-widget {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .contact-widgets {
        padding: 0 10px;
        bottom: 15px;
    }

    .developer-info {
        font-size: 0.8rem;
    }

    .construction-footer {
        font-size: 0.8rem;
        padding: 0.5rem;
    }
}

/* Extra Small Devices */
@media screen and (max-width: 320px) {
    .construction-content {
        margin: 0.5rem;
        padding: 1rem;
    }

    .construction-content h1 {
        font-size: 1.75rem;
    }

    .construction-content h2 {
        font-size: 1.25rem;
    }

    .contact-widget {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}
}
