/* Construction-specific styles */
body {
    background-color: #0f1419;
}

.navbar {
    background: rgba(15, 20, 25, 0.95);
}

.hero-section {
    background: linear-gradient(135deg, rgba(15, 32, 39, 0.85), rgba(32, 58, 67, 0.85)),
                url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?w=1600') center/cover;
}

/* Services Section */
.service-item {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.service-item.dark {
    background: #0f1419;
}

.service-item.light {
    background: #1a1f26;
}

.service-img {
    width: 100%;
    height: 500px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.service-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    transition: background 0.4s ease;
}

.service-item:hover .service-img::after {
    background: rgba(0, 0, 0, 0.1);
}

.service-content {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-content h2 {
    font-size: 3rem;
    font-weight: 200;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 30px;
}

.service-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, #ff8c32, transparent);
}

.service-content p {
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    line-height: 1.8;
    opacity: 0.9;
    margin-top: 10px;
}

/* Page-specific backgrounds */
.faq-section {
    background: #1a1f26;
}

.contact-section {
    background: #0f1419;
}

.footer {
    background: #0a0e12;
}

/* Responsive - construction specific */
@media (max-width: 768px) {
    .service-content h2 {
        font-size: 2rem;
        letter-spacing: 3px;
    }

    .service-content {
        padding: 40px 30px;
    }
}
