/* Parcours Hero Section - Modern Design */
.parcours-hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 0 40px;
    position: relative;
    overflow: hidden;
}

.parcours-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.parcours-hero-header {
    position: relative;
    z-index: 2;
    margin-bottom: 40px;
}

/* Breadcrumb */
.parcours-breadcrumb {
    margin-bottom: 20px;
}

.parcours-breadcrumb .breadcrumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 8px 20px;
    backdrop-filter: blur(10px);
}

.parcours-breadcrumb .breadcrumb-item,
.parcours-breadcrumb .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.parcours-breadcrumb .breadcrumb-item.active {
    color: white;
}

.parcours-breadcrumb .breadcrumb-item a:hover {
    color: white;
}

/* Competency Blocks Showcase Styles */
.competency-blocks-showcase {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.competency-blocks-showcase::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="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    pointer-events: none;
}

.competency-blocks-showcase .container {
    position: relative;
    z-index: 1;
}

.competency-blocks-showcase .card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.competency-blocks-showcase .card:hover {
    transform: translateY(-15px) rotateX(5deg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.competency-blocks-showcase .card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.competency-blocks-showcase .card:hover::before {
    transform: translateX(100%);
}

.competency-blocks-showcase .card-header {
    border-bottom: none;
}

.competency-blocks-showcase .card-footer {
    border-top: none;
}

.competency-blocks-showcase .objective-number {
    background: linear-gradient(135deg, #667eea, #764ba2) !important;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.competency-blocks-showcase .objective-item:hover .objective-number {
    transform: scale(1.2) rotate(360deg);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

.competency-blocks-showcase .objective-item {
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
}

.competency-blocks-showcase .objective-item:nth-child(1) {
    animation-delay: 0.1s;
}

.competency-blocks-showcase .objective-item:nth-child(2) {
    animation-delay: 0.2s;
}

.competency-blocks-showcase .objective-item:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.competency-blocks-showcase .btn {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.competency-blocks-showcase .btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.competency-blocks-showcase .btn:hover::before {
    width: 300px;
    height: 300px;
}

.competency-blocks-showcase .alert {
    animation: alertPulse 2s ease-in-out infinite;
}

@keyframes alertPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.02);
        opacity: 0.9;
    }
}

.competency-blocks-showcase .hover-lift {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.competency-blocks-showcase .hover-lift:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Meta Badges - WCAG Compliant Colors */
.meta-badge {
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    color: white;
}

.meta-badge.meta-level {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    border: 1px solid #0056b3;
}

.meta-badge.meta-type {
    background: linear-gradient(135deg, #28a745 0%, #1e7e34 100%);
    border: 1px solid #1e7e34;
}

.meta-badge.meta-duration {
    background: linear-gradient(135deg, #17a2b8 0%, #138496 100%);
    border: 1px solid #138496;
}

.meta-badge.meta-status.active {
    background: linear-gradient(135deg, #28a745 0%, #1e7e34 100%) !important;
    border: 1px solid #1e7e34 !important;
    color: white !important;
}

.meta-badge.meta-status.inactive {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%) !important;
    border: 1px solid #c82333 !important;
    color: white !important;
}

/* Enrolled Badge - WCAG Compliant */
.enrolled-badge {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-weight: 600;
    animation: badgePulse 2s ease-in-out infinite;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
}

/* Hero Section Animations */
.parcours-hero {
    position: relative;
    overflow: hidden;
}

.parcours-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 123, 255, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(23, 162, 184, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 193, 7, 0.1) 0%, transparent 50%);
    animation: heroGradient 8s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes heroGradient {
    0% {
        transform: rotate(0deg) scale(1);
        opacity: 0.7;
    }
    50% {
        transform: rotate(180deg) scale(1.1);
        opacity: 0.9;
    }
    100% {
        transform: rotate(360deg) scale(1);
        opacity: 0.7;
    }
}

/* Floating Particles */
.hero-particles .particle {
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.hero-particles .particle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: 50%;
    animation: particlePulse 2s ease-in-out infinite;
    transform: translate(-50%, -50%);
}

@keyframes particlePulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    50% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

/* Enhanced Visual Card */
.parcours-visual-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
}

.parcours-visual-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(0, 123, 255, 0.05) 50%,
        transparent 70%
    );
    transform: rotate(45deg);
    animation: cardShine 3s ease-in-out infinite;
}

@keyframes cardShine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    50% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.parcours-visual-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

/* Stats Animation */
.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
    animation: statGlow 2s ease-in-out infinite alternate;
}

@keyframes statGlow {
    from {
        filter: brightness(1);
        transform: scale(1);
    }
    to {
        filter: brightness(1.1);
        transform: scale(1.05);
    }
}

