.glass-header {
    background: linear-gradient(120deg, rgba(13, 43, 69, 0.9), rgba(0, 0, 0, 0.8)), url(../images/zemlyaniye_raboti/zemlyaniye_raboti_main.jpg) no-repeat center center / cover;
}


/* Earthworks Page Specific Styles */
.service-list {
    list-style: none;
    margin-top: 1.5rem;
}

.service-list li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: flex-start;
}

.service-list i {
    color: var(--primary);
    margin-right: 10px;
    margin-top: 5px;
    flex-shrink: 0;
}

.mt-40 {
    margin-top: 2.5rem;
}

.equipment-card {
    background: var(--card-bg);
    border-radius: 1.2rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(46, 125, 50, 0.1);
}

.equipment-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.equipment-card h3 {
    margin-bottom: 1rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.gallery-caption {
    padding: 1rem;
    background: var(--card-bg);
    text-align: center;
    font-weight: 500;
}

.pricing-table {
    background: var(--card-bg);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.pricing-table table {
    width: 100%;
    border-collapse: collapse;
}

.pricing-table th,
.pricing-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--light-gray);
}

.pricing-table th {
    background: rgba(46, 125, 50, 0.1);
    font-weight: 600;
}

.pricing-table tr:last-child td {
    border-bottom: none;
}

.pricing-table tr:hover {
    background: rgba(46, 125, 50, 0.05);
}

.price-note {
    padding: 1.5rem;
    font-size: 0.9rem;
    color: var(--gray);
    border-top: 1px solid var(--light-gray);
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .equipment-card {
        padding: 1.5rem;
    }
}