/* ==================== SERVICES INTRO ==================== */
.services-intro {
    font-size: 1.05rem;
    color: #b0b0b0;
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* ==================== METHODOLOGY (HOW I WORK) ==================== */
.methodology-section {
    border-left-color: #03dac6;
}

.methodology-steps {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.methodology-step {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    background-color: #252525;
    padding: 1.2rem;
    border-radius: 6px;
    transition: transform 0.2s;
}

.methodology-step:hover {
    transform: translateX(4px);
}

.step-number {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #bb86fc, #03dac6);
    color: #121212;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

.step-content h3 {
    color: #bb86fc;
    font-size: 1rem;
    margin-bottom: 0.4rem;
}

.step-content p {
    color: #b0b0b0;
    font-size: 0.93rem;
    line-height: 1.6;
    margin: 0;
}

/* ==================== ENGAGEMENT MODELS ==================== */
.engagement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.engagement-card {
    background-color: #252525;
    padding: 1.5rem;
    border-radius: 6px;
    border-top: 3px solid #03dac6;
    transition: transform 0.3s, box-shadow 0.3s;
}

.engagement-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(3, 218, 198, 0.15);
}

.engagement-card h3 {
    color: #bb86fc;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.engagement-duration {
    display: inline-block;
    background: rgba(3, 218, 198, 0.15);
    color: #03dac6;
    padding: 0.2rem 0.7rem;
    border-radius: 12px;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.engagement-card p {
    font-size: 0.93rem;
    line-height: 1.6;
    color: #b0b0b0;
    margin: 0;
}

.engagement-note {
    font-size: 0.9rem;
    color: #999;
    font-style: italic;
    margin-top: 0.5rem;
}

/* ==================== SERVICE ACCORDION ==================== */
.service-accordion {
    background-color: #1e1e1e;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border-left: 3px solid #bb86fc;
    overflow: hidden;
}

.service-accordion summary {
    padding: 1.2rem 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 1rem;
    list-style: none;
    transition: background-color 0.3s;
}

.service-accordion summary::-webkit-details-marker {
    display: none;
}

.service-accordion summary::before {
    content: '▸';
    color: #bb86fc;
    font-size: 1.2rem;
    transition: transform 0.3s;
    flex-shrink: 0;
}

.service-accordion[open] summary::before {
    transform: rotate(90deg);
}

.service-accordion summary:hover {
    background-color: #252525;
}

.service-accordion summary h2 {
    margin: 0;
    font-size: 1.2rem;
    color: #03dac6;
}

.accordion-desc {
    color: #888;
    font-size: 0.85rem;
    margin-left: auto;
}

.accordion-content {
    padding: 0 2rem 1.5rem;
}

/* ==================== SERVICE ITEMS ==================== */
.service-item {
    background-color: #1e1e1e;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-left: 3px solid #03dac6;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.service-item:hover {
    background-color: #252525;
    border-left-color: #bb86fc;
    box-shadow: 0 4px 12px rgba(187, 134, 252, 0.15);
    transform: translateX(5px);
}

.service-item h3 {
    color: #bb86fc;
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
}

.service-item p {
    color: #b0b0b0;
    line-height: 1.7;
    margin: 0;
}

/* ==================== SERVICES CTA ==================== */
.services-cta {
    background: linear-gradient(135deg, rgba(187, 134, 252, 0.1), rgba(3, 218, 198, 0.1));
    padding: 3rem 2rem;
    border-radius: 8px;
    text-align: center;
    margin-top: 3rem;
}

.services-cta h2 {
    color: #bb86fc;
    margin-bottom: 1rem;
}

.services-cta p {
    color: #b0b0b0;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

/* ==================== RESPONSIVE SERVICES ==================== */
@media (max-width: 768px) {
    .engagement-grid {
        grid-template-columns: 1fr;
    }

    .accordion-desc {
        display: none;
    }

    .service-accordion summary {
        padding: 1rem 1.2rem;
    }

    .accordion-content {
        padding: 0 1.2rem 1rem;
    }
}