.stat-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Icon Animation */
.parcours-icon i {
    color: #007bff;
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(5deg);
    }
}

/* Enhanced Button Effects */
.btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
    transform: translate(-50%, -50%);
    transition: width 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275), height 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 0;
}

.btn:hover::before {
    width: 400px;
    height: 400px;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.btn i,
.btn span {
    position: relative;
    z-index: 1;
}

/* Enrolled Badge Animation */
.enrolled-badge {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-weight: 600;
    animation: badgePulse 2s ease-in-out infinite;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
}

.enrolled-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: badgeSweep 3s ease-in-out infinite;
}

@keyframes badgeSweep {
    0% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(40, 167, 69, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 25px rgba(40, 167, 69, 0.6);
    }
}
.parcours-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    color: aliceblue;
    animation: titleGlow 2s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    from {
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3), 0 0 10px rgba(255, 255, 255, 0.2);
    }
    to {
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 255, 255, 0.4);
    }
}

/* Meta Badges */
.parcours-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
}

.meta-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    transition: all 0.3s ease;
    animation: badgeFloat 3s ease-in-out infinite;
}

.meta-badge:nth-child(2) {
    animation-delay: 0.5s;
}

.meta-badge:nth-child(3) {
    animation-delay: 1s;
}

@keyframes badgeFloat {
    0%, 100% {
        transform: translateY(0px);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
    50% {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    }
}

.meta-badge:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.meta-badge.meta-level {
    background: rgba(255, 193, 7, 0.2);
    border-color: rgba(255, 193, 7, 0.3);
}

.meta-badge.meta-type {
    background: rgba(40, 167, 69, 0.2);
    border-color: rgba(40, 167, 69, 0.3);
}

.meta-badge.meta-duration {
    background: rgba(23, 162, 184, 0.2);
    border-color: rgba(23, 162, 184, 0.3);
}

.meta-badge.meta-status.active {
    background: rgba(40, 167, 69, 0.2);
    border-color: rgba(40, 167, 69, 0.3);
}

.meta-badge.meta-status.inactive {
    background: rgba(220, 53, 69, 0.2);
    border-color: rgba(220, 53, 69, 0.3);
}

/* Description */
.parcours-description {
    margin-bottom: 35px;
}

.parcours-description .lead {
    font-size: 1.3rem;
    line-height: 1.6;
    opacity: 0.95;
    margin-bottom: 0;
}

/* Actions */
.parcours-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
}

.parcours-actions .btn {
    border-radius: 30px;
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.parcours-actions .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.parcours-actions .btn-primary {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border: none;
}

.parcours-actions .btn-outline-primary {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    backdrop-filter: blur(10px);
}

.parcours-actions .btn-outline-primary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
}

.enrolled-badge {
    background: rgba(40, 167, 69, 0.2);
    border: 2px solid rgba(40, 167, 69, 0.3);
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    color: #d4edda;
    backdrop-filter: blur(10px);
}

/* Visual Card */
.parcours-visual-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    backdrop-filter: blur(10px);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.parcours-visual-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.parcours-icon {
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.parcours-stats {
    display: flex !important;
    justify-content: space-around !important;
    gap: 15px;
    flex-wrap: wrap;
}

.parcours-stats .stat-item {
    flex: 1;
    min-width: 0;
    text-align: center;
    padding: 1rem 0.5rem;
}

.parcours-stats .stat-item .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
    animation: statGlow 2s ease-in-out infinite alternate;
}

.parcours-stats .stat-item .stat-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #dcefff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: white;
}

