/* Services Page Styles */

/* Services Page Header */
.services-page-header {
    padding: 120px 0 60px;
    background: var(--white);
    margin-top: 80px;
}

.services-page-header h1 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--black);
    margin-bottom: 30px;
    text-transform: uppercase;
}

.services-intro {
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    max-width: 900px;
}

/* Detailed Services Section */
.detailed-services {
    padding: 60px 0;
    background: var(--gray-light);
}

.detailed-services-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.detailed-service-card {
    background: var(--white);
    border-radius: 8px;
    padding: 30px;
    display: grid;
    grid-template-columns: 120px 1fr 200px;
    gap: 30px;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.detailed-service-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    transform: translateY(-2px);
}

.detailed-service-icon {
    width: 120px;
    height: 120px;
    background: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.detailed-service-icon svg {
    width: 70px;
    height: 70px;
    color: var(--white);
    stroke-width: 2;
}

.detailed-service-content {
    flex: 1;
}

.detailed-service-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 15px;
}

.detailed-service-content p {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

.detailed-service-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-shrink: 0;
}

.service-action-btn {
    padding: 12px 20px;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-action-btn.primary {
    background: var(--red);
    color: var(--white);
}

.service-action-btn.primary:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220,20,60,0.4);
}

.service-action-btn.secondary {
    background: var(--gray);
    color: var(--white);
}

.service-action-btn.secondary:hover {
    background: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* Responsive Design */
@media (max-width: 968px) {
    .detailed-service-card {
        grid-template-columns: 100px 1fr;
        gap: 25px;
    }

    .detailed-service-actions {
        grid-column: 1 / -1;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-action-btn {
        flex: 1;
        min-width: 150px;
    }
}

@media (max-width: 768px) {
    .services-page-header {
        padding: 100px 0 40px;
        margin-top: 70px;
    }

    .services-page-header h1 {
        font-size: 2rem;
    }

    .services-intro {
        font-size: 1rem;
    }

    .detailed-services {
        padding: 40px 0;
    }

    .detailed-service-card {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 25px 20px;
    }

    .detailed-service-icon {
        width: 100px;
        height: 100px;
        margin: 0 auto;
    }

    .detailed-service-icon svg {
        width: 60px;
        height: 60px;
    }

    .detailed-service-content {
        text-align: center;
    }

    .detailed-service-content h2 {
        font-size: 1.5rem;
    }

    .detailed-service-actions {
        grid-column: 1;
        flex-direction: column;
    }

    .service-action-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .services-page-header h1 {
        font-size: 1.6rem;
    }

    .detailed-service-content h2 {
        font-size: 1.3rem;
    }

    .detailed-service-content p {
        font-size: 0.95rem;
    }
}

