/*
Theme Name: unhide
Template: twentytwentyone
Author: Unhide
Version: 1.0
*/


:root {
    --color-1: #0C082A;
    --color-2: #1A0089;
    --orange: #FF5E32;
    --vert: #B8CE52;
    --color-5: #FFF4D5;
    --color-6: #B2B2B2;
}
@import url('https://fonts.cdnfonts.com/css/forma-djr-banner');

* {
    box-sizing: border-box;
}

  
  
  
/* Styles pour le loader */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-1) 0%, var(--color-2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 1;
    transition: opacity 0.5s ease;
}

#loader-logo {
    width: 200px;
    height: auto;
}

#loader-logo .loader-path {
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Tailles de police générales */
h1 {
    font-size: 70px !important;
	font-family: 'Forma DJR Banner', sans-serif !important;
}

h2 {
    font-size: 40px;
}

h3 {
    font-size: 20px;
}

p {
    font-size: 16px;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Forma DJR Banner', sans-serif !important;
    background-color: var(--color-1)!important;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

/* Augmenter l'écart des lettres pour tous les éléments sauf h1 */
*:not(h1, button, h2) {
    letter-spacing: 0.1em;
}

/* Styles pour le header */
header {
    background-color: rgba(0, 0, 0, 0.034);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1rem 0.5rem;
    position: fixed;
    top: 0;
    z-index: 9999;
    width: 100%;
    box-sizing: border-box;
}

header > div:first-of-type {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

header > div:first-of-type > div:first-child {
    display: flex;
    align-items: center;
}

header > div:first-of-type > div:first-child img {
    height: 40px;
    width: auto;
    transition: transform 0.3s ease;
}

header > div:first-of-type > div:first-child img:hover {
    transform: scale(1.05);
}

header > div:first-of-type > div:nth-child(2) {
    flex: 1;
    display: flex;
    justify-content: center;
}

header nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

header nav a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

header nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--orange);
    transition: width 0.3s ease;
}

header nav a:hover {
    color: var(--orange);
}

header nav a:hover::after {
    width: 100%;
}

header nav a.active {
    color: white;
    background-color: var(--orange);
    padding: 0.5rem 1rem;
    border-radius: 23px;
}

header nav a.active::after {
    display: none;
}

header > div:first-of-type > div:last-child {
    display: flex;
    align-items: center;
}

header .btn-orange {
    white-space: nowrap;
}

/* Bouton hamburger - caché par défaut sur desktop */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10001;
}

.hamburger-line {
    display: block;
    width: 100%;
    height: 3px;
    background-color: white;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Animation du hamburger vers X */
.hamburger-menu.active .hamburger-line:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
}

/* Bloquer le scroll quand le menu est ouvert */
body.menu-open {
    overflow: hidden;
}

/* Responsive pour le header */
@media (max-width: 768px) {
    header {
        padding: 1rem 0.5rem;
    }

    header > div:first-of-type {
        flex-wrap: nowrap;
        position: relative;
    }

    header > div:first-of-type > div:first-child img {
        height: 30px;
    }

    /* Afficher le hamburger sur mobile */
    .hamburger-menu {
        display: flex;
        order: 3;
    }

    /* Container de la navigation - menu mobile */
    header > div:first-of-type > div:nth-child(3) {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.85);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        z-index: 10000;
    }

    /* Menu ouvert */
    header > div:first-of-type > div:nth-child(3).nav-open {
        transform: translateX(0);
    }

    header nav {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }

    header nav a {
        font-size: 1.5rem;
        padding: 0.5rem 1rem;
    }

    /* Cacher le bouton devis sur mobile */
    header > div:first-of-type > div:last-child {
        display: none;
    }
}

@media (max-width: 480px) {
    header nav {
        gap: 1.5rem;
    }

    header nav a {
        font-size: 1.3rem;
    }
}

/* Styles pour les boutons */
button {
    border: none!important;
    padding: 12px 24px!important;
    font-size: 16px!important;
    font-weight: 500!important;
    border-radius: 23px !important;
    cursor: pointer!important;
    transition: all 0.3s ease!important;
    font-family: 'Roboto', sans-serif!important;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px!important;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2)!important;
}