.stat-label {
    font-size: 0.85rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Quick Info Cards */
.parcours-quick-info {
    position: relative;
    z-index: 2;
    margin-top: 32px;
}

.info-card {
    background: white;
    border-radius: 15px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.info-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 24px;
}

.info-content h6 {
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.info-content .small {
    margin-bottom: 0;
    line-height: 1.4;
}

/* Details Section */
.parcours-details-section {
    background: #f8f9fa;
    min-height: 100vh;
}

.detail-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.detail-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.detail-card h3 {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e9ecef;
}

.detail-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.detail-list li {
    padding: 10px 0;
    border-bottom: 1px solid #f8f9fa;
    display: flex;
    align-items: flex-start;
}

.detail-list li:last-child {
    border-bottom: none;
}

.detail-list li i {
    margin-top: 2px;
    flex-shrink: 0;
}

/* Program Blocks */
.program-blocks {
    margin-top: 20px;
}

.program-block-item {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 15px;
    border-left: 4px solid #667eea;
    transition: all 0.3s ease;
}

.program-block-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.program-block-item h5 {
    color: #495057;
    font-weight: 600;
    margin-bottom: 10px;
}

.objectives-list {
    list-style: none;
    padding: 0;
    margin: 10px 0 0 0;
}

.objectives-list li {
    padding: 5px 0;
    color: #6c757d;
    font-size: 14px;
}

/* Evaluation Grid */
.evaluation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.evaluation-item {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.evaluation-item:hover {
    background: #e9ecef;
    transform: translateY(-3px);
}

.evaluation-icon {
    font-size: 2rem;
    color: #667eea;
    margin-bottom: 15px;
}

.evaluation-item h6 {
    color: #495057;
    font-weight: 600;
    margin-bottom: 10px;
}

.evaluation-item p {
    color: #6c757d;
    font-size: 14px;
    margin-bottom: 0;
}

/* Career Outcomes */
.career-outcomes {
    margin-top: 20px;
}

.career-section {
    margin-bottom: 25px;
}

.career-section h5 {
    color: #495057;
    font-weight: 600;
    margin-bottom: 15px;
}

.career-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.career-tag {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.career-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

/* Continuation Grid */
.continuation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.continuation-item {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    border-left: 4px solid #28a745;
    transition: all 0.3s ease;
}

.continuation-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.continuation-item h6 {
    color: #495057;
    font-weight: 600;
    margin-bottom: 10px;
}

.continuation-item p {
    color: #6c757d;
    font-size: 14px;
    margin-bottom: 0;
}

/* Sidebar */
.sidebar-sticky {
    position: sticky;
    top: 20px;
}

.info-widget {
    background: white;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.info-widget h4 {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e9ecef;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f8f9fa;
}

.info-list li:last-child {
    border-bottom: none;
}

.info-label {
    color: #6c757d;
    font-weight: 500;
}

.info-value {
    color: #495057;
    font-weight: 600;
}

/* France Compétences Widget */
.france-competences-widget {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px solid #667eea;
}

.france-competences-widget h4 {
    color: #667eea;
    border-bottom-color: #667eea;
}

.fc-content p {
    color: #495057;
    margin-bottom: 15px;
}

.fc-links {
    margin-bottom: 15px;
}

.fc-link {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.fc-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
    color: white;
    text-decoration: none;
}

.fc-validity {
    margin-bottom: 15px;
    padding: 8px 12px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 8px;
    border-left: 3px solid #667eea;
}

.fc-info {
    padding-top: 15px;
    border-top: 1px solid #dee2e6;
}

/* Courses List */
.courses-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.courses-list li {
    margin-bottom: 10px;
}

.course-link {
    color: #495057;
    text-decoration: none;
    padding: 10px;
    display: block;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.course-link:hover {
    background: #f8f9fa;
    color: #667eea;
    text-decoration: none;
    transform: translateX(5px);
}

/* Diploma Item */
.diploma-item {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
    border-left: 4px solid #28a745;
}

.diploma-item h6 {
    color: #495057;
    font-weight: 600;
    margin-bottom: 8px;
}

.diploma-item p {
    color: #6c757d;
    font-size: 14px;
    margin-bottom: 0;
}

/* Modern Header Styles */
.parcours-header-modern {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-bottom: 1px solid #e9ecef;
    padding: 2rem 0;
    position: relative;
    overflow: hidden;
}

.parcours-header-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 123, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(108, 117, 125, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

/* Title Wrapper */
.parcours-title-wrapper {
    position: relative;
    z-index: 2;
}

/* Breadcrumb */
.parcours-breadcrumb {
    margin-bottom: 1rem;
}

.parcours-breadcrumb .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    font-size: 0.875rem;
}

.parcours-breadcrumb .breadcrumb-item {
    color: #6c757d;
}

.parcours-breadcrumb .breadcrumb-item a {
    color: var(--campus-primary, #007bff);
    transition: color 0.2s ease;
}

.parcours-breadcrumb .breadcrumb-item a:hover {
    color: var(--campus-primary-dark, #0056b3);
    text-decoration: underline;
}

.parcours-breadcrumb .breadcrumb-item.active {
    color: #495057;
    font-weight: 500;
}

/* Main Title */
.parcours-main-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2d3436;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #2d3436 0%, #007bff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Meta Header */
.parcours-meta-header {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.meta-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.meta-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.meta-badge:hover::before {
    left: 100%;
}

.meta-level {
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
    color: white;
}

.meta-duration {
    background: linear-gradient(135deg, #00b894 0%, #00cec9 100%);
    color: white;
}

.meta-type {
    background: linear-gradient(135deg, #0984e3 0%, #74b9ff 100%);
    color: white;
}

.meta-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Actions Wrapper */
.parcours-actions-wrapper {
    position: relative;
    z-index: 2;
}

.action-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Status Badge */
.status-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    text-align: center;
    justify-content: center;
}

.status-enrolled {
    background: linear-gradient(135deg, #00b894 0%, #00cec9 100%);
    color: white;
    box-shadow: 0 5px 15px rgba(0, 184, 148, 0.3);
}

.status-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 184, 148, 0.4);
}

/* Modern Buttons */
.btn-modern {
    position: relative;
    overflow: hidden;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.btn-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.btn-modern:hover::before {
    left: 100%;
}

.btn-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-modern.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Inscription Form */
.inscription-form {
    margin: 0;
}

.inscription-form button {
    width: 100%;
    margin: 0;
}

/* Animations */
.animate-fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    animation: fadeInLeft 0.8s ease forwards;
}

.animate-fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    animation: fadeInRight 0.8s ease 0.2s forwards;
}

@keyframes fadeInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .parcours-header-modern {
        padding: 1.5rem 0;
    }
    
    .parcours-main-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .parcours-meta-header {
        gap: 0.5rem;
        margin-bottom: 1.5rem;
    }
    
    .meta-badge {
        padding: 0.375rem 0.75rem;
        font-size: 0.75rem;
    }
    
    .action-group {
        gap: 0.75rem;
    }
    
    .btn-modern.btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    .status-badge {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .parcours-breadcrumb .breadcrumb {
        font-size: 0.75rem;
    }
    
    .parcours-main-title {
        font-size: 1.5rem;
    }
    
    .parcours-meta-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .meta-badge {
        width: 100%;
        justify-content: center;
    }
}
@media (max-width: 991px) {
    .parcours-hero-section {
        padding: 40px 0 30px;
    }
    
    .parcours-title {
        font-size: 2.5rem;
    }
    
    .parcours-hero-header {
        margin-bottom: 30px;
    }
    
    .parcours-visual-card {
        margin-top: 30px;
    }
    
    .parcours-actions {
        justify-content: center;
    }
    
    .parcours-actions .btn {
        flex: 1;
        min-width: 200px;
    }
    
    .evaluation-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .continuation-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .parcours-hero-section {
        padding: 30px 0 20px;
    }
    
    .parcours-title {
        font-size: 2rem;
    }
    
    .parcours-meta {
        gap: 8px;
    }
    
    .meta-badge {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .parcours-description .lead {
        font-size: 1.1rem;
    }
    
    .parcours-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .parcours-actions .btn {
        width: 100%;
    }
    
    .parcours-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .info-card {
        padding: 20px 15px;
    }
    
    .info-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .detail-card {
        padding: 20px;
    }
    
    .evaluation-grid {
        grid-template-columns: 1fr;
    }
    
    .career-tags {
        justify-content: center;
    }
    
    .sidebar-sticky {
        position: relative;
        top: 0;
        margin-top: 30px;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.parcours-hero-header,
.parcours-quick-info {
    animation: fadeInUp 0.8s ease-out;
}

.parcours-visual-card {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.info-card {
    animation: fadeInUp 0.8s ease-out;
}

.info-card:nth-child(1) { animation-delay: 0.1s; }
.info-card:nth-child(2) { animation-delay: 0.2s; }
.info-card:nth-child(3) { animation-delay: 0.3s; }
.info-card:nth-child(4) { animation-delay: 0.4s; }

.detail-card {
    animation: fadeInUp 0.8s ease-out;
}

.detail-card:nth-child(1) { animation-delay: 0.1s; }
.detail-card:nth-child(2) { animation-delay: 0.2s; }
.detail-card:nth-child(3) { animation-delay: 0.3s; }
.detail-card:nth-child(4) { animation-delay: 0.4s; }

/* Pricing Section Styles */
.parcours-pricing {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.pricing-header h6 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.price-option {
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.price-option:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.price-option.bg-light:hover {
    border-color: #007bff;
    background: #f8f9ff !important;
}

.price-option.bg-gradient:hover {
    border-color: #ffc107;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.2), rgba(255, 193, 7, 0.1)) !important;
}

.price-amount {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

.price-label {
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.promotion-badge .badge {
    font-size: 11px;
    padding: 6px 12px;
    border-radius: 20px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Responsive pricing */
@media (max-width: 768px) {
    .parcours-pricing {
        margin: 15px 0;
    }
    
    .price-option {
        margin-bottom: 15px !important;
    }
    
    .price-amount {
        font-size: 1.5rem !important;
    }
}
.detail-card:nth-child(5) { animation-delay: 0.5s; }
.detail-card:nth-child(6) { animation-delay: 0.6s; }
