/* FILE: assets/css/services.css */

/* Services Hero */
.services-hero {
    padding: 4rem 0 3rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.services-hero h1 {
    font-size: 2.5rem;
    color: #1a3a5c;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #ff6b35;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.hero-description {
    font-size: 1.05rem;
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Services Grid */
.services-grid {
    padding: 4rem 0;
}

.service-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #e0e0e0;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.2);
    border-color: #ff6b35;
}

.service-image {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.08);
}

.service-content {
    padding: 2rem 1.75rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-content h2 {
    font-size: 1.5rem;
    color: #1a3a5c;
    margin-bottom: 1rem;
}

.service-content p {
    font-size: 0.95rem;
    color: #2c3e50;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.service-highlights {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    flex-grow: 1;
}

.service-highlights li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    color: #2c3e50;
    line-height: 1.6;
}

.service-highlights li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-weight: bold;
    font-size: 1.1rem;
}

.service-cta {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: linear-gradient(135deg, #ff6b35 0%, #e55a2b 100%);
    color: #ffffff;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
}

.service-cta:hover {
    background: linear-gradient(135deg, #e55a2b 0%, #d14e23 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
    color: #ffffff;
}

/* Services Trust Section */
.services-trust {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.services-trust h2 {
    font-size: 2rem;
    color: #1a3a5c;
    text-align: center;
    margin-bottom: 3rem;
}

.trust-item {
    text-align: center;
    padding: 1.5rem 1rem;
}

.trust-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.25rem;
    background: linear-gradient(135deg, #ff6b35 0%, #e55a2b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-icon svg {
    color: #ffffff;
}

.trust-item h3 {
    font-size: 1.15rem;
    color: #1a3a5c;
    margin-bottom: 0.75rem;
}

.trust-item p {
    font-size: 0.9rem;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 0;
}

.local-expertise {
    margin-top: 3rem;
    padding: 2rem;
    background: #ffffff;
    border-radius: 10px;
    border-left: 4px solid #ff6b35;
    text-align: center;
}

.local-expertise h3 {
    font-size: 1.35rem;
    color: #1a3a5c;
    margin-bottom: 1rem;
}

.local-expertise p {
    font-size: 1rem;
    color: #2c3e50;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Service Locations */
.service-locations {
    padding: 4rem 0;
}

.service-locations h2 {
    font-size: 2rem;
    color: #1a3a5c;
    text-align: center;
    margin-bottom: 3rem;
}

.location-info {
    background: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid #e0e0e0;
    height: 100%;
    transition: all 0.3s ease;
}

.location-info:hover {
    border-color: #ff6b35;
    box-shadow: 0 6px 15px rgba(255, 107, 53, 0.15);
    transform: translateY(-5px);
}

.location-info h3 {
    font-size: 1.35rem;
    color: #1a3a5c;
    margin-bottom: 1rem;
}

.location-info p {
    font-size: 0.95rem;
    color: #2c3e50;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.location-services {
    padding-top: 1rem;
    border-top: 1px solid #e0e0e0;
    margin-top: 1rem;
}

.location-services strong {
    color: #1a3a5c;
    font-weight: 700;
}

/* Services CTA */
.services-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a3a5c 0%, #0f2438 100%);
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.services-cta h2 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.services-cta p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    min-width: 220px;
}

/* Responsive */
@media (max-width: 768px) {
    .services-hero {
        padding: 3rem 0 2rem;
    }
    
    .services-hero h1 {
        font-size: 1.85rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .services-grid,
    .services-trust,
    .service-locations,
    .services-cta {
        padding: 3rem 0;
    }
    
    .service-content {
        padding: 1.75rem 1.5rem;
    }
    
    .service-content h2 {
        font-size: 1.35rem;
    }
    
    .service-image img {
        height: 220px;
    }
    
    .location-info {
        padding: 1.75rem 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .services-hero h1 {
        font-size: 1.6rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .service-content {
        padding: 1.5rem 1.25rem;
    }
    
    .service-content h2 {
        font-size: 1.25rem;
    }
    
    .service-image img {
        height: 200px;
    }
    
    .services-trust h2,
    .service-locations h2,
    .services-cta h2 {
        font-size: 1.65rem;
    }
    
    .trust-icon {
        width: 50px;
        height: 50px;
    }
    
    .trust-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .local-expertise {
        padding: 1.5rem;
    }
    
    .location-info {
        padding: 1.5rem 1.25rem;
    }
}