* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
    width: 100%;
    line-height: 1.6;
    color: #333;
    padding-top: 118px;
    /* 38px topbar + 80px header */
}

/* ===== TOPBAR ===== */
.topbar {
    background-color: #1e293b;
    width: 100%;
    padding: 9px 0;
    font-family: 'Segoe UI', system-ui, sans-serif;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    overflow: hidden;
}

.topbar-item {
    display: flex;
    align-items: center;
    color: #e2e8f0;
    font-size: 12.5px;
    letter-spacing: 0.03em;
    padding: 0 16px;
    white-space: nowrap;
}

.topbar-item svg {
    width: 12px;
    height: 12px;
    margin-right: 6px;
    fill: #94a3b8;
    flex-shrink: 0;
}

.sep {
    width: 1px;
    height: 14px;
    background: #334155;
    flex-shrink: 0;
}

/* ===== HEADER ===== */
header {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    position: fixed;
    top: 38px;
    /* hauteur exacte de la topbar */
    z-index: 1000;
    width: 100%;
    height: 80px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
    width: 100%;
    max-width: 1200px;
    /* ALIGNEMENT MAX */
}

.logo {
    flex-shrink: 0;
}

.logo img {
    height: 60px;
    width: auto;
    display: block;
    transition: none;
}

nav {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-left: auto;
    margin-right: 25px;
}

nav a {
    text-decoration: none;
    color: #333;
    font-size: 17px;
    font-weight: 500;
    transition: color 0.3s ease, transform 0.2s ease;
    position: relative;
}

nav a:hover,
nav a.active {
    color: #FF5F1F;
}

.nav-icons {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-shrink: 0;
}

.nav-icons a {
    color: #2a2a2a;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 0.3s ease;
}

.nav-icons a:hover {
    background-color: #f5f5f5;
    transform: scale(1.15);
}

#hamburger-btn svg {
    transition: transform 0.4s ease;
}

#hamburger-btn.active svg {
    transform: rotate(90deg);
    color: #FF5F1F;
}

.icon-separator {
    display: none !important;
}

