/* Services Page Specific Styles */

/* Services Hero */
.services-hero {
    background: linear-gradient(135deg, var(--primary-brand) 0%, var(--primary-dark) 100%);
    color: var(--neutral-white);
    padding: 150px 0 80px;
    margin-top: var(--spacing-3xl);
    text-align: center;
}

.services-hero h1 {
    font-size: 3rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-md);
    font-family: var(--font-family-primary);
}

.services-hero p {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Job Support Section */
.job-support {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #64748b;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.support-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e2e8f0;
}

.support-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
}

.card-icon {
    background: linear-gradient(135deg, #2563eb, #60a5fa);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.card-icon i {
    font-size: 1.75rem;
    color: white;
}

.support-card h3 {
    color: #1e293b;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.support-card ul {
    list-style: none;
    margin-bottom: 2rem;
}

.support-card li {
    color: #64748b;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.support-card li::before {
    content: "✓";
    color: #2563eb;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.support-card .btn {
    width: 100%;
    justify-content: center;
}

/* Collaboration Section */
.collaboration-section {
    background: #f8fafc;
    padding: 3rem;
    border-radius: 16px;
    margin-top: 2rem;
}

.collaboration-section h3 {
    text-align: center;
    color: #1e293b;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.collaboration-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.collab-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.collab-item i {
    font-size: 2rem;
    color: #2563eb;
    margin-bottom: 1rem;
}

.collab-item h4 {
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.collab-item p {
    color: #64748b;
    margin-bottom: 0;
}

/* Tool Section */
.tool-section {
    padding: 80px 0;
    background: #f8fafc;
}

.tools-tabs {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.tab-buttons {
    display: flex;
    background: #f1f5f9;
    border-bottom: 1px solid #e2e8f0;
}

.tab-btn {
    flex: 1;
    padding: 1rem 2rem;
    background: none;
    border: none;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:hover,
.tab-btn.active {
    background: white;
    color: #2563eb;
}

.tab-pane {
    display: none;
    padding: 3rem;
}

.tab-pane.active {
    display: block;
}

.tool-details {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.tool-info h3 {
    color: #1e293b;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.tool-info p {
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.capabilities ul {
    list-style: none;
}

.capabilities li {
    color: #64748b;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.capabilities li::before {
    content: "→";
    color: #2563eb;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.tool-visual {
    text-align: center;
}

.tool-logo {
    font-size: 2rem;
    font-weight: 700;
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    display: inline-block;
}

.tableau-logo {
    background-color: #e3a3a8;
    color: #5f2c2c;
}

.powerbi-logo {
    background-color: #f3d480;
    color: #5a4a1a;
}

.cognos-logo {
    background-color: #9bb5c2;
    color: #2c3e50;
}

.tool-screenshot {
    background: #f8fafc;
    border-radius: 12px;
    padding: 2rem;
    border: 2px dashed #e2e8f0;
}

.mockup-element {
    height: 40px;
    background: linear-gradient(90deg, #e2e8f0, #cbd5e1);
    border-radius: 6px;
    margin-bottom: 1rem;
}

.mockup-element:last-child {
    margin-bottom: 0;
}

/* Portfolio Section */
.portfolio-section {
    padding: 80px 0;
}

.portfolio-banner {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    padding: 4rem;
    border-radius: 16px;
    text-align: center;
}

.portfolio-banner h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.portfolio-banner p {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.portfolio-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.benefit {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.benefit i {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.benefit h4 {
    margin-bottom: 1rem;
}

.benefit p {
    opacity: 0.8;
    margin-bottom: 0;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 2rem;
    }

    .tool-details {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .tab-buttons {
        flex-direction: column;
    }

    .portfolio-benefits {
        grid-template-columns: 1fr;
    }

    .portfolio-banner {
        padding: 2rem;
    }

    .collaboration-section {
        padding: 2rem;
    }

    .support-card {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .services-hero {
        padding: 120px 0 60px;
    }

    .tab-pane {
        padding: 2rem;
    }

    .support-card,
    .collab-item,
    .benefit {
        padding: 1.5rem;
    }

    .tool-logo {
        font-size: 1.5rem;
    }
}
