/* Services Page Styles */
.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/services-bg.jpg') no-repeat center center/cover;
    color: white;
    padding: 120px 0 60px;
    text-align: center;
    position: relative;
    margin-top: 80px;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
}

.breadcrumb-item {
    margin: 0 5px;
    font-size: 0.9rem;
}

.breadcrumb-item a {
    color: #e2e8f0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--primary-color);
}

.breadcrumb-item.active {
    color: #d62828;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: '›';
    margin-right: 10px;
    color: #d62828;
}

.section-padding {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--light-bg);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #d62828;
}

.section-subtitle {
    color: var(--light-text);
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(214, 40, 40, 0.3);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    border-left: 3px solid #d62828;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: #d62828;
}

.service-icon {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #d62828, #e74c3c);
    color: white;
    font-size: 2.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin: 20px 20px 15px;
    color: var(--text-color);
    text-align: center;
}

.service-card p {
    color: var(--light-text);
    padding: 0 20px;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.7;
}

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

.service-features li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    color: var(--light-text);
}

.service-features li i {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #d62828;
    font-size: 0.8rem;
}

.service-card .btn {
    display: block;
    margin: 0 20px 25px;
    text-align: center;
    padding: 10px 20px;
    border: 1px solid #d62828;
    color: #d62828;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.service-card .btn:hover {
    background-color: #d62828;
    color: white;
    transform: translateY(-3px);
}

/* Features Section */
.features-section {
    background-color: #fff0f0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(214, 40, 40, 0.3);
    transition: all 0.3s ease;
    text-align: center;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: rgba(214, 40, 40, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 2rem;
    color: #d62828;
}

.feature-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

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

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #d62828, #e74c3c);
    padding: 80px 0;
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-content .btn {
    background: white;
    color: #d62828;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.cta-content .btn i {
    font-size: 1.2rem;
}

.cta-content .btn:hover {
    background: #f0f4ff;
    transform: translateY(-3px);
    box-shadow: 0 0 0 2px rgba(214, 40, 40, 0.2);
}

/* Responsive Styles */
@media (max-width: 1199px) {
    .services-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 991px) {
    .page-header {
        padding: 100px 0 50px;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 767px) {
    .services-grid {
        grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
    }
    
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
}

@media (max-width: 575px) {
    .page-header {
        padding: 80px 0 40px;
        margin-top: 70px;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .breadcrumb {
        flex-wrap: wrap;
    }
    
    .breadcrumb-item {
        font-size: 0.8rem;
    }
    
    .feature-item {
        padding: 20px 15px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .feature-icon i {
        font-size: 1.5rem;
    }
    
    .feature-item h3 {
        font-size: 1.2rem;
    }
    
    .cta-content h2 {
        font-size: 1.6rem;
    }
    
    .cta-section {
        padding: 60px 0;
    }
}
