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

:root {
    /* Palette de couleurs selon le prompt */
    --primary-blue: #102542;
    --primary-gold: #C9A45C;
    --white: #ffffff;
    --text-dark: #102542;
    --text-light: #666666;
    --border-light: #e5e5e5;
    --background-light: #f8f9fa;

    /* Dark theme variables */
    --dark-bg-primary: #1e2736;
    --dark-bg-secondary: #2d3b4e;
    --dark-text-primary: #ffffff;
    --dark-text-secondary: #d0d0d0;
    --dark-border-light: #444444;

    /* Typographie */
    --font-main: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-headings: 'Playfair Display', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Espacements */
    --section-padding: 80px 0;
    --container-max-width: 1200px;
    --container-padding: 0 20px;

    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--dark-text-secondary);
    background: linear-gradient(to bottom, var(--dark-bg-primary), var(--dark-bg-secondary));
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-headings);
    color: var(--dark-text-primary);
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: var(--container-padding);
}

/* Header et Navigation */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-light);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.nav-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    gap: 1rem;
}

.nav-logo .logo-img {
    height: 50px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.2rem;
    align-items: center;
    flex: 1;
    justify-content: center;
    margin: 0 0.5rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    position: relative;
}

.nav-link:hover,
.nav-link:focus {
    color: var(--primary-blue);
    outline: none;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link:focus::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.bar {
    width: 24px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 0;
}

/* Boutons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 0;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
    position: relative;
}

.btn-primary {
    background: var(--primary-blue);
    color: var(--white);
    border: 2px solid var(--primary-blue);
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-primary:hover,
.btn-primary:focus {
    background: transparent;
    color: var(--primary-blue);
    outline: none;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-link {
    background: none;
    border: none;
    color: var(--primary-gold);
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
    padding: 0;
}

.btn-link:hover,
.btn-link:focus {
    color: var(--primary-blue);
    outline: none;
}

.btn-golden {
    background: linear-gradient(135deg, var(--primary-gold), #d4b56b);
    color: var(--white);
    border: 2px solid var(--primary-gold);
    box-shadow: 0 4px 15px rgba(201, 164, 92, 0.3);
    transition: all 0.3s ease-in-out;
}

.btn-golden:hover,
.btn-golden:focus {
    background: linear-gradient(135deg, #d4b56b, var(--primary-gold));
    color: var(--white);
    box-shadow: 0 6px 20px rgba(201, 164, 92, 0.5);
    transform: translateY(-2px);
    outline: none;
}

.btn-organismes-publics {
    background: var(--primary-gold);
    color: var(--primary-blue);
    border: 2px solid var(--primary-gold);
    padding: 12px 24px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    flex-shrink: 0;
    position: relative;
}

.btn-organismes-publics:hover,
.btn-organismes-publics:focus {
    background: rgba(201, 164, 92, 0.9);
    color: var(--primary-blue);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(201, 164, 92, 0.3);
    outline: none;
}

/* Icône curseur de souris pour le bouton de changement d'univers */
.btn-organismes-publics::after {
    content: '';
    position: absolute;
    bottom: -12px;
    right: -12px;
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23102542' stroke='none'%3E%3Cpath d='M3 3l7.07 16.97 2.51-7.39 7.39-2.51L3 3z'/%3E%3Cpath d='M13 13l6 6'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
    opacity: 0.95;
    transition: all 0.3s ease;
    z-index: 1;
    transform: rotate(-15deg);
}

.btn-organismes-publics:hover::after {
    opacity: 1;
    transform: rotate(-15deg) scale(1.15);
    bottom: -14px;
    right: -14px;
}

/* Version pour le thème clair (organismes publics) - curseur doré plein */
.light-theme .btn-organismes-publics::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23C9A45C' stroke='none'%3E%3Cpath d='M3 3l7.07 16.97 2.51-7.39 7.39-2.51L3 3z'/%3E%3Cpath d='M13 13l6 6'/%3E%3C/svg%3E");
}

.light-theme .btn-organismes-publics {
    background: var(--white);
    color: var(--primary-blue);
    border-color: var(--white);
}

