/* ===== VARIABLES CSS ===== */
:root {
    --primary-orange: #E77836;
    --primary-blue: #2C3E50;
    --light-blue: #E8F4F8;
    --light-orange: #FFF5F0;
    --text-dark: #1A1A1A;
    --text-gray: #666666;
    --white: #FFFFFF;
    --border-gray: #E0E0E0;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 16px rgba(0, 0, 0, 0.15);
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    position: relative;
    padding-bottom: 15px;
}

h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70px;
    height: 3px;
    background-color: var(--primary-orange);
}

h2 {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 15px;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70px;
    height: 3px;
    background-color: var(--primary-orange);
}

h3 {
    font-size: 1.5rem;
    color: var(--primary-blue);
    position: relative;
    padding-bottom: 15px;
}

h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70px;
    height: 3px;
    background-color: var(--primary-orange);
}

p {
    margin-bottom: 1rem;
    color: var(--text-gray);
}

strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* ===== BUTTONS ===== */
.btn-primary,
.btn-secondary,
.btn-contact {
    display: inline-block;
    padding: 14px 30px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 7px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--primary-orange);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #d66625;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-orange);
    border: 2px solid var(--primary-orange);
}

.btn-secondary:hover {
    background-color: var(--primary-orange);
    color: var(--white);
}

.btn-contact {
    background-color: var(--primary-orange);
    color: var(--white);
    padding: 10px 24px;
    font-size: 0.95rem;
}

/* ===== HEADER & NAVIGATION ===== */
.header {
    background-color: #f7f7f7;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.logo img {
    width: 40px;
    height: 40px;
    border-radius: 5px;
}

.logo img:nth-child(2) {
    width: auto;
    height: 35px;
    border-radius: 0;
    margin-left: 10px;
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

/* Bouton "Me contacter" dans la nav : texte blanc */
.nav-menu a.btn-contact {
    color: var(--white);
    background-color: var(--primary-orange);
    padding: 10px 18px;
    border-radius: 7px;
    display: inline-block;
    font-weight: 600;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-orange);
}

/* Garder le texte blanc pour le bouton "Me contacter" au survol */
.nav-menu a.btn-contact:hover,
.nav-menu a.btn-contact:focus,
.nav-menu a.btn-contact:active {
    color: var(--white);
    background-color: #d66625;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-orange);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-blue);
    transition: all 0.3s ease;
}

/* ===== HERO SECTION ===== */
.hero {
    padding: 60px 0;
    background: linear-gradient(135deg, #eeeeee 0%, var(--white) 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-text {
    padding-right: 20px;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--primary-orange);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 2rem;
    color: var(--primary-blue);
    margin: 1.5rem 0;
    line-height: 1.4;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 85%;
    height: auto;
    border-radius: 10px;
    /* box-shadow: var(--shadow-hover); */
}

/* ===== SECTIONS ===== */
section {
    padding: 60px 0;
}

.approach,
.racelead-solution,
.support-section,
.rh-role,
.adaptation,
.personalized-support,
.method-intro {
    text-align: left;
}

.approach-description,
.solution-intro,
.solution-description,
.support-description,
.adaptation-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0;
    color: var(--text-gray);
    text-align: left;
}

/* ===== CARDS ===== */
.audience-cards,
.benefits-grid,
.offers-grid,
.challenges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.audience-card,
.benefit-card,
.offer-card,
.challenge-card {
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.audience-card:hover,
.benefit-card:hover,
.offer-card:hover,
.challenge-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.blue-bg,
.blue-card {
    background-color: var(--light-blue);
}

.orange-bg,
.orange-card {
    background-color: var(--light-orange);
}

.audience-card h3,
.benefit-card h3,
.offer-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.card-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--primary-orange);
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.card-link:hover {
    transform: translateX(5px);
}

/* ===== CHECKLIST ===== */
.checklist {
    list-style: none;
    margin: 1.5rem 0;
}

.checklist li {
    padding: 0.5rem 0 0.5rem 2rem;
    position: relative;
    color: var(--text-gray);
}

.checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-orange);
    font-weight: bold;
    font-size: 1.2rem;
}

/* ===== PARTNERSHIP SECTION ===== */
.partnership-content,
.approach-content,
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 30px;
}

.partnership-text,
.approach-text,
.about-text {
    text-align: left;
}

.partnership-subtitle,
.partnership-description {
    margin: 1rem 0;
}

