* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.background-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.lock-icon, .key-icon, .tool-icon {
    position: absolute;
    font-size: 2rem;
    animation: float 15s infinite ease-in-out;
    opacity: 0.7;
}

.lock1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
    color: #f39c12;
}

.lock2 {
    top: 65%;
    right: 15%;
    animation-delay: -5s;
    color: #e74c3c;
}

.lock3 {
    top: 35%;
    left: 85%;
    animation-delay: -10s;
    color: #3498db;
}

.key1 {
    top: 25%;
    left: 75%;
    animation-delay: -3s;
    color: #27ae60;
}

.key2 {
    top: 70%;
    left: 20%;
    animation-delay: -8s;
    color: #9b59b6;
}

.key3 {
    top: 45%;
    right: 25%;
    animation-delay: -12s;
    color: #e67e22;
}

.tool1 {
    top: 10%;
    right: 30%;
    animation-delay: -2s;
    color: #f1c40f;
}

.tool2 {
    bottom: 20%;
    left: 15%;
    animation-delay: -7s;
    color: #1abc9c;
}

.tool3 {
    bottom: 30%;
    right: 10%;
    animation-delay: -14s;
    color: #d35400;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-15px) rotate(5deg); }
    50% { transform: translateY(-8px) rotate(-3deg); }
    75% { transform: translateY(-20px) rotate(3deg); }
}

.content {
    position: relative;
    z-index: 2;
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    max-width: 900px;
    width: 100%;
}

.logo h1 {
    font-size: 2.8rem;
    font-weight: 700;
    background: linear-gradient(45deg, #2c3e50, #e74c3c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.tagline {
    font-size: 1.2rem;
    color: #7f8c8d;
    font-weight: 400;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.construction-icon {
    margin: 30px 0;
}

.construction-animation {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.main-title {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.subtitle {
    font-size: 1.1rem;
    color: #7f8c8d;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.countdown-container {
    margin: 40px 0;
}

.countdown-container h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 500;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.countdown-item {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 20px;
    border-radius: 15px;
    min-width: 80px;
    box-shadow: 0 10px 20px rgba(231, 76, 60, 0.3);
    transition: transform 0.3s ease;
}

.countdown-item:hover {
    transform: scale(1.05);
}

.countdown-item span {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.countdown-item label {
    font-size: 0.9rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.service {
    text-align: center;
    padding: 25px;
    background: rgba(236, 240, 241, 0.8);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service:hover {
    transform: translateY(-5px);
    border-color: #e74c3c;
    box-shadow: 0 15px 30px rgba(231, 76, 60, 0.2);
}

.service-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 15px;
}

.service h4 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 600;
}

.service p {
    color: #7f8c8d;
    font-size: 0.9rem;
    line-height: 1.5;
}

.emergency-contact {
    margin: 40px 0;
}

.emergency-banner {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(231, 76, 60, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

.emergency-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 15px;
}

.emergency-banner h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.emergency-phone {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.emergency-text {
    font-size: 1rem;
    opacity: 0.9;
}

.contact-info {
    margin: 30px 0;
    padding: 25px;
    background: rgba(52, 73, 94, 0.1);
    border-radius: 15px;
}

.contact-info p {
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 500;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.contact-details span {
    color: #e74c3c;
    font-weight: 500;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.social-link {
    padding: 12px 24px;
    background: linear-gradient(135deg, #34495e, #2c3e50);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(52, 73, 94, 0.3);
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(52, 73, 94, 0.4);
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    background: rgba(39, 174, 96, 0.1);
    color: #27ae60;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(39, 174, 96, 0.3);
}

.badge-icon {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .content {
        padding: 30px 20px;
    }
    
    .logo h1 {
        font-size: 2.2rem;
    }
    
    .main-title {
        font-size: 1.8rem;
    }
    
    .countdown {
        gap: 15px;
    }
    
    .countdown-item {
        min-width: 70px;
        padding: 15px;
    }
    
    .countdown-item span {
        font-size: 1.5rem;
    }
    
    .services {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
    }
    
    .social-link {
        width: 200px;
        text-align: center;
    }
    
    .trust-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .badge {
        width: 200px;
        justify-content: center;
    }
}