.light-theme .btn-organismes-publics:hover,
.light-theme .btn-organismes-publics:focus {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-blue);
}

/* Section Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(16, 37, 66, 0.75) 0%, rgba(16, 37, 66, 0.85) 100%),
                url('attached_assets/Site Kdess_1752414278080.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    text-align: center;
    position: relative;
}

/* Hero pour la page organismes publics avec filtre gris */
.light-theme .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(128, 128, 128, 0.65) 0%, rgba(128, 128, 128, 0.85) 100%);
    z-index: 1;
}

.light-theme .hero-content {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-logo {
    margin-bottom: 1rem;
}

.hero-logo-img {
    height: 160px;
    width: auto;
    max-width: 600px;
    object-fit: contain;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #d4b56b;
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

/* Titre hero plus doré sur thème clair - même couleur que le bouton */
.light-theme .hero-title {
    color: rgb(14, 32, 56, 0.75);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 2rem;
    color: var(--primary-gold);
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    opacity: 0.95;
}

/* Sections génériques */
section {
    padding: var(--section-padding);
}

section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark-text-primary);
    letter-spacing: -0.02em;
}

/* Section Vision */
.vision {
    background: var(--dark-bg-secondary);
}

.vision-container {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem;
    align-items: center;
}

.vision-content {
    text-align: justify;
}

.vision-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--dark-text-secondary);
}

.vision-content em {
    color: var(--primary-gold);
    font-style: normal;
    font-weight: 600;
}

.vision-image {
    position: relative;
}

.samia-photo {
    width: 100%;
    height: auto;
    border-radius: 0;
    box-shadow: 0 8px 32px rgba(16, 37, 66, 0.15);
    transition: var(--transition-smooth);
}

.samia-photo:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(16, 37, 66, 0.2);
}

/* Section Méthode */
.methode {
    background: var(--dark-bg-primary);
}

.methode-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.methode-card {
    background: var(--dark-bg-secondary);
    padding: 2.5rem;
    border-radius: 0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: var(--transition-smooth);
}

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

.methode-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-gold), #d4b56b);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 15px rgba(201, 164, 92, 0.3);
    transition: all 0.3s ease-in-out;
}

.methode-icon i {
    font-size: 2rem;
    color: var(--white);
}

.methode-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--dark-text-primary);
}

.methode-card ul {
    list-style: none;
    text-align: left;
}

.methode-card li {
    margin-bottom: 0.75rem;
    padding-left: 1rem;
    position: relative;
    color: var(--dark-text-secondary);
}

.methode-card li::before {
    content: '•';
    color: var(--primary-gold);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Section Services */
.services {
    background: var(--dark-bg-secondary);
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

/* Pôles de services */
.service-pole {
    background: var(--dark-bg-primary);
    border-radius: 0;
    padding: 2rem;
    border: 2px solid var(--dark-border-light);
    transition: all 0.2s ease-in-out;
}

.service-pole:hover {
    border-color: var(--primary-gold);
    box-shadow: 0 8px 25px -8px rgba(16, 37, 66, 0.15);
}

.service-pole-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--dark-border-light);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-gold), #d4b56b);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 15px rgba(201, 164, 92, 0.3);
    transition: all 0.3s ease-in-out;
}

.service-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.service-pole h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--dark-text-primary);
    margin-bottom: 0.75rem;
}

