/* Services Page Styles */

.service-page {
    margin: 1rem auto;
}

/* Service Detail Pages */
.service-detail-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

.service-detail-container {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    margin-top: 4rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 1.5rem;
    transition: gap 0.3s ease;
}

.back-link:hover {
    gap: 0.75rem;
}

.service-detail-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-tertiary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.service-detail-hero {
    width: 100%;
    max-height: 400px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.service-detail-hero img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.service-detail-desc {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--color-gray-dark);
    margin-bottom: 2rem;
}

.service-detail-section h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-tertiary);
    margin: 2rem 0 1rem;
}

.service-detail-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.service-detail-features li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--color-gray-dark);
    line-height: 1.6;
}

.service-detail-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: bold;
    font-size: 1.25rem;
}

.service-detail-cta {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
    text-align: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary {
    background: var(--color-primary);
    color: white;
    border: 2px solid var(--color-primary);
    box-shadow: 0 4px 15px rgba(248, 152, 0, 0.3);
}

.btn-primary:hover {
    background: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(248, 152, 0, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .service-detail-container {
        padding: 1.5rem;
    }

    .service-detail-title {
        font-size: 1.75rem;
    }

    .service-detail-section h2 {
        font-size: 1.5rem;
    }
}