﻿/* Service Page Specific Styles */

/* Service Hero Section */
.service-hero {
    background: linear-gradient(rgba(15, 117, 188, 0.9), rgba(15, 117, 188, 0.9)), url('../images/service-hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
    padding: 150px 0 80px;
    margin-top: 60px;
}

.service-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--white);
}

.service-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Service Intro Section */
.service-intro {
    padding: 80px 0;
    background-color: var(--white);
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.intro-text h2 {
    text-align: left;
}

.intro-text h2:after {
    left: 0;
    transform: none;
}

.intro-image img {
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}

/* Service Features Section */
.service-features {
    background-color: var(--light-gray);
    padding: 80px 0;
}

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

.feature-card {
    background-color: var(--white);
    border-radius: 8px;
    padding: 25px;
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
}

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

.feature-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--text-light);
}

/* Service Process Section */
.service-process {
    background-color: var(--white);
    padding: 80px 0;
}

.process-steps {
    max-width: 900px;
    margin: 0 auto;
}

.step {
    display: flex;
    margin-bottom: 30px;
    position: relative;
}

.step:not(:last-child):after {
    content: '';
    position: absolute;
    top: 50px;
    left: 25px;
    height: calc(100% - 20px);
    width: 2px;
    background-color: var(--primary-light);
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: 600;
    margin-right: 25px;
    flex-shrink: 0;
    z-index: 1;
}

.step-content {
    background-color: var(--secondary-color);
    padding: 20px 30px;
    border-radius: 8px;
    flex-grow: 1;
}

.step-content h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

/* Service Benefits Section */
.service-benefits {
    background-color: var(--light-gray);
    padding: 80px 0;
}

.benefits-list {
    max-width: 900px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    margin-bottom: 25px;
    background-color: var(--white);
    padding: 20px;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.benefit-item i {
    font-size: 1.5rem;
    color: var(--success);
    margin-right: 20px;
    flex-shrink: 0;
    margin-top: 3px;
}

.benefit-item h3 {
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.benefit-item p {
    color: var(--text-light);
    margin-bottom: 0;
}

/* Service Clients Section */
.service-clients {
    background-color: var(--white);
    padding: 60px 0;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    background-color: var(--light-gray);
    border-radius: 8px;
    font-weight: 600;
    color: var(--primary-color);
    box-shadow: var(--box-shadow);
    padding: 15px;
    text-align: center;
}

/* Service CTA Section */
.service-cta {
    background: linear-gradient(rgba(15, 117, 188, 0.82), rgba(15, 117, 188, 0.82)), url('../images/cta-bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
    padding: 80px 0;
}

.service-cta h2 {
    color: var(--white);
}

.service-cta h2:after {
    background-color: var(--white);
}

.service-cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.service-cta .btn {
    background-color: var(--white);
    color: var(--primary-color);
    padding: 12px 30px;
    font-size: 1.1rem;
}

.service-cta .btn:hover {
    background-color: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .service-hero h1 {
        font-size: 2.4rem;
    }
    
    .intro-content {
        grid-template-columns: 1fr;
    }
    
    .intro-text {
        order: 1;
    }
    
    .intro-image {
        order: 0;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .service-hero {
        padding: 130px 0 60px;
    }
    
    .service-hero h1 {
        font-size: 2rem;
    }
    
    .step-content {
        padding: 15px 20px;
    }
    
    .benefit-item {
        padding: 15px;
    }
    
    .clients-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
}

@media (max-width: 576px) {
    .service-hero h1 {
        font-size: 1.8rem;
    }
    
    .feature-card {
        padding: 20px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .step:not(:last-child):after {
        top: 40px;
        left: 20px;
    }
}

/* Service FAQ Section */
.service-faq {
    background-color: var(--light-gray);
    padding: 70px 0;
}

.faq-list {
    margin-top: 30px;
}

.faq-item {
    background-color: var(--white);
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(15, 117, 188, 0.08);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--primary-color);
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 25px 20px;
    max-height: 1000px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active .faq-question {
    border-bottom: 1px solid var(--medium-gray);
} 