/**
 * SiteWeb67 - Pages Content Styles
 * Fond noir, accents orange, texte blanc — classes réelles du HTML
 */

/* ============================================
   PAGE HEADER — identique ogency.css
   ============================================ */
.page-header {
    position: relative;
    overflow: hidden;
}

.page-header__bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.page-header__overlay {
    z-index: 2;
}

.page-header .container {
    position: relative;
    z-index: 10;
}

.page-header__title {
    color: var(--ogency-white);
    font-size: 60px;
    font-weight: 700;
    letter-spacing: -3.6px;
    margin: 0;
    line-height: 1.1;
}

/* Breadcrumb — identique ogency.css */
.page-header__breadcrumb {
    display: flex;
    padding: 0;
    list-style: none;
    margin: 0 0 5px;
    align-items: center;
}
.page-header__breadcrumb li {
    font-size: 16px;
    line-height: 1;
    color: var(--ogency-white);
    display: flex;
    align-items: center;
    position: relative;
}
.page-header__breadcrumb li:not(:last-of-type)::after {
    position: absolute;
    right: -11px;
    bottom: 0;
    content: ".";
    font-size: 16px;
    line-height: 1;
    color: var(--ogency-white);
}
.page-header__breadcrumb li:not(:last-of-type) {
    margin-right: 16px;
}
.page-header__breadcrumb li a {
    color: inherit;
    text-decoration: none;
}
.page-header__breadcrumb li a:hover {
    color: var(--ogency-base);
}
.page-header__breadcrumb li span {
    display: block;
    line-height: 1;
}

@media (max-width: 767px) {
    .page-header .container {
        padding-top: 150px;
        padding-bottom: 100px;
    }
    .page-header__title {
        font-size: 40px;
        letter-spacing: -2px;
    }
}

/* ============================================
   FONDS SOMBRES DES SECTIONS
   ============================================ */
.blog-intro,
.portfolio-intro,
.portfolio-filter,
.blog-section,
.portfolio-section,
.article-single,
.legal-section {
    background-color: #050505;
}

.newsletter {
    background-color: #0a0a0a;
}

/* ============================================
   SECTION TITLE
   ============================================ */
.section-title {
    margin-bottom: 50px;
}
.section-title__tagline {
    color: var(--ogency-base);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.section-title__title {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
}
.section-title__text {
    color: #d0d0d0;
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}
@media (max-width: 991px) {
    .section-title__title { font-size: 2rem; }
}
@media (max-width: 767px) {
    .section-title__title { font-size: 1.8rem; }
}

/* ============================================
   BLOG CARDS — classes réelles : .blog-image, .blog-content, .blog-category, .blog-meta, .read-more
   ============================================ */
.blog-section {
    padding: 80px 0;
}

.blog-intro {
    padding: 60px 0 20px;
}

.blog-section .row {
    row-gap: 30px;
}

.blog-card {
    background: #121212;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.blog-card:hover {
    transform: translateY(-6px);
    border-color: var(--ogency-base);
    box-shadow: 0 15px 50px rgba(245, 144, 13, 0.15);
}

.blog-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}
.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}
.blog-card:hover .blog-image img {
    transform: scale(1.07);
}