.service-description {
    color: var(--dark-text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Accordéons */
.service-accordion {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.accordion-item {
    border: 1px solid var(--dark-border-light);
    border-radius: 0;
    background: var(--dark-bg-secondary);
    overflow: hidden;
}

.accordion-button {
    width: 100%;
    padding: 1rem 1.25rem;
    background: var(--dark-bg-secondary);
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--dark-text-primary);
    transition: all 0.2s ease-in-out;
    font-family: var(--font-main);
}

.accordion-button:hover,
.accordion-button:focus {
    background: var(--dark-bg-primary);
    outline: 2px solid var(--primary-gold);
    outline-offset: -2px;
}

.accordion-button[aria-expanded="true"] {
    background: var(--dark-bg-primary);
    border-bottom: 1px solid var(--dark-border-light);
}

.accordion-button[aria-expanded="true"] .accordion-icon {
    transform: rotate(180deg);
}

.accordion-icon {
    font-size: 0.8rem;
    color: var(--primary-gold);
    transition: transform 0.2s ease-in-out;
    margin-left: 1rem;
    flex-shrink: 0;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.2s ease-in-out;
}

.accordion-content.active {
    max-height: 2000px;
}

.accordion-content-inner {
    padding: 1.25rem;
    border-top: 1px solid var(--dark-border-light);
}

/* Accordéons spécifiques pour la politique de confidentialité */
.privacy-accordion .accordion-button {
    padding: 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: var(--font-headings);
}

.privacy-accordion .accordion-content-inner {
    padding: 1.5rem;
}

.accordion-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-text-primary);
    margin-bottom: 0.75rem;
    margin-top: 1.5rem;
}

.accordion-content h4:first-child {
    margin-top: 0;
}

.accordion-content ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.accordion-content li {
    margin-bottom: 0.5rem;
    padding-left: 1.25rem;
    position: relative;
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--dark-text-secondary);
}

.accordion-content li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-gold);
    font-weight: bold;
    font-size: 1.1rem;
}

.accordion-content li:last-child {
    margin-bottom: 0;
}

.accordion-content strong {
    color: var(--dark-text-primary);
    font-weight: 600;
}

/* Section Nos Experts */
.experts {
    background: var(--dark-bg-primary);
    position: relative;
}

.experts::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
    box-shadow: 0 2px 8px rgba(201, 164, 92, 0.3);
}

.experts-section {
    margin-bottom: 4rem;
}

.experts-section:last-child {
    margin-bottom: 0;
}

.experts-section h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--dark-text-primary);
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.experts-section h3::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary-gold);
    margin: 0.5rem auto 0;
}

/* Équipe principale */
.experts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.expert-card {
    background: var(--dark-bg-secondary);
    padding: 2rem;
    border-radius: 0;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    transition: var(--transition-smooth);
}

.expert-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.expert-photo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.expert-photo {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-blue), #1e3c5a);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(16, 37, 66, 0.3);
}

.expert-photo svg {
    width: 40px;
    height: 40px;
    fill: var(--white);
    stroke: var(--white);
    stroke-width: 0.5;
}

.expert-photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    border: 3px solid var(--primary-gold);
    box-shadow: 0 4px 15px rgba(201, 164, 92, 0.3);
    transition: all 0.3s ease-in-out;
}

.expert-photo:hover .expert-photo-img {
    box-shadow: 0 6px 20px rgba(201, 164, 92, 0.5);
    transform: scale(1.05);
}

.expert-name-linkedin {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.25rem;
}

.expert-info h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--dark-text-primary);
    margin-bottom: 0;
}

.expert-title {
    font-size: 1rem;
    font-weight: 500;
    color: var(--primary-gold);
    margin-bottom: 0.75rem;
}

.expert-description {
    color: var(--dark-text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 0;
}

.expert-linkedin-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #0077b5;
    border-radius: 0;
    color: var(--white);
    text-decoration: none;
    font-size: 1.1rem;
    transition: var(--transition-smooth);
}

.expert-linkedin-btn:hover,
.expert-linkedin-btn:focus {
    background: #005885;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 119, 181, 0.3);
    outline: none;
}

/* Partenaires */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.partner-card {
    background: var(--dark-bg-secondary);
    padding: 1.5rem;
    border-radius: 0;
    text-align: center;
    transition: var(--transition-smooth);
}

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

.partner-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-gold), #d4b56b);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 15px rgba(201, 164, 92, 0.3);
    transition: all 0.3s ease-in-out;
}

.partner-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.partner-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-text-primary);
    margin-bottom: 0.75rem;
}

.partner-card p {
    color: var(--dark-text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Intervenants spécialisés */
.specialists-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.specialist-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--dark-bg-secondary);
    border-radius: 0;
    transition: var(--transition-smooth);
}

