
/* Contract Management Specific Styles */
.contract-management-container {
    min-height: 100vh;
}

/* Hero Section - Contract Management Theme */
.hero-section {
    background: linear-gradient(135deg, #2c5530 0%, #1a4d3a 50%, #0f3d2f 100%);
    color: white;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="contract-grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,255,255,0.08)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23contract-grid)"/></svg>');
    opacity: 0.4;
}
.contract-management-container .section-title{
    color: var(--verderps);
}
.lifecycle-section .section-title{
    color: var(--verderps);
}
/* Lifecycle Timeline */
.lifecycle-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    color: var(--verdeps);
}

.lifecycle-timeline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin: 3rem 0;
    padding: 2rem 0;
}

.lifecycle-timeline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(90deg, #10b981, #059669);
    transform: translateY(-50%);
    z-index: 1;
}

.timeline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
    flex: 1;
}

.timeline-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #10b981, #059669);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    margin-bottom: 1rem;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
    transition: all 0.3s ease;
}

.timeline-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.4);
}

.timeline-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    font-size: 0.9rem;
    color: #718096;
}

/* Contract Service Card */
.contract-service-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-left: 5px solid;
}

.contract-service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.05) 100%);
    transform: rotate(45deg);
}

.contract-service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.card-number {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: #718096;
}

.card-primary { border-left-color: #3b82f6; }
.card-success { border-left-color: #10b981; }
.card-warning { border-left-color: #f59e0b; }
.card-info { border-left-color: #06b6d4; }

.card-primary .card-number { background: rgba(59, 130, 246, 0.1); color: #3b82f6; }
.card-success .card-number { background: rgba(16, 185, 129, 0.1); color: #10b981; }
.card-warning .card-number { background: rgba(245, 158, 11, 0.1); color: #f59e0b; }
.card-info .card-number { background: rgba(6, 182, 212, 0.1); color: #06b6d4; }

.services-list li i {
    color: #10b981;
    margin-right: 0.75rem;
    font-size: 0.8rem;
}

.card-footer {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

.card-footer .btn {
    flex: 1;
}

/* Contract Value Section */
.contract-value-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 50%, #1e293b 100%);
    color: white;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.value-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    text-align: center;
}

.value-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.value-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.2rem;
}

.value-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.value-card p {
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.value-highlight {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 500;
}

.value-highlight i {
    color: #fbbf24;
}

/* Expertise Section */
.expertise-section {
    text-align: center;
    margin-bottom: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.expertise-section h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.expertise-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.expertise-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 500;
    transition: all 0.3s ease;
}

.expertise-tag:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.expertise-tag i {
    color: #fbbf24;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-section h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Design for Contract Management */
@media (max-width: 768px) {
    .lifecycle-timeline {
        flex-direction: column;
        gap: 2rem;
    }

    .lifecycle-timeline::before {
        display: none;
    }

    .timeline-item {
        width: 100%;
    }

    .value-grid {
        grid-template-columns: 1fr;
    }

    .expertise-tags {
        flex-direction: column;
        align-items: center;
    }

    .card-footer {
        flex-direction: column;
    }

    .contract-service-card {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 3rem 0;
    }

    .lifecycle-section {
        padding: 3rem 0;
    }

    .contract-value-section {
        padding: 3rem 0;
    }

    .value-card {
        padding: 2rem;
    }
}