.partnership-image img,
.approach-image img,
.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

/* ===== ICONS ===== */
.card-icon,
.offer-icon,
.challenge-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.card-number,
.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: var(--primary-orange);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

/* ===== PILLARS SECTION ===== */
.pillars-section {
    background-color: var(--light-blue);
    padding: 60px 0;
}

/* Acronym List Styling */
.acronym-list {
    list-style: none;
    margin: 30px 0;
    padding: 0;
}

.acronym-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    position: relative;
    padding-left: 30px;
}

.acronym-item::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-orange);
    font-size: 2.5rem;
    font-weight: bold;
}

.acronym-letter {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-orange);
    min-width: 60px;
    text-transform: uppercase;
}

.acronym-text {
    font-size: 1.5rem;
    color: var(--text-dark);
    font-weight: 400;
}

.racelead-circle {
    text-align: left;
    margin: 40px 0;
}

.pillars-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.pillar-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.pillar-letter-large {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 2rem;
    font-weight: bold;
    color: var(--white);
}

.pillar-letter-large.orange {
    background-color: var(--primary-orange);
}

.pillar-letter-large.blue {
    background-color: var(--primary-blue);
}

.transformation-result {
    text-align: left;
    font-size: 1.1rem;
    margin-top: 40px;
    padding: 30px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
}

/* ===== PROCESS SECTION ===== */
.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    text-align: left;
    padding: 30px 20px;
    background-color: var(--light-blue);
    border-radius: 10px;
    min-width: 200px;
}

.process-arrow {
    font-size: 2rem;
    color: var(--primary-orange);
    padding: 0 10px;
}

/* ===== CONTACT FORM ===== */
.contact-section {
    background-color: var(--light-blue);
    padding: 80px 0;
}

.contact-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: var(--text-gray);
}

/* Contact Options Cards */
.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.contact-option-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-option-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.option-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.contact-option-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-blue);
}

.contact-option-card p {
    color: var(--text-gray);
    margin-bottom: 25px;
    min-height: 60px;
}

.contact-option-card .btn-primary,
.contact-option-card .btn-secondary {
    width: 100%;
    text-align: center;
}

/* ===== MAIN CONTACT MODAL ===== */
.contact-main-modal {
    display: none;
    position: fixed;
    z-index: 1500;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    animation: fadeIn 0.3s ease;
}

.contact-main-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-main-modal-content {
    background-color: var(--white);
    margin: 20px;
    padding: 50px;
    border-radius: 15px;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideIn 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.contact-main-close {
    position: absolute;
    right: 25px;
    top: 25px;
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--text-gray);
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
    z-index: 10;
}

.contact-main-close:hover {
    color: var(--primary-orange);
}

/* Calendar Modal */
.calendar-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    animation: fadeIn 0.3s ease;
}

.calendar-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.calendar-modal-content {
    background-color: var(--white);
    margin: 20px;
    padding: 40px;
    border-radius: 10px;
    width: 90%;
    max-width: 700px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideIn 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.calendar-close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--text-gray);
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
}

.calendar-close:hover {
    color: var(--primary-orange);
}

.modal-description {
    color: var(--text-gray);
    margin-bottom: 30px;
    text-align: center;
}

.calendar-container {
    margin-top: 20px;
}

/* Planning Calendar */
.planning-calendar {
    background-color: var(--white);
    border-radius: 10px;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: var(--primary-blue);
    color: var(--white);
    border-radius: 10px 10px 0 0;
}

.calendar-header h4 {
    margin: 0;
    color: var(--white);
}

.calendar-nav {
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    padding: 0 15px;
    transition: transform 0.2s ease;
}

.calendar-nav:hover {
    transform: scale(1.2);
}

.calendar-grid {
    display: grid;
    grid-template-columns: 100px repeat(5, 1fr);
    gap: 1px;
    background-color: var(--border-gray);
    padding: 20px;
}

.calendar-day-header {
    background-color: var(--light-blue);
    padding: 15px 10px;
    text-align: center;
    font-weight: 600;
    color: var(--primary-blue);
}

.calendar-time-label {
    background-color: var(--light-blue);
    padding: 15px 10px;
    text-align: center;
    font-weight: 500;
    color: var(--text-dark);
}