button::before {
    content: '';
    position: absolute;
    inset: -0.5px;
    border-radius: 23px;
    padding: 0.5px;
    background: linear-gradient(to right, 
        rgba(255, 255, 255, 0) 0%, 
        rgba(255, 255, 255, 1) 50%, 
        rgba(255, 255, 255, 0) 100%);
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: -1;
}

button:active {
    transform: translateY(0);
}

button img {
    width: 16px;
    height: auto;
    display: block;
}

/* Bouton avec fond orange */
.btn-orange {
    background-color: var(--orange)!important;
    color: white!important;
}

.btn-orange:hover {
    background-color: #e54d1f;
}

/* Bouton avec fond vert */
.btn-vert {
    background-color: var(--vert)!important; 
    color: white!important; 
}

.btn-vert:hover {
    background-color: #a0b845;
}

/* Retirer le soulignage des liens contenant des boutons */
a button,
a > button {
    text-decoration: none;
}

/* Retirer le soulignage des liens qui contiennent des boutons - surcharge le style par défaut du navigateur */
a:has(button),
a:has(> button),
a:-webkit-any-link:has(button),
a:-webkit-any-link:has(> button) {
    text-decoration: none;
    -webkit-text-decoration: none;
}

/*Visite virtuelle*/
.visite-container {
    width: 100%;
    height: 100vh;
    margin: 0;
    padding: 0;
}

.visite-iframe {
    width: 100%;
    height: 100%;
    border: none;
}


/* Section hero avec image de fond */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-image: url('img/fond.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 1;
    padding: 20px;
    max-width: 800px;
}

.hero-content h1 {
    margin-bottom: 20px;
}

.hero-content p {
    margin-bottom: 30px;
}

