/* CVG Construction Services Styles */
/* Service cards, environmental services, and specialized content */

/* Services Section */
.services {
    background: white;
}

.service-card {
    background: #F8F9FA;
    padding: 2rem;
    border-radius: 10px;
    border-left: 5px solid #FF6B35;
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transform: translateY(-5px);
}

.service-icon {
    text-align: center;
    margin-bottom: 1rem;
}

.service-icon i {
    font-size: 3rem;
    color: #1B365D;
}

.service-card h3 {
    color: #1B365D;
    margin-bottom: 0.5rem;
}

.service-equipment {
    color: #FF6B35;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.service-benefits {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-benefits li {
    padding: 0.25rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27AE60;
    font-weight: bold;
}

.service-cta {
    background: #1B365D;
    color: white;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.service-cta:hover {
    background: #FF6B35;
    transform: translateY(-2px);
}

/* Service Overview Styling */
.service-overview {
    background: white;
    padding: 80px 0;
}

.key-benefits {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: #FF6B35;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Environmental Compliance Styles */
.regulatory-framework {
    background: white;
    padding: 80px 0;
}

.regulatory-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    border-left: 4px solid #27AE60;
}

.regulatory-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border-left-color: #FF6B35;
}

.regulatory-icon {
    text-align: center;
    margin-bottom: 1.5rem;
}

.regulatory-icon i {
    font-size: 3rem;
    color: #27AE60;
}

.regulatory-card h3 {
    color: #1B365D;
    margin-bottom: 1rem;
    text-align: center;
}

.regulatory-card ul {
    list-style: none;
    margin: 0;
}

.regulatory-card ul li {
    padding: 0.5rem 0;
    color: #2C3E50;
    position: relative;
    padding-left: 1.5rem;
}

.regulatory-card ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #27AE60;
    font-weight: bold;
}

/* Environmental Services */
.environmental-services {
    background: #f8f9fa;
    padding: 80px 0;
}

.environmental-service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.environmental-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.environmental-service-icon {
    text-align: center;
    margin-bottom: 1.5rem;
}

.environmental-service-icon i {
    font-size: 3rem;
    color: #27AE60;
}

.service-certifications {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.cert {
    background: #27AE60;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Technology Section */
.technology {
    background: #F8F9FA;
}

.tech-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.tech-item:hover {
    transform: translateY(-5px);
}

.tech-item h3 {
    color: #1B365D;
    margin: 1rem 1rem 0.5rem;
}

.tech-item p {
    margin: 0 1rem;
    font-size: 0.9rem;
}

.tech-specs {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin: 1rem;
}

.tech-specs span {
    background: #1B365D;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.tech-cta {
    text-align: center;
}
