/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    overflow-x: hidden;
}

/* Background Image */
body {
    background-image: url('assets/bg-electrician.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}

/* Dark Overlay */
.bg-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.7) 100%);
    z-index: -1;
}

/* Container */
.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

/* Header */
.header {
    padding: 2rem;
    text-align: center;
}

.logo h1 {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -2px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.logo-accent {
    color: #FFD700;
    font-weight: 300;
}

/* Main Content */
.main-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.content-wrapper {
    max-width: 800px;
    width: 100%;
    text-align: center;
}

.main-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    line-height: 1.2;
}

.subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: #FFD700;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
}

.description {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    border: 1px solid rgba(255,255,255,0.2);
}

.description p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.description p:last-child {
    margin-bottom: 0;
}

/* Services Section */
.services {
    background: rgba(255,215,0,0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    border: 1px solid rgba(255,215,0,0.3);
}

.services h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #FFD700;
}

.services-list {
    list-style: none;
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
}

.services-list li {
    padding: 0.5rem 0;
    font-size: 1.1rem;
}

/* Coming Soon Section */
.coming-soon {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    border: 2px solid #FFD700;
}

.badge {
    display: inline-block;
    background: #FFD700;
    color: #000;
    padding: 0.5rem 2rem;
    border-radius: 25px;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}

.launch-text {
    font-size: 1.2rem;
}

.launch-text strong {
    color: #FFD700;
    font-size: 1.3rem;
}

/* Newsletter Section */
.newsletter {
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.2);
}

.newsletter h3 {
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.email-input {
    flex: 1;
    min-width: 250px;
    padding: 0.8rem 1.2rem;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50px;
    background: rgba(255,255,255,0.1);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.email-input::placeholder {
    color: rgba(255,255,255,0.7);
}

.email-input:focus {
    outline: none;
    border-color: #FFD700;
    background: rgba(255,255,255,0.2);
}

.submit-btn {
    padding: 0.8rem 2rem;
    background: #FFD700;
    color: #000;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #FFC700;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,215,0,0.4);
}

.privacy-note {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    font-style: italic;
}

/* Footer */
.footer {
    background: rgba(0,0,0,0.7);
    padding: 2rem;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-info {
    margin-bottom: 1rem;
}

.contact-info p {
    margin: 0.5rem 0;
}

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

.contact-info a:hover {
    color: #FFC700;
}

.social-links {
    margin: 1.5rem 0;
}

.social-links a {
    color: white;
    text-decoration: none;
    margin: 0 1rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #FFD700;
}

.copyright {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
}

/* Animations */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease-out;
}

.animate-fade-in-delay-1 {
    animation: fadeIn 0.8s ease-out 0.2s both;
}

.animate-fade-in-delay-2 {
    animation: fadeIn 0.8s ease-out 0.4s both;
}

.animate-fade-in-delay-3 {
    animation: fadeIn 0.8s ease-out 0.6s both;
}

.animate-fade-in-delay-4 {
    animation: fadeIn 0.8s ease-out 0.8s both;
}

.animate-fade-in-delay-5 {
    animation: fadeIn 0.8s ease-out 1s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Two Columns Section */
.two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(255,215,0,0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,215,0,0.3);
}

.two-columns .column {
    padding: 1.5rem;
}

.two-columns h3 {
    color: #e67e22;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.two-columns .feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.two-columns .feature-list li {
    padding: 0.5rem 0;
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo h1 {
        font-size: 2.5rem;
    }
    
    .main-title {
        font-size: 2rem;
    }
    
    .two-columns {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .two-columns .column {
        padding: 1.25rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
    
    .description, .services, .coming-soon, .newsletter {
        padding: 1.5rem;
    }
    
    .services-list {
        font-size: 1rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .email-input {
        width: 100%;
    }
    
    .social-links a {
        display: block;
        margin: 0.5rem 0;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 2rem;
    }
    
    .main-title {
        font-size: 1.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .description p, .services-list li {
        font-size: 0.95rem;
    }
}