/* Services Page Specific Styles */

/* Page Header */
.page-header {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(rgba(var(--primary-blue-rgb), 0.1), rgba(var(--primary-blue-rgb), 0.2));
    margin-bottom: 2rem;
}

.page-header h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--dark-blue);
    margin-bottom: 1rem;
    font-family: var(--font-secondary);
}

.page-header p {
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-color);
    font-size: 1.1rem;
    font-family: var(--font-primary);
}

/* Service Accordion */
.service-item {
    background-color: var(--neutral-white);
    border-radius: 8px;
    box-shadow: var(--shadow);
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: var(--transition);
}

.service-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background-color: var(--light-blue);
    cursor: pointer;
    transition: var(--transition);
}

.service-title h2 {
    margin: 0;
    font-size: 1.5rem;
    color: var(--dark-blue);
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: var(--font-secondary);
}

.service-icon {
    font-size: 1.5rem;
    color: var(--primary-blue);
}

.toggle-icon {
    font-size: 1.5rem;
    transition: var(--transition);
}

.service-item.active .toggle-icon {
    transform: rotate(45deg);
}

.service-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition);
}

.service-item.active .service-content {
    max-height: 2000px;
}

.service-details {
    padding: 2rem;
    border-top: 1px solid var(--light-blue);
}

.service-description {
    margin-bottom: 2rem;
    line-height: 1.7;
    font-family: var(--font-primary);
}

/* Service Features */
.feature-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-item {
    background-color: var(--light-blue);
    padding: 1.5rem;
    border-radius: 8px;
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-5px);
    background-color: var(--primary-blue);
    color: var(--neutral-white);
}

.feature-item h4 {
    color: var(--dark-blue);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-family: var(--font-secondary);
}

.feature-item:hover h4 {
    color: var(--neutral-white);
}

/* Process Steps */
.process-steps {
    counter-reset: step;
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: var(--neutral-white);
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.process-step:hover {
    transform: translateX(10px);
}

.process-step::before {
    counter-increment: step;
    content: counter(step);
    min-width: 40px;
    height: 40px;
    background-color: var(--primary-blue);
    color: var(--neutral-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.step-content h4 {
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-family: var(--font-secondary);
}

/* Service Requirements */
.requirements-list {
    background-color: var(--light-blue);
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.requirements-list h3 {
    color: var(--dark-blue);
    margin-bottom: 1.5rem;
    font-family: var(--font-secondary);
}

.requirements-list ul {
    list-style: none;
    padding: 0;
}

.requirements-list li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    font-family: var(--font-primary);
}

.requirements-list li::before {
    content: "✓";
    color: var(--primary-blue);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Call to Action */
.service-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 3rem;
    background-color: var(--light-blue);
    border-radius: 8px;
}

.service-cta h3 {
    color: var(--dark-blue);
    margin-bottom: 1.5rem;
    font-family: var(--font-secondary);
}

.service-cta .btn {
    margin-top: 1rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .page-header {
        padding: 3rem 1rem;
    }

    .service-title {
        padding: 1rem;
    }

    .service-title h2 {
        font-size: 1.2rem;
    }

    .service-details {
        padding: 1.5rem;
    }

    .feature-list {
        grid-template-columns: 1fr;
    }

    .process-step {
        padding: 1rem;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 1.8rem;
    }

    .service-icon,
    .toggle-icon {
        font-size: 1.2rem;
    }

    .process-step::before {
        min-width: 30px;
        height: 30px;
        font-size: 1rem;
    }

    .service-cta {
        padding: 2rem 1rem;
    }
} 