/* Services Page Layout - Enterprise Olive Theme */
.services-page-wrapper {
    background: radial-gradient(circle at 10% 20%, #2f3e22, #0f172a, #000000);
    min-height: 100vh;
    padding-top: 140px;
    padding-bottom: 80px;
    font-family: 'Inter', sans-serif;
    color: #f1f8e9;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    gap: 60px;
    position: relative;
    align-items: flex-start;
}

/* Sidebar Navigation */
.services-sidebar {
    position: sticky;
    top: 140px;
    width: 280px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    border-left: 2px solid rgba(139, 195, 74, 0.2);
    padding-left: 0;
    z-index: 100;
    /* Ensure it stays interactive */
}

.sidebar-link {
    display: block;
    padding: 16px 24px;
    color: #94a3b8;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    margin-left: -2px;
    /* Overlap border */
}

.sidebar-link:hover {
    color: #dcedc8;
    background: linear-gradient(90deg, rgba(139, 195, 74, 0.1), transparent);
}

.sidebar-link.active {
    color: #aeea00;
    /* Bright Lime */
    border-left: 3px solid #aeea00;
    font-weight: 600;
    background: linear-gradient(90deg, rgba(139, 195, 74, 0.15), transparent);
}

/* Main Content Area */
.services-content {
    flex-grow: 1;
    min-width: 0;
    /* Prevent overflow */
}

/* Hero Content inside Main Area */
.content-hero {
    margin-bottom: 60px;
    background: rgba(47, 62, 34, 0.4);
    border: 1px solid rgba(139, 195, 74, 0.2);
    border-radius: 10px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.content-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #aeea00;
}

.hero-tag {
    font-size: 0.9rem;
    color: #aeea00;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    margin-bottom: 16px;
    display: block;
}

.content-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #ffffff;
}

.content-hero p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #dcedc8;
    max-width: 800px;
}

.cta-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #aeea00;
    font-weight: 600;
    margin-top: 24px;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.cta-link:hover {
    gap: 12px;
}

/* Content Sections */
.service-section {
    padding-top: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(139, 195, 74, 0.2);
}

.service-section:last-child {
    border-bottom: none;
}

.section-title {
    font-size: 2.5rem;
    color: #f1f8e9;
    margin-bottom: 30px;
    font-weight: 300;
    /* Light/Thin style like IBM */
}

.section-intro {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #dcedc8;
    margin-bottom: 40px;
    max-width: 90%;
}

/* Feature Grid within Sections */
.features-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon {
    font-size: 1.5rem;
    color: #8fc353;
    margin-top: 4px;
    flex-shrink: 0;
}

.feature-text h3 {
    font-size: 1.25rem;
    color: #ffffff;
    margin-bottom: 8px;
    font-weight: 600;
}

.feature-text p {
    color: #94a3b8;
    line-height: 1.6;
    font-size: 1rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .services-container {
        flex-direction: column;
        padding: 0 24px;
    }

    .services-sidebar {
        position: relative;
        top: 0;
        width: 100%;
        flex-direction: row;
        overflow-x: auto;
        border-left: none;
        border-bottom: 2px solid rgba(139, 195, 74, 0.2);
        padding-bottom: 0;
        margin-bottom: 40px;
    }

    .sidebar-link {
        white-space: nowrap;
        border-left: none;
        border-bottom: 3px solid transparent;
        margin-left: 0;
        margin-bottom: -2px;
    }

    .sidebar-link.active {
        border-left: none;
        border-bottom: 3px solid #aeea00;
    }
}