/* Services Page Styles */
.page-hero {
    padding: 160px 0 100px;
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--white) 100%);
    text-align: center;
}

.page-hero-content h1 {
    margin-bottom: 1.5rem;
}

.page-hero-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    color: #666;
}

.services-detail {
    padding: 100px 0;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.service-detail-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--medium-gray);
}

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

.service-icon-large {
    width: 100px;
    height: 100px;
    background: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--primary-blue);
    font-size: 2.5rem;
}

.service-detail-card h3 {
    text-align: center;
    margin-bottom: 20px;
}

.service-detail-card p {
    text-align: center;
    margin-bottom: 25px;
    color: #666;
}

.service-features {
    list-style: none;
    margin-top: 25px;
}

.service-features li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.service-features i {
    color: var(--primary-yellow);
    margin-top: 3px;
    flex-shrink: 0;
}

.process-section {
    background-color: var(--light-gray);
    padding: 100px 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 40px;
    right: -15px;
    width: 30px;
    height: 2px;
    background-color: var(--primary-blue);
    opacity: 0.3;
}

@media (max-width: 768px) {
    .process-step:not(:last-child)::after {
        display: none;
    }
}

.step-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--light-blue);
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

.process-step h3 {
    margin-bottom: 15px;
    color: var(--primary-blue);
}

.process-step p {
    color: #666;
    font-size: 0.95rem;
}