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

:root {
    /* Colors */
    --bg-dark: hsl(220, 30%, 8%);
    --bg-card: hsl(220, 25%, 12%);
    --text-primary: hsl(210, 40%, 98%);
    --text-muted: hsl(215, 20%, 65%);
    --primary: hsl(217, 91%, 60%);
    --primary-glow: hsl(217, 91%, 70%);
    --border: hsl(220, 15%, 25%);
    
    /* Service icon colors */
    --icon-electric: hsl(45, 100%, 60%);
    --icon-light: hsl(217, 91%, 60%);
    --icon-home: hsl(150, 60%, 50%);
    --icon-safety: hsl(0, 84%, 60%);
    --icon-kitchen: hsl(25, 95%, 53%);
    --icon-outdoor: hsl(120, 60%, 50%);
    --icon-repair: hsl(280, 100%, 70%);
    --icon-modern: hsl(180, 80%, 50%);
    --icon-warning: hsl(30, 100%, 60%);
    
    /* Shadows */
    --shadow-card: 0 8px 32px -8px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 40px rgba(77, 144, 254, 0.3);
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(77, 144, 254, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(77, 144, 254, 0.05) 0%, transparent 50%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.icon {
    width: 1.25rem;
    height: 1.25rem;
}

.text-primary {
    color: var(--primary);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--bg-dark), var(--bg-card));
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(77, 144, 254, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-left {
    space-y: 2rem;
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 28rem;
    margin-bottom: 2rem;
}

.hero-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.feature-dot {
    width: 0.5rem;
    height: 0.5rem;
    background: var(--primary);
    border-radius: 50%;
}

.feature-dot.green {
    background: var(--icon-outdoor);
}

.feature-dot.blue {
    background: var(--primary);
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-glow));
    color: var(--bg-dark);
    padding: 0.75rem 2rem;
    border-radius: 0.75rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 4px 16px rgba(77, 144, 254, 0.3);
    transition: all 0.3s ease;
}

.btn-hero:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: var(--shadow-glow);
}

.hero-right {
    position: relative;
}

.hero-image {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-glow);
}

.hero-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.hero-badge-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(77, 144, 254, 0.9);
    backdrop-filter: blur(8px);
    border-radius: 0.75rem;
    padding: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--bg-dark);
}

.badge-title {
    font-size: 0.875rem;
    font-weight: 600;
}

.badge-subtitle {
    font-size: 0.75rem;
}

/* Services Section */
.services-section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 48rem;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: linear-gradient(135deg, rgba(220, 225, 232, 0.1), rgba(220, 225, 232, 0.05));
    backdrop-filter: blur(8px);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-card);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.service-image {
    position: relative;
    border-radius: 0.5rem;
    overflow: hidden;
    margin-bottom: 1rem;
}

.service-image img {
    width: 100%;
    height: 192px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-icon {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.5rem;
    border-radius: 0.5rem;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.service-description {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.5;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    position: relative;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-card);
}

.contact-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-icon {
    padding: 0.75rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-icon {
    background: rgba(77, 144, 254, 0.1);
    color: var(--primary);
}

.location-icon {
    background: rgba(72, 187, 120, 0.1);
    color: var(--icon-home);
}

.clock-icon {
    background: rgba(72, 187, 120, 0.1);
    color: var(--icon-outdoor);
}

.contact-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
}

.contact-card p {
    color: var(--text-muted);
}

.phone-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.phone-number:hover {
    color: var(--primary-glow);
}

.cta-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 3rem;
    text-align: center;
    box-shadow: var(--shadow-card);
}

.cta-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-card p {
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.cta-card .btn-hero {
    width: 100%;
    justify-content: center;
    margin-bottom: 1rem;
}

.cta-features {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.footer {
    margin-top: 5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    text-align: center;
}

.footer-brand {
    font-weight: 600;
    color: var(--primary);
}

/* Icon colors */
.icon-electric { color: var(--icon-electric); }
.icon-light { color: var(--icon-light); }
.icon-home { color: var(--icon-home); }
.icon-safety { color: var(--icon-safety); }
.icon-kitchen { color: var(--icon-kitchen); }
.icon-outdoor { color: var(--icon-outdoor); }
.icon-repair { color: var(--icon-repair); }
.icon-modern { color: var(--icon-modern); }
.icon-warning { color: var(--icon-warning); }

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}