/* HOME SPECIFIC: NO GLASSMORPHISM */
.hero-section {
    padding: 100px 20px;
    background: linear-gradient(rgba(15, 15, 17, 0.8), rgba(15, 15, 17, 0.9)), url('/img/moving-truck.jpg') center/cover;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content {
    background: #0f0f11;
    padding: 60px;
    border-left: 8px solid #044c92;
    max-width: 900px;
}

.hero-content h1 { font-size: 3.5rem; text-transform: uppercase; margin-bottom: 20px; }
.hero-content p { font-size: 1.3rem; color: #a7a8ab; margin-bottom: 30px; }

/* SERVICES: Matte Cards */
.services { padding: 100px 20px; text-align: center; }
.services h2 { font-size: 2.5rem; margin-bottom: 50px; text-transform: uppercase; }

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: #161618;
    padding: 40px;
    border-top: 4px solid #044c92;
    transition: 0.3s ease;
}

.service-card:hover { transform: translateY(-10px); background: #1a1a1c; }
.service-card h3 { color: #044c92; text-transform: uppercase; margin-bottom: 15px; }

/* PHOTO GALLERY */
.company-gallery { padding: 100px 20px; background: #eeeeef; color: #0f0f11; }
.company-gallery h2 { text-align: center; margin-bottom: 50px; text-transform: uppercase; }

.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    height: 300px;
    background: #0f0f11;
    overflow: hidden;
    border-bottom: 5px solid #044c92;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(30%);
    transition: 0.5s ease;
}

.gallery-item:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}


@media (max-width: 768px) {
    .hero-section {
        padding: 60px 15px;
        min-height: 60vh;    
    }

    .hero-content {
        padding: 30px 20px; 
        border-left-width: 5px; 
        width: 100%; 
        max-width: 100%; 
    }

    .hero-content h1 {
        font-size: 2rem; 
        line-height: 1.2;
        margin-bottom: 15px;
    }

    .hero-content p {
        font-size: 1.1rem; 
        margin-bottom: 25px;
    }
}