/* Services Page Styles */
.main-services {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: #333;
}

/* Hero Section */
.services-hero {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
}

.services-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #333;
}

.services-hero .lead {
    font-size: 1.25rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

/* Core Services */
.services-core {
    padding: 80px 0;
    background-color: #fff;
}

.service-card {
    background: #fff;
    border-radius: 12px;
    padding: 40px 30px;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.service-icon {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.service-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.service-link i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.service-link:hover {
    color: #666;
}

.service-link:hover i {
    transform: translateX(5px);
}

/* Expertise Section */
.services-expertise {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.services-expertise h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #333;
}

.expertise-intro {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.expertise-features {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.feature-item i {
    color: #333;
    font-size: 1.5rem;
    margin-right: 1rem;
    margin-top: 0.25rem;
}

.feature-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.feature-content p {
    color: #666;
    margin: 0;
}

.expertise-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.expertise-image img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.expertise-image:hover img {
    transform: scale(1.02);
}

/* Statistics Section */
.services-stats {
    padding: 80px 0;
    background-color: #fff;
}

.services-stats h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: #666;
}

/* Testimonials Section */
.services-testimonials {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.services-testimonials h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.quote-content {
    margin-bottom: 1.5rem;
}

.quote-content i {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: block;
}

.quote-content p {
    color: #666;
    font-style: italic;
    line-height: 1.6;
}

.client-info h4 {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
    color: #333;
}

.client-info p {
    color: #666;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .services-hero h1 {
        font-size: 2.5rem;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .services-hero {
        padding: 60px 0;
    }
    
    .services-hero h1 {
        font-size: 2rem;
    }
    
    .services-hero .lead {
        font-size: 1.1rem;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .services-expertise h2,
    .services-stats h2,
    .services-testimonials h2 {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
} 