/* Services Page Styles - SOVBau */

/* Page Header */
.services-header {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, white 100%);
    text-align: center;
}

.services-header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.services-header .lead {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Services Grid */
.services-grid {
    padding: 80px 0;
}

.service-card {
    background: white;
    border: none;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.service-card img {
    height: 200px;
    width: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.service-card .card-body {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-card .card-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.service-card .card-text {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-card ul {
    margin-bottom: 0;
    flex-grow: 1;
}

.service-card ul li {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
    padding: 0.25rem 0;
    position: relative;
    padding-left: 1rem;
}

.service-card ul li::before {
    content: "✓";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.service-card .card-footer {
    background: var(--bg-light);
    border-top: 1px solid var(--border-color);
    padding: 1.5rem 2rem;
    margin-top: auto;
}

.service-card .btn {
    background: var(--primary-color);
    border: 2px solid var(--primary-color);
    color: white;
    padding: 10px 25px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.service-card .btn:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    color: white;
}

/* Why Choose Section */
.why-choose-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.why-choose-section h2 {
    font-size: 2.5rem;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 3rem;
}

.feature-item {
    text-align: center;
    padding: 2rem 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-item h4 {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-item p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* CTA Section */
.services-cta {
    padding: 80px 0;
    text-align: center;
}

.services-cta h2 {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.services-cta .lead {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--primary-color);
    border: 2px solid var(--primary-color);
    color: white;
    padding: 15px 40px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.1rem;
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline-primary {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 15px 40px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.1rem;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-header h1 {
        font-size: 2.5rem;
    }
    
    .services-header .lead {
        font-size: 1.1rem;
    }
    
    .why-choose-section h2 {
        font-size: 2rem;
    }
    
    .services-cta h2 {
        font-size: 2rem;
    }
    
    .service-card .card-body {
        padding: 1.5rem;
    }
    
    .service-card .card-footer {
        padding: 1.25rem 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .feature-item {
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 576px) {
    .services-header,
    .services-grid,
    .why-choose-section,
    .services-cta {
        padding: 50px 0;
    }
    
    .services-header h1 {
        font-size: 2rem;
    }
    
    .service-card img {
        height: 150px;
    }
    
    .service-card .card-title {
        font-size: 1.2rem;
    }
    
    .btn-primary,
    .btn-outline-primary {
        padding: 12px 30px;
        font-size: 1rem;
    }
}