/* Reset et base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Alphabet Navigation */
.alphabet-section {
    margin: 2rem 0;
    padding: 1.5rem 0;
    background: #f8f9fa;
    border-radius: 12px;
}

.alphabet-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    align-items: center;
}

.alphabet-btn {
    padding: 0.6rem 1rem;
    border: 2px solid #e9ecef;
    background: #ffffff;
    color: #495057;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    min-width: 45px;
    text-align: center;
}

.alphabet-btn:hover {
    border-color: #4582a0;
    background: #f8f9fa;
    color: #4582a0;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(69, 130, 160, 0.2);
}

.alphabet-btn.active {
    background: linear-gradient(135deg, #4582a0, #2c5f7a);
    color: white;
    border-color: #4582a0;
    box-shadow: 0 4px 12px rgba(69, 130, 160, 0.3);
}

.alphabet-btn.active:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(69, 130, 160, 0.4);
}

@media (max-width: 768px) {
    .alphabet-nav {
        gap: 0.3rem;
    }
    
    .alphabet-btn {
        padding: 0.5rem 0.7rem;
        font-size: 0.8rem;
        min-width: 38px;
    }
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    position: relative;
}

.logo-link {
    display: inline-block;
    transition: opacity 0.3s ease;
}

.logo-link:hover {
    opacity: 0.8;
}

.logo-img {
    height: 40px;
    width: auto;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #4582a0;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #2c5f7a;
}

.nav-link-cta {
    background: #4582a0;
    color: white !important;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    transition: background 0.3s ease;
}

.nav-link-cta:hover {
    background: #2c5f7a;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #4582a0;
    margin: 3px 0;
    transition: 0.3s;
}

/* Breadcrumb */
.breadcrumb {
    padding: 1rem 0;
    font-size: 0.9rem;
    color: #666;
}

.breadcrumb a {
    color: #4582a0;
    text-decoration: none;
}

.breadcrumb-separator {
    margin: 0 0.5rem;
    color: #999;
}

