/* Services Page Specific Styles */

/* Service page hero variations */
.service-hero {
    background: linear-gradient(135deg, #1db954 0%, #179443 100%);
    color: white;
    padding: 80px 0 60px;
}

.service-hero h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.service-hero .lead {
    font-size: 1.2rem;
    opacity: 0.95;
    margin-bottom: 30px;
}

/* Service feature cards */
.service-feature {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.service-feature-icon {
    width: 60px;
    height: 60px;
    background: var(--brand-green);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-feature-icon i {
    font-size: 1.8rem;
    color: white;
}

.service-feature h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--brand-text);
}

.service-feature p {
    color: var(--brand-muted);
    line-height: 1.6;
}

/* Service pricing/features table */
.service-table {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.service-table th {
    background: var(--brand-green);
    color: white;
    font-weight: 600;
    padding: 20px;
    border: none;
}

.service-table td {
    padding: 15px 20px;
    border-bottom: 1px solid #f0f0f0;
    vertical-align: middle;
}

.service-table tr:last-child td {
    border-bottom: none;
}

/* Service CTA sections */
.service-cta {
    background: var(--brand-bg-light);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    margin: 40px 0;
}

.service-cta h3 {
    color: var(--brand-text);
    margin-bottom: 15px;
}

.service-cta p {
    color: var(--brand-muted);
    margin-bottom: 25px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .service-hero h1 {
        font-size: 2.2rem;
    }

    .service-feature {
        padding: 25px;
    }

    .service-cta {
        padding: 30px 20px;
    }
}