.phone-icon,
.email-icon {
    display: none !important;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 350px;
    height: 100%;
    background: linear-gradient(135deg, #1e293b 0%, #1e293b 100%);
    z-index: 1001;
    padding: 100px 30px 40px 30px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    transition: right 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.mobile-menu-icon {
    margin-top: auto;
    display: flex;
    justify-content: center;
}

.mobile-menu-icon img {
    height: 120px;
    width: auto;
}

.mobile-menu-contact {
    padding-top: 15px;
    border-top: 1px solid #444;
    margin-top: auto;
}

.mobile-menu-contact p {
    color: white;
    font-size: 14px;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.mobile-menu-contact p strong {
    color: #FF5F1F;
    font-size: 12px;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 1000;
    display: none;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

.mobile-menu a {
    color: white;
    text-decoration: none;
    font-size: 20px;
    font-family: 'Syne', sans-serif;
    font-weight: 900;
    display: block;
    padding: 3px 0;
    transition: color 0.3s ease, transform 0.2s ease;
}

.mobile-menu a:hover {
    color: #FF5F1F;
    transform: translateX(10px);
}

.mobile-menu a::before {
    content: "→ ";
    color: #FF5F1F;
    margin-right: 12px;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 36px;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
}



/* ===== BANNER (MODIFIÉ ICI POUR L'ALIGNEMENT STRICT) ===== */
.banner {
    min-height: 95vh;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.02) 0%, rgba(255, 102, 0, 0.01) 100%), url('img/bannerhome.png') no-repeat center center;
    background-size: cover;

    display: flex;
    align-items: center;
    justify-content: center;
    /* Centre le conteneur */
    padding: 80px 20px 60px 20px;
    position: relative;
}

.banner-container {
    width: 100%;
    max-width: 1200px;
    /* ALIGNEMENT MAX PARFAIT */
    margin: 0 auto;
}

.banner-text {
    /* Retrait du décalage margin-left */
    animation: slideUp 0.8s ease-out;
    padding-left: 0;
    /* TEXTE À GAUCHE */
    text-align: left;
    margin-left: 30px;
}

.banner-text h1 {
    font-size: clamp(32px, 8vw, 70px);
    font-weight: 900;
    color: #FF5F1F;
    line-height: 0.95;
    font-family: 'Syne', sans-serif;
    letter-spacing: 0.02em;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.banner-text h1 .decollage {
    color: #FF5F1F;
    display: block;
    margin-top: 5px;
}

/* ===== ORANGE SECTION (INCHANGÉ) ===== */
.orange-section {
    background-color: #FF5F1F;
    color: white;
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

.orange-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.orange-left h2 {
    font-size: clamp(24px, 5vw, 38px);
    line-height: 1.2;
    font-family: 'Syne', sans-serif;
    font-weight: 900;
    margin-bottom: 50px;
    margin-left: 25px;
}

.icons-row {
    display: flex;
    gap: 50px;
    margin-top: 60px;
    flex-wrap: wrap;
    margin-left: 15px;
}

.icon-img {
    height: 85px;
    width: auto;
    transition: none;
}

.orange-right h3 {
    font-size: clamp(22px, 4vw, 40px);
    margin-bottom: 25px;
    font-family: 'Syne', sans-serif;
    font-weight: 900;
    line-height: 1;
}

.orange-right p {
    font-size: 15px;
    line-height: 1.5;
    text-align: justify;
    font-weight: 600;
}

.dots {
    display: flex;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    height: 10px;
    background: #ffcda8;
}

.dot:nth-child(1) {
    width: 70px;
}

.dot:nth-child(2) {
    width: 45px;
    opacity: 0.6;
}

.dot:nth-child(3) {
    width: 30px;
    opacity: 0.3;
}

@media (max-width: 1024px) {
    nav {
        display: none;
    }

    .icon-separator {
        display: none;
    }

    .phone-icon {
        display: none;
    }

    .email-icon {
        display: none;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 80px;
        /* sur mobile, topbar cachée donc seulement header */
    }

    .topbar {
        display: none;
        /* masquée sur mobile */
    }

    header {
        top: 0;
        /* header remonte tout en haut sur mobile */
    }

    .banner-text {
        padding-left: 0;
        text-align: center;
    }

    /* Centre le texte sur mobile */
    .orange-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .orange-right p {
        text-align: justify;
        padding: 0 15px;
        font-size: 14px;
    }

    .orange-left h2,
    .orange-right h3 {
        text-align: center;
    }

    .icons-row,
    .dots {
        justify-content: center;
    }
}

.orange-section {
    background-color: #FF5F1F;
    color: white;
    padding: 200px 20px;
    /* Augmenté de 100px à 200px */
    position: relative;
    overflow: hidden;
}



/* ===== POINTS FORTS SECTION ===== */
.points-forts-section {
    background-color: white;
    color: #2a2a2a;
    padding: 150px 20px;
    position: relative;
    overflow: hidden;
}

.points-forts-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

.points-forts-left {
    display: flex;
    flex-direction: column;
}

.points-forts-left h2 {
    font-size: clamp(32px, 6vw, 48px);
    line-height: 1.2;
    font-family: 'Syne', sans-serif;
    font-weight: 900;
    margin-bottom: 20px;
    margin-left: 25px;
}

.points-forts-orange {
    color: #FF5F1F;
}

.points-list {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-left: 25px;
}

.points-list p {
    font-size: clamp(18px, 3vw, 26px);
    font-family: 'Poppins', sans-serif;
    font-weight: 490;
    line-height: 1.3;
    color: #2a2a2a;
}

.points-forts-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.points-forts-subtitle {
    font-size: 16px;
    color: #FF5F1F;
    font-weight: 600;
    line-height: 1.6;
    text-align: justify;
}

.points-forts-right p {
    font-size: 15px;
    line-height: 1.5;
    text-align: justify;
    font-weight: 500;
    color: #333;
}

@media (max-width: 768px) {
    .points-forts-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .points-forts-left {
        text-align: center;
    }

    .points-forts-left h2 {
        text-align: center;
        margin-left: 0;
    }

    .points-list {
        margin-left: 0;
        justify-content: center;
    }

    .points-forts-right {
        text-align: center;
    }

    .points-forts-subtitle,
    .points-forts-right p {
        text-align: justify;
        padding: 0 15px;
        font-size: 14px;
    }
}




* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
    width: 100%;
    line-height: 1.6;
    color: #fff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
    width: 100%;
    line-height: 1.6;
    color: #fff;
}

/* ===== IDENTITE SECTION ===== */
.identite-section {
    background-color: #1e293b;
    color: white;
    padding: 150px 20px;
    position: relative;
    overflow: hidden;
}

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

.identite-header {
    text-align: center;
    margin-bottom: 80px;
}

.identite-header h2 {
    font-size: clamp(32px, 6vw, 56px);
    line-height: 1.2;
    font-family: 'Syne', sans-serif;
    font-weight: 900;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.identite-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.identite-card {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    color: #FF5F1F;
}

.identite-card h3 {
    font-size: clamp(18px, 3vw, 24px);
    font-family: 'Syne', sans-serif;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.3;
}

.identite-card p {
    font-size: 14px;
    line-height: 1.8;
    text-align: justify;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
}

.card-question {
    font-weight: 700;
    color: white;
    margin-top: 15px !important;
}

.card-question.bold {
    font-weight: 900;
}

.card-highlight {
    font-weight: 700;
    color: #FF5F1F;
}

@media (max-width: 1024px) {
    .identite-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .identite-section {
        padding: 100px 20px;
    }

    .identite-header {
        margin-bottom: 60px;
    }

    .identite-cards {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .identite-card {
        text-align: center;
    }

    .card-icon {
        margin: 0 auto 30px auto;
    }

    .identite-card p {
        text-align: justify;
    }
}




* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #ffffff;
}

/* Bande Orange */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #ffffff;
}

/* Conteneur gris pour bande orange et portfolio */
.content-wrapper {
    background-color: #e8e8e8;
}

/* Bande Orange */
.orange-band {
    width: 100%;
    height: 15px;
    background: linear-gradient(90deg, #f9f9f9 0%, #f9f9f9 50%, #FF5F1F 50%, #FF5F1F 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.2);
}

.orange-band-content {
    text-align: center;
    color: white;
    padding: 0 40px;
    max-width: 1200px;
    width: 100%;
}

.orange-band h2 {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 8px;
}

.orange-band p {
    font-size: 16px;
    font-weight: 300;
    opacity: 0.95;
    line-height: 1.4;
}

/* Responsive */
@media (max-width: 768px) {
    .orange-band {
        height: auto;
        padding: 30px 20px;
    }

    .orange-band h2 {
        font-size: 24px;
    }

    .orange-band p {
        font-size: 14px;
    }

    .orange-band-content {
        padding: 0;
    }
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f9f9f9;
}




* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f9f9f9;
}

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&display=swap');

/* Section Portfolio */
:root {
    --primary-color: #FF5F1F;
    --hover-overlay: rgba(255, 107, 53, 0.85);
    --bg-section: #f8f8f8;
}

.portfolio-section {
    padding: 80px 20px;
    background-color: var(--bg-section);
    display: flex;
    justify-content: center;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.portfolio-wrapper {
    max-width: 1200px;
    width: 100%;
}

.portfolio-container {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.left-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.portfolio-text {
    border-left: 12px solid #222;
    padding-left: 30px;
}

.portfolio-text .title {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 44px;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #1e293b;
}

.portfolio-text .highlight {
    color: var(--primary-color);
}

.portfolio-text .subtitle {
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: justify;
}

.portfolio-text .description {
    color: #333;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 30px;
    text-align: justify;
}

.btn-all {
    display: inline-block;
    padding: 12px 28px;
    border: 1px solid #bbb;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 11px;
    font-weight: bold;
    border-radius: 30px;
    transition: 0.3s;
}

.btn-all:hover {
    background: #1e293b;
    color: white;
    border-color: #1e293b;
}

.portfolio-grid {
    flex: 1.3;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.grid-item {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    height: 190px;
    background: #000;
    display: block;
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
    transition: 0.5s ease;
}

.grid-item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--hover-overlay);
    opacity: 0;
    transition: 0.3s ease;
    z-index: 1;
}

.grid-item:hover::after {
    opacity: 1;
}

.grid-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    padding: 20px;
    z-index: 2;
}

.link-icon {
    width: 35px;
    height: 35px;
    background: white;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    opacity: 0;
    transform: translateY(10px);
    transition: 0.3s ease;
}

.link-icon svg {
    width: 18px;
    height: 18px;
}

.grid-item:hover .link-icon {
    opacity: 1;
    transform: translateY(0);
}

.trust-section h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #222;
}

.logos-row {
    display: flex;
    gap: 30px;
}

.logos-row img {
    height: 26px;
    opacity: 0.8;
}

@media (max-width: 992px) {
    .portfolio-container {
        flex-direction: column;
        gap: 40px;
    }

    .portfolio-wrapper {
        max-width: 90%;
    }

    .left-content {
        max-width: 100%;
        width: 100%;
    }

    .portfolio-grid {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .portfolio-section {
        padding: 40px 20px;
        overflow-x: hidden;
    }

    .portfolio-text {
        border-left: 8px solid #FF5F1F;
        padding-left: 20px;
        text-align: justify;
        hyphens: auto;
        word-break: break-word;
    }

    .portfolio-text .title {
        font-size: clamp(26px, 9vw, 34px);
        line-height: 1.1;
        text-align: left;
        margin-bottom: 20px;
    }

    .portfolio-text .subtitle {
        font-size: 15px;
        line-height: 1.4;
        margin-bottom: 15px;
        text-align: justify;
    }

    .portfolio-text .description {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 30px;
        text-align: justify;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .grid-item {
        height: 190px;
    }

    .btn-all {
        display: block;
        text-align: center;
        padding: 14px 0;
    }

    .logos-row {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 20px;
    }

    .logos-row img {
        height: 22px;
        width: auto;
        margin: 0 auto;
    }

    .trust-section h3 {
        text-align: left;
        font-size: 20px;
    }
}

.logos-row {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    justify-content: flex-start;
}

.logos-row img {
    height: 38px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.4s ease;
    cursor: pointer;
}

.logos-row img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

@media (max-width: 992px) {
    .logos-row {
        gap: 30px;
    }

    .logos-row img {
        height: 32px;
    }
}

@media (max-width: 600px) {
    .logos-row {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        justify-items: start;
    }

    .logos-row img {
        height: 28px;
        filter: grayscale(100%);
    }

    .logos-row img:active {
        filter: grayscale(0%);
    }

    .left-content {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }

    .portfolio-text {
        border-left: none !important;
        padding-left: 0 !important;
        margin: 0 auto !important;
        width: 100% !important;
    }

    .portfolio-text .title {
        text-align: center !important;
        font-size: 30px !important;
        line-height: 1.2 !important;
        margin: 0 auto 20px auto !important;
        display: block !important;
    }

    .portfolio-text .subtitle,
    .portfolio-text .description {
        text-align: justify !important;
        text-align-last: center !important;
        font-size: 14px !important;
        line-height: 1.6 !important;
        margin-left: auto !important;
        margin-right: auto !important;
        margin-bottom: 20px !important;
        width: 100% !important;
        hyphens: auto;
    }

    .btn-all {
        display: table !important;
        margin: 30px auto 0 auto !important;
        text-align: center !important;
        padding: 14px 35px !important;
        float: none !important;
    }

    .trust-section h3 {
        font-size: 22px;
        margin-bottom: 20px;
        text-align: left;
    }
}

.trust-section h3 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #222;
    letter-spacing: -0.5px;
    text-transform: none;
}



.portfolio-section {
    padding: 40px 20px;
    /* Réduit (était à 80px) */
    background-color: var(--bg-section);
}

.portfolio-container {
    display: flex;
    gap: 35px;
    /* Espace entre texte et images resserré */
    align-items: flex-start;
}

.left-content {
    flex: 0.9;
    gap: 20px;
}

.portfolio-text {
    border-left: 10px solid #f9f9f9;
    padding-left: 25px;
}

.portfolio-text .title {
    font-size: 36px;
    /* Légèrement plus petit */
    margin-bottom: 12px;
}

.portfolio-text .subtitle {
    font-size: 15px;
    margin-bottom: 12px;
}

.portfolio-text .description {
    font-size: 13.5px;
    margin-bottom: 20px;
}

.portfolio-grid {
    flex: 1.1;
    gap: 10px;
}

.grid-item {
    height: 170px;
    /* Réduit juste un peu (était à 190px) */
    border-radius: 4px;
}

@media (max-width: 600px) {
    .portfolio-section {
        padding: 30px 15px;
    }

    .grid-item {
        height: 160px;
    }

    .portfolio-text .title {
        font-size: 28px !important;
    }
}



.partners-section {
    background-color: var(--bg-section);
    padding: 20px 0 60px 0;
    width: 100%;
    display: flex;
    justify-content: center;
}

.partners-content {
    width: 100%;
    max-width: 1200px;
    padding-left: 0;
    margin: 0 auto;
}

.partners-content h3 {
    font-family: 'Syne', sans-serif;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 30px;
    /* Augmenté un peu pour l'équilibre avec les gros logos */
    color: #1e293b;
    border-left: 12px solid #1e293b;
    padding-left: 30px;
    text-align: left;
}

.logos-slider {
    width: 100%;
    max-width: 600px;
    /* Augmenté de 500px à 600px pour laisser de la place aux gros logos */
    overflow: hidden;
    position: relative;
    margin-left: 42px;
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.logos-track {
    display: flex;
    width: max-content;
    gap: 60px;
    /* Augmenté l'espace entre les logos pour qu'ils ne se touchent pas */
    align-items: center;
    animation: scroll-left 18s linear infinite;
}

.logos-track img {
    height: 42px;
    /* AUGMENTÉ : était à 32px */
    width: auto;
    filter: grayscale(100%);
    opacity: 0.6;
    flex-shrink: 0;
    transition: all 0.4s ease;
    cursor: pointer;
}

.logos-track img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
    /* L'effet de zoom est un peu plus prononcé */
}

@keyframes scroll-left {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@media (max-width: 600px) {
    .partners-content h3 {
        font-size: 22px;
        border-left: none;
        padding-left: 0;
        text-align: center;
    }

    .logos-slider {
        margin-left: 0;
        max-width: 100%;
    }

    .logos-track img {
        height: 32px;
        /* Taille intermédiaire pour mobile */
    }
}


.overlay p {
    font-weight: bold;
    /* Ou utilise une valeur comme 700 or 800 */
}




.btn-all {
    display: inline-block;
    padding: 12px 28px;
    background-color: #222;
    /* Couleur de base : Noir */
    border: 1px solid #222;
    color: #fff;
    /* Texte blanc */
    text-decoration: none;
    font-size: 11px;
    font-weight: bold;
    border-radius: 30px;

    /* L'ANIMATION : douce et fluide (0.3 seconde) */
    transition: all 0.3s ease-in-out;
}

.btn-all:hover {
    background-color: var(--primary-color) !important;
    /* Devient Orange */
    border-color: var(--primary-color) !important;
    /* Bordure devient Orange */
    color: #fff !important;

    /* PETITE ANIMATION : léger soulèvement ou agrandissement */
    transform: translateY(-3px);
    /* Le bouton monte légèrement */
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    /* Petite lueur orange */
}

@media (max-width: 768px) {

    .portfolio-container p,
    .votre-classe-de-texte {
        /* INTERDICTION STRICTE DES COUPURES */
        hyphens: none !important;
        -webkit-hyphens: none !important;
        -moz-hyphens: none !important;
        -ms-hyphens: none !important;

        /* ANNULATION DE TOUTE JUSTIFICATION */
        text-align: center !important;
        text-justify: none !important;
        text-align-last: center !important;
        /* Force la dernière ligne au centre aussi */

        /* GESTION DES MOTS LONGS */
        word-break: keep-all !important;
        /* NE COUPE JAMAIS UN MOT */
        overflow-wrap: normal !important;
        /* Empêche de casser le mot si la ligne est courte */
        white-space: normal !important;

        /* AJUSTEMENT DE L'ESPACE */
        letter-spacing: 0px !important;
        /* Évite d'écarter les lettres pour remplir le vide */
        word-spacing: 0px !important;
        /* Évite d'écarter les mots */

        display: block !important;
        padding: 0 10px !important;
    }
}

/* Pour ordinateur */
.portfolio-container {
    padding-top: 80px !important;
    /* Ajuste ce chiffre (ex: 100px) selon tes goûts */
    margin-bottom: 40px;
}

/* Pour téléphone (Responsive) */
@media (max-width: 768px) {
    .portfolio-container {
        padding-top: 40px !important;
        /* Un peu moins d'espace sur mobile pour éviter de trop scroller */
    }
}

#ton-header-ou-section-precedente {
    margin-bottom: 60px !important;
}




.header-content {
    display: flex;
    flex-direction: column;
    /* Empile les éléments verticalement */
    align-items: flex-start;
    /* Aligne tout le contenu à gauche */
    text-align: left;
    /* Aligne le texte à gauche */
}

.sous-titre-orange {
    color: #1e293b !important;
    /* Orange */
    display: block !important;
    width: 100%;
    margin-top: 15px;
    /* Espace sous le titre */

    /* ALIGNEMENT */
    text-align: left !important;
    padding-left: 0 !important;
    margin-left: 0 !important;

    font-size: 1.4rem;

}

.section-agence-unique {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background-color: #ffffff !important;
    padding: 100px 0;
    display: flex;
    justify-content: center;
    overflow-x: hidden;
}

.container-agence-flex {
    display: flex;
    max-width: 1150px;
    width: 90%;
    gap: 30px;
    align-items: center;
    background-color: #ffffff !important;
}

.bloc-video-rect {
    flex: 1.8;
    background: #111;
    border-radius: 12px;
    aspect-ratio: 16 / 9;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    overflow: hidden;
    margin-left: -20px;
}

#vidPlayer {
    width: 100%;
    height: 100%;
    display: none;
    object-fit: cover;
}

.bouton-play-grand {
    border: none;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fleche-orange-grande {
    width: 0;
    height: 0;
    border-top: 40px solid transparent;
    border-bottom: 40px solid transparent;
    border-left: 65px solid #FF5F1F;
    margin-left: 10px;
}

.bloc-equipe-carte {
    flex: 1;
    text-align: center;

    padding-right: 20px;
}

.titre-orange-agence {
    color: #FF5F1F;
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.sous-titre-agence {
    font-size: 0.9rem;
    color: #333;
    line-height: 1.4;
    margin-bottom: 25px;
}

.cercle-photo-orange {
    width: 180px;
    height: 180px;
    background: #FF5F1F;
    border-radius: 50%;
    margin: 0 auto 15px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

#imgEquipe {
    width: 100%;
    transition: opacity 0.4s ease;
}

.infos-membre-agence h3 {
    font-size: 1.1rem;
    margin: 5px 0;
}

.infos-membre-agence p {
    color: #888;
}

.points-navigation-agence {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.point-nav {
    width: 10px;
    height: 10px;
    background: #eee;
    border-radius: 50%;
    cursor: pointer;
}

.point-nav.active {
    background: #FF5F1F;
}

@media (max-width: 900px) {
    .container-agence-flex {
        flex-direction: column;
        width: 85%;
    }

    .bloc-video-rect {
        margin-left: 0;
        width: 100%;
        height: 250px;
    }

    .bloc-equipe-carte {
        border-right: none !important;
        border-bottom: none !important;
        padding: 0;
        width: 100%;
    }
}

.fleche-orange-grande {
    width: 0;
    height: 0;
    border-top: 40px solid transparent;
    border-bottom: 40px solid transparent;
    border-left: 65px solid #FF5F1F;
    margin-left: 10px;
}



#nomMembreAgence {
    color: #000000 !important;
    /* Force la couleur noire */
    font-size: 1.2rem;
    margin-top: 10px;
    margin-bottom: 2px;
}

#roleMembreAgence {
    color: #666666;
    /* Le poste reste en gris pour faire ressortir le nom */
    font-size: 0.95rem;
    margin-top: 0;
}


/* Cette règle fige l'animation au survol de la souris */
.logos-slider:hover .logos-track {
    animation-play-state: paused !important;
}


@import url('https://fonts.googleapis.com/css2?family=Syne:wght@700;800&display=swap');

.section-kribiens-fullscreen {
    /* Fond spécifique demandé */
    background-color: #FF5F1F !important;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;

    /* Section bien grande verticalement */
    padding: 180px 0;

    font-family: 'Syne', sans-serif;
    overflow: hidden;
}

.kribiens-inner-content {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.titre-syne-grand {
    color: #ffffff;
    font-size: 4.8rem;
    font-weight: 800;
    line-height: 1.1;
    text-align: center;
    letter-spacing: -2px;
    margin-bottom: 80px;
    text-transform: none;
}

/* Orange punchy caractéristique de l'agence */
.orange-text,
.highlight {
    color: #ffcda8;
}

.kribiens-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 70px;
    width: 100%;
}

.illustration-box {
    max-width: 520px;
}

.img-fluid {
    width: 100%;
    height: auto;
    display: block;
}

/* Bouton réduit et élégant */
.btn-syne-compact {
    background-color: #ffffff;
    color: #FF5F1F;
    text-decoration: none;
    padding: 16px 38px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-syne-compact:hover {
    transform: scale(1.05);
    background-color: #ffffff;
    color: #FF5F1F;
}

/* Adaptation pour les écrans plus petits */
@media (max-width: 1024px) {
    .titre-syne-grand {
        font-size: 3rem;
    }

    .section-kribiens-fullscreen {
        padding: 100px 0;
    }

    .kribiens-row {
        flex-direction: column;
        text-align: center;
    }
}



/* --- VERSION BUREAU --- */
.section-blanche-infinie {
    background: #ffffff !important;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 100px 0;
    display: flex;
    justify-content: flex-start;
}

.conteneur-final-ajuste {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 8%;
    /* Ton réglage parfait */
}

.phrase-pilote-pro {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    font-size: 1.15rem;
    line-height: 1.5;
    color: #444444;
    text-align: left;
    /* Aligné à gauche sur PC */
    margin: 0;
}

.accent-orange-syne {
    font-family: 'Syne', sans-serif;
    color: #FF5F1F;
    font-weight: 700;
    display: inline-block;
    transition: opacity 0.5s ease-in-out;
}

/* --- VERSION MOBILE (TELEPHONE) --- */
@media (max-width: 768px) {
    .section-blanche-infinie {
        padding: 60px 0;
        /* Un peu moins de hauteur sur mobile */
    }

    .conteneur-final-ajuste {
        padding-left: 5%;
        padding-right: 5%;
        /* On équilibre les deux côtés */
        width: 90%;
    }

    .phrase-pilote-pro {
        font-size: 1.05rem;
        /* Police légèrement plus petite pour mobile */
        text-align: justify;
        /* Texte justifié sur mobile comme demandé */
        hyphens: auto;
        /* Coupe les mots proprement si nécessaire */
    }

    .br-desktop {
        display: none;
        /* Enlève le saut de ligne forcé sur mobile */
    }
}


.bloc-video-rect {
    flex: 1.8;
    background: transparent !important;
    /* Supprime la couche noire */
    border-radius: 12px;
    aspect-ratio: 16 / 9;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    overflow: hidden;
    margin-left: -20px;
}

#vidPlayer {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: transparent !important;
    /* Supprime le noir du lecteur */
}

.bouton-play-grand {
    position: absolute;
    /* Force le bouton PAR-DESSUS la vidéo */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    border: none;
    background: transparent;
}

.fleche-orange-grande {
    /* Ton style actuel ici, il flottera au-dessus de l'image */
    width: 0;
    height: 0;
    border-top: 40px solid transparent;
    border-bottom: 40px solid transparent;
    border-left: 65px solid #FF5F1F;
}



/* Fond blanc de gauche à droite, haut et bas */
.section-faq-full {
    width: 100%;
    background-color: #ffffff !important;
    padding: 100px 0;
    /* Espace en haut et en bas */
    margin: 0;
}

.container-faq {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 8%;
    /* Ton alignement HOIS constant */
    background-color: #ffffff;
}

.titre-faq {
    font-size: 38px;
    font-weight: 900;
    margin-bottom: 50px;
    color: #000;
}

.titre-faq span {
    color: #FF5F1F;
}

.faq-liste {
    border-top: 1px solid #eee;
}

.faq-item {
    border-bottom: 1px solid #eee;
    background-color: #ffffff;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    cursor: pointer;
    font-weight: 700;
    font-size: 20px;
    color: #000;
    transition: 0.3s;
}

.faq-icon {
    font-style: normal;
    color: #FF5F1F;
    font-size: 28px;
    transition: 0.4s;
}

/* Réponse en NOIR */
.faq-reponse {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
}

.faq-reponse p {
    padding-bottom: 30px;
    color: #000000;
    /* Noir pur */
    line-height: 1.8;
    font-size: 17px;
}

/* État actif */
.faq-item.open .faq-reponse {
    max-height: 400px;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-item.open .faq-question {
    color: #FF5F1F;
}




/* FOND BLANC TOTAL AVEC ESPACE AGRANDI EN BAS */
.section-faq-hois {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background-color: #ffffff !important;
    /* On augmente le deuxième chiffre (bas) pour agrandir l'espace */
    padding: 100px 0 150px 0;
    box-sizing: border-box;
}

.container-faq-flex {
    max-width: 1250px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    /* Garde l'image et le haut du texte alignés */
    gap: 60px;
    padding: 0 5%;
}

/* IMAGE RECTANGULAIRE SANS CONTOURS RONDS */
.faq-col-image {
    flex: 1;
}

.image-faq-rect {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 0;
    /* Angles droits */
}

/* COLONNE FAQ */
.faq-col-texte {
    flex: 1.2;
}

.faq-liste {
    border-top: 1px solid #eee;
}

.faq-item {
    border-bottom: 1px solid #eee;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    cursor: pointer;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 19px;
    color: #000;
}

/* ANIMATION DU BOUTON + */
.faq-plus-icon {
    position: relative;
    width: 20px;
    height: 20px;
}

.barre-h,
.barre-v {
    position: absolute;
    background-color: #FF5F1F;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}

.barre-h {
    width: 100%;
    height: 2px;
    top: 50%;
    transform: translateY(-50%);
}

.barre-v {
    width: 2px;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
}

.faq-item.open .barre-v {
    transform: rotate(90deg) translateX(-50%);
    opacity: 0;
}

.faq-item.open .barre-h {
    transform: translateY(-50%) rotate(180deg);
}

.faq-item.open .faq-question {
    color: #FF5F1F;
}

/* RÉPONSE NOIRE */
.faq-reponse {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
}

.faq-reponse p {
    padding-bottom: 25px;
    color: #000000 !important;
    line-height: 1.7;
    font-size: 16px;
}

.faq-item.open .faq-reponse {
    max-height: 400px;
}

/* COLONNE IMAGE */
.faq-col-image {
    flex: 1.2;
    /* On donne un peu plus de poids à la colonne de gauche */
}

.image-faq-rect {
    width: 100%;
    /* On passe d'un ratio 16/9 à 4/3 pour qu'elle soit plus haute (plus grande vers le bas) */
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 0;
    /* Toujours angles droits */
    display: block;
}

/* COLONNE FAQ (Ajustée pour l'équilibre) */
.faq-col-texte {
    flex: 1.2;
}

.titre-questions-faq {
    font-family: 'Syne', sans-serif;
    /* Police Syne */
    font-weight: 800;
    font-size: 32px;
    color: #1e293b;
    margin-bottom: 30px;
    /* Espace avec la première question */
    text-align: left;
}




/* 1. Rapprocher l'image du texte */
.container-faq-flex {
    gap: 150px;
    /* Espace entre l'image et le bloc de droite réduit */
}

/* 2. Réduire la hauteur de chaque ligne de question */
.faq-question {
    padding: 13px 0;
    /* Réduit l'espace interne (haut/bas) de chaque question */
    font-size: 18px;
    /* Taille légèrement ajustée pour la compacité */
}

/* 3. Réduire l'espace sous le titre */
.titre-questions-faq {
    margin-bottom: 5px;
    /* Moins d'espace entre le titre et la première ligne */
    font-size: 25px;
}

/* 4. Réduire l'espace de la réponse ouverte */
.faq-reponse p {
    padding-bottom: 15px;
    /* Moins de vide quand la réponse est affichée */
}


@media (max-width: 768px) {

    /* 1. ON GARDE LE FOND BLANC SUR TOUTE LA LARGEUR */
    .section-faq-hois {
        width: 100vw !important;
        position: relative;
        left: 50% !important;
        margin-left: -50vw !important;
        background-color: #ffffff !important;
        padding: 60px 0 !important;
    }

    /* 2. ON RESSERRE LE CONTENU (TEXTE + IMAGE) */
    .container-faq-flex {
        display: flex;
        flex-direction: column;
        /* RÉDUCTION ICI : On passe à 82% pour décoller des bords */
        width: 82% !important;
        max-width: 82% !important;
        margin: 0 auto !important;
        /* CENTRE LE BLOC */
        padding: 0 !important;
        gap: 35px;
    }

    /* 3. L'IMAGE SUIT LE TEXTE */
    .faq-col-image,
    .faq-col-texte {
        width: 100% !important;
    }

    .image-faq-rect {
        width: 100% !important;
        aspect-ratio: 16 / 9;
        display: block;
        border-radius: 0;
    }

    /* 4. TEXTE PLUS COMPACT */
    .titre-questions-faq {
        font-family: 'Syne', sans-serif;
        font-size: 22px;
        margin-bottom: 20px;
    }

    .faq-question {
        font-size: 15px;
        /* Un peu plus petit pour tenir sur la ligne */
        padding: 22px 0;
        /* On garde de l'espace entre les questions */
        border-top: 1px solid #eee;
    }
}

/* AJUSTEMENT POUR REMONTER LA SECTION */
.section-faq-hois {
    /* On réduit l'espace interne en haut (passé de 100px à 40px) */
    padding-top: 20px !important;

    /* On supprime toute marge extérieure en haut */
    margin-top: 0 !important;
}

/* Sur mobile aussi, on s'assure que c'est bien collé vers le haut */
@media (max-width: 768px) {
    .section-faq-hois {
        padding-top: 30px !important;
        margin-top: 0 !important;
    }
}




/* --- SUR ORDINATEUR (Desktop) --- */
.faq-col-image {
    flex: 1;
    /* On s'assure que la colonne elle-même reste fixe */
    position: relative;
}

.image-faq-rect {
    /* 1. ON AGRANDIT L'IMAGE (plus large que sa colonne) */
    width: 130% !important;
    /* 30% plus large pour déborder à droite */
    max-width: 130% !important;

    /* 2. ON FORCE L'ALIGNEMENT À GAUCHE */
    margin-left: 0 !important;

    /* 3. ON "TIRE" L'IMAGE VERS LA DROITE */
    /* La marge négative annule le décalage provoqué par width: 130% */
    margin-right: -30% !important;

    /* 4. SÉCURITÉ POUR ÉVITER QU'ELLE NE PASSE DESSOUS */
    position: relative;
    z-index: 5;

    /* 5. GARDE LE FORMAT ET LE RECTANGLE */
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 0 !important;
}

/* On s'assure que la colonne texte ne bouge pas */
.faq-col-texte {
    flex: 1.2;
    position: relative;
    z-index: 1;
}

/* --- SUR MOBILE (Responsive) --- */
@media (max-width: 768px) {
    .image-faq-rect {
        /* Sur mobile, on annule l'agrandissement pour que l'image reste centrée */
        width: 100% !important;
        margin-right: 0 !important;
        max-width: 100% !important;
    }
}



/* SUR ORDINATEUR (Desktop) */
.faq-col-texte {
    /* Décale le bloc de texte de 30px vers la droite */
    /* Augmente le chiffre (ex: 50px) pour décaler plus fort */
    transform: translateX(35px);

    /* Sécurité pour s'assurer que le bloc reste bien au-dessus */
    position: relative;
    z-index: 1;
}

/* SUR MOBILE (Responsive) */
@media (max-width: 768px) {
    .faq-col-texte {
        /* On annule le décalage sur mobile pour garder le centrage propre */
        transform: translateX(0);
    }
}

/* --- SUR ORDINATEUR (Desktop) --- */
.faq-col-image {
    /* 1. ON DÉCALE L'IMAGE VERS LA GAUCHE */
    transform: translateX(-30px);

    /* 2. SÉCURITÉ : On s'assure que le bloc reste bien au-dessus */
    position: relative;
    z-index: 1;

    /* On garde tes réglages de base */
    flex: 1;
    border-radius: 0 !important;
}

.image-faq-rect {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    display: block;
}

/* --- SUR MOBILE (Responsive) --- */
@media (max-width: 768px) {
    .faq-col-image {
        /* On annule le décalage sur mobile pour que l'image reste centrée */
        transform: translateX(0);
        width: 100% !important;
    }
}



/* Retire la police Syne et le gras uniquement sur les questions */
.faq-question {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 400 !important;
    /* Retire le gras (poids normal) */
}

/* Le titre principal reste inchangé (Syne + Gras) */
.titre-questions-faq {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
}




/* --- SECTION ET CONTAINER --- */
.section-newsletter-hois {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 80px 0;
    background-color: #fff;
}

.container-news-flex {
    display: flex;
    width: 95% !important;
    max-width: 1300px;
    background-color: #1e1e1e;
    /* Retour au noir anthracite */
    min-height: 550px;
    margin: 0 auto;
    overflow: hidden;
    /* Pour que l'image ne dépasse pas des coins */
}

/* --- COLONNE TEXTE --- */
.news-col-texte {
    flex: 1.2;
    padding: 60px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-titre {
    font-family: 'Syne', sans-serif;
    font-size: clamp(24px, 4vw, 36px);
    /* Taille fluide selon l'écran */
    color: #ffffff;
    font-weight: 800;
    line-height: 1.1;
}

.txt-orange {
    color: #FF5F1F !important;
    /* Orange HOIS Agency */
}

.news-description {
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    opacity: 0.8;
    margin: 30px 0 50px;
    font-size: 16px;
    max-width: 450px;
    line-height: 1.6;
}

/* --- FORMULAIRE NEWSLETTER --- */
.news-label {
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.news-info-txt {
    color: #ffffff;
    font-size: 13px;
    opacity: 0.6;
    margin-bottom: 5px;
}

.input-news-wrapper {
    display: flex;
    align-items: center;
    border-bottom: 2px solid #ffffff;
    width: 100%;
    max-width: 400px;
    padding: 12px 0;
}

.input-news {
    flex: 1;
    background: transparent;
    border: none;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    outline: none;
}

.btn-icon-send {
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.btn-icon-send:hover {
    transform: scale(1.15) translateX(5px);
}

/* --- IMAGE --- */
.news-col-image {
    flex: 1;
    position: relative;
}

.image-news {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .news-col-texte {
        padding: 50px;
    }
}

@media (max-width: 768px) {
    .container-news-flex {
        flex-direction: column;
        /* Empilement sur mobile */
        width: 100% !important;
        min-height: auto;
    }

    .news-col-image {
        height: 300px;
        /* Hauteur fixe pour l'image sur mobile */
        order: 1;
        /* Image en haut */
    }

    .news-col-texte {
        padding: 40px 20px;
        order: 2;
        /* Texte en bas */
        text-align: center;
        align-items: center;
    }

    .input-news-wrapper {
        margin: 0 auto;
    }
}


/* --- CONTAINER AVEC HAUTEUR RÉDUITE --- */
.container-news-flex {
    display: flex;
    width: 95% !important;
    max-width: 1300px;
    background-color: #1e1e1e;
    margin: 0 auto;
    /* On réduit ici (anciennement 550px) */
    min-height: 400px;
    overflow: hidden;
}

/* --- AJUSTEMENT DE L'ESPACEMENT DU TEXTE --- */
.news-col-texte {
    flex: 1.2;
    /* On réduit le padding vertical pour compenser la hauteur */
    padding: 40px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* --- OPTIMISATION DES MARGES POUR LE TEXTE --- */
.news-description {
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    opacity: 0.8;
    /* On réduit un peu les marges pour que ça ne pousse pas trop */
    margin: 15px 0 30px;
    font-size: 15px;
    max-width: 450px;
    line-height: 1.5;
}

/* --- RESPONSIVE MOBILE --- */
@media (max-width: 768px) {
    .container-news-flex {
        min-height: auto;
        /* Laisse le contenu décider de la hauteur sur mobile */
    }

    .news-col-image {
        height: 200px;
        /* On réduit aussi la hauteur de l'image sur mobile */
    }
}


/* 1. On met TOUT l'arrière-plan en blanc sans toucher aux dimensions */
.section-newsletter-hois {
    background-color: #ffffff !important;
    /* Fond blanc total */
    width: 100%;
    padding: 100px 0;
    /* Espace blanc en haut et en bas */
    margin: 0;
    display: flex;
    justify-content: center;
}

/* 2. Le cadre noir garde sa taille FIXE et PRO */
.container-news-flex {
    display: flex;
    background-color: #1e1e1e !important;
    /* Cadre noir */
    width: 1100px;
    /* TAILLE FIXE : il ne s'agrandira plus */
    max-width: 95%;
    /* Sécurité pour le mobile */
    height: 400px;
    /* Hauteur réduite demandée */
    margin: 0 auto;
    overflow: hidden;
}

/* 3. Ajustements internes simples */
.news-col-texte {
    flex: 1;
    padding: 40px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-col-image {
    width: 45%;
    /* L'image prend une place fixe */
}

.image-news {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Texte et Input */
.news-titre {
    font-family: 'Syne', sans-serif;
    color: #fff;
    font-size: 28px;
}

.txt-orange {
    color: #FF5F1F;
}

.input-news-wrapper {
    display: flex;
    border-bottom: 2px solid #fff;
    padding: 10px 0;
    margin-top: 30px;
    width: 320px;
}

.input-news {
    background: transparent;
    border: none;
    color: #fff;
    outline: none;
    flex: 1;
}

.btn-icon-send {
    background: none;
    border: none;
    cursor: pointer;
}

/* Responsive : On casse juste le flex pour mobile */
@media (max-width: 768px) {
    .container-news-flex {
        width: 95%;
        height: auto;
        flex-direction: column;
    }

    .news-col-image {
        width: 100%;
        height: 200px;
    }
}


/* --- FORCE LE BLANC À L'INFINI SANS AGRANDIR --- */
.section-newsletter-hois {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 80px 0;
    background-color: #ffffff !important;
    /* Fond blanc */

    /* CETTE LIGNE TUE LE GRIS SUR LES CÔTÉS */
    box-shadow: 0 0 0 100vmax #ffffff;
    clip-path: inset(0 -100vmax);
    /* Empêche le blanc de baver en haut/bas */
}

/* --- TON CADRE NOIR (TAILLE FIXE RESPECTÉE) --- */
.container-news-flex {
    display: flex;
    width: 1100px;
    /* Sa largeur pro */
    max-width: 95%;
    /* Sécurité mobile */
    background-color: #1e1e1e !important;
    min-height: 400px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

/* --- MISE EN FORME INTERNE --- */
.news-col-texte {
    flex: 1.2;
    padding: 40px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-titre {
    font-family: 'Syne', sans-serif;
    color: #ffffff;
    font-size: 30px;
    line-height: 1.2;
}

.txt-orange {
    color: #FF5F1F !important;
}

.input-news-wrapper {
    display: flex;
    border-bottom: 2px solid #ffffff;
    padding: 10px 0;
    margin-top: 30px;
    width: 350px;
}

.input-news {
    background: transparent;
    border: none;
    color: #ffffff;
    outline: none;
    flex: 1;
}

.btn-icon-send {
    background: none;
    border: none;
    cursor: pointer;
}

/* IMAGE */
.news-col-image {
    flex: 1;
}

.image-news {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* MOBILE */
@media (max-width: 768px) {
    .container-news-flex {
        height: auto;
        flex-direction: column;
    }

    .news-col-image {
        height: 250px;
    }
}


@media (max-width: 768px) {

    .section-newsletter-hois {
        padding: 50px 0;
        background-color: #ffffff !important;
    }

    /* ON AGRANDIT LA CARTE ICI */
    .container-news-flex {
        flex-direction: column;
        /* On passe à 98% pour qu'elle soit presque bord-à-bord, bien alignée */
        width: 98% !important;
        max-width: 100%;
        margin: 0 auto;
        height: auto !important;
        border-radius: 4px;
        /* Un très léger arrondi pour la finition */
        background-color: #1e1e1e !important;
    }

    /* AJUSTEMENT DE L'IMAGE DANS LA CARTE */
    .news-col-image {
        height: 260px;
        width: 100%;
        order: 1;
    }

    /* AJUSTEMENT DU TEXTE DANS LA CARTE */
    .news-col-texte {
        padding: 50px 25px;
        order: 2;
        text-align: center;
        align-items: center;
    }

    .news-titre {
        font-size: 28px;
        line-height: 1.2;
        font-weight: 800;
        color: #ffffff;
    }

    .news-description {
        font-size: 16px;
        margin: 15px 0 30px;
        color: #ffffff;
        opacity: 0.8;
    }

    /* FORMULAIRE DANS LA CARTE */
    .input-news-wrapper {
        width: 100%;
        max-width: 340px;
        border-bottom: 2px solid #ffffff;
        padding: 10px 0;
    }

    .input-news {
        font-size: 16px;
        color: #ffffff;
    }
}




@media (max-width: 768px) {
    /* ... (garde le reste du code de la carte identique) ... */

    /* PARTIE EMAIL PLUS FINE ET MIEUX AJUSTÉE */
    .input-news-wrapper {
        display: flex;
        align-items: center;
        /* On réduit la largeur à 80% pour qu'il ne soit pas trop étalé */
        width: 80% !important;
        max-width: 280px;
        /* Largeur maximale plus petite pour l'élégance */
        border-bottom: 1px solid rgba(255, 255, 255, 0.7);
        /* Ligne plus fine */
        padding: 8px 0;
        margin-top: 5px;
        justify-content: center;
    }

    .input-news {
        font-size: 15px;
        /* Texte légèrement plus petit */
        color: #ffffff;
        background: transparent;
        border: none;
        outline: none;
        flex: 1;
        text-align: center;
        /* Centré pour l'équilibre visuel */
    }

    .icon-mail-left svg {
        width: 16px;
        /* Icône mail plus discrète */
        height: 16px;
    }

    .btn-icon-send svg {
        width: 18px;
        /* Flèche d'envoi plus fine */
        height: 18px;
    }
}

.container-news-flex {
    background-color: #2a2a2a !important;
}

.section-newsletter-hois {
    margin-top: -150px !important;
    /* Ajuste le chiffre selon tes besoins */
    position: relative;
    z-index: 10;
    /* Pour passer par-dessus la section précédente si besoin */
}


#backToTop {
    display: none;
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 999;
    border: none;
    outline: none;
    background-color: #EC5800;
    color: white;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

#backToTop:hover {
    background-color: #1e293b;
    transform: translateY(-5px);
}

/* Ajustement spécifique pour le mobile à gauche */
@media (max-width: 768px) {
    #backToTop {
        bottom: 20px;
        left: 20px;
        width: 45px;
        height: 45px;
    }
}



.btn-discussion {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    background-color: #1e293b;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
}

.btn-discussion:hover {
    background-color: #EC5800;
    transform: scale(1.1) rotate(5deg);
}

.btn-discussion::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #EC5800;
    animation: pulse-discussion 2s infinite;
    opacity: 0;
}

@keyframes pulse-discussion {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .btn-discussion {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
}


/* FOOTER STYLES */

* {
    margin: 0;
    padding: 0;
}

html,
body {
    background: #ffffff;
    margin: 0;
    padding: 0;
    width: 100%;
}

.footer {
    background: #f9f9f9;
    border-top: 1px solid #f0f0f0;
    width: 100%;
    margin: 0;
    padding: 0;
}

/* TOP SECTION */
.footer-top {
    max-width: 100%;
    margin: 0;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 60px;
    margin-bottom: 60px;
    padding: 40px 40px 40px 40px;
    border-bottom: 1px solid #f0f0f0;
    box-sizing: border-box;
}

/* Logo */
.footer-logo {
    height: 70px;
    flex-shrink: 0;
}

.footer-logo img {
    height: 100%;
    width: auto;
}

/* Contact Info */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 13px;
    line-height: 1.5;
    color: #333;
    flex-shrink: 0;
    border-right: 1px solid #ddd;
    padding-right: 60px;
}

.footer-contact strong {
    font-weight: 600;
}

.footer-contact a {
    color: #1e293b;
    text-decoration: none;
}

.footer-contact a:hover {
    text-decoration: underline;
}

/* Navigation Columns */
.footer-nav-col {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-shrink: 0;
    border-right: 1px solid #ddd;
    padding-right: 60px;
}

.footer-nav-col:last-of-type {
    border-right: none;
    padding-right: 0;
}

.footer-nav-col a {
    color: #1e293b;
    text-decoration: none;
    font-size: 14px;
}

.footer-nav-col a:hover {
    color: #ff6b35;
}

/* BOTTOM SECTION */
.footer-bottom {
    max-width: 100%;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    padding: 40px 40px 40px 40px;
    box-sizing: border-box;
}

.footer-bottom-left {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.copyright {
    font-size: 12px;
    color: #999;
}

.legal-links {
    display: flex;
    gap: 16px;
    font-size: 12px;
}

.legal-links a {
    color: #ff6b35;
    text-decoration: none;
}

.legal-links a:hover {
    text-decoration: underline;
}

.footer-bottom-right {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
    flex-shrink: 0;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    text-decoration: none;
    font-size: 12px;
}

.social-links a:hover {
    color: #ff6b35;
}

.tagline {
    color: #999;
    font-size: 12px;
    font-style: italic;
    text-align: right;
}

/* Responsive */
@media (max-width: 1024px) {
    .footer-top {
        flex-direction: column;
        gap: 30px;
    }

    .footer-contact,
    .footer-nav-col {
        border-right: none;
        padding-right: 0;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 30px;
    }

    .footer-bottom-right {
        align-items: flex-start;
        width: 100%;
    }

    .legal-links {
        flex-direction: column;
        gap: 8px;
    }

    .tagline {
        text-align: left;
    }
}


/* Description HOIS Agency */
.footer-description {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 13px;
    line-height: 1.5;
    flex-shrink: 0;
    border-right: 1px solid #ddd;
    padding-right: 60px;
    max-width: 250px;
}

.footer-description p {
    color: #414141;
    font-weight: 500;
    margin: 0;
    text-align: justify;
}

/* Description HOIS Agency */
.footer-description {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 13px;
    line-height: 1.6;
    flex-shrink: 0;
    max-width: 200px;
    margin-left: auto;
    margin-right: 40px;
    padding-right: 40px;
}

.footer-description p {
    color: #696969;
    font-weight: 500;
    margin: 0;
    text-align: left;
}

/* Logo */
.footer-logo {
    height: 100px;
    flex-shrink: 0;
}

.footer-logo img {
    height: 100%;
    width: auto;
}


@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        gap: 30px;
        text-align: center;
        align-items: center;
    }

    .footer-logo {
        margin: 0 auto;
    }

    .footer-contact {
        border-right: none;
        padding-right: 0;
        text-align: center;
    }

    .footer-nav-col {
        border-right: none;
        padding-right: 0;
        text-align: center;
    }

    .footer-description {
        border-left: none;
        padding-left: 0;
        text-align: center;
        margin-left: 0;
        margin-right: 0;
        max-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 30px;
        text-align: center;
        align-items: center;
    }

    .footer-bottom-left {
        align-items: center;
        text-align: center;
        width: 100%;
    }

    .legal-links {
        flex-direction: column;
        gap: 8px;
        justify-content: center;
    }

    .footer-bottom-right {
        align-items: center;
        width: 100%;
    }

    .social-links {
        justify-content: center;
    }

    .tagline {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .footer-description {
        border-left: none;
        padding-left: 0;
        padding-right: 0;
        text-align: center;
        margin-left: 0;
        margin-right: 0;
        max-width: 100%;
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }

    .footer-description p {
        text-align: center;
    }
}


/* Description HOIS Agency */
.footer-description {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 13px;
    line-height: 1.6;
    flex-shrink: 0;
    max-width: 200px;
    margin-left: auto;
    margin-right: 0;
}

.footer-description p {
    color: #1e293b;
    font-weight: 500;
    margin: 0;
    text-align: left;
}


.legal-links {
    display: flex;
    gap: 16px;
    font-size: 12px;
}

.legal-links a {
    color: #ff6b35;
    text-decoration: none;
}

.legal-links a:first-child::after {
    content: "|";
    margin-left: 16px;
    color: #ddd;
}

.legal-links a:hover {
    text-decoration: underline;
}



.close-btn {
    position: absolute;
    top: 100px;
    /* descend sous la topbar+header */
    right: 20px;
}


.close-btn {
    position: absolute;
    top: 60px; /* diminuez ce chiffre pour remonter davantage */
    right: 20px;
}




/* Pour les navigateurs modernes */
::selection {
    background-color: #ffcda8; /* Orange foncé (DarkOrange) */
    color: #ffffff;            /* Couleur du texte (blanc pour la lisibilité) */
}

/* Pour Firefox (version plus ancienne) */
::-moz-selection {
    background-color: #ffcda8;
    color: #ffffff;
}




.social-links img {
    width: 24px; /* Ajuste la taille selon tes besoins */
    height: 24px;
    display: block;
}