/* Hero Section pour page d'accueil */
.hero-metiers {
    background: linear-gradient(135deg, #f8fbfd 0%, #e8f4f8 100%);
    border-radius: 20px;
    padding: 4rem 2rem;
    text-align: center;
    margin-bottom: 3rem;
}

.hero-metiers {
    background: linear-gradient(135deg, #f8fbff 0%, #e8f4f8 50%, #ddeef5 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
    border-radius: 0 0 2rem 2rem;
    margin-bottom: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}


.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #2c5f7a;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.title-icon {
    font-size: 2.5rem;
    animation: pulse 2s ease-in-out infinite;
}

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

.hero-subtitle {
    font-size: 1.25rem;
    color: #4582a0;
    margin-bottom: 1.5rem;
    line-height: 1.4;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.subtitle-icon {
    font-size: 1.5rem;
    animation: bounce 3s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.hero-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    max-width: 600px;
    margin: 0 auto;
}

.description-icon {
    font-size: 1.25rem;
    animation: sparkle 4s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { 
        transform: scale(1) rotate(0deg); 
        opacity: 1; 
    }
    25% { 
        transform: scale(1.2) rotate(5deg); 
        opacity: 0.8; 
    }
    50% { 
        transform: scale(1.1) rotate(-3deg); 
        opacity: 1; 
    }
    75% { 
        transform: scale(1.15) rotate(2deg); 
        opacity: 0.9; 
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .hero-subtitle, .hero-description {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    
    .hero-metiers {
        padding: 3rem 0;
    }
}

/* Search Section */
.search-section {
    margin-bottom: 3rem;
}

.search-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.search-box {
    display: flex;
    max-width: 600px;
    width: 100%;
    position: relative;
}

.search-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid #e8f4f8;
    border-radius: 50px;
    font-size: 1.1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.search-input:focus {
    border-color: #4582a0;
}

.search-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: #4582a0;
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: background 0.3s ease;
}

.search-btn:hover {
    background: #2c5f7a;
}

.filters {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-select {
    padding: 0.75rem 1.5rem;
    border: 2px solid #e8f4f8;
    border-radius: 25px;
    background: white;
    font-size: 1rem;
    outline: none;
    cursor: pointer;
}

.results-count {
    font-weight: 500;
    color: #4582a0;
    font-size: 1.1rem;
}

/* Métiers Grid */
.metiers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.metier-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    height: fit-content;
}

.metier-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
}

.metier-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c5f7a;
    margin-bottom: 0.5rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-wrap: break-word;
    hyphens: auto;
}

.metier-thumbnail {
    width: 100%;
    height: 150px;
    margin: 0.75rem 0;
    border-radius: 8px;
    overflow: hidden;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.metier-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.metier-card:hover .metier-image {
    transform: scale(1.05);
}

.metier-subtitle {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.metier-link {
    display: inline-block;
    background: linear-gradient(135deg, #4582a0, #2c5f7a);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.metier-link:hover {
    transform: scale(1.05);
    box-shadow: 0 3px 10px rgba(69, 130, 160, 0.3);
}

/* Hero Section pour fiches individuelles */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 3rem 0;
    background: linear-gradient(135deg, #f8fbfd 0%, #e8f4f8 100%);
    border-radius: 20px;
    margin-bottom: 3rem;
}

.hero-content {
    padding: 0 2rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #2c5f7a;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #4582a0;
    margin-bottom: 1rem;
    font-weight: 500;
}

.hero-accroche {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

.hero-image {
    padding: 0 2rem;
}

.hero-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Info Cards */
.info-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.card {
    background: white;
    padding: 1.2rem;
    border-radius: 12px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.card-icon {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.card-title {
    font-size: 1rem;
    font-weight: 600;
    color: #2c5f7a;
    margin-bottom: 0.5rem;
}

.card-content {
    color: #666;
    line-height: 1.4;
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .info-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .card {
        padding: 1rem;
    }
    
    .card-content {
        font-size: 0.8rem;
    }
}

/* Advanced Filters */
.advanced-filters {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.filters-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.filters-header h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c5f7a;
    margin: 0;
}

.toggle-filters-btn {
    background: linear-gradient(135deg, #4582a0, #2c5f7a);
    color: white;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.toggle-filters-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(69, 130, 160, 0.3);
}

.filters-content {
    margin-top: 1.5rem;
}

.filters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.filter-group {
    display: flex;
    flex-direction: column;
}

.filter-group label {
    font-weight: 500;
    color: #2c5f7a;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.filter-select {
    padding: 0.7rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    background: white;
    color: #495057;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.filter-select:focus {
    outline: none;
    border-color: #4582a0;
    box-shadow: 0 0 0 3px rgba(69, 130, 160, 0.1);
}

.filter-select:hover {
    border-color: #4582a0;
}

.filters-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    padding-top: 1rem;
    border-top: 1px solid #dee2e6;
}

.clear-filters-btn, .apply-filters-btn {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.clear-filters-btn {
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
    font-weight: 600;
}

.clear-filters-btn:hover {
    background: linear-gradient(135deg, #c82333, #a71e2a);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

.apply-filters-btn {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
}

.apply-filters-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.metier-tags {
    display: flex;
    gap: 0.5rem;
    margin: 0.5rem 0;
    flex-wrap: wrap;
}

.metier-tag {
    background: linear-gradient(135deg, #4582a0, #2c5f7a);
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .filters-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .filters-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .filters-actions {
        flex-direction: column;
    }
    
    .clear-filters-btn, .apply-filters-btn {
        width: 100%;
    }
}

/* Sections communes */
section {
    margin-bottom: 3rem;
}

section h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #2c5f7a;
    margin-bottom: 1.5rem;
    padding-left: 0;
}

/* Introduction */
.introduction {
    background: #f8fbfd;
    padding: 2rem;
    border-radius: 15px;
}

.introduction p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

/* Missions */
.missions-list {
    list-style: none;
    display: grid;
    gap: 1rem;
}

.missions-list li {
    background: white;
    margin-bottom: 1rem;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
}

.missions-list li:hover {
    transform: translateX(5px);
}

.missions-list li::before {
    content: "✓";
    color: #4582a0;
    font-weight: bold;
    margin-right: 1rem;
}

/* Outils */
.outils-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.outil-item {
    background: linear-gradient(135deg, #4582a0, #2c5f7a);
    color: white;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    font-weight: 500;
    transition: transform 0.3s ease;
}

.outil-item:hover {
    transform: scale(1.05);
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 1rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #4582a0;
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2.5rem;
    top: 1.5rem;
    width: 12px;
    height: 12px;
    background: #4582a0;
    border-radius: 50%;
    border: 3px solid white;
}

.timeline-time {
    font-weight: 600;
    color: #4582a0;
    margin-bottom: 0.5rem;
}

.timeline-content {
    color: #666;
}

/* Anecdotes */
.anecdotes-list {
    display: grid;
    gap: 1.5rem;
}

.anecdote {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    padding: 1.5rem;
    border-radius: 10px;
    position: relative;
}

.anecdote::before {
    content: "💡";
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
}

/* Témoignage */
.temoignage-content {
    background: #f8fbfd;
    padding: 2rem;
    border-radius: 15px;
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    position: relative;
}

.temoignage-content::before {
    content: """;
    font-size: 4rem;
    color: #4582a0;
    position: absolute;
    top: -1rem;
    left: 1rem;
    line-height: 1;
}

/* Parcours */
.parcours-list {
    display: grid;
    gap: 1rem;
    counter-reset: parcours-counter;
}

.parcours-item {
    background: white;
    margin-bottom: 1rem;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    counter-increment: parcours-counter;
}

.parcours-item::before {
    content: counter(parcours-counter);
    position: absolute;
    left: -2rem;
    top: 1rem;
    width: 2rem;
    height: 2rem;
    background: #27ae60;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}

/* Emplois */
.emplois-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.emploi-item {
    background: linear-gradient(135deg, #74b9ff, #0984e3);
    color: white;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    font-weight: 500;
    transition: transform 0.3s ease;
}

.emploi-item:hover {
    transform: scale(1.05);
}

/* Points + et - */
.points-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.points-plus, .points-moins {
    padding: 2rem;
    border-radius: 15px;
}

.points-plus {
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
}

.points-moins {
    background: linear-gradient(135deg, #f8d7da, #f5c6cb);
}

.points-plus h3, .points-moins h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.points-plus ul, .points-moins ul {
    list-style: none;
}

.points-plus li, .points-moins li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.points-plus li:last-child, .points-moins li:last-child {
    border-bottom: none;
}

/* Conseils */
.conseils-list {
    display: grid;
    gap: 1rem;
}

.conseil-item {
    background: white;
    margin-bottom: 1rem;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.conseil-item::before {
    content: "💡";
    margin-right: 1rem;
    font-size: 1.2rem;
}

/* Quiz */
.quiz-questions {
    display: grid;
    gap: 1rem;
}

.quiz-question {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    padding: 1.5rem;
    border-radius: 10px;
}

.quiz-question::before {
    content: "❓";
    margin-right: 1rem;
    font-size: 1.2rem;
}

/* Métiers proches */
.metiers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.metier-link {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    text-decoration: none;
    color: #4582a0;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.metier-link:hover {
    border-color: #4582a0;
    transform: translateY(-3px);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #4582a0, #2c5f7a);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    margin: 3rem 0;
}

.cta-content h2 {
    color: white;
    border: none;
    padding: 0;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: white;
    color: #4582a0;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
    background: #2c5f7a;
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo-img {
    height: 40px;
    filter: brightness(0) invert(1);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    margin-bottom: 1rem;
    color: #74b9ff;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid #4582a0;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #74b9ff;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-list {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        border-radius: 0 0 12px 12px;
        padding: 1rem 0;
        z-index: 9999;
        border: 1px solid #e9ecef;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transform: translateY(-10px);
        transition: all 0.3s ease;
    }
    
    .nav-list.active {
        display: flex;
        max-height: 500px;
        opacity: 1;
        transform: translateY(0);
    }
    
    .nav-list li {
        padding: 0.5rem 1rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        cursor: pointer;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .mobile-menu-toggle span {
        transition: all 0.3s ease;
    }
    
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-metiers .hero-title {
        font-size: 2.5rem;
    }
    
    .info-cards {
        grid-template-columns: 1fr;
    }
    
    .points-container {
        grid-template-columns: 1fr;
    }
    
    .metiers-grid {
        grid-template-columns: 1fr;
    }
    
    .search-container {
        padding: 0 1rem;
    }
    
    .filters {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .outils-grid {
        grid-template-columns: 1fr;
    }
    
    .emplois-grid {
        grid-template-columns: 1fr;
    }
}

/* Étiquettes informatives */
.info-tags {
    margin: 3rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 16px;
    border: 1px solid #dee2e6;
}

.info-tags h2 {
    color: #2c5f7a;
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
    text-align: center;
}

.tags-description {
    text-align: center;
    color: #6c757d;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.tags-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.tag-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    flex-wrap: wrap;
}

.tag-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.tag-icon {
    font-size: 1.2rem;
    min-width: 24px;
}

.tag-label {
    font-weight: 600;
    color: #495057;
    min-width: 120px;
    font-size: 0.9rem;
}

.tag-badge {
    background: linear-gradient(135deg, #4582a0, #2c5f7a) !important;
    color: white !important;
    padding: 0.5rem 1rem !important;
    border-radius: 20px !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 6px rgba(69, 130, 160, 0.3) !important;
    border: none !important;
    text-decoration: none !important;
    display: inline-block !important;
    margin-left: auto !important;
}

.tag-badge:hover {
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 12px rgba(69, 130, 160, 0.4) !important;
    background: linear-gradient(135deg, #5a9bc4, #4582a0) !important;
}

@media (max-width: 768px) {
    .tags-container {
        grid-template-columns: 1fr;
    }
    
    .tag-item {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    
    .tag-label {
        min-width: auto;
    }
}

/* Bouton "En voir plus" */
.load-more-btn {
    display: block;
    margin: 2rem auto;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #4582a0, #2c5f7a);
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(69, 130, 160, 0.3);
}

.load-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(69, 130, 160, 0.4);
    background: linear-gradient(135deg, #5a9bc4, #4582a0);
}

.load-more-btn:active {
    transform: translateY(0);
}