.calendar-slot {
    background-color: var(--white);
    padding: 15px 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.calendar-slot.available {
    background-color: #e8f8f5;
    border: 2px solid #2ecc71;
}

.calendar-slot.available:hover {
    background-color: #d4f4e8;
    transform: scale(1.05);
}

.calendar-slot.unavailable {
    background-color: #f8f9fa;
    color: var(--text-gray);
    cursor: not-allowed;
    opacity: 0.5;
}

.calendar-slot.selected {
    background-color: var(--primary-orange);
    color: var(--white);
    font-weight: bold;
}

.selected-slot-info {
    margin-top: 30px;
    padding: 30px;
    background-color: var(--light-blue);
    border-radius: 10px;
}

.selected-slot-info h4 {
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.selected-slot-info p {
    margin-bottom: 10px;
    color: var(--text-dark);
}

.selected-slot-info .btn-secondary {
    margin-top: 10px;
    width: 100%;
}

.simple-calendar {
    background-color: var(--light-blue);
    padding: 30px;
    border-radius: 10px;
}

.simple-calendar h4 {
    margin-bottom: 20px;
    color: var(--primary-blue);
    text-align: center;
}

.calendar-note {
    text-align: center;
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 25px;
    padding: 15px;
    background-color: var(--white);
    border-radius: 5px;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.contact-form h3 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary-blue);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-gray);
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
}

.contact-form button,
.simple-calendar button {
    width: 100%;
    margin-top: 20px;
}

/* ===== CTA SECTION ===== */
.cta-section {
    text-align: left;
    background: linear-gradient(135deg, var(--primary-orange) 0%, #d66625 100%);
    color: var(--white);
    padding: 80px 20px;
}

.cta-section h2 {
    color: var(--white);
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.cta-section p {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-section .btn-primary {
    background-color: var(--white);
    color: var(--primary-orange);
}

.cta-section .btn-primary:hover {
    background-color: var(--light-orange);
    transform: translateY(-2px);
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 40px 0 20px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-logo img {
    width: 40px;
    height: 40px;
    border-radius: 5px;
    filter: invert(1) brightness(1.2);
}

.footer-logo img:nth-child(2) {
    width: auto;
    height: 35px;
    border-radius: 0;
    margin-left: 10px;
    filter: invert(1) brightness(1.2);
}

.footer-info p,
.footer-contact a {
    color: var(--white);
    margin-bottom: 0.5rem;
}

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

.footer-contact a:hover {
    color: var(--primary-orange);
}

.footer-bottom {
    text-align: left;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow);
    }

    .nav-menu.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-content,
    .partnership-content,
    .approach-content,
    .about-content {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 2rem;
    }

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

    h2 {
        font-size: 1.75rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .process-steps {
        flex-direction: column;
    }

    .process-arrow {
        transform: rotate(90deg);
        margin: 10px 0;
    }

    .audience-cards,
    .benefits-grid,
    .offers-grid,
    .pillars-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    section {
        padding: 40px 0;
    }

    .hero h1 {
        font-size: 1.75rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
}

/* ===== CALENDLY INTEGRATION ===== */
.calendly-inline-widget {
    margin: 20px 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.calendly-note {
    margin-top: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-left: 4px solid var(--primary-orange);
    border-radius: 5px;
}

.calendly-note p {
    margin: 8px 0;
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.calendly-note strong {
    color: var(--primary-blue);
}

.calendly-note em {
    color: var(--text-gray);
    font-size: 0.85rem;
    display: block;
    margin-top: 10px;
}

/* ===== PAGE ME DÉCOUVRIR ===== */
.hero-apropos .hero-text h1::after {
    display: none;
}

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

.parcours-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--white) 100%);
}

.parcours-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.parcours-intro {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-dark);
}

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

.experience-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.experience-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.experience-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.experience-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.experience-card h3::after {
    display: none;
}

.experience-card p {
    font-size: 1rem;
    line-height: 1.6;
}

.approche-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.approche-section h3 {
    text-align: center;
    margin-bottom: 2rem;
}

.approche-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* ===== FORM MESSAGES ===== */
.form-message {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-message-success {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.form-message-error {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.form-message-icon {
    font-size: 1.4rem;
    font-weight: bold;
}

.form-message-success .form-message-icon {
    color: #28a745;
}

.form-message-error .form-message-icon {
    color: #dc3545;
}

.form-message-text {
    flex: 1;
    line-height: 1.5;
}

/* Button loading state */
button[type="submit"]:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}