.specialist-item:hover {
    background: var(--dark-bg-primary);
    box-shadow: 0 4px 12px -2px rgba(0, 0, 0, 0.1);
}

.specialist-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-blue), #1e3c5a);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(16, 37, 66, 0.3);
    transition: all 0.3s ease-in-out;
}

.specialist-icon i {
    font-size: 1.2rem;
    color: var(--white);
}

.specialist-info h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-text-primary);
    margin-bottom: 0.25rem;
}

.specialist-info p {
    color: var(--dark-text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Section Témoignages */
.testimonials {
    background: var(--dark-bg-primary);
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
    box-shadow: 0 2px 8px rgba(201, 164, 92, 0.3);
}

/* Bande défilante des logos « Ils nous font confiance » */
.logo-marquee {
    overflow: hidden;
    padding: 1rem 0;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.logo-marquee-track {
    display: flex;
    width: max-content;
    animation: logo-marquee-scroll 40s linear infinite;
}

.logo-marquee:hover .logo-marquee-track {
    animation-play-state: paused;
}

.logo-marquee-group {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: space-around;
    min-width: 100vw;
    margin: 0;
    padding: 0;
    list-style: none;
}

.logo-marquee-group li {
    flex-shrink: 0;
    padding: 0 3rem;
}

.logo-marquee-group img {
    display: block;
    height: 90px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
}

/* Logos verticaux (écussons) : agrandis pour un poids visuel équivalent aux logos horizontaux */
.logo-marquee-group img.logo-marquee-tall {
    height: 130px;
}

@keyframes logo-marquee-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@media (max-width: 768px) {
    .logo-marquee-group li { padding: 0 1.75rem; }
    .logo-marquee-group img { height: 64px; max-width: 160px; }
    .logo-marquee-group img.logo-marquee-tall { height: 92px; }
}

/* Mouvement réduit : logos fixes, centrés */
@media (prefers-reduced-motion: reduce) {
    .logo-marquee { -webkit-mask-image: none; mask-image: none; }
    .logo-marquee-track { animation: none; width: auto; justify-content: center; }
    .logo-marquee-group { min-width: 0; flex-wrap: wrap; justify-content: center; row-gap: 2rem; }
    .logo-marquee-group[aria-hidden="true"] { display: none; }
}

/* Section Contact */
.contact {
    background: var(--dark-bg-primary);
    color: var(--white);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
    box-shadow: 0 2px 8px rgba(201, 164, 92, 0.3);
}

.contact-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: var(--container-padding);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact h2 {
    color: var(--white);
    text-align: left;
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--white);
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 0;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    background: rgba(255, 255, 255, 0.15);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item i {
    font-size: 1.25rem;
    color: var(--primary-gold);
    margin-top: 0.25rem;
    width: 20px;
}

.contact-item h4 {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--white);
}

.contact-item p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.social-links a:hover,
.social-links a:focus {
    background: var(--primary-gold);
    outline: none;
}

/* Styles pour la case à cocher */
.checkbox-group {
    margin: 1.5rem 0;
}

.checkbox-group:last-of-type {
    margin-top: -0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    color: var(--white);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 0;
    background: transparent;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
    transition: var(--transition-smooth);
}

.checkbox-label:hover .checkmark {
    border-color: var(--primary-gold);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid var(--white);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Améliorer le style du bouton doré dans le formulaire */
.contact .btn-golden {
    background: var(--primary-gold);
    color: var(--white);
    border: 2px solid var(--primary-gold);
    transition: var(--transition-smooth);
}

.contact .btn-golden:hover:not(:disabled),
.contact .btn-golden:focus:not(:disabled) {
    background: rgba(201, 164, 92, 0.9);
    border-color: rgba(201, 164, 92, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(201, 164, 92, 0.3);
    outline: none;
}

.contact .btn-golden:disabled {
    background: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.5);
    border-color: rgba(255, 255, 255, 0.2);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Footer */
.footer {
    background: var(--dark-bg-primary);
    padding: 2rem 0 1rem;
}

.footer-separator {
    height: 1px;
    background: var(--dark-border-light);
    margin-bottom: 2rem;
}

/* Mentions légales */
.legal-notices {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--dark-bg-secondary);
    border-radius: 0;
    border-left: 4px solid var(--primary-gold);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-intro {
    font-size: 0.95rem;
    color: var(--dark-text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.legal-disclaimer {
    font-size: 0.85rem;
    color: var(--dark-text-secondary);
    line-height: 1.5;
}

.legal-disclaimer p {
    margin-bottom: 0.75rem;
}

.legal-list {
    margin: 0.75rem 0;
    padding-left: 1.5rem;
    list-style: none;
}

.legal-list li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 0.5rem;
}

.legal-list li::before {
    content: '';
    position: absolute;
    left: -1rem;
    top: 0.6em;
    width: 4px;
    height: 4px;
    background: var(--primary-gold);
    border-radius: 50%;
}

.legal-note {
    font-style: italic;
    color: var(--dark-text-secondary);
    margin-top: 1rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--dark-border-light);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--dark-text-secondary);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: var(--dark-text-secondary);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-links a {
    position: relative;
    transition: var(--transition-smooth);
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: width 0.3s ease;
}

.footer-links a:hover,
.footer-links a:focus {
    color: var(--dark-text-secondary);
    outline: none;
}

.footer-links a:hover::after,
.footer-links a:focus::after {
    width: 100%;
}



/* Responsive Design */
/* Structure responsive du header avec flexbox optimisé */
.nav-container {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    position: relative;
}

.nav-logo {
    flex-shrink: 0;
}

.btn-organismes-publics {
    flex-shrink: 0;
    order: 2;
}

.nav-menu {
    flex: 1;
    justify-content: center;
    margin: 0;
    order: 3;
}

.nav-container > .btn-primary {
    flex-shrink: 0;
    order: 4;
}

@media (max-width: 768px) {
    .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 0.75rem;
    }

    .nav-logo {
        order: 1;
    }

    .btn-organismes-publics {
        order: 2;
        display: flex !important;
        font-size: 0.7rem;
        padding: 4px 8px;
    }

    /* Adaptation de l'icône curseur en mobile */
    .btn-organismes-publics::after {
        width: 20px;
        height: 20px;
        bottom: -10px;
        right: -10px;
    }

    .btn-organismes-publics:hover::after {
        bottom: -12px;
        right: -12px;
    }

    .hamburger {
        display: flex;
        order: 3;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        padding: 2rem 0;
        gap: 1rem;
        order: 4;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-container > .btn-primary {
        display: none;
    }

    /* Corrections pour le thème clair */
    .light-theme .nav-menu {
        background-color: var(--primary-blue);
    }

    .light-theme .nav-link {
        color: var(--white);
    }

    .light-theme .bar {
        background: var(--white);
    }



    .hero-logo-img {
        height: 120px;
        max-width: 450px;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    section h2 {
        font-size: 2rem;
    }

    .vision-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .vision-image {
        order: 2;
    }

    .vision-content {
        order: 1;
    }

    .methode-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .services-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-pole {
        padding: 1.5rem;
    }

    .accordion-button {
        padding: 0.875rem 1rem;
        font-size: 0.9rem;
    }

    .accordion-content-inner {
        padding: 1rem;
    }

    .experts-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .expert-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
        align-items: center;
    }

    .expert-photo-container {
        flex-direction: column;
        align-items: center;
        margin-bottom: 1rem;
    }

    .expert-name-linkedin {
        justify-content: center;
    }

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

    .specialists-list {
        grid-template-columns: 1fr;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .legal-notices {
        margin-bottom: 1.5rem;
        padding: 1rem;
    }

    .legal-content {
        text-align: left;
    }

    .legal-intro {
        font-size: 0.9rem;
    }

    .legal-disclaimer {
        font-size: 0.8rem;
    }

    .legal-list {
        padding-left: 1rem;
    }

    .container {
        padding: 0 15px;
    }

    section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .hero-logo-img {
        height: 80px;
        max-width: 320px;
    }

    .hero-title {
        font-size: 1.4rem;
        margin-bottom: 1rem;
        line-height: 1.3;
        padding: 0 10px;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        padding: 0 10px;
    }

    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 2rem;
        padding: 0 15px;
        line-height: 1.6;
    }

    .hero-content {
        padding: 0 10px;
    }

    .btn-large {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .methode-card,
    .service-card {
        padding: 1.5rem;
    }
}

/* Breakpoint spécifique pour iPhone SE (375px) et écrans similaires */
@media (max-width: 375px) {
    .hero-logo-img {
        height: 70px;
        max-width: 280px;
    }

    .hero-title {
        font-size: 1.3rem;
        line-height: 1.2;
        padding: 0 15px;
        margin-bottom: 0.8rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        padding: 0 15px;
        margin-bottom: 1.2rem;
    }

    .hero-description {
        font-size: 0.85rem;
        padding: 0 20px;
        line-height: 1.5;
        margin-bottom: 1.8rem;
    }

    .hero-content {
        padding: 0 5px;
        max-width: 100%;
    }

    .btn-large {
        padding: 10px 18px;
        font-size: 0.85rem;
        margin: 0 10px;
    }

    .container {
        padding: 0 10px;
    }
}

/* Bannière cookie */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--dark-bg-primary) 0%, var(--dark-bg-secondary) 100%);
    border-top: 3px solid var(--primary-gold);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 2000;
    padding: 1.5rem 0;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner-content {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-banner-text {
    flex: 1;
    color: var(--dark-text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.cookie-banner-text a {
    color: var(--primary-gold);
    text-decoration: underline;
    transition: color 0.2s ease;
}

.cookie-banner-text a:hover,
.cookie-banner-text a:focus {
    color: var(--dark-text-primary);
    outline: none;
}

.cookie-banner-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-banner .btn-cookie {
    padding: 10px 20px;
    background: var(--primary-gold);
    color: var(--white);
    border: 2px solid var(--primary-gold);
    border-radius: 0;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
    white-space: nowrap;
}

.cookie-banner .btn-cookie:hover,
.cookie-banner .btn-cookie:focus {
    background: rgba(201, 164, 92, 0.9);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(201, 164, 92, 0.3);
    outline: none;
}

/* Adaptation pour le thème clair */
.light-theme .cookie-banner {
    background: linear-gradient(135deg, var(--white) 0%, var(--background-light) 100%);
    border-top-color: var(--primary-gold);
}

.light-theme .cookie-banner-text {
    color: var(--text-light);
}

.light-theme .cookie-banner-text a {
    color: var(--primary-blue);
}

.light-theme .cookie-banner-text a:hover,
.light-theme .cookie-banner-text a:focus {
    color: var(--primary-gold);
}

.light-theme .cookie-banner .btn-cookie {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    color: var(--white);
}

.light-theme .cookie-banner .btn-cookie:hover,
.light-theme .cookie-banner .btn-cookie:focus {
    background: rgba(16, 37, 66, 0.9);
    border-color: rgba(16, 37, 66, 0.9);
}

/* Responsive pour la bannière cookie */
@media (max-width: 768px) {
    .cookie-banner-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .cookie-banner-text {
        font-size: 0.9rem;
    }

    .cookie-banner-actions {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }

    .cookie-banner .btn-cookie {
        width: 100%;
        padding: 12px 20px;
    }
}

@media (max-width: 480px) {
    .cookie-banner {
        padding: 1rem 0;
    }

    .cookie-banner-content {
        padding: 0 15px;
        gap: 1rem;
    }

    .cookie-banner-text {
        font-size: 0.85rem;
    }
}

/* États de focus pour l'accessibilité */
.btn:focus,
.nav-link:focus,
input:focus,
textarea:focus,
button:focus {
    outline: 2px solid var(--primary-gold);
    outline-offset: 2px;
}

/* Animation smooth */
@media (prefers-reduced-motion: no-preference) {
    .methode-card,
    .service-card,
    .btn {
        transition: var(--transition-smooth);
    }
}
/* Thème clair pour la page organismes publics */
.light-theme {
    background: linear-gradient(to bottom, #f8f9fa, #ffffff);
    color: var(--text-dark);
}

.light-theme .header {
    background: rgba(16, 37, 66, 0.95);
    color: var(--white);
}

.light-theme .nav-link {
    color: var(--white);
}

.light-theme .nav-link:hover,
.light-theme .nav-link:focus {
    color: var(--primary-gold);
}

.light-theme .btn-primary {
    background: var(--primary-gold);
    color: var(--primary-blue);
    border-color: var(--primary-gold);
}

.light-theme .btn-primary:hover,
.light-theme .btn-primary:focus {
    background: rgba(201, 164, 92, 0.9);
    color: var(--primary-blue);
}

.light-theme .btn-organismes-publics {
    background: var(--white);
    color: var(--primary-blue);
    border-color: var(--white);
}

.light-theme .btn-organismes-publics:hover,
.light-theme .btn-organismes-publics:focus {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-blue);
}

.light-theme .vision {
    background: var(--white);
}

.light-theme .methode {
    background: var(--background-light);
}

.light-theme .methode-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    color: var(--text-dark);
}

.light-theme .methode-card h3 {
    color: var(--primary-blue);
}

.light-theme .methode-card li {
    color: var(--text-light);
}

.light-theme .services {
    background: var(--white);
}

.light-theme .service-pole {
    background: var(--background-light);
    border-color: var(--border-light);
    color: var(--text-dark);
}

.light-theme .service-pole:hover {
    border-color: var(--primary-gold);
}

.light-theme .service-pole h3 {
    color: var(--primary-blue);
}

.light-theme .service-description {
    color: var(--text-light);
}

.light-theme .accordion-button {
    background: var(--white);
    color: var(--text-dark);
}

.light-theme .accordion-button:hover,
.light-theme .accordion-button:focus {
    background: var(--background-light);
}

.light-theme .accordion-button[aria-expanded="true"] {
    background: var(--white);
    border-bottom-color: var(--border-light);
}

.light-theme .accordion-content-inner {
    border-top-color: var(--border-light);
    background: var(--white);
}

.light-theme .accordion-content h4 {
    color: var(--primary-blue);
}

.light-theme .accordion-content li {
    color: var(--text-light);
}

.light-theme .accordion-content strong {
    color: var(--text-dark);
}

.light-theme .experts {
    background: var(--background-light);
}

.light-theme h2 {
    color: var(--primary-blue) !important;
}

.light-theme .experts h2,
.light-theme .experts h3 {
    color: var(--primary-blue);
}

.light-theme .expert-card {
    background: var(--white);
    border: 1px solid var(--border-light);
}

.light-theme .expert-info h4 {
    color: var(--primary-blue);
}

.light-theme .expert-description {
    color: var(--text-light);
}

.light-theme .partner-card {
    background: var(--white);
    border: 1px solid var(--border-light);
}

.light-theme .partner-card h4 {
    color: var(--primary-blue);
}

.light-theme .partner-card p {
    color: var(--text-light);
}

.light-theme .specialist-item {
    background: var(--white);
    border: 1px solid var(--border-light);
}

.light-theme .specialist-item:hover {
    background: var(--background-light);
}

.light-theme .specialist-info h5 {
    color: var(--primary-blue);
}

.light-theme .specialist-info p {
    color: var(--text-light);
}

.light-theme .testimonials {
    background: var(--white);
}

.light-theme .testimonials h2 {
    color: var(--primary-blue);
}

.light-theme .testimonial-card {
    background: var(--background-light);
    border: 1px solid var(--border-light);
}

.light-theme .testimonial-card blockquote p {
    color: var(--text-dark);
}

.light-theme .contact {
    background: var(--primary-blue);
    color: var(--white);
}

.light-theme .contact h2 {
    color: var(--white) !important;
}

.light-theme .footer {
    background: var(--background-light);
}

.light-theme .footer-separator {
    background: var(--border-light);
}

.light-theme .legal-notices {
    background: var(--white);
    border-left-color: var(--primary-gold);
}

.light-theme .legal-intro,
.light-theme .legal-disclaimer {
    color: var(--text-light);
}

.light-theme .footer-content {
    color: var(--text-light);
}

.light-theme .footer-links a {
    color: var(--text-light);
}

.light-theme .footer-links a:hover,
.light-theme .footer-links a:focus {
    color: var(--primary-blue);
}

.light-theme .vision-content p {
    color: var(--text-light);
}

.light-theme .vision-content em {
    color: var(--primary-blue);
    font-weight: 600;
}

/* Ajustements pour les bordures séparateur sur thème clair */
.light-theme .experts::before,
.light-theme .testimonials::before,
.light-theme .contact::before {
    background: linear-gradient(90deg, transparent, var(--primary-blue), transparent);
}

/* Ajout des transitions globales, animations au scroll, grille responsive, contrastes et ombres, raffinement des polices et icônes */

/* Transitions globales sur les éléments interactifs */
a,
button,
.btn {
    transition: all 0.3s ease-in-out;
}

a:hover,
button:hover,
.btn:hover {
    transform: scale(1.02);
}

/* Grille responsive avec breakpoints précis */
.container {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

/* Breakpoints pour la grille responsive */
@media (min-width: 768px) {
    .container {
        /* Tablette */
    }
}

@media (min-width: 1024px) {
    .container {
        /* Desktop */
    }
}

/* Augmentation des contrastes subtils et des ombres */
.header,
.methode-card,
.service-pole,
.expert-card,
.partner-card,
.testimonial-card {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Raffinement des polices et icônes pour une élégance institutionnelle */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.02em;
}

body {
    font-family: 'Open Sans', sans-serif;
}

/* Intégration d'icônes vectorielles minimalistes (exemple avec Font Awesome) */
/* Ajoutez ici le CSS pour animer les icônes SVG au hover */

/* Styles pour les liens actifs */
.nav-link.active {
    color: var(--primary-blue);
}

.nav-link.active::after {
    width: 100%;
}

/* Correction pour le thème clair */
.light-theme .nav-link.active {
    color: var(--primary-gold);
}

.light-theme .nav-link.active::after {
    background-color: var(--primary-gold);
}

/* --- Formulaire de contact : champ piège anti-robots et messages d'état --- */
.form-hp {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-status {
    margin: 0;
    padding: 12px 16px;
    color: var(--white);
    font-size: 0.95rem;
    line-height: 1.5;
}

.form-status--success {
    background: rgba(16, 185, 129, 0.12);
}

.form-status--error {
    background: rgba(255, 107, 107, 0.12);
}

/* Widget ALTCHA aux couleurs du formulaire */
.form-altcha altcha-widget {
    display: block;
    --altcha-max-width: 100%;
    --altcha-border-width: 2px;
    --altcha-border-radius: 0;
    --altcha-border-color: rgba(255, 255, 255, 0.2);
    --altcha-color-base: rgba(255, 255, 255, 0.1);
    --altcha-color-base-content: var(--white);
    --altcha-color-neutral: rgba(255, 255, 255, 0.35);
    --altcha-color-primary: var(--primary-gold);
    --altcha-color-primary-content: var(--white);
    --altcha-checkbox-border-radius: 0;
}

.checkbox-label a {
    color: var(--primary-gold);
    text-decoration: underline;
}

/* --- Cartes « Nos services » du site entreprises privées : fond blanc, en-tête bleu foncé ;
       les menus déroulants gardent leur style bleu d'origine --- */
body:not(.light-theme) .services .service-pole {
    background: var(--white);
    border-color: rgba(30, 39, 54, 0.15);
}

body:not(.light-theme) .services .service-pole:hover {
    border-color: var(--primary-gold);
}

body:not(.light-theme) .services .service-pole-header {
    border-bottom-color: rgba(30, 39, 54, 0.15);
}

body:not(.light-theme) .services .service-pole h3,
body:not(.light-theme) .services .service-description {
    color: var(--dark-bg-primary);
}