/* Services Index Specific Styles */

/* Hero Section */
.services-hero {
    background-color: #ffffff;
    border-bottom: 1px solid #e4e7ec;
    padding: 80px 0 64px;
    text-align: center;
}

.services-hero .hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #101828;
    letter-spacing: -0.02em;
}

.services-hero .subtitle {
    font-size: 20px;
    color: #475467;
    margin-bottom: 40px;
    line-height: 1.5;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stat {
    text-align: center;
}

.hero-stat .stat-value {
    font-size: 36px;
    font-weight: 700;
    color: #101828;
    display: block;
    line-height: 1.2;
    margin-bottom: 8px;
}

.hero-stat .stat-label {
    font-size: 16px;
    color: #475467;
    font-weight: 500;
}

/* Service Categories */
.service-categories {
    padding: 80px 0;
    background-color: #f9fafb;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #101828;
    text-align: center;
    margin-bottom: 48px;
    letter-spacing: -0.02em;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.category-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    box-shadow: 0 1px 3px rgba(16, 24, 40, 0.1);
    border: 1px solid #e4e7ec;
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(16, 24, 40, 0.15);
    border-color: #f79009;
}

.category-icon {
    font-size: 48px;
    margin-bottom: 24px;
    display: block;
}

.category-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #101828;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.category-card p {
    font-size: 16px;
    color: #475467;
    line-height: 1.6;
    margin-bottom: 24px;
}

.category-count {
    font-size: 14px;
    font-weight: 600;
    color: #f79009;
    background-color: #fef3e7;
    padding: 8px 16px;
    border-radius: 20px;
    display: inline-block;
}

/* Top Services */
.top-services {
    padding: 80px 0;
    background-color: #ffffff;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 24px;
    border: 1px solid #e4e7ec;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 24, 40, 0.1);
    border-color: #f79009;
}

.service-category {
    font-size: 12px;
    font-weight: 600;
    color: #f79009;
    background-color: #fef3e7;
    padding: 4px 12px;
    border-radius: 12px;
    display: inline-block;
    margin-bottom: 16px;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #101828;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.service-card p {
    font-size: 14px;
    color: #475467;
    line-height: 1.5;
    margin-bottom: 16px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.service-features li {
    font-size: 14px;
    color: #475467;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.service-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.rating-stars {
    display: flex;
    gap: 2px;
}

.rating-stars .star {
    width: 16px;
    height: 16px;
    fill: #f79009;
}

.rating-value {
    font-size: 14px;
    font-weight: 600;
    color: #101828;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #f79009;
    text-decoration: none;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: #d97706;
}

.service-link:after {
    content: "→";
    transition: transform 0.3s ease;
}

.service-link:hover:after {
    transform: translateX(4px);
}

/* Service Comparison */
.service-comparison {
    padding: 80px 0;
    background-color: #f9fafb;
}

.comparison-table {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(16, 24, 40, 0.1);
    border: 1px solid #e4e7ec;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th {
    background-color: #f9fafb;
    padding: 16px 24px;
    text-align: left;
    font-size: 14px;
    font-weight: 600;
    color: #101828;
    border-bottom: 1px solid #e4e7ec;
}

.comparison-table td {
    padding: 16px 24px;
    font-size: 14px;
    color: #475467;
    border-bottom: 1px solid #f2f4f7;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table .service-name {
    font-weight: 600;
    color: #101828;
}

.comparison-table .feature-check {
    color: #10b981;
    font-weight: bold;
}

.comparison-table .feature-cross {
    color: #ef4444;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-hero .hero-content h1 {
        font-size: 36px;
    }
    
    .services-hero .subtitle {
        font-size: 18px;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .category-card {
        padding: 24px;
    }
    
    .services-list {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .service-card {
        padding: 20px;
    }
    
    .comparison-table {
        overflow-x: auto;
    }
    
    .comparison-table table {
        min-width: 600px;
    }
}

@media (max-width: 480px) {
    .services-hero {
        padding: 60px 0 48px;
    }
    
    .services-hero .hero-content h1 {
        font-size: 28px;
    }
    
    .service-categories,
    .top-services,
    .service-comparison {
        padding: 60px 0;
    }
    
    .category-card,
    .service-card {
        padding: 16px;
    }
    
    .category-icon {
        font-size: 36px;
        margin-bottom: 16px;
    }
    
    .category-card h3 {
        font-size: 20px;
    }
}