.hero-content div {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-content div a {
    text-decoration: none;
    border-bottom: none;
}

/* Responsive pour hero-section (index) */
@media (max-width: 768px) {
    .hero-section {
        min-height: 80vh;
        padding: 100px 1rem 60px;
    }
    
    .hero-content {
        padding: 15px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .hero-content div {
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        min-height: 70vh;
        padding: 90px 0.5rem 50px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .hero-content div {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-content div button {
        width: 100%;
        max-width: 280px;
    }
}

/* Section hero pour la page réalisations - hauteur réduite */
.hero-section-realisations {
    min-height: auto;
    padding: 120px 0.5rem 80px;
}

.hero-section-realisations .hero-content h1 {
    color: white;
}

/* Responsive pour hero-section-realisations */
@media (max-width: 768px) {
    .hero-section-realisations {
        padding: 100px 0.5rem 60px;
    }
    
    .hero-section-realisations .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-section-realisations .hero-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-section-realisations {
        padding: 90px 0.5rem 50px;
    }
    
    .hero-section-realisations .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-section-realisations .hero-content p {
        font-size: 0.9rem;
    }
}

/* Section Nos services */
section:nth-of-type(2):not(.process-section) {
    background: linear-gradient(135deg, #0C082A 0%, #1A0089 100%);
    padding: 100px 0.5rem;
    text-align: center;
    color: white;
}

section:nth-of-type(2):not(.process-section) h2 {
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 20px;
}

section:nth-of-type(2):not(.process-section) > p {
    color: #E0E0E0;
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

/* Conteneur des cartes de services */
section:nth-of-type(2):not(.process-section) > div:first-of-type {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Cartes de services */
section:nth-of-type(2):not(.process-section) > div:first-of-type > div {
    border-radius: 15px;
    padding: 20px 30px 25px 30px;
    flex: 1;
    min-width: 280px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
section:nth-of-type(2):not(.process-section) > div:first-of-type > div h3 {
    font-weight: 600;
    color: #FFFFFF;
    margin-top: 0;
}

section:nth-of-type(2):not(.process-section) > div:first-of-type > div > div {
    font-size: 16px;
    color: #B0B0B0;
    line-height: 1.6;
}

/* Conteneur des boutons */
section:nth-of-type(2):not(.process-section) > div:last-of-type {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Section Ils nous font confiance */
section:nth-of-type(3) {
    background: linear-gradient(135deg, #0C082A 0%, #1A0089 100%);
    padding: 80px 0.5rem 100px;
    text-align: center;
    color: white;
}

section:nth-of-type(3) h2 {
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 60px;
}

/* Conteneur des logos de confiance */
.trust-logos-container {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
    padding: 20px 0;
    flex-wrap: wrap;
    gap: 40px;
}

/* Styles des logos */
.trust-logos-container img {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: opacity 0.3s ease, transform 0.3s ease;
    flex-shrink: 0;
}

.trust-logos-container img:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* Responsive pour les sections */
@media (max-width: 768px) {
    section:nth-of-type(2):not(.process-section) {
        padding: 60px 0.5rem;
    }

    section:nth-of-type(2):not(.process-section) h2 {
        font-size: 36px;
    }

    section:nth-of-type(2):not(.process-section) > p {
        font-size: 16px;
        margin-bottom: 40px;
    }

    section:nth-of-type(2):not(.process-section) > div:first-of-type {
        gap: 20px;
    }

    section:nth-of-type(2):not(.process-section) > div:first-of-type > div {
        min-width: 100%;
        max-width: 100%;
    }

    section:nth-of-type(3) {
        padding: 60px 0.5rem 80px;
    }

    section:nth-of-type(3) h2 {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .trust-logos-container {
        padding: 15px 0;
        gap: 30px;
    }

    .trust-logos-container img {
        height: 50px;
    }
}

@media (max-width: 480px) {
    section:nth-of-type(2):not(.process-section) h2 {
        font-size: 28px;
    }

    section:nth-of-type(2):not(.process-section) > p {
        font-size: 14px;
    }

    section:nth-of-type(2):not(.process-section) > div:first-of-type > div {
        padding: 18px 20px 20px 20px;
    }

    section:nth-of-type(2):not(.process-section) > div:first-of-type > div h3 {
        font-size: 20px;
    }

    section:nth-of-type(2):not(.process-section) > div:last-of-type {
        flex-direction: column;
        align-items: center;
    }

    section:nth-of-type(2):not(.process-section) > div:last-of-type button {
        width: 100%;
        max-width: 300px;
    }

    section:nth-of-type(3) h2 {
        font-size: 24px;
    }

    .trust-logos-container {
        gap: 20px;
    }

    .trust-logos-container img {
        height: 45px;
    }
}

/* Section Nos dernières réalisations */
.realisations-section {
    background: linear-gradient(135deg, var(--color-1) 0%, var(--color-2) 100%);
    padding: 100px 0.5rem;
    color: white;
}

.realisations-section h2 {
    text-align: center;
    color: #FFFFFF;
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 60px;
}

.realisations-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.realisation-item {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    flex-direction: row;
}

.realisation-image {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.realisation-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    object-fit: cover;
    background-color: #DCDCDC;
    border-radius: 15px;
    display: block;
}

.realisation-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: left;
}

.realisation-content h3 {
    color: #FFFFFF;
    font-size: 24px;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
    text-align: left;
}

.realisation-content p {
    color: #FFFFFF;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    text-align: left;
}

.realisations-cta {
    text-align: center;
    margin-top: 40px;
}

.realisations-cta .btn-vert {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
}

.realisations-cta .btn-vert img {
    width: 16px;
    height: auto;
}

/* Responsive pour la section Réalisations */
@media (max-width: 968px) {
    .realisation-item {
        flex-direction: column !important;
    }
    
    .realisation-image {
        width: 100%;
        max-width: 100%;
    }
    
    .realisation-content {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .realisations-section {
        padding: 60px 0.5rem;
    }
    
    .realisations-section h2 {
        font-size: 32px;
        margin-bottom: 40px;
    }
    
    .realisations-container {
        gap: 40px;
    }
    
    .realisation-item {
        gap: 30px;
    }
    
    .realisation-image {
        min-width: 100%;
    }
}

@media (max-width: 480px) {
    .realisations-section {
        padding: 50px 0.5rem;
    }
    
    .realisations-section h2 {
        font-size: 28px;
    }
    
    .realisation-content h3 {
        font-size: 20px;
    }
    
    .realisation-content p {
        font-size: 14px;
    }
}

/* Section Newsletter */
#Newsletter {
    background: linear-gradient(135deg, var(--orange) 0%, var(--color-2) 100%);
    padding: 10px 0.5rem;
    text-align: center;
    color: white;
}

.newsletter-form {
    max-width: 600px;
    margin: 0 auto 30px auto;
}

.newsletter-form form {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.newsletter-form input[type="email"] {
    flex: 1;
    min-width: 250px;
    padding: 12px 20px;
    font-size: 16px;
    border: none;
    border-radius: 23px;
    background-color: white;
    color: var(--color-1);
    font-family: 'Forma DJR Banner', sans-serif;
    outline: none;
    transition: all 0.3s ease;
}

.newsletter-form input[type="email"]::placeholder {
    color: var(--color-6);
    opacity: 0.7;
}

.newsletter-form input[type="email"]:focus {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.newsletter-form button[type="submit"] {
    background-color: white;
    color: var(--color-1);
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 450;
    border: none;
    border-radius: 23px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: none;
}

.newsletter-form button[type="submit"]:active {
    transform: translateY(0);
}

.newsletter-form button[type="submit"] img {
    width: 16px;
    height: auto;
    display: block;
}

/* Responsive pour la section Newsletter */
@media (max-width: 768px) {
    #Newsletter {
        padding: 60px 0.5rem;
    }

    .newsletter-form form {
        flex-direction: column;
        align-items: stretch;
    }

    .newsletter-form input[type="email"] {
        min-width: 100%;
    }

    .newsletter-form button[type="submit"] {
        width: 100%;
    }
}

/* Section Nos membres - cibler la 5ème section */
section:nth-of-type(5) {
    padding: 100px 0.5rem;
    text-align: center;
    color: white;
}

section:nth-of-type(5) h2 {
    color: #FFFFFF;
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 60px;
    text-align: center;
}

/* Conteneur des cartes de membres */
section:nth-of-type(5) > div {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

/* Cartes individuelles de membres */
section:nth-of-type(5) > div > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    min-width: 200px;
    max-width: 250px;
}

/* Carte grise avec coins arrondis - conteneur pour l'image */
section:nth-of-type(5) > div > div > img {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    object-fit: contain;
    background-color: #DCDCDC;
    border-radius: 25px;
    padding: 0px;
    box-sizing: border-box;
    margin-bottom: 20px;
    display: block;
}

/* Nom du membre */
section:nth-of-type(5) > div > div > h3 {
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 8px 0;
    text-align: center;
}

/* Rôle du membre */
section:nth-of-type(5) > div > div > p {
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 400;
    margin: 0;
    text-align: center;
    line-height: 1.4;
}

/* Responsive pour la section Nos membres */
@media (max-width: 768px) {
    section:nth-of-type(5) {
        padding: 60px 0.5rem;
    }

    section:nth-of-type(5) h2 {
        font-size: 32px;
        margin-bottom: 40px;
    }

    section:nth-of-type(5) > div {
        gap: 30px;
    }

    section:nth-of-type(5) > div > div {
        min-width: 150px;
        max-width: 200px;
    }

    section:nth-of-type(5) > div > div > h3 {
        font-size: 16px;
    }

    section:nth-of-type(5) > div > div > p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    section:nth-of-type(5) {
        padding: 50px 0.5rem;
    }

    section:nth-of-type(5) h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }

    section:nth-of-type(5) > div {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    section:nth-of-type(5) > div > div {
        min-width: 100%;
        max-width: 250px;
    }
}

/* ============================================
   FOOTER
   ============================================ */

footer {
    background: linear-gradient(135deg, var(--color-1) 0%, var(--color-2) 100%);
    color: white;
    padding: 80px 0.5rem 40px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, 
        transparent 0%, 
        rgba(255, 94, 50, 0.3) 20%,
        rgba(184, 206, 82, 0.3) 50%,
        rgba(255, 94, 50, 0.3) 80%,
        transparent 100%);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-favicon {
    width: 40px;
    height: auto;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.footer-favicon:hover {
    transform: scale(1.1) ;
    filter: drop-shadow(0 0 15px rgba(136, 13, 173, 0.6));
}

.footer-logo-text {
    height: 35px;
    width: auto;
    opacity: 0.95;
    transition: opacity 0.3s ease;
}

.footer-logo-text:hover {
    opacity: 1;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 1.6;
    max-width: 400px;
    margin-top: 10px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column ul li {
    margin: 0;
}

.footer-column ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer-column ul li a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    color: var(--orange);
    transition: all 0.3s ease;
    transform: translateX(-5px);
}

.footer-column ul li a:hover {
    color: white;
    padding-left: 20px;
    transform: translateX(5px);
}

.footer-column ul li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 10px;
    padding-top: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    padding-left: 0 !important;
    transform: none !important;
}

.footer-social a::before {
    display: none;
}

.footer-social a svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    margin-top: 50px;
}

.footer-divider {
    height: 1px;
    background: linear-gradient(to right, 
        transparent 0%, 
        rgba(255, 255, 255, 0.1) 20%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0.1) 80%,
        transparent 100%);
    margin-bottom: 30px;
}

.footer-copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin: 0;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    padding-left: 0 !important;
    transform: none !important;
}

.footer-legal a::before {
    display: none;
}

.footer-legal a:hover {
    color: var(--orange);
    padding-left: 0 !important;
    transform: none !important;
}

.footer-legal span {
    color: rgba(255, 255, 255, 0.3);
    font-size: 14px;
}

/* Responsive pour le footer */
@media (max-width: 968px) {
    .footer-top {
        gap: 35px;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    footer {
        padding: 60px 0.5rem 30px;
    }

    .footer-top {
        gap: 40px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-copyright {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .footer-legal {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    footer {
        padding: 50px 0.5rem 25px;
    }

    .footer-logo {
        flex-direction: column;
        gap: 10px;
    }

    .footer-favicon {
        width: 35px;
    }

    .footer-tagline {
        font-size: 14px;
    }

    .footer-column h4 {
        font-size: 16px;
    }

    .footer-column ul li a {
        font-size: 14px;
    }

    .footer-social {
        justify-content: center;
    }
}

/* Section Processus - Comment se déroule la conception */
.process-section {
    background: linear-gradient(135deg, var(--color-1) 0%, var(--color-2) 100%);
    padding: 100px 0.5rem;
    color: white;
}

.process-section h2 {
    text-align: center;
    color: #FFFFFF;
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 60px;
}

.process-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

/* Step 1: Pleine largeur avec texte à gauche et image à droite */
.process-step-full {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-direction: row;
    width: 100%;
}

.process-step-full .process-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.process-step-full .process-content h3 {
    color: #FFFFFF;
    font-size: 24px;
    font-weight: 600;
    margin: 0;
    text-align: left;
}

.process-step-full .process-content p {
    color: #FFFFFF;
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
    text-align: left;
}

.process-step-full .process-content button {
    align-self: flex-start;
    width: auto;
}

.process-step-full .process-image {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.process-step-full .process-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    object-fit: cover;
    background-color: #DCDCDC;
    border-radius: 15px;
    display: block;
}

/* Steps 2 et 3: Côte à côte */
.process-steps-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    width: 100%;
}

.process-step-half {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.process-step-half h3 {
    color: #FFFFFF;
    font-size: 24px;
    font-weight: 600;
    margin: 10px;
    text-align: center;
}

.process-step-half p {
    color: #FFFFFF;
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
    text-align: center;
}

/* Responsive pour la section Processus */
@media (max-width: 968px) {
    .process-step-full {
        flex-direction: column;
    }
    
    .process-step-full .process-image {
        width: 100%;
        max-width: 100%;
    }
    
    .process-steps-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .process-section {
        padding: 60px 0.5rem;
    }
    
    .process-section h2 {
        font-size: 32px;
        margin-bottom: 40px;
    }
    
    .process-container {
        gap: 50px;
    }
    
    .process-step-full {
        gap: 30px;
    }
    
    .process-step-full .process-image {
        min-width: 100%;
    }
}

@media (max-width: 480px) {
    .process-section {
        padding: 50px 0.5rem;
    }
    
    .process-section h2 {
        font-size: 28px;
    }
    
    .process-step-full .process-content h3,
    .process-step-half h3 {
        font-size: 20px;
    }
    
    .process-step-full .process-content p,
    .process-step-half p {
        font-size: 14px;
    }
}

/* Section hero pour la page contact - hauteur réduite */
.hero-section-contact {
    min-height: auto;
    padding: 120px 0.5rem 80px;
}

.hero-section-contact .hero-content h1 {
    color: white;
}

/* Responsive pour hero-section-contact */
@media (max-width: 768px) {
    .hero-section-contact {
        padding: 100px 0.5rem 60px;
    }
    
    .hero-section-contact .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-section-contact .hero-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-section-contact {
        padding: 90px 0.5rem 50px;
    }
    
    .hero-section-contact .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-section-contact .hero-content p {
        font-size: 0.9rem;
    }
}

/* Section Contact */
.contact-section {
    background: linear-gradient(135deg, var(--color-1) 0%, var(--color-2) 100%);
    padding: 100px 0.5rem;
    color: white;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

/* Formulaire de contact */
.contact-form-wrapper {
    display: flex;
    flex-direction: column;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    color: white;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 5px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
    padding: 12px 20px;
    font-size: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background-color: #ffffff00;
    color: white;
    font-family: 'Forma DJR Banner', sans-serif;
    outline: none;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--orange);
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 3px rgba(255, 94, 50, 0.2);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
    font-family: 'Forma DJR Banner', sans-serif;
}

.contact-form .btn-orange {
    margin-top: 10px;
    width: auto;
    align-self: flex-start;
}

/* Informations de contact */
.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info-wrapper h2 {
    color: white;
    font-size: 40px;
    font-weight: 600;
    margin: 0;
}

.contact-info-wrapper > p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
}

.contact-info-content h3 {
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 5px 0;
}

.contact-info-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    margin: 0;
}

/* Section réseaux sociaux */
.contact-social {
    margin-top: 20px;
}

.contact-social h3 {
    color: white;
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 15px 0;
}

.social-icons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-icons a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0);
}

.social-icons a:hover {
    background-color: var(--orange);
    transform: translateY(-3px);
}

.social-icons a svg {
    width: 20px;
    height: 20px;
}

/* Responsive pour la section Contact */
@media (max-width: 968px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0.5rem;
    }
    
    .contact-container {
        gap: 40px;
    }
    
    .contact-info-wrapper h2 {
        font-size: 32px;
    }
    
    .contact-info-grid {
        gap: 25px;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 50px 0.5rem;
    }
    
    .contact-info-wrapper h2 {
        font-size: 28px;
    }
    
    .contact-form input[type="text"],
    .contact-form input[type="email"],
    .contact-form input[type="tel"],
    .contact-form textarea {
        font-size: 14px;
        padding: 10px 15px;
    }
    
    .contact-info-content h3 {
        font-size: 16px;
    }
    
    .contact-info-content p {
        font-size: 14px;
    }
}

/* ============================================
   PAGE À PROPOS
   ============================================ */

/* Hero section À propos - même style que contact et réalisations */
.hero-section-apropos {
    min-height: auto;
    padding: 120px 0.5rem 80px;
}

.hero-section-apropos .hero-content h1 {
    color: white;
}

/* Section Nous sommes Unhide */
.apropos-section {
    background: linear-gradient(135deg, var(--color-1) 0%, var(--color-2) 100%);
    padding: 100px 0.5rem;
    color: white;
}

.apropos-section h2 {
    text-align: center;
    color: #FFFFFF;
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 60px;
}

.apropos-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.apropos-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.apropos-text p {
    color: #FFFFFF;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.apropos-image {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.apropos-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    object-fit: cover;
    background-color: #DCDCDC;
    border-radius: 15px;
    display: block;
}

/* Section Nos Valeurs */
.valeurs-section {
    background: linear-gradient(135deg, var(--color-1) 0%, var(--color-2) 100%);
    padding: 100px 0.5rem;
    text-align: center;
    color: white;
}

.valeurs-section h2 {
    color: #FFFFFF;
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 20px;
}

.valeurs-section > p {
    color: #E0E0E0;
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.6;
    font-size: 16px;
}

.valeurs-container {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0 auto;
}

.valeur-card {
    background: linear-gradient(135deg, rgba(12, 8, 42, 0.5) 0%, rgba(26, 0, 137, 0.5) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid transparent;
    border-radius: 15px;
    padding: 30px;
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.valeur-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 15px;
    padding: 2px;
    background: linear-gradient(135deg, #1e146b 0%, #2f00ff 100%);
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: -1;
}

.valeur-card:hover {
    transform: translateY(-5px);
}

.valeur-card h3 {
    color: #FFFFFF;
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 15px 0;
}

.valeur-card p {
    color: #E0E0E0;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

/* Section Notre Histoire */
.histoire-section {
    background: linear-gradient(135deg, var(--color-1) 0%, var(--color-2) 100%);
    padding: 100px 0.5rem;
    color: white;
}

.histoire-section h2 {
    text-align: left;
    color: #FFFFFF;
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 20px;
    margin-top: 0;
}

.histoire-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.histoire-images {
    flex: 1;
    min-width: 300px;
}

.histoire-image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.histoire-image-grid img {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
    background-color: #DCDCDC;
    border-radius: 15px;
    display: block;
}

.histoire-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
}

.histoire-text p {
    color: #FFFFFF;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

/* Section En quelques chiffres */
.chiffres-section {
    background: linear-gradient(135deg, var(--color-1) 0%, var(--color-2) 100%);
    padding: 100px 0.5rem;
    text-align: center;
    color: white;
}

.chiffres-section h2 {
    color: #FFFFFF;
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 60px;
}

.chiffres-container {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0 auto;
}

.chiffre-card {
    background: linear-gradient(135deg, rgba(12, 8, 42, 0.5) 0%, rgba(26, 0, 137, 0.5) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid transparent;
    border-radius: 15px;
    padding: 30px;
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.chiffre-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 15px;
    padding: 2px;
    background: linear-gradient(135deg, #1e146b 0%, #2f00ff 100%);
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: -1;
}

.chiffre-card:hover {
    transform: translateY(-5px);
}

.chiffre-card h3 {
    color: #FFFFFF;
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 15px 0;
}

.chiffre-card p {
    color: #E0E0E0;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

/* Section équipe - réutilise les styles de section:nth-of-type(5) */
.equipe-section {
    background: linear-gradient(135deg, var(--color-1) 0%, var(--color-2) 100%);
    padding: 100px 0.5rem;
    text-align: center;
    color: white;
}

.equipe-section h2 {
    color: #FFFFFF;
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 60px;
    text-align: center;
}

.equipe-section > div {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.equipe-section > div > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    min-width: 200px;
    max-width: 250px;
}

.equipe-section > div > div > img {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    object-fit: contain;
    background-color: #DCDCDC;
    border-radius: 25px;
    padding: 30px;
    box-sizing: border-box;
    margin-bottom: 20px;
    display: block;
}

.equipe-section > div > div > h3 {
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 8px 0;
    text-align: center;
}

.equipe-section > div > div > p {
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 400;
    margin: 0;
    text-align: center;
    line-height: 1.4;
}

/* Responsive pour la page À propos */
@media (max-width: 968px) {
    .apropos-content-wrapper,
    .histoire-content-wrapper {
        flex-direction: column;
    }
    
    .apropos-image,
    .histoire-images {
        width: 100%;
        max-width: 100%;
    }
    
    .histoire-section h2 {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero-section-apropos {
        padding: 100px 0.5rem 60px;
    }
    
    .hero-section-apropos .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-section-apropos .hero-content p {
        font-size: 1rem;
    }
    
    .apropos-section,
    .valeurs-section,
    .histoire-section,
    .chiffres-section,
    .equipe-section {
        padding: 60px 0.5rem;
    }
    
    .apropos-section h2,
    .valeurs-section h2,
    .histoire-section h2,
    .chiffres-section h2,
    .equipe-section h2 {
        font-size: 32px;
        margin-bottom: 40px;
    }
    
    .valeurs-container,
    .chiffres-container {
        gap: 20px;
    }
    
    .valeur-card,
    .chiffre-card {
        min-width: 100%;
        max-width: 100%;
    }
    
    .histoire-image-grid {
        gap: 15px;
    }
    
    .equipe-section > div {
        gap: 30px;
    }
    
    .equipe-section > div > div {
        min-width: 150px;
        max-width: 200px;
    }
}

@media (max-width: 480px) {
    .hero-section-apropos {
        padding: 90px 0.5rem 50px;
    }
    
    .hero-section-apropos .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-section-apropos .hero-content p {
        font-size: 0.9rem;
    }
    
    .apropos-section,
    .valeurs-section,
    .histoire-section,
    .chiffres-section,
    .equipe-section {
        padding: 50px 0.5rem;
    }
    
    .apropos-section h2,
    .valeurs-section h2,
    .histoire-section h2,
    .chiffres-section h2,
    .equipe-section h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .apropos-text p,
    .histoire-text p {
        font-size: 14px;
    }
    
    .valeur-card h3,
    .chiffre-card h3 {
        font-size: 20px;
    }
    
    .valeur-card p,
    .chiffre-card p {
        font-size: 14px;
    }
    
    .equipe-section > div {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    
    .equipe-section > div > div {
        min-width: 100%;
        max-width: 250px;
    }
    
    .equipe-section > div > div > h3 {
        font-size: 16px;
    }
    
    .equipe-section > div > div > p {
        font-size: 14px;
    }
}

/* Section hero pour la page services */
.hero-section-services {
    min-height: auto;
    padding: 120px 0.5rem 80px;
}

.hero-section-services .hero-content h1 {
    color: white;
}

/* Section introduction des services */
.services-intro-section {
    padding: 20px 0.5rem;
    text-align: center;
    color: white;
}

.services-intro-section p {
    color: #FFFFFF;
    font-size: 16px;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* Section détails des services */
.services-details-section {
    background: linear-gradient(135deg, var(--color-1) 0%, var(--color-2) 100%);
    padding: 80px 0.5rem 100px;
    color: white;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 40px;
    background: linear-gradient(135deg, rgba(12, 8, 42, 0.5) 0%, rgba(26, 0, 137, 0.5) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid transparent;
    border-radius: 15px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 15px;
    padding: 2px;
    background: linear-gradient(135deg, #1e146b 0%, #2f00ff 100%);
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: -1;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-item-reverse {
    flex-direction: row-reverse;
}

.service-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: left;
}

.service-content h3 {
    color: #FFFFFF;
    font-size: 28px;
    font-weight: 600;
    margin: 0;
    text-align: left;
}

.service-content p {
    color: #E0E0E0;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    text-align: left;
}

.service-image {
    flex: 0 0 auto;
    min-width: 200px;
    max-width: 280px;
}

.service-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 28/14;
    object-fit: cover;
    background-color: #DCDCDC;
    border-radius: 15px;
    display: block;
}

/* Responsive pour la page Services */
@media (max-width: 968px) {
    .service-item,
    .service-item-reverse {
        flex-direction: column !important;
    }
    
    .service-image {
        width: 100%;
        max-width: 100%;
    }
    
    .service-content {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .hero-section-services {
        padding: 100px 0.5rem 60px;
    }
    
    .hero-section-services .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-section-services .hero-content p {
        font-size: 1rem;
    }
    
    .services-intro-section {
        padding: 40px 0.5rem;
    }
    
    .services-details-section {
        padding: 60px 0.5rem;
    }
    
    .services-container {
        gap: 30px;
    }
    
    .service-item {
        padding: 30px;
        gap: 30px;
    }
    
    .service-content h3 {
        font-size: 24px;
    }
    
    .service-image {
        min-width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-section-services {
        padding: 90px 0.5rem 50px;
    }
    
    .hero-section-services .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-section-services .hero-content p {
        font-size: 0.9rem;
    }
    
    .services-intro-section {
        padding: 30px 0.5rem;
    }
    
    .services-details-section {
        padding: 50px 0.5rem;
    }
    
    .services-container {
        gap: 25px;
    }
    
    .service-item {
        padding: 20px;
        gap: 20px;
    }
    
    .service-content h3 {
        font-size: 20px;
    }
    
    .service-content p {
        font-size: 14px;
    }
}