.blog-category {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--ogency-base);
    color: #fff;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-content {
    padding: 25px 25px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.blog-content h3 {
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 12px;
}
.blog-content h3:hover {
    color: var(--ogency-base);
}
.blog-content p {
    color: #b0b0b0;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}

.blog-meta {
    color: #888 !important;
    font-size: 12px;
    margin-bottom: 10px;
}
.blog-meta span {
    color: #888 !important;
}
.blog-meta i {
    color: var(--ogency-base) !important;
}

.read-more {
    color: var(--ogency-base);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.3s ease;
    margin-top: auto;
    display: inline-block;
}
.read-more:hover {
    color: #ff9e3d;
}

/* ============================================
   NEWSLETTER
   ============================================ */
.newsletter {
    padding: 70px 0;
}
.newsletter-box {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 50px 40px;
    background: #121212;
    border: 1px solid #2a2a2a;
    border-radius: 16px;
}
.newsletter-box h3 {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}
.newsletter-box p {
    color: #b0b0b0;
    margin-bottom: 30px;
    line-height: 1.7;
}
.newsletter-form {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}
.newsletter-form input[type="email"] {
    flex: 1;
    min-width: 220px;
    padding: 14px 20px;
    background: #1a1a1a;
    border: 1px solid #3a3a3a;
    border-radius: 8px;
    color: #ffffff;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.3s ease;
}
.newsletter-form input[type="email"]:focus {
    border-color: var(--ogency-base);
}
.newsletter-form input[type="email"]::placeholder {
    color: #666;
}

/* ============================================
   PORTFOLIO / RÉALISATIONS — classes réelles :
   .portfolio-card, .portfolio-image, .portfolio-overlay, .portfolio-card__info,
   .portfolio-card__title, .portfolio-card__desc, .portfolio-link
   .portfolio-filters li, .filter-btn
   ============================================ */
.portfolio-filter {
    padding: 40px 0 20px;
}
.portfolio-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.filter-btn {
    padding: 12px 28px;
    background: #121212;
    border: 2px solid #2a2a2a;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    color: #d0d0d0;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.filter-btn.active,
.filter-btn:hover {
    background: var(--ogency-base);
    border-color: var(--ogency-base);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 144, 13, 0.25);
}

.portfolio-section {
    padding: 40px 0 80px;
}
.portfolio-intro {
    padding: 60px 0 20px;
}

.portfolio-card {
    background: #121212;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
    margin-bottom: 30px;
}
.portfolio-card:hover {
    border-color: var(--ogency-base);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(245, 144, 13, 0.15);
}

.portfolio-image {
    position: relative;
    height: 260px;
    overflow: hidden;
}
.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    display: block;
}
.portfolio-card:hover .portfolio-image img {
    transform: scale(1.08);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
    text-align: center;
}
.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}
.portfolio-overlay h4 {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.portfolio-overlay p {
    color: var(--ogency-base);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}
.portfolio-link {
    display: inline-block;
    background: var(--ogency-base);
    color: #fff;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: background 0.3s ease;
}
.portfolio-link:hover {
    background: #ff9e3d;
    color: #fff;
}

.portfolio-card__info {
    border-top: 1px solid #2a2a2a;
}
.portfolio-card__title {
    color: #ffffff !important;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
}
.portfolio-card__desc {
    color: #888 !important;
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

/* ============================================
   ARTICLE SINGLE — classes réelles
   ============================================ */
.article-single {
    padding: 80px 0;
    background: #050505;
}
.article-single__content {
    max-width: 860px;
    margin: 0 auto;
}
.article-single__header {
    margin-bottom: 40px;
    padding-bottom: 25px;
    border-bottom: 1px solid #2a2a2a;
}
.article-single__meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 10px;
}
.article-single__meta i {
    color: var(--ogency-base);
    margin-right: 6px;
}
.article-single__body {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #cccccc;
}
.article-single__body h2 {
    color: var(--ogency-base) !important;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 45px 0 20px;
}
.article-single__body h3 {
    color: #ffffff !important;
    font-size: 1.4rem;
    font-weight: 600;
    margin: 35px 0 18px;
}
.article-single__body p {
    color: #cccccc;
    margin-bottom: 22px;
}
.article-single__body p.lead {
    font-size: 1.2rem;
    color: #f0f0f0;
    line-height: 1.8;
    margin-bottom: 30px;
}
.article-single__body ul,
.article-single__body ol {
    margin: 20px 0;
    padding-left: 28px;
    color: #cccccc;
}
.article-single__body li {
    margin-bottom: 10px;
    line-height: 1.8;
}
.article-single__body a {
    color: var(--ogency-base);
    text-decoration: none;
}
.article-single__body a:hover {
    color: #ff9e3d;
    text-decoration: underline;
}
.article-single__image {
    margin: 35px 0;
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
}
.article-single__image,
img.article-single__image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* CTA box dans les articles */
.article-single__body .mt-5.p-4 {
    background: #121212;
    border-left: 4px solid var(--ogency-base);
    border-radius: 0 10px 10px 0;
}
.article-single__body .mt-5.p-4 h4 {
    color: var(--ogency-base) !important;
    font-size: 1.3rem;
    margin-bottom: 12px;
}
.article-single__body .mt-5.p-4 p {
    color: #cccccc !important;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--ogency-base) 0%, #ff9e3d 100%);
    text-align: center;
}
.cta-section__title {
    color: #fff;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}
.cta-section__text {
    color: rgba(255,255,255,0.92);
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.cta-section .ogency-btn {
    background: #fff;
    color: var(--ogency-base);
    border: 2px solid #fff;
    font-weight: 700;
}
.cta-section .ogency-btn:hover {
    background: transparent;
    color: #fff;
}

/* ============================================
   MENTIONS LÉGALES
   ============================================ */
.legal-section {
    padding: 80px 0;
}
.legal-content {
    max-width: 900px;
    margin: 0 auto;
    color: #cccccc;
}
.legal-content h1 {
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 30px;
}
.legal-content h2 {
    color: var(--ogency-base);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 45px 0 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid #2a2a2a;
}
.legal-content h3 {
    color: #ffffff;
    font-size: 1.2rem;
    margin: 30px 0 15px;
}
.legal-content p,
.legal-content li {
    color: #cccccc;
    line-height: 1.9;
    font-size: 1rem;
}
.legal-content ul {
    margin: 15px 0;
    padding-left: 25px;
}
.legal-content li { margin-bottom: 10px; }
.legal-content a {
    color: var(--ogency-base);
    text-decoration: none;
}
.legal-content a:hover {
    text-decoration: underline;
}

/* ============================================
   RESPONSIVE GÉNÉRAL
   ============================================ */
@media (max-width: 991px) {
    .blog-section,
    .portfolio-section,
    .article-single,
    .cta-section,
    .legal-section { padding: 60px 0; }
}
@media (max-width: 767px) {
    .blog-section,
    .portfolio-section,
    .article-single,
    .cta-section,
    .legal-section { padding: 50px 0; }
    .portfolio-image { height: 220px; }
    .blog-image { height: 190px; }
    .cta-section__title { font-size: 1.7rem; }
    .newsletter-box { padding: 35px 20px; }
    .newsletter-form { flex-direction: column; }
    .newsletter-form input[type="email"] { min-width: unset; width: 100%; }
}

/* ============================================
   RESET COULEUR TEXTE — Bootstrap force #212529 sur body
   On corrige ici pour tous les éléments des pages
   ============================================ */
.article-single,
.article-single *:not(a):not(.ogency-btn):not(.cta-section *) {
    color: inherit;
}

.article-single {
    color: #cccccc;
}

.article-single__body,
.article-single__body p,
.article-single__body li,
.article-single__body span {
    color: #cccccc !important;
}

.article-single__body h2 {
    color: var(--ogency-base) !important;
}

.article-single__body h3 {
    color: #ffffff !important;
}

.article-single__body p.lead {
    color: #f0f0f0 !important;
}

.article-single__meta,
.article-single__meta span {
    color: #888888 !important;
}

/* Images dans les articles */
img.article-single__image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 35px 0;
}

/* strong, b dans les articles */
.article-single__body strong,
.article-single__body b {
    color: #ffffff !important;
}

/* Fond global de la page quand ogency.css charge */
.page-wrapper {
    background-color: #050505;
}

/* ============================================
   BOUTON CTA HOVER — texte toujours visible
   ============================================ */

/* Box CTA dans les articles : hover texte orange sur fond blanc */
.article-single__body .ogency-btn:hover {
    color: var(--ogency-base) !important;
}

/* Section CTA orange : hover texte orange sur fond blanc — lisible */
.cta-section .ogency-btn::after {
    background: rgba(0, 0, 0, 0.15);
}
.cta-section .ogency-btn:hover {
    color: #ffffff !important;
}

/* ============================================
   BLOG CAROUSEL
   ============================================ */
.blog-carousel-section {
    background-color: #050505;
    padding: 60px 0 80px;
}

.blog-carousel .blog-card {
    margin-bottom: 10px;
}

/* Owl nav arrows */
.blog-carousel-section .owl-prev,
.blog-carousel-section .owl-next {
    width: 45px;
    height: 45px;
    background: #121212 !important;
    border: 2px solid #2a2a2a !important;
    border-radius: 50% !important;
    color: #ffffff !important;
    font-size: 18px !important;
    transition: all 0.3s ease;
    display: flex !important;
    align-items: center;
    justify-content: center;
}
.blog-carousel-section .owl-prev:hover,
.blog-carousel-section .owl-next:hover {
    background: var(--ogency-base) !important;
    border-color: var(--ogency-base) !important;
}
.blog-carousel-section .owl-dots {
    margin-top: 25px;
    text-align: center;
}
.blog-carousel-section .owl-dot span {
    background: #2a2a2a !important;
    width: 10px !important;
    height: 10px !important;
    border-radius: 50% !important;
    margin: 0 4px !important;
}
.blog-carousel-section .owl-dot.active span {
    background: var(--ogency-base) !important;
}

/* ============================================
   ESPACEMENT CARDS BLOG
   ============================================ */
.blog-section .row {
    row-gap: 35px;
}
.blog-section .col-lg-4,
.blog-section .col-md-6 {
    margin-bottom: 0;
}
.blog-section .blog-card {
    margin-bottom: 0;
    height: 100%;
}

/* ============================================
   PAGES SERVICE (digital-marketing, graphic-designing, website-development)
   ============================================ */

/* Fond sombre pour le contenu service */
.service-details {
    background-color: #050505;
    padding: 80px 0;
}

/* Contact box dans les pages service — fond sombre au lieu de blanc */
.service-details__contact {
    background: #121212 !important;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    padding: 20px;
}
.service-details__contact,
.service-details__contact * {
    color: #cccccc;
}
.service-details__contact a {
    color: var(--ogency-base) !important;
}
.service-details__contact i {
    color: var(--ogency-base) !important;
}

/* Textes dans les pages service */
.service-details__content,
.service-details__content p,
.service-details__content li,
.service-details__content span {
    color: #cccccc;
}
.service-details__content h1,
.service-details__content h2,
.service-details__content h3,
.service-details__content h4 {
    color: #ffffff;
}
.service-details__stat-box {
    background: #121212;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
}
.service-details__stat-box strong,
.service-details__stat-box span {
    color: var(--ogency-base) !important;
}
.service-details__image img {
    border-radius: 12px;
    width: 100%;
    height: auto;
}

/* ============================================
   REALISATIONS — espacement CTA Contactez-nous
   ============================================ */
.portfolio-cta {
    background: linear-gradient(135deg, var(--ogency-base) 0%, #ff9e3d 100%);
    padding: 80px 0;
    text-align: center;
    margin-top: 0;
}
.portfolio-cta h2 {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}
.portfolio-cta p {
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.1rem;
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.portfolio-cta .ogency-btn {
    background: #ffffff;
    color: var(--ogency-base);
    border: 2px solid #ffffff;
    font-weight: 700;
}
.portfolio-cta .ogency-btn:hover {
    background: transparent;
    color: #ffffff !important;
}

/* ============================================
   REALISATIONS — Section Statistiques
   ============================================ */
.portfolio-stats {
    padding: 80px 0;
    background: #050505;
    border-top: 1px solid #1a1a1a;
    border-bottom: 1px solid #1a1a1a;
}
.stat-item {
    padding: 30px 20px;
    background: #121212;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    margin-bottom: 24px;
    transition: all 0.3s ease;
    font-family: var(--ogency-font), 'Plus Jakarta Sans', sans-serif;
}
.stat-item:hover {
    border-color: var(--ogency-base);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(245, 144, 13, 0.15);
}
.stat-number {
    font-family: var(--ogency-font), 'Plus Jakarta Sans', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--ogency-base);
    margin-bottom: 8px;
    letter-spacing: -1px;
    line-height: 1;
}
.stat-label {
    font-family: var(--ogency-font), 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #cccccc;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

/* ============================================
   REALISATIONS — Section Title visibilité
   ============================================ */
.portfolio-intro .section-title__tagline {
    color: var(--ogency-base) !important;
}
.portfolio-intro .section-title__title {
    color: #ffffff !important;
    font-family: var(--ogency-font), 'Plus Jakarta Sans', sans-serif;
}
.portfolio-intro .section-title__text {
    color: #cccccc !important;
    font-family: var(--ogency-font), 'Plus Jakarta Sans', sans-serif;
    font-size: 1.05rem;
    line-height: 1.8;
}

/* ============================================
   REALISATIONS — Cartes portfolio textes
   ============================================ */
.portfolio-card__info {
    border-top: 1px solid #2a2a2a;
    background: #121212;
    padding: 16px !important;
}
.portfolio-card__title {
    color: #ffffff !important;
    font-family: var(--ogency-font), 'Plus Jakarta Sans', sans-serif !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    margin-bottom: 6px !important;
}
.portfolio-card__desc {
    color: #b0b0b0 !important;
    font-family: var(--ogency-font), 'Plus Jakarta Sans', sans-serif !important;
    font-size: 0.88rem !important;
    line-height: 1.6 !important;
    margin: 0 !important;
}

/* Service sub-boxes */
.service-details__box {
    background: #121212;
    border: 1px solid #2a2a2a;
    border-radius: 10px;
    transition: all 0.3s ease;
}
.service-details__box:hover {
    border-color: var(--ogency-base);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(245,144,13,0.15);
}
.service-details__box h4 {
    color: #ffffff;
    margin: 12px 0 8px;
    font-size: 1.1rem;
}
.service-details__box p {
    color: #aaaaaa;
    font-size: 0.9rem;
    line-height: 1.6;
}
.service-details__box img {
    border-radius: 8px;
    width: 100%;
    height: 180px;
    object-fit: cover;
}

/* Stat boxes */
.service-details__stat-box {
    background: #121212;
    border: 1px solid #2a2a2a;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
}
.service-details__stat-num {
    color: var(--ogency-base);
    font-size: 2rem;
    font-weight: 800;
}
.service-details__stat-label {
    color: #aaaaaa;
    font-size: 0.9rem;
}

/* ============================================
   SERVICE STEPS — "Notre approche" boxes
   ============================================ */
.service-details__step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: #121212;
    border: 1px solid #2a2a2a;
    border-radius: 10px;
    padding: 25px;
    height: 100%;
    transition: all 0.3s ease;
}
.service-details__step:hover {
    border-color: var(--ogency-base);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(245, 144, 13, 0.15);
}
.service-details__step-num {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--ogency-base);
    line-height: 1;
    flex-shrink: 0;
    min-width: 50px;
}
.service-details__step h5 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.service-details__step p {
    color: #aaaaaa;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* Sidebar CTA devis */
.service-details__cta {
    text-align: center;
}
.service-details__cta .ogency-btn {
    display: block;
    width: 100%;
    text-align: center;
}

/* ============================================
   SIDEBAR "Nos services" — centrage complet
   ============================================ */
.service-details__services-box {
    background: #121212;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    padding: 30px 25px;
    text-align: center;
}
.service-details__services-title {
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #2a2a2a;
}
.service-details__services-box .service-details__list {
    text-align: left;
    margin-bottom: 25px;
}
.service-details__services-box .service-details__list li {
    padding: 10px 0;
    border-bottom: 1px solid #1e1e1e;
}
.service-details__services-box .service-details__list li a {
    color: #aaaaaa;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}
.service-details__services-box .service-details__list li a:hover,
.service-details__services-box .service-details__list li.active a {
    color: var(--ogency-base);
}
.service-details__services-box .service-details__list li i {
    color: var(--ogency-base);
    margin-right: 8px;
    font-size: 0.8rem;
}
.service-details__cta {
    text-align: center;
    padding-top: 5px;
}
.service-details__cta-text {
    color: #aaaaaa;
    font-size: 0.9rem;
    margin-bottom: 15px;
}
.service-details__cta-btn {
    display: block;
    width: 100%;
    text-align: center;
    margin: 0 auto;
}
