@font-face {
    font-family: 'Univers';
    src: url('fonts/Univers.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Variables CSS pour une meilleure maintenance */
:root {
    --mobile-padding: 20px;
    --tablet-padding: 40px;
    --desktop-padding: 80px;
    --mobile-margin: 15px;
    --tablet-margin: 30px;
    --desktop-margin: 50px;
    --premium-accent: #6c757d;
    --premium-dark: #1a1a1a;
    --premium-light: #f8f9fa;
    --premium-gray: #495057;
    --premium-light-gray: #dee2e6;
}

.floating-logo {
    width: 60%;
    height: auto;
    transition: transform 0.3s ease-out;
    z-index: 1000;
}

/* ===== SECTION PREMIUM SIGNATURE ===== */
.premium-signature-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.premium-signature-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(108, 117, 125, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(108, 117, 125, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.premium-signature-card {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 50px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(108, 117, 125, 0.15);
    position: relative;
    backdrop-filter: blur(10px);
    text-align: center;
}

.premium-signature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--premium-accent), transparent);
    border-radius: 20px 20px 0 0;
}

.premium-header {
    margin-bottom: 40px;
}

.premium-tagline {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--premium-dark);
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.premium-divider {
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, var(--premium-accent), var(--premium-gray), var(--premium-accent));
    margin: 0 auto 25px;
    border-radius: 2px;
    position: relative;
}

.premium-divider::before,
.premium-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 8px;
    height: 8px;
    background: var(--premium-accent);
    border-radius: 50%;
    transform: translateY(-50%);
}

.premium-divider::before {
    left: -15px;
}

.premium-divider::after {
    right: -15px;
}

.premium-subtitle {
    font-size: 1.4rem;
    color: #555;
    font-weight: 500;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 0;
}

.premium-content {
    border-top: 1px solid var(--premium-light-gray);
    padding-top: 35px;
}

.premium-description {
    font-size: 1.2rem;
    color: #333;
    line-height: 1.8;
    margin-bottom: 30px;
    font-weight: 400;
}

.premium-signature {
    position: relative;
    padding: 25px 30px;
    background: linear-gradient(135deg, rgba(108, 117, 125, 0.05), rgba(73, 80, 87, 0.05));
    border-radius: 15px;
    border: 1px solid var(--premium-light-gray);
}

.premium-closing {
    font-size: 1.3rem;
    color: var(--premium-dark);
    font-weight: 600;
    font-style: italic;
    display: block;
    position: relative;
}

.premium-closing::before,
.premium-closing::after {
    content: '"';
    font-size: 2.5rem;
    color: var(--premium-gray);
    font-family: Georgia, serif;
    position: absolute;
    top: -5px;
}

.premium-closing::before {
    left: -25px;
}

.premium-closing::after {
    right: -25px;
}

.premium-legacy-content {
    margin-top: 35px;
    padding-top: 30px;
    border-top: 1px solid var(--premium-light-gray);
}

.premium-legacy-text {
    font-size: 1.2rem;
    color: #333;
    line-height: 1.8;
    margin-bottom: 30px;
    font-weight: 400;
    text-align: center;
}

.premium-legacy-text:last-child {
    margin-bottom: 0;
}

.premium-header .main-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--premium-dark);
    margin-bottom: 25px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

body {
    background-color: #ffffff;
    font-family: 'Univers', Arial, sans-serif;
    padding-top: 80px;
    overflow-x: hidden;
    /* Empêcher le scroll horizontal */
}

.navbar {
    padding: 10px 20px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    height: 80px;
    display: flex;
    align-items: center;
}

.navbar .container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Amélioration de la navigation mobile */
@media (max-width: 991px) {
    .navbar {
        padding: 10px 15px;
    }

    .navbar-nav {
        flex-direction: column;
        text-align: center;
        padding: 20px 0;
    }

    .navbar-nav .nav-item {
        margin: 10px 0;
    }

    .navbar-nav .nav-link {
        font-size: 1.1rem;
        padding: 12px 20px;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .navbar-nav .nav-link:hover {
        background-color: #f8f9fa;
        transform: translateY(-2px);
    }

    .social-icons {
        text-align: center;
        margin-top: 20px;
        padding: 15px 0;
        border-top: 1px solid #eee;
    }

    .social-icons a {
        margin: 0 15px;
        font-size: 1.4rem;
    }

    /* Responsive Profile Dropdown */
    .profile-dropdown {
        min-width: 250px;
        position: static;
        box-shadow: none;
        border: 1px solid #eee;
        border-radius: 8px;
        margin-top: 10px;
        padding: 5px 0;
    }

    .profile-dropdown-item {
        padding: 10px 15px;
        gap: 10px;
    }

    .profile-dropdown-item:hover {
        padding-left: 20px;
    }

    .profile-dropdown-item i {
        font-size: 1rem;
        width: 18px;
    }

    .profile-dropdown-item span {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        height: 70px;
        padding: 8px 15px;
    }

    .navbar-brand {
        margin-right: 0;
    }

    .nav-logo {
        width: 80px;
    }

    /* ===== DROPDOWN MENU VOUS ÊTES ===== */
    .profile-dropdown {
        min-width: 280px;
        border: none;
        border-radius: 12px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
        padding: 8px 0;
        margin-top: 8px;
        background: #ffffff;
    }

    .profile-dropdown-item {
        display: flex;
        align-items: center;
        padding: 12px 20px;
        border: none;
        background: none;
        transition: all 0.2s ease;
        text-decoration: none;
        color: #333;
        gap: 12px;
        position: relative;
    }

    .profile-dropdown-item:hover {
        background-color: #f8f9fa;
        color: #333;
        padding-left: 25px;
    }

    .profile-dropdown-item:hover::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 3px;
        background: var(--premium-accent);
        border-radius: 0 3px 3px 0;
    }

    .profile-dropdown-item i {
        font-size: 1.1rem;
        color: var(--premium-accent);
        width: 20px;
        text-align: center;
        flex-shrink: 0;
    }

    .profile-dropdown-item:hover i {
        color: var(--premium-gray);
    }

    .profile-dropdown-item span {
        font-weight: 500;
        font-size: 0.95rem;
        color: #333;
        line-height: 1.2;
        white-space: nowrap;
    }

    .dropdown-toggle::after {
        margin-left: 0.5em;
        vertical-align: middle;
    }

    .navbar-toggler {
        border: none;
        padding: 8px;
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }

    .navbar-collapse {
        background-color: rgba(255, 255, 255, 0.98);
        border-radius: 12px;
        margin-top: 10px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }
}

.about-section {
    margin-top: 0;
    position: relative;
}

.hero-image-container {
    width: 100%;
    height: 85vh;
    position: relative;
    margin-bottom: 0;
    margin-top: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.85);
}

.about-content-wrapper {
    margin-top: -150px;
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.about-card {
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    border-radius: 0;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.1);
    padding: 100px 80px;
    margin: 0 auto;
    max-width: 1200px;
    position: relative;
    overflow: hidden;
    border-left: 4px solid #333;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, #e0e0e0, transparent);
}

/* Responsive pour about-card */
@media (max-width: 991px) {
    .about-card {
        padding: 80px 50px;
        margin: 0 15px;
    }
}

@media (max-width: 768px) {
    .about-card {
        padding: 60px 30px;
        margin: 0 10px;
        border-left: 3px solid #333;
    }

    .about-content-wrapper {
        padding: 0 15px;
        margin-top: -100px;
    }
}

@media (max-width: 480px) {
    .about-card {
        padding: 40px 20px;
        margin: 0 5px;
    }

    .about-content-wrapper {
        padding: 0 10px;
        margin-top: -80px;
    }
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0;
    margin-right: 2rem;
}

.nav-logo {
    width: 100px;
    height: auto;
}

/* Responsive pour le logo flottant */
@media (max-width: 768px) {
    .floating-logo {
        width: 80%;
    }
}

@media (max-width: 480px) {
    .floating-logo {
        width: 90%;
    }
}

/* Responsive pour la section cover */
@media (max-width: 768px) {
    .cover {
        height: 70vh;
        padding-top: 70px;
    }

    .hero-image-container {
        height: 70vh;
    }
}

@media (max-width: 480px) {
    .cover {
        height: 60vh;
        padding-top: 60px;
    }

    .hero-image-container {
        height: 60vh;
    }
}

.navbar-brand span {
    font-size: 1.2rem;
    font-weight: 500;
    color: #333;
}

.nav-logo-container {
    width: 80px;
    height: 80px;
    background-image: url('img/logo.PNG');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 1;
    transition: opacity 0.3s ease-out;
}



.about-section {
    margin-top: 80px;
}

.realisations-section,
.contact-section {
    margin-top: 80px;
}

.realisations-section .hero-image-container,
.contact-section .hero-image-container {
    margin-top: -80px;
}

.navbar-brand img {
    max-height: 50px;
}

.navbar-nav {
    gap: 20px;
}

:root {
    --bg-color-1: #f7f7f7;
}

.page-load-animation {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.page-load-animation.loaded {
    opacity: 1;
    transform: translateY(0);
}

.page-load-animation {
    transition-delay: calc(var(--animation-order) * 0.2s);
}


.social-icons a {
    color: #000;
    font-size: 20px;
    margin-left: 15px;
}

.paragh {
    text-align: justify;
    line-height: 1.8;
    font-size: 1.05rem;
    color: #2c2c2c;
    max-width: 90%;
    letter-spacing: 0.2px;
}

.list-unstyled {
    margin-top: 25px;
}

.list-unstyled li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
    line-height: 1.6;
    font-size: 1rem;
    color: #444;
}

.list-unstyled li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #333;
    font-weight: bold;
}

.fw-bold {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #1a1a1a;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.page-title {
    margin: 70px 0 50px;
    padding: 30px 0;
    text-align: center;
    position: relative;
}

.page-title h2 {
    font-size: 3rem;
    color: #1a1a1a;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    padding-bottom: 20px;
}

.page-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: linear-gradient(to right, transparent, #333, transparent);
}


.img-pargh {
    padding-left: 3rem;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.img-pargh img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transform: scale(1.01);
    transition: transform 0.5s ease;
    filter: brightness(0.95) contrast(1.02);
}

.img-pargh:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.img-pargh:hover img {
    transform: scale(1.03);
}

@media (max-width: 768px) {
    .img-pargh {
        padding-left: 0;
        margin: 30px 0;
    }
}

.white-space {
    height: 3.5rem;
}

.grey-space {
    height: 3.5rem;
    text-align: center;
    padding-top: 10px;
    font-size: 4rem;
    background-color: var(--bg-color-1);
}

.cover {
    height: 90vh;
    position: relative;
    font-family: 'Univers', Arial, sans-serif;
    margin-top: -80px;
    padding-top: 80px;
}

.img-container {
    /* width: 100%; */
    /* height: 22rem; */
}

.container {
    width: 100%;

    max-width: 1140px;
}

.bg-dark {
    background-color: var(--bg-color-1) !important;


}

.container i {
    padding: 22px !important;
}

.section-title h2 {
    font-size: 60px;
    font-weight: 800;
    margin-bottom: 70px;

}

.mission-item {
    text-align: center;
    cursor: pointer;
}

.social-icons a {
    color: #333;
    margin-left: 10px;
    font-size: 1.2rem;
    text-decoration: none;
}

.social-icons a:hover {
    color: #666;
}

.title-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 60px;
    padding: 0 15px;
}

.title-container h5 {
    font-size: 1.15rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
    color: #333;
    text-align: center;
    width: 100%;
}

.mission-item {
    text-align: center;
    cursor: pointer;
    margin: 0 10px;
    height: 100%;
}

.title-wrapper {
    position: relative;
    display: inline-block;
    padding: 8px 0;
    width: 100%;
}

.title-wrapper::before,
.title-wrapper::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #333;
    left: 0;
    display: block;
    transition: width 0.3s ease;
}

.mission-item:hover .title-wrapper::before,
.mission-item:hover .title-wrapper::after {
    width: 80%;
    left: 10%;
}

.toggle-icon {
    margin-left: 4px;
    font-size: 1.5rem;
}

.mission-content {
    list-style: none;
    padding: 0;
    margin-top: 10px;
    display: none;
}

.title-wrapper {
    position: relative;
    display: inline-block;
    padding: 5px 0;
}

.title-wrapper::before,
.title-wrapper::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: black;
    left: 0;
    display: block;
}

.title-wrapper::before {
    top: 0;

}

.title-wrapper::after {
    bottom: 0;
}

.mission-content {
    display: none;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}


.mission-item .title-container {
    cursor: pointer;
}

.mission-item .mission-content {
    list-style: none;
    padding: 0;
    margin-top: 10px;
    display: none;
    transition: margin-bottom 0.3s ease;
}

.mission-item.active .mission-content {
    display: block;
    margin-bottom: 20px;

}

.mission-content li {
    text-align: justify;
    margin-bottom: 10px;
}

.logoHomePage {
    width: 30%;
    height: auto;
}

.footer-section {
    background-color: var(--bg-color-1);
    color: #333;

}

.footer-brand {
    margin-bottom: 20px;
}

.footer-logo-img {
    max-width: 120px;
    margin-bottom: 15px;
}

.footer-company-name h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-company-name p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

.footer-contact h5,
.footer-links h5 {
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-contact .contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 2px !important;
    padding: 0 !important;
    border-bottom: none !important;
    color: #555;
}

.footer-contact .contact-item i {
    color: #333;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
    padding: 0 !important;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-links ul li a:hover {
    color: #1a1a1a;
}

.footer-social h6 {
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 1rem;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #333;
    color: white;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links .social-icon:hover {
    background: #555;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Amélioration de la responsivité des images */
.about-preview-image img,
.project-image img,
.service-card img {
    transition: transform 0.3s ease;
}

@media (hover: hover) {

    .about-preview-image img:hover,
    .project-image img:hover {
        transform: scale(1.02);
    }
}

/* Optimisation des images pour mobile */
@media (max-width: 768px) {
    .about-preview-image img {
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .project-image img {
        border-radius: 8px 8px 0 0;
    }

    .footer-logo-img {
        max-width: 100px;
        margin-bottom: 12px;
    }

    .footer-company-name h4 {
        font-size: 1.2rem;
        letter-spacing: 0.8px;
    }

    .footer-company-name p {
        font-size: 0.9rem;
    }

    .footer-contact h5,
    .footer-links h5 {
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .footer-contact .contact-item {
        font-size: 0.9rem;
        margin-bottom: 2px !important;
    }

    .footer-links ul li a {
        font-size: 0.9rem;
    }

    .social-links .social-icon {
        width: 35px;
        height: 35px;
    }
}

.social-links .social-icon {
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links .social-icon:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid #e0e0e0;
}

.footer-legal {
    text-align: center;
}

.footer-legal a {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #333;
}

.missions-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 0 60px;
    background-color: #f8f9fa;
}

.white-space {
    height: 3.5rem;
}

.missions-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px;
    background-color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    position: relative;
}

.section-title {
    width: 100%;
    font-size: 48px;
    font-weight: 700;
    color: #333;
    margin: 0 auto;
    padding: 20px 0;
    text-align: center;
    position: relative;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-family: 'Univers', Arial, sans-serif;
}

.section-title:after {
    content: none;
}

.missions-description {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 40px;
    text-align: justify;
}

.missions-list {
    list-style: none;
    padding: 0;
    margin: 40px 0;
}

.missions-list li {
    padding: 20px 25px;
    font-size: 17px;
    color: #333;
    margin-bottom: 15px;
    border-left: 4px solid #333;
    background-color: #f8f9fa;
    transition: none;
    transform: none !important;
}

.missions-list li:hover {
    transform: none !important;
    background-color: #f8f9fa;
}

.missions-objective {
    margin-top: 50px;
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    text-align: center;
    font-size: 20px;
    color: #333;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

h3 {
    font-size: 28px;
    color: #1a1a1a;
    margin: 40px 0 30px;
    font-weight: 600;
    position: relative;
    padding-left: 20px;
}

h3:before {
    content: none;
}

.footer-hours p {
    color: #333;
}

.two-row-section {
    background-color: #fff;
    padding: 50px 0;
}

.text-content h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 15px;
}

.text-content p {
    font-size: 1.1rem;
    color: #555;
}

.image-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .row {
        flex-direction: column;
        text-align: center;
    }

    .image-content {
        margin-bottom: 20px;
    }

    .logoHomePage {
        width: 80%;
        height: auto;
    }
}

@media (max-width: 991px) {
    .navbar-nav {
        flex-direction: column;
        text-align: center;
    }

    .logoHomePage {
        width: 80%;
        height: auto;
    }

    .social-icons {
        text-align: center;
        margin-top: 10px;
    }

    .footer-section .row {
        text-align: center;
    }
}


.mentions-legales {
    padding-top: 120px;
}

.mentions-legales h1 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.mentions-legales h2 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.mentions-legales h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
}

.mentions-legales .paragh {
    max-width: 100%;
}

.mentions-legales p {
    margin-bottom: 1rem;
    text-align: justify;
}

.mentions-section {
    padding: 50px 0;
}

.mention-block {
    margin-bottom: 40px;
}

.mention-block h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #333;
    font-weight: 500;
}

.content-box {
    background: white;
    padding: 25px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.content-box p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #555;
}

.content-box p:last-child {
    margin-bottom: 0;
}

.content-box strong {
    color: #333;
    font-weight: 600;
}

.about-section {
    padding: 0;
    background-color: #fff;
}

.hero-image-container {
    width: 100%;
    height: 70vh;
    position: relative;
    margin-bottom: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.9);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.6) 100%);
}

.about-content-wrapper {
    margin-top: -100px;
    position: relative;
    z-index: 2;
}

.about-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    padding: 50px;
    margin: 0 auto;
    max-width: 1000px;
}

.about-title {
    font-size: 2.5rem;
    color: #333;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 600;
}

.about-text-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.lead-text {
    font-size: 2rem;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 300;
    line-height: 1.6;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 30px;
}

.lead-text::after {
    content: none;
}

.principles-section {
    margin-top: 50px;
    padding: 30px;
    background: var(--bg-color-1);
    border-radius: 10px;
}

.principles-title {
    color: #222;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: center;
}

.principles-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.principles-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 20px;
    text-align: left;
}

.principles-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #333;
}

@media (max-width: 768px) {
    .principles-list {
        margin-bottom: 20px;
    }
}

.conclusion {
    text-align: center;
    font-style: italic;
    color: #666;
    margin-top: 40px;
    font-size: 1.2rem;
    padding: 20px 0;
    border-top: 1px solid #eee;
}

.about-description {
    max-width: 1100px;
    margin: 0 auto;
}

.about-description .paragh {
    text-align: justify;
    line-height: 1.9;
    font-size: 1.15rem;
    color: #444;
    margin-bottom: 30px;
    letter-spacing: 0.3px;
}

@media (max-width: 768px) {
    .about-card {
        padding: 40px 20px;
    }

    .lead-text {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }

    .about-description .paragh {
        font-size: 1.1rem;
    }
}

.missions-list {
    list-style: none;
    padding: 0;
}

.missions-list li {
    padding: 15px 20px;
    margin-bottom: 10px;
    background-color: #f8f9fa;
    border-left: 4px solid #333;
    transition: all 0.3s ease;
}

.missions-list li:hover {
    background-color: #e9ecef;
    transform: translateX(10px);
}

main {
    min-height: calc(100vh - 200px);
    padding: 40px 0;
}

h1 {
    position: relative;
    padding-bottom: 15px;
}

h1:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #333;
}

.title-wrapper::before,
.title-wrapper::after {
    display: none;
}

.row {
    display: flex;
    align-items: stretch;
}

.mission-item {
    background: #ffffff;
    padding: 30px;
    height: 100%;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.title-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.title-container h5 {
    font-size: 1.3rem;
    color: #333;
    margin: 0 0 15px 0;
    font-weight: 600;
    text-align: center;
    width: 100%;
}

.mission-description {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 15px 0;
}

.mission-content {
    margin: 20px 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}


.mission-content li {
    padding: 8px 0 8px 20px;
    margin-bottom: 5px;
    color: #444;
    font-size: 0.95rem;
    position: relative;
    text-align: left;
}

.mission-content li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #333;
}

.mission-objective {
    margin-top: auto;
    padding: 25px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 10px;
    font-style: italic;
    color: #444;
    font-size: 1.1rem;
    text-align: center;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.05);
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.6;
}


.fas {
    color: #333;
    font-size: 2rem;
    margin-bottom: 20px;
}

.mission-content li:before {
    content: "•";
    position: absolute;
    left: 10px;
    color: #333;
    font-weight: bold;
}


.fas {
    color: #444;
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.mission-content li:before {
    content: "•";
    position: absolute;
    left: 10px;
    color: #333;
    font-weight: bold;
}


.fas {
    color: #333;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.main-title {
    font-size: 3.2rem;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 4px;
    position: relative;
    padding-bottom: 30px;
    line-height: 1.2;
}

.main-title::after {
    content: none;
}

.premium-intro {
    font-size: 1.25rem;
    font-weight: 400;
    color: #4a4a4a;
    line-height: 1.8;
    margin: 0 auto;
    max-width: 800px;
    letter-spacing: 0.3px;
    position: relative;
}

@media (max-width: 768px) {
    .premium-intro {
        font-size: 1.05rem;
        padding: 1.2rem 1rem;
    }
}

/* ===== NOUVELLES SECTIONS INFORMATIVES ===== */

/* Section Aperçu des Services */
.services-preview-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.section-header {
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.8rem;
    color: #1a1a1a;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    position: relative;
}

.section-title::after {
    content: none;
}

.section-subtitle {
    font-size: 1.3rem;
    color: #666;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 50px;
    margin-top: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.service-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-icon i {
    font-size: 2rem;
    color: #333;
}

.service-card h3 {
    font-size: 1.4rem;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 600;
    line-height: 1.3;
}

.service-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 1rem;
}

.service-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    padding: 10px 0;
    border-bottom: 2px solid transparent;
}

.service-link:hover {
    color: #000;
    border-bottom-color: #333;
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(5px);
}

.btn-discover-missions {
    display: inline-block;
    background: linear-gradient(135deg, #333 0%, #555 100%);
    color: white;
    padding: 18px 50px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border: none;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    min-width: 280px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Amélioration de l'effet hover pour mobile */
@media (hover: hover) {
    .btn-discover-missions:hover {
        background: linear-gradient(135deg, #222 0%, #444 100%);
        transform: translateY(-3px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
        color: white;
    }
}

/* Effet actif pour mobile */
.btn-discover-missions:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-discover-missions:hover {
    background: linear-gradient(135deg, #222 0%, #444 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    color: white;
}

/* Section Aperçu des Réalisations */
.projects-preview-section {
    padding: 80px 0;
    background: white;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.project-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.project-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-content {
    padding: 30px;
}

.project-content h3 {
    font-size: 1.3rem;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: 600;
    min-height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.project-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 1rem;
}

/* Titre spécifique pour Maison de ville Paris 13ème */
.maison-title {
    justify-content: flex-start !important;
    text-align: left !important;
    padding-left: 10px;
}

.project-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
}

.project-link:hover {
    color: #000;
    border-bottom-color: #333;
}

.project-link i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.project-link:hover i {
    transform: translateX(3px);
}

.btn-view-all {
    display: inline-block;
    background: linear-gradient(135deg, #333 0%, #555 100%);
    color: white;
    padding: 18px 50px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border: none;
    font-size: 1.2rem;
    min-width: 280px;
    text-align: center;
}

/* Amélioration de l'effet hover pour mobile */
@media (hover: hover) {
    .btn-view-all:hover {
        background: linear-gradient(135deg, #222 0%, #444 100%);
        transform: translateY(-2px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
        color: white;
    }
}

/* Effet actif pour mobile */
.btn-view-all:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Section À Propos */
.about-preview-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.about-preview-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
}

.about-preview-content .section-title {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 600;
    line-height: 1.2;
    text-align: left;
}

.about-preview-text {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.1rem;
    text-align: left;
}

.about-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    transition: all 0.3s ease;
    padding: 10px 0;
    border-bottom: 2px solid transparent;
    margin-top: 20px;
    line-height: 1;
    position: relative;
}

.about-link:hover {
    color: #000;
    border-bottom-color: #333;
    padding-bottom: 8px;
}

.about-link i {
    transition: transform 0.3s ease;
    font-size: 0.9em;
    position: relative;
    top: -1px;
    margin-left: 8px;
}

.about-link:hover i {
    transform: translateX(5px);
}

.about-preview-image {
    text-align: center;
}

.about-preview-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Section Contact */
.contact-preview-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    color: white;
}

.contact-preview-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 600;
    line-height: 1.3;
    color: white;
}

.contact-preview-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    color: white;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
}

.contact-item i {
    font-size: 1.3rem;
    color: #f8f9fa;
}

.btn-contact {
    display: inline-block;
    background: white;
    color: #1a1a1a;
    padding: 15px 40px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    font-size: 1.1rem;
    border: 2px solid white;
    min-width: 250px;
    text-align: center;
}

/* Amélioration de l'effet hover pour mobile */
@media (hover: hover) {
    .btn-contact:hover {
        background: transparent;
        color: white;
        border-color: white;
        transform: translateY(-2px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    }
}

/* Effet actif pour mobile */
.btn-contact:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive Design - Amélioré */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 40px;
        max-width: 1000px;
    }

    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .section-subtitle {
        font-size: 1.2rem;
    }
}

@media (max-width: 991px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        max-width: 800px;
    }

    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .about-preview-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .contact-info {
        flex-direction: column;
        gap: 20px;
    }

    .services-preview-section,
    .projects-preview-section {
        padding: 60px 0;
    }

    .service-card,
    .project-card {
        padding: 35px 25px;
    }

    .project-image {
        height: 220px;
    }
}

@media (max-width: 768px) {

    .services-preview-section,
    .projects-preview-section,
    .about-preview-section {
        padding: 40px 0;
    }

    .contact-preview-section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 2rem;
        letter-spacing: 1.5px;
    }

    .section-subtitle {
        font-size: 1.1rem;
        max-width: 500px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 500px;
        margin: 40px auto 0;
        width: 100%;
        justify-items: center;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 500px;
        margin: 40px auto 0;
        width: 100%;
        justify-items: center;
    }

    .service-card,
    .project-card {
        padding: 30px 25px;
        margin: 0;
        width: 100%;
        max-width: 450px;
    }

    .service-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }

    .service-icon i {
        font-size: 1.8rem;
    }

    .project-image {
        height: 200px;
    }

    .project-content h3 {
        font-size: 1.3rem;
        min-height: auto;
        white-space: normal;
        line-height: 1.3;
    }

    .about-preview-text h2 {
        font-size: 1.8rem;
    }

    .contact-preview-content h2 {
        font-size: 1.8rem;
    }

    .contact-preview-content p {
        font-size: 1rem;
    }

    .btn-discover-missions,
    .btn-view-all,
    .btn-contact {
        padding: 15px 30px;
        font-size: 1rem;
        min-width: 250px;
        border-radius: 8px;
    }

    .about-card {
        padding: 60px 30px;
    }

    .main-title {
        font-size: 2.5rem;
        letter-spacing: 3px;
    }

    .premium-intro {
        font-size: 1.1rem;
        padding: 1.5rem 1rem;
        max-width: 600px;
    }

    .footer-section {
        padding: 40px 0;
    }

    .footer-brand,
    .footer-contact,
    .footer-links {
        text-align: center;
        margin-bottom: 30px;
    }

    .social-links {
        justify-content: center;
    }

    /* Amélioration de la navigation mobile */
    .navbar-collapse {
        margin-top: 15px;
        padding: 20px;
    }

    .navbar-nav .nav-link {
        font-size: 1.2rem;
        padding: 15px 25px;
        margin: 5px 0;
    }
}

@media (max-width: 480px) {

    .services-preview-section,
    .projects-preview-section,
    .about-preview-section,
    .contact-preview-section {
        padding: 30px 0;
    }

    .section-title {
        font-size: 1.8rem;
        letter-spacing: 1px;
        margin-bottom: 15px;
    }

    .section-subtitle {
        font-size: 1rem;
        max-width: 400px;
    }

    .services-grid,
    .projects-grid {
        gap: 20px;
        max-width: 400px;
        margin: 30px auto 0;
        width: 100%;
        justify-items: center;
    }

    .service-card,
    .project-card {
        padding: 25px 20px;
        margin: 0;
        width: 100%;
        max-width: 380px;
        border-radius: 12px;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }

    .service-icon i {
        font-size: 1.6rem;
    }

    .project-image {
        height: 180px;
    }

    .project-content h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }

    .project-content p {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .btn-discover-missions,
    .btn-view-all,
    .btn-contact {
        min-width: 220px;
        padding: 14px 25px;
        font-size: 0.95rem;
        border-radius: 6px;
    }

    .about-card {
        padding: 40px 20px;
        margin: 0 5px;
    }

    .main-title {
        font-size: 2.2rem;
        letter-spacing: 2px;
        margin-bottom: 30px;
    }

    .premium-intro {
        font-size: 1rem;
        padding: 1.2rem 0.8rem;
        max-width: 500px;
        line-height: 1.7;
    }

    .about-preview-content {
        gap: 30px;
    }

    .about-preview-image img {
        border-radius: 8px;
    }

    .footer-section {
        padding: 30px 0;
    }

    .footer-brand,
    .footer-contact,
    .footer-links {
        margin-bottom: 25px;
    }

    .navbar {
        height: 65px;
        padding: 6px 12px;
    }

    .nav-logo {
        width: 70px;
    }

    .navbar-collapse {
        margin-top: 10px;
        padding: 15px;
    }

    .navbar-nav .nav-link {
        font-size: 1.1rem;
        padding: 12px 20px;
        margin: 3px 0;
    }

    .social-icons a {
        margin: 0 12px;
        font-size: 1.3rem;
    }
}

/* Responsive Premium Signature Section */
@media (max-width: 991px) {
    .premium-signature-section {
        padding: 60px 0;
    }

    .premium-signature-card {
        padding: 40px 30px;
        margin: 0 10px;
    }

    .premium-tagline {
        font-size: 2.2rem;
    }

    .premium-subtitle {
        font-size: 1.2rem;
    }

    .premium-description {
        font-size: 1.1rem;
    }

    .premium-closing {
        font-size: 1.2rem;
    }

    .premium-header .main-title {
        font-size: 2.2rem;
    }

    .premium-legacy-text {
        font-size: 1.1rem;
        line-height: 1.8;
    }
}

@media (max-width: 768px) {
    .premium-signature-section {
        padding: 50px 0;
    }

    .premium-signature-card {
        padding: 35px 25px;
        margin: 0 5px;
        border-radius: 15px;
    }

    .premium-tagline {
        font-size: 1.7rem;
        letter-spacing: 0.5px;
    }

    .premium-subtitle {
        font-size: 1.1rem;
    }

    .premium-description {
        font-size: 1rem;
        line-height: 1.7;
    }

    .premium-closing {
        font-size: 1.1rem;
    }

    .premium-closing::before,
    .premium-closing::after {
        font-size: 2rem;
        top: -3px;
    }

    .premium-closing::before {
        left: -20px;
    }

    .premium-closing::after {
        right: -20px;
    }

    .premium-signature {
        padding: 20px 25px;
    }

    .premium-header .main-title {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }

    .premium-legacy-text {
        font-size: 1rem;
        line-height: 1.7;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .premium-signature-section {
        padding: 40px 0;
    }

    .premium-signature-card {
        padding: 30px 20px;
        margin: 0 5px;
    }

    .premium-tagline {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .premium-subtitle {
        font-size: 1rem;
    }

    .premium-description {
        font-size: 0.95rem;
    }

    .premium-closing {
        font-size: 1rem;
    }

    .premium-closing::before,
    .premium-closing::after {
        font-size: 1.8rem;
        top: -2px;
    }

    .premium-closing::before {
        left: -15px;
    }

    .premium-closing::after {
        right: -15px;
    }

    .premium-header .main-title {
        font-size: 1.6rem;
        line-height: 1.3;
    }

    .premium-legacy-text {
        font-size: 0.95rem;
        line-height: 1.7;
    }
}

/* ===== SECTION PROFILE SELECTION ===== */
.profile-selection-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.profile-selection-content {
    max-width: 1200px;
    margin: 0 auto;
}

.profile-buttons-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.profile-button {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: visible;
    height: 240px;
    display: grid;
    grid-template-rows: 80px 1fr auto;
    align-items: center;
    justify-items: center;
    text-decoration: none;
    color: inherit;
}

.profile-button:hover {
    border-color: var(--premium-accent);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: inherit;
}

.profile-button i {
    font-size: 3rem;
    color: var(--premium-accent);
    transition: all 0.3s ease;
    align-self: center;
}

.profile-button:hover i {
    color: var(--premium-gray);
    transform: scale(1.1);
}

.profile-button .profile-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100%;
}

.profile-button span {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    display: block;
    line-height: 1.3;
    min-height: 2.6em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-button small {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
    display: block;
    min-height: 2.8em;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Responsive Profile Selection */
@media (max-width: 991px) {
    .profile-buttons-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .profile-button {
        padding: 25px 15px;
        height: 220px;
        grid-template-rows: 70px 1fr auto;
    }

    .profile-button i {
        font-size: 2.5rem;
    }

    .profile-button span {
        font-size: 1rem;
        min-height: 2.4em;
    }

    .profile-button small {
        font-size: 0.85rem;
        min-height: 2.6em;
    }
}

@media (max-width: 768px) {
    .profile-selection-section {
        padding: 60px 0;
    }

    .profile-buttons-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .profile-button {
        padding: 25px 20px;
        height: 200px;
        margin: 0 15px;
        grid-template-rows: 60px 1fr auto;
    }

    .profile-button i {
        font-size: 2.2rem;
    }

    .profile-button span {
        font-size: 1rem;
        min-height: 2.2em;
    }

    .profile-button small {
        font-size: 0.85rem;
        min-height: 2.4em;
    }
}

@media (max-width: 480px) {
    .profile-selection-section {
        padding: 50px 0;
    }

    .profile-button {
        padding: 20px 15px;
        height: 180px;
        margin: 0 10px;
        grid-template-rows: 50px 1fr auto;
    }

    .profile-button i {
        font-size: 2rem;
    }

    .profile-button span {
        font-size: 0.95rem;
        min-height: 2em;
    }

    .profile-button small {
        font-size: 0.8rem;
        min-height: 2.2em;
    }
}

/* ===== STYLES PAGES SPÉCIFIQUES ===== */

/* Page Concepteur */
.concepteur-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    text-align: center;
}

.hero-icon {
    margin-bottom: 30px;
}

.hero-icon i {
    font-size: 4rem;
    color: var(--premium-accent);
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--premium-dark);
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.hero-title::after,
.hero-title::before {
    content: none !important;
}

.artisans-hero .hero-title::after,
.artisans-hero .hero-title::before {
    display: none !important;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #555;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 20px;
    font-weight: 500;
}

.hero-description {
    font-size: 1.3rem;
    color: #333;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto;
    font-weight: 400;
}

/* Advantages Section */
.advantages-section {
    padding: 80px 0;
    background: #ffffff;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.advantage-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 15px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.advantage-icon {
    background: white;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    position: relative;
}

.advantage-icon i {
    font-size: 1.5rem;
    color: var(--premium-accent);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.advantage-card p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
}

/* Differentiators Section */
.differentiators-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.differentiators-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.differentiator-item {
    text-align: center;
    padding: 40px 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.differentiator-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.diff-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--premium-accent), var(--premium-gray));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
}

.diff-icon i {
    font-size: 2rem;
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.differentiator-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--premium-dark);
    margin-bottom: 15px;
}

.differentiator-item p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Deliverables Section */
.deliverables-section {
    padding: 80px 0;
    background: #ffffff;
}

.deliverables-list {
    max-width: 800px;
    margin: 50px auto 0;
}

.deliverable-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    margin-bottom: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid var(--premium-accent);
    transition: all 0.3s ease;
}

.deliverable-item:hover {
    background: #f1f3f5;
    transform: translateX(5px);
}

.deliverable-item i {
    font-size: 1.3rem;
    color: var(--premium-accent);
    width: 30px;
    text-align: center;
    flex-shrink: 0;
}

.deliverable-item span {
    font-size: 1rem;
    color: #333;
    line-height: 1.5;
}

/* Process Section */
.process-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.process-timeline {
    max-width: 900px;
    margin: 50px auto 0;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    padding: 30px 0;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 30px;
    top: 80px;
    width: 2px;
    height: calc(100% - 20px);
    background: linear-gradient(to bottom, var(--premium-accent), var(--premium-light-gray));
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--premium-accent), var(--premium-gray));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.step-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--premium-dark);
    margin-bottom: 10px;
}

.step-content p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: var(--premium-dark);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 40px;
    color: white;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-buttons .btn-primary {
    background: white;
    color: var(--premium-dark);
    border: 2px solid white;
}

.cta-buttons .btn-primary:hover {
    background: transparent;
    color: white;
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-buttons .btn-secondary:hover {
    background: white;
    color: var(--premium-dark);
}

/* Responsive Design */
@media (max-width: 991px) {
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .differentiators-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .hero-description {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .concepteur-hero {
        padding: 100px 0 60px;
    }

    .differentiators-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .advantage-card {
        padding: 25px;
        gap: 15px;
    }

    .advantage-icon {
        width: 50px;
        height: 50px;
    }

    .advantage-icon i {
        font-size: 1.3rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .process-step {
        gap: 20px;
    }

    .process-step:not(:last-child)::after {
        left: 25px;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .hero-icon i {
        font-size: 3rem;
    }

    .hero-title {
        font-size: 1.9rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .differentiator-item {
        padding: 30px 20px;
    }

    .diff-icon {
        width: 70px;
        height: 70px;
    }

    .diff-icon i {
        font-size: 1.8rem;
    }
}

/* Page Professionnel & autres pages spécifiques */
.professional-hero,
.artisans-hero,
.particulier-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    text-align: center;
}

/* Styles communs pour toutes les pages */
.professional-hero .hero-icon i,
.artisans-hero .hero-icon i,
.particulier-hero .hero-icon i {
    font-size: 4rem;
    color: var(--premium-accent);
    margin-bottom: 30px;
}

/* Page Professionnel */
.profiles-section {
    padding: 80px 0;
    background: #ffffff;
}

.profiles-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 50px;
}

.profile-item {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 40px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.profile-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.profile-header {
    margin-bottom: 30px;
    position: relative;
}

.profile-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--premium-accent), var(--premium-gray));
    color: white;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.profile-header h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--premium-dark);
    margin-bottom: 10px;
}

.profile-tagline {
    font-size: 1.1rem;
    color: var(--premium-accent);
    font-weight: 500;
    font-style: italic;
}

.profile-description {
    font-size: 1rem;
    color: #333;
    line-height: 1.7;
    margin-bottom: 25px;
}

.intervention-types {
    background: white;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 25px;
    border: 1px solid #e9ecef;
}

.intervention-types span {
    font-weight: 600;
    color: white;
    margin-bottom: 15px;
    display: block;
}

.types-list {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.type-item {
    background: var(--premium-accent);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.benefits-list h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--premium-dark);
    margin-bottom: 15px;
}

.benefits-list ul {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: #333;
    line-height: 1.6;
}

.benefits-list li::before {
    content: '•';
    color: var(--premium-accent);
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.expertises-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.expertises-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.expertise-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.expertise-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.expertise-item i {
    font-size: 1.5rem;
    color: var(--premium-accent);
    width: 30px;
    text-align: center;
}

.expertise-item span {
    font-size: 1rem;
    color: #333;
    font-weight: 500;
}

/* Page Artisans */
.why-collaborate-section {
    padding: 80px 0;
    background: #ffffff;
}

.collaborate-content {
    margin-top: 50px;
}

.collaborate-intro {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 30px;
    font-weight: 500;
}

.pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.pillar-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--premium-light);
    padding: 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(222, 226, 230, 0.5);
}

.pillar-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    background: #ffffff;
}

.pillar-item i {
    font-size: 1.5rem;
    color: var(--premium-accent);
}

.pillar-item span {
    font-weight: 600;
    color: var(--premium-dark);
}

.reasons-list p {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: 500;
}

.reasons-list ul {
    list-style: none;
    padding: 0;
}

.reasons-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 4px;
    font-size: 1rem;
    color: #333;
}

.reasons-list li i {
    color: var(--premium-accent);
    font-size: 1.1rem;
}

.collaborate-conclusion {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.7;
    margin-bottom: 0;
}



.benefits-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--premium-accent), var(--premium-gray));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
}

.benefit-icon i {
    font-size: 1.8rem;
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.benefit-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--premium-dark);
    margin-bottom: 15px;
}

.benefit-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Sections spécifiques page Artisans */
.groupement-section {
    padding: 80px 0;
    background: #ffffff;
}

.groupement-content {
    margin-top: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.groupement-intro {
    font-size: 1.2rem;
    color: #333;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.7;
}

.groupement-services h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--premium-dark);
    margin-bottom: 25px;
    text-align: center;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid var(--premium-accent);
    transition: all 0.3s ease;
}

.service-item:hover {
    background: #f1f3f5;
    transform: translateX(5px);
}

.service-item i {
    font-size: 1.3rem;
    color: var(--premium-accent);
    width: 30px;
    text-align: center;
    flex-shrink: 0;
}

.service-item span {
    font-size: 1rem;
    color: #333;
    line-height: 1.5;
}

.groupement-objective {
    background: linear-gradient(135deg, var(--premium-accent), var(--premium-gray));
    color: white;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.6;
}

.recommendation-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.recommendation-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="%23dee2e6" opacity="0.3"/></svg>') repeat;
    background-size: 30px 30px;
    pointer-events: none;
}

.recommendation-content {
    margin-top: 50px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.recommendation-intro {
    text-align: center;
    margin-bottom: 60px;
}

.recommendation-intro p {
    font-size: 1.4rem;
    color: var(--premium-dark);
    margin-bottom: 40px;
    font-weight: 600;
}

.recommendation-cases {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 60px;
}

.case-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: white;
    padding: 25px;
    border-radius: 15px;
    border: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.case-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--premium-accent), var(--premium-gray));
}

.case-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.case-number {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--premium-accent), var(--premium-gray));
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(108, 117, 125, 0.3);
}

.case-item span:last-child {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
    font-weight: 500;
}

.recommendation-cta {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    padding: 50px;
    border-radius: 25px;
    border: none;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.recommendation-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--premium-accent) 0%, transparent 70%);
    opacity: 0.03;
    animation: pulse 6s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(0.8);
        opacity: 0.03;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.05;
    }
}

.recommendation-cta h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--premium-dark);
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.architect-criteria {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: relative;
    z-index: 1;
}

.architect-criteria li {
    position: relative;
    padding: 15px 20px 15px 50px;
    color: #333;
    line-height: 1.6;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    border: 1px solid rgba(222, 226, 230, 0.5);
    font-weight: 500;
    transition: all 0.3s ease;
}

.architect-criteria li:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateX(5px);
}

.architect-criteria li::before {
    content: '✓';
    color: var(--premium-accent);
    font-weight: bold;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    width: 20px;
    height: 20px;
    background: var(--premium-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.recommendation-form {
    position: relative;
    z-index: 1;
}

.recommendation-form h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--premium-dark);
    margin-bottom: 20px;
}

.recommendation-form p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-recommendation {
    background: linear-gradient(135deg, var(--premium-accent), var(--premium-gray));
    color: white;
    padding: 18px 40px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 8px 25px rgba(108, 117, 125, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-recommendation::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.btn-recommendation:hover::before {
    left: 100%;
}

.btn-recommendation:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(108, 117, 125, 0.4);
    color: white;
    text-decoration: none;
}

.thankyou-section {
    padding: 80px 0;
    background: var(--premium-dark);
    color: white;
    text-align: center;
}

.thankyou-content h2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: white;
}

.thankyou-message {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 40px;
    color: #f8f9fa;
}

/* Responsive pour sections Artisans */
@media (max-width: 768px) {
    .recommendation-cases {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .recommendation-cta {
        padding: 40px 25px;
        border-radius: 20px;
    }

    .case-item {
        padding: 20px;
        gap: 15px;
    }

    .case-number {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .recommendation-intro p {
        font-size: 1.2rem;
    }

    .recommendation-cta h3 {
        font-size: 1.4rem;
    }

    .architect-criteria li {
        padding: 12px 15px 12px 45px;
    }

    .architect-criteria li::before {
        left: 15px;
        width: 18px;
        height: 18px;
    }

    .btn-recommendation {
        padding: 15px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .recommendation-section {
        padding: 60px 0;
    }

    .recommendation-content {
        margin-top: 30px;
    }

    .recommendation-intro {
        margin-bottom: 40px;
    }

    .recommendation-intro p {
        font-size: 1.1rem;
    }

    .recommendation-cases {
        gap: 15px;
        margin-bottom: 40px;
    }

    .case-item {
        padding: 18px;
        flex-direction: row;
        align-items: flex-start;
    }

    .case-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .case-item span:last-child {
        font-size: 0.95rem;
    }

    .recommendation-cta {
        padding: 30px 20px;
    }

    .recommendation-cta h3 {
        font-size: 1.3rem;
    }

    .architect-criteria li {
        padding: 10px 12px 10px 40px;
        font-size: 0.95rem;
    }

    .architect-criteria li::before {
        left: 12px;
        width: 16px;
        height: 16px;
        font-size: 0.8rem;
    }

    .recommendation-form h4 {
        font-size: 1.2rem;
    }

    .recommendation-form p {
        font-size: 1rem;
    }

    .btn-recommendation {
        padding: 14px 25px;
        font-size: 0.95rem;
        width: 100%;
        max-width: 280px;
    }
}

/* Page Particulier */
.client-benefits-section {
    padding: 80px 0;
    background: #ffffff;
}

.client-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.client-benefit-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.client-benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    background: white;
}

.client-differentiators-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.client-differentiators-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.client-differentiator-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.client-differentiator-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.accompaniment-section {
    padding: 80px 0;
    background: #ffffff;
}

.accompaniment-timeline {
    max-width: 800px;
    margin: 50px auto 0;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 30px;
}

.timeline-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--premium-accent), var(--premium-gray));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}

.timeline-icon i {
    font-size: 1.3rem;
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.timeline-content h3 {
    font-size: 1.1rem;
    font-weight: 500;
    color: #333;
    margin: 0;
    line-height: 1.5;
}

.project-types-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.project-types-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.project-type-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.project-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.type-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--premium-accent), var(--premium-gray));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
}

.type-icon i {
    font-size: 1.8rem;
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.project-type-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--premium-dark);
    margin-bottom: 15px;
}

.project-type-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive pour toutes les pages spécifiques */
@media (max-width: 991px) {

    .benefits-grid,
    .client-benefits-grid,
    .client-differentiators-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .project-types-grid {
        grid-template-columns: 1fr;
    }

    .pillars {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {

    .professional-hero,
    .artisans-hero,
    .particulier-hero {
        padding: 100px 0 60px;
    }

    .benefits-grid,
    .client-benefits-grid,
    .client-differentiators-grid,
    .expertises-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .profile-item {
        padding: 30px 20px;
    }

    .timeline-item {
        gap: 20px;
    }

    .timeline-icon {
        width: 50px;
        height: 50px;
    }

    .timeline-icon i {
        font-size: 1.1rem;
    }

    .collaborate-visual {
        margin-top: 30px;
    }
}

@media (max-width: 480px) {

    .professional-hero .hero-icon i,
    .artisans-hero .hero-icon i,
    .particulier-hero .hero-icon i {
        font-size: 3rem;
    }

    .visual-element {
        padding: 40px 25px;
        border-radius: 20px;
        gap: 20px;
    }

    .visual-element i {
        font-size: 3rem;
    }

    .visual-element span {
        font-size: 1.2rem;
    }
}

/* Responsive pour très petits écrans */
@media (max-width: 360px) {

    .services-preview-section,
    .projects-preview-section,
    .about-preview-section,
    .contact-preview-section {
        padding: 25px 0;
    }

    .section-title {
        font-size: 1.6rem;
        letter-spacing: 0.8px;
    }

    .section-subtitle {
        font-size: 0.95rem;
        max-width: 350px;
    }

    .services-grid,
    .projects-grid {
        gap: 18px;
        max-width: 350px;
        margin: 25px auto 0;
        width: 100%;
        justify-items: center;
    }

    .service-card,
    .project-card {
        padding: 22px 18px;
        margin: 0;
        width: 100%;
        max-width: 330px;
    }

    .service-icon {
        width: 55px;
        height: 55px;
        margin-bottom: 12px;
    }

    .service-icon i {
        font-size: 1.5rem;
    }

    .project-image {
        height: 160px;
    }

    .project-content h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    .project-content p {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .btn-discover-missions,
    .btn-view-all,
    .btn-contact {
        min-width: 200px;
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .main-title {
        font-size: 2rem;
        letter-spacing: 1.5px;
        margin-bottom: 25px;
    }

    .premium-intro {
        font-size: 0.95rem;
        padding: 1rem 0.6rem;
        max-width: 450px;
    }

    .navbar {
        height: 60px;
        padding: 5px 10px;
    }

    .nav-logo {
        width: 65px;
    }

    .navbar-collapse {
        margin-top: 8px;
        padding: 12px;
    }

    .navbar-nav .nav-link {
        font-size: 1rem;
        padding: 10px 18px;
        margin: 2px 0;
    }

    .social-icons a {
        margin: 0 10px;
        font-size: 1.2rem;
    }
}

/* ========================================
   LEGAL PAGE PREMIUM STYLES
   ======================================== */

.legal-hero-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.legal-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="legal-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23000" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23legal-pattern)"/></svg>');
    pointer-events: none;
}

.legal-hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #6c757d, #495057);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(108, 117, 125, 0.3);
    letter-spacing: 0.5px;
}

.hero-badge i {
    margin-right: 10px;
    font-size: 1.1rem;
}

.legal-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 20px;
    letter-spacing: -1px;
    line-height: 1.1;
}

.legal-hero-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 40px;
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-decoration {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.decoration-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #6c757d, #495057);
    border-radius: 2px;
}

.legal-content-section {
    padding: 80px 0;
    background: white;
}

.legal-content-wrapper {
    position: relative;
}

.legal-block {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #f1f3f4;
}

.legal-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.legal-block-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 30px 40px;
    border-bottom: 1px solid #dee2e6;
    display: flex;
    align-items: center;
}

.block-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #6c757d, #495057);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    box-shadow: 0 4px 15px rgba(108, 117, 125, 0.3);
    position: relative;
}

.block-icon i {
    color: white;
    font-size: 1.5rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    line-height: 1;
}

.block-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c2c2c;
    margin: 0;
    letter-spacing: 0.3px;
}

.legal-block-content {
    padding: 40px;
}

.info-grid {
    display: grid;
    gap: 25px;
}

.info-item {
    display: flex;
    flex-direction: column;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #6c757d;
}

.info-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.info-value {
    font-size: 1.1rem;
    font-weight: 500;
    color: #2c2c2c;
    line-height: 1.4;
}

.block-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 20px;
    text-align: justify;
}

.block-text:last-child {
    margin-bottom: 0;
}

.highlight-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #6c757d;
    display: flex;
    align-items: flex-start;
    margin-top: 25px;
}

.highlight-box i {
    color: #6c757d;
    font-size: 1.2rem;
    margin-right: 15px;
    margin-top: 2px;
    flex-shrink: 0;
}

.highlight-content {
    flex: 1;
}

.highlight-content strong {
    display: block;
    color: #2c2c2c;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 1.05rem;
}

.highlight-content span {
    color: #495057;
    line-height: 1.6;
}

/* ===============================
   RESPONSIVE DESIGN
   =============================== */

/* Tablette */
@media (max-width: 991.98px) {
    .legal-hero-section {
        padding: 100px 0 60px;
    }

    .legal-hero-title {
        font-size: 2.8rem;
        margin-bottom: 15px;
    }

    .legal-hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 30px;
        padding: 0 20px;
    }

    .legal-content-section {
        padding: 60px 0;
    }

    .legal-block {
        margin-bottom: 35px;
        border-radius: 15px;
    }

    .legal-block-header {
        padding: 25px 30px;
        flex-direction: column;
        text-align: center;
    }

    .block-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .block-title {
        font-size: 1.6rem;
    }

    .legal-block-content {
        padding: 30px;
    }

    .info-grid {
        gap: 20px;
    }

    .info-item {
        padding: 18px;
    }

    .block-text {
        font-size: 1.02rem;
        text-align: left;
    }
}

/* Mobile */
@media (max-width: 767.98px) {
    .legal-hero-section {
        padding: 80px 0 40px;
    }

    .legal-hero-title {
        font-size: 2.2rem;
        margin-bottom: 15px;
        line-height: 1.2;
    }

    .legal-hero-subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
        padding: 0 15px;
        line-height: 1.5;
    }

    .decoration-line {
        width: 60px;
        height: 3px;
    }

    .legal-content-section {
        padding: 40px 0;
    }

    .legal-block {
        margin-bottom: 25px;
        border-radius: 12px;
        margin-left: 10px;
        margin-right: 10px;
    }

    .legal-block-header {
        padding: 20px 15px;
        flex-direction: column;
        text-align: center;
    }

    .block-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 12px;
    }

    .block-icon i {
        font-size: 1.3rem;
    }

    .block-title {
        font-size: 1.4rem;
        line-height: 1.3;
    }

    .legal-block-content {
        padding: 20px 15px;
    }

    .info-grid {
        gap: 15px;
    }

    .info-item {
        padding: 15px;
        margin-bottom: 10px;
        border-left-width: 3px;
    }

    .info-label {
        font-size: 0.85rem;
        margin-bottom: 6px;
    }

    .info-value {
        font-size: 1rem;
        line-height: 1.3;
    }

    .block-text {
        font-size: 0.95rem;
        line-height: 1.6;
        text-align: left;
        margin-bottom: 15px;
    }

    .highlight-box {
        padding: 18px 15px;
        flex-direction: column;
        margin-top: 20px;
        border-left-width: 3px;
    }

    .highlight-box i {
        margin-right: 0;
        margin-bottom: 8px;
        align-self: center;
        font-size: 1.1rem;
    }

    .highlight-content strong {
        font-size: 1rem;
        margin-bottom: 6px;
        text-align: center;
    }

    .highlight-content span {
        font-size: 0.9rem;
        line-height: 1.5;
        text-align: center;
    }
}

/* Navigation mobile spécifique */
@media (max-width: 767.98px) {
    .navbar-collapse {
        background: white;
        border-radius: 12px;
        margin-top: 10px;
        padding: 20px 15px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        border: 1px solid #e9ecef;
    }

    .navbar-nav {
        padding: 0;
        gap: 8px;
    }

    .nav-item {
        margin: 0;
        width: 100%;
    }

    .nav-link {
        padding: 15px 20px !important;
        margin: 0;
        border-radius: 8px;
        font-weight: 600;
        font-size: 1.05rem;
        color: #2c2c2c !important;
        background: #f8f9fa;
        border: 1px solid #e9ecef;
        text-align: center;
        transition: all 0.3s ease;
    }

    .nav-link:hover,
    .nav-link:focus {
        background: #e9ecef !important;
        color: #1a1a1a !important;
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    /* Dropdown "Vous êtes ?" amélioré */
    .dropdown-toggle {
        position: relative;
        background: #f8f9fa !important;
        color: #2c2c2c !important;
        font-weight: 600 !important;
        padding: 15px 20px !important;
        border-radius: 8px !important;
        border: 1px solid #e9ecef !important;
        text-align: center !important;
        width: 100% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .dropdown-toggle::after {
        margin-left: 8px;
        font-size: 0.8rem;
        vertical-align: middle;
    }

    .dropdown-toggle:hover,
    .dropdown-toggle:focus {
        background: #e9ecef !important;
        color: #1a1a1a !important;
        border-color: #dee2e6 !important;
    }

    .profile-dropdown {
        position: static !important;
        transform: none !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
        border: 1px solid #dee2e6 !important;
        background: white !important;
        border-radius: 12px !important;
        margin-top: 8px;
        width: 100% !important;
        padding: 8px;
        max-height: 60vh !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch !important;
        z-index: 1050 !important;
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
    }

    /* Style amélioré des éléments du dropdown */
    .profile-dropdown-item {
        padding: 16px 18px !important;
        margin: 6px 0;
        border-radius: 10px;
        background: #f8f9fa;
        border: 1px solid #e9ecef;
        transition: all 0.3s ease;
        display: flex !important;
        align-items: center;
        justify-content: flex-start;
        font-weight: 500;
        color: #2c2c2c;
        position: relative;
        overflow: hidden;
    }

    .profile-dropdown-item::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 4px;
        background: linear-gradient(135deg, #6c757d, #495057);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .profile-dropdown-item i {
        margin-right: 15px;
        font-size: 1.2rem;
        color: #6c757d;
        width: 24px;
        height: 24px;
        text-align: center;
        position: relative;
        transition: all 0.3s ease;
    }

    .profile-dropdown-item span {
        font-size: 1.05rem;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .profile-dropdown-item small {
        display: block;
        font-size: 0.85rem;
        color: #6c757d;
        margin-top: 4px;
        font-weight: normal;
        line-height: 1.3;
    }

    .profile-dropdown-item:hover,
    .profile-dropdown-item:focus {
        background: #e9ecef !important;
        color: #1a1a1a !important;
        transform: translateX(4px);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        border-color: #d1d5db;
    }

    .profile-dropdown-item:hover::before,
    .profile-dropdown-item:focus::before {
        opacity: 1;
    }

    .profile-dropdown-item:hover i,
    .profile-dropdown-item:focus i {
        color: #495057;
        transform: scale(1.1);
    }

    /* Social icons mobile */
    .social-icons {
        justify-content: center;
        margin-top: 20px;
        margin-left: 0 !important;
        padding-top: 15px;
        border-top: 1px solid #e9ecef;
    }

    .social-icons a {
        margin: 0 15px;
        font-size: 1.3rem;
        padding: 12px;
        background: #f8f9fa;
        border-radius: 50%;
        border: 1px solid #e9ecef;
        color: #6c757d;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 48px;
        height: 48px;
    }

    .social-icons a:hover {
        background: #e9ecef;
        color: #495057;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    /* Amélioration de la visibilité du bouton hamburger */
    .navbar-toggler {
        border: 2px solid #e9ecef !important;
        border-radius: 8px !important;
        padding: 8px 12px !important;
        background: #f8f9fa !important;
        transition: all 0.3s ease;
    }

    .navbar-toggler:hover,
    .navbar-toggler:focus {
        background: #e9ecef !important;
        border-color: #d1d5db !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
    }

    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2844, 44, 44, 0.95%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
    }

    /* État actif du dropdown */
    .dropdown.show .nav-link,
    .dropdown.show .dropdown-toggle {
        background: #dee2e6 !important;
        color: #1a1a1a !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        border-color: #d1d5db !important;
    }

    /* Styles spécifiques pour le dropdown Vous êtes */
    .dropdown-menu.profile-dropdown.show {
        animation: fadeInDown 0.3s ease-out;
        display: block !important;
        position: absolute !important;
    }

    /* Correction pour permettre le défilement sur mobile */
    .navbar-collapse {
        max-height: 80vh !important;
        overflow-y: auto !important;
    }

    /* Positionnement du dropdown pour permettre le défilement */
    .dropdown {
        position: relative !important;
    }

    @keyframes fadeInDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Amélioration de l'accessibilité */
    .nav-link:focus,
    .profile-dropdown-item:focus {
        outline: 2px solid #6c757d !important;
        outline-offset: 2px !important;
    }

    /* Animation d'ouverture du menu */
    .navbar-collapse.collapsing,
    .navbar-collapse.show {
        animation: slideDown 0.3s ease-out;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

/* Script pour améliorer le comportement du dropdown mobile */

/* Très petit mobile */
@media (max-width: 575.98px) {

    /* Ajustement des boutons profile pour très petits écrans */
    .profile-button {
        max-width: 280px !important;
        min-height: 160px !important;
        padding: 20px 10px !important;
        margin-bottom: 15px !important;
    }

    .profile-button .icon-circle {
        width: 65px !important;
        height: 65px !important;
        margin-bottom: 12px !important;
    }

    .profile-button .icon-circle i {
        font-size: 1.5rem !important;
    }

    .profile-button h3 {
        font-size: 1.2rem !important;
        margin-bottom: 6px !important;
    }

    .profile-button small {
        font-size: 0.85rem !important;
        padding: 0 5px !important;
    }

    /* Espacement des boutons */
    .profile-buttons {
        gap: 15px !important;
    }

    /* Amélioration du dropdown Vous êtes pour très petits écrans */
    .dropdown-toggle {
        padding: 12px 15px !important;
        font-size: 1rem !important;
    }

    .profile-dropdown {
        padding: 8px !important;
        border-radius: 10px !important;
        position: absolute !important;
        top: 100% !important;
        bottom: auto !important;
        max-height: 70vh !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch !important;
        min-width: 280px !important;
        width: auto !important;
    }

    /* Assurer que le body peut défiler quand le dropdown est ouvert */
    body {
        overflow-y: auto !important;
    }

    /* Correction pour le scroll sur iOS */
    .dropdown-menu {
        -webkit-overflow-scrolling: touch !important;
    }

    .profile-dropdown-item {
        padding: 18px 20px !important;
        margin: 4px 0 !important;
        border-radius: 8px !important;
        min-height: 50px !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .profile-dropdown-item i {
        display: none !important;
    }

    .profile-dropdown-item span {
        font-size: 1rem !important;
        line-height: 1.4 !important;
        flex: 1 !important;
        width: 100% !important;
        text-align: center !important;
    }

    .profile-dropdown-item small {
        font-size: 0.8rem !important;
    }

    .legal-hero-section {
        padding: 60px 0 30px;
    }

    .legal-hero-title {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }

    .legal-hero-subtitle {
        font-size: 0.9rem;
        padding: 0 10px;
    }

    .legal-content-section {
        padding: 30px 0;
    }

    .legal-block {
        margin-left: 5px;
        margin-right: 5px;
        margin-bottom: 20px;
    }

    .legal-block-header {
        padding: 15px 10px;
    }

    .block-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 10px;
    }

    .block-icon i {
        font-size: 1.2rem;
    }

    .block-title {
        font-size: 1.2rem;
    }

    .legal-block-content {
        padding: 15px 10px;
    }

    .info-item {
        padding: 12px;
    }

    .info-label {
        font-size: 0.8rem;
    }

    .info-value {
        font-size: 0.95rem;
    }

    .block-text {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }

    .highlight-box {
        padding: 15px 10px;
    }

    .highlight-content strong {
        font-size: 0.95rem;
    }

    .highlight-content span {
        font-size: 0.85rem;
    }

    /* Amélioration touch sur très petit mobile */
    .legal-block {
        touch-action: manipulation;
    }

    .block-icon {
        border-radius: 12px;
    }

    .info-item {
        border-radius: 8px;
    }

    .highlight-box {
        border-radius: 8px;
    }
}

/* Optimisations tactiles générales */
@media (hover: none) and (pointer: coarse) {
    .legal-block:hover {
        transform: none;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    }

    .legal-block {
        touch-action: manipulation;
    }

    /* Amélioration de la zone tactile pour les liens */
    .footer-links a,
    .social-icon {
        min-height: 44px;
        display: flex;
        align-items: center;
        padding: 8px 12px;
    }
}

/* ===============================
   CENTRAGE MOBILE GLOBAL
   =============================== */

@media (max-width: 767.98px) {

    /* Centrage des titres de sections */
    .section-title {
        text-align: center !important;
    }

    /* Centrage des sous-titres */
    .section-subtitle {
        text-align: center !important;
    }

    /* Centrage des éléments premium */
    .premium-signature-section .container {
        text-align: center;
    }

    .premium-signature-card {
        text-align: center;
    }

    /* Centrage des boutons profile et uniformisation des tailles */
    .profile-buttons {
        justify-content: center !important;
        text-align: center;
    }

    .profile-button {
        margin: 0 auto 20px auto;
        text-align: center;
        width: 100% !important;
        max-width: 320px !important;
        height: auto !important;
        min-height: 180px !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
    }

    .profile-button h3 {
        font-size: 1.3rem !important;
        margin-bottom: 8px !important;
        min-height: auto !important;
    }

    .profile-button small {
        font-size: 0.9rem !important;
        line-height: 1.4 !important;
        min-height: auto !important;
        padding: 0 10px !important;
    }

    /* Uniformisation des icônes */
    .profile-button .icon-circle {
        width: 80px !important;
        height: 80px !important;
        margin: 0 auto 15px auto !important;
        background: linear-gradient(135deg, #6c757d, #495057) !important;
    }

    .profile-button .icon-circle i {
        font-size: 1.8rem !important;
    }

    /* Style uniforme des cartes */
    .profile-button {
        background: white !important;
        border: 1px solid #e9ecef !important;
        border-radius: 15px !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
        transition: all 0.3s ease !important;
        padding: 25px 15px !important;
    }

    .profile-button:hover,
    .profile-button:focus {
        transform: translateY(-5px) !important;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12) !important;
        border-color: #dee2e6 !important;
    }

    /* Centrage des éléments de navigation */
    .nav-buttons {
        justify-content: center !important;
        text-align: center;
    }

    .btn-back,
    .btn-next {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 120px;
        text-align: center;
    }

    /* Centrage des galleries */
    .gallery-grid {
        justify-content: center !important;
    }

    /* Centrage des cards de projets */
    .featured-projects-grid {
        justify-content: center !important;
    }

    .featured-project-card {
        margin: 0 auto 30px auto;
        text-align: center;
    }

    /* Centrage des éléments hero */
    .hero-content,
    .hero-section .container,
    .artisans-hero .container {
        text-align: center !important;
    }

    .hero-title,
    .hero-subtitle,
    .hero-description {
        text-align: center !important;
    }

    /* Centrage des piliers */
    .pillars {
        justify-content: center !important;
        text-align: center;
    }

    .pillar-item {
        text-align: center;
        margin: 0 auto 30px auto;
    }

    /* Centrage des éléments de contact premium */
    .premium-contact-section .contact-info-content {
        text-align: center;
    }

    .contact-details {
        text-align: center;
    }

    /* Centrage des formulaires */
    .form-header {
        text-align: center !important;
    }

    .form-actions {
        text-align: center !important;
    }

    /* Centrage des pages "Vous êtes ?" */
    .main-hero .container,
    .artisans-hero .container {
        text-align: center;
    }

    .hero-badge {
        margin: 0 auto 20px auto;
        display: inline-flex;
    }

    .cta-section .container {
        text-align: center;
    }

    .cta-content {
        text-align: center;
    }

    .btn-cta {
        margin: 20px auto 0 auto;
        display: inline-block;
    }

    /* Centrage des icônes dans les cercles (déjà fait mais renforcement) */
    .icon-circle i,
    .contact-icon i,
    .block-icon i {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        line-height: 1;
    }

    /* Centrage des éléments de recommendation */
    .recommendation-section .container {
        text-align: center;
    }

    .case-item {
        text-align: center;
        margin: 0 auto 20px auto;
    }

    .architect-criteria {
        text-align: center;
        margin: 20px auto;
    }

    .btn-recommendation {
        margin: 20px auto 0 auto;
        display: inline-block;
    }
}

/* ===============================
   FOOTER MOBILE CENTRÉ
   =============================== */

@media (max-width: 767.98px) {
    .footer-section .container .row {
        text-align: center;
    }

    .footer-brand {
        text-align: center;
        margin-bottom: 30px;
    }

    .footer-company-name h4 {
        text-align: center;
    }

    .footer-company-name p {
        text-align: center;
    }

    .footer-contact {
        text-align: center;
        margin-bottom: 30px;
    }

    .footer-contact h5 {
        text-align: center;
        margin-bottom: 20px;
    }

    .contact-item {
        justify-content: center;
        text-align: center;
        margin-bottom: 4px !important;
    }

    .contact-item i {
        margin-right: 8px;
    }

    .footer-links {
        text-align: center;
    }

    .footer-links h5 {
        text-align: center;
        margin-bottom: 20px;
    }

    .footer-links ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-links ul li {
        margin: 8px 0;
    }

    .footer-links ul li a {
        text-align: center;
        justify-content: center;
    }

    .footer-social {
        text-align: center;
        margin-top: 25px;
    }

    .footer-social h6 {
        text-align: center;
        margin-bottom: 15px;
    }

    .social-links {
        display: flex;
        justify-content: center;
        gap: 15px;
    }

    .social-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 44px;
        min-height: 44px;
    }
}

/* ========================================
   PREMIUM CONTACT SECTION STYLES
   ======================================== */

.premium-contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.premium-contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="0.5" fill="%23000" opacity="0.02"/><circle cx="75" cy="75" r="0.5" fill="%23000" opacity="0.02"/><circle cx="50" cy="10" r="0.5" fill="%23000" opacity="0.02"/><circle cx="20" cy="80" r="0.5" fill="%23000" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.premium-contact-container {
    max-width: 1200px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    overflow: hidden;
    background: white;
    position: relative;
}

/* ===============================
   CONTACT INFO PANEL
   =============================== */

.contact-info-panel {
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    padding: 60px 40px;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.contact-info-panel::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
    border-radius: 50%;
    transform: translate(50%, -50%);
}

.contact-info-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-header {
    margin-bottom: 40px;
}

.contact-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    letter-spacing: 1px;
    line-height: 1.2;
}

.contact-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: 300;
}

.contact-details {
    margin: 40px 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #6c757d, #495057);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(108, 117, 125, 0.3);
    position: relative;
}

.contact-icon i {
    color: white;
    font-size: 1.2rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    line-height: 1;
}

.contact-content {
    display: flex;
    flex-direction: column;
}

.contact-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 400;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-value {
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.4;
}

.contact-decoration {
    margin-top: auto;
}

.decoration-line {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #6c757d, #495057);
    border-radius: 2px;
    margin-top: 20px;
}

/* ===============================
   CONTACT FORM PANEL
   =============================== */

.contact-form-panel {
    padding: 60px 50px;
    background: white;
    height: 100%;
}

.form-header {
    margin-bottom: 40px;
    text-align: center;
}

.form-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.form-subtitle {
    color: #6c757d;
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 0;
}

.premium-form {
    max-width: 500px;
    margin: 0 auto;
}

.form-row {
    margin-bottom: 30px;
}

.form-group-premium {
    position: relative;
}

.premium-label {
    display: block;
    color: #2c2c2c;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

.premium-input {
    width: 100%;
    padding: 15px 0;
    font-size: 1rem;
    color: #2c2c2c;
    background: transparent;
    border: none;
    border-bottom: 2px solid #e9ecef;
    outline: none;
    transition: all 0.3s ease;
    font-family: inherit;
}

.premium-input:focus {
    border-bottom-color: #6c757d;
}

.premium-input::placeholder {
    color: #adb5bd;
    font-weight: 300;
}

.premium-textarea {
    min-height: 120px;
    resize: vertical;
    padding-top: 15px;
}

.input-underline {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #6c757d, #495057);
    transition: width 0.3s ease;
}

.premium-input:focus+.input-underline {
    width: 100%;
}

.form-actions {
    margin-top: 40px;
    text-align: center;
}

.premium-submit-btn {
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    color: white;
    border: none;
    padding: 18px 45px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 8px 25px rgba(44, 44, 44, 0.3);
    min-width: 200px;
    white-space: nowrap;
}

.premium-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(44, 44, 44, 0.4);
}

.btn-overlay {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.premium-submit-btn:hover .btn-overlay {
    left: 100%;
}

.premium-submit-btn:active {
    transform: translateY(0);
}

.premium-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
    box-shadow: 0 8px 25px rgba(44, 44, 44, 0.2);
}

.premium-submit-btn:disabled:hover {
    transform: none;
    box-shadow: 0 8px 25px rgba(44, 44, 44, 0.2);
}

/* ===============================
   RESPONSIVE DESIGN
   =============================== */

@media (max-width: 991.98px) {
    .premium-contact-section {
        padding: 60px 0;
    }

    .premium-contact-container {
        margin: 0 20px;
        border-radius: 15px;
    }

    .contact-info-panel {
        padding: 40px 30px;
        text-align: center;
    }

    .contact-form-panel {
        padding: 40px 30px;
    }

    .contact-title {
        font-size: 1.8rem;
    }

    .form-title {
        font-size: 1.7rem;
    }

    .contact-item {
        justify-content: center;
        text-align: center;
        flex-direction: column;
        align-items: center;
    }

    .contact-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

@media (max-width: 767.98px) {
    .premium-contact-section {
        padding: 40px 0;
    }

    .premium-contact-container {
        margin: 0 15px;
        border-radius: 10px;
    }

    .contact-info-panel {
        padding: 30px 20px;
    }

    .contact-form-panel {
        padding: 30px 20px;
    }

    .contact-title {
        font-size: 1.6rem;
    }

    .form-title {
        font-size: 1.5rem;
    }

    .premium-submit-btn {
        padding: 15px 35px;
        font-size: 1rem;
        min-width: 180px;
    }

    .contact-subtitle {
        font-size: 1rem;
    }

    .form-subtitle {
        font-size: 1rem;
    }

    /* Styles pour les projets en mobile */
    .project-card .info-label {
        min-width: 120px !important;
        width: 120px !important;
        font-size: 0.95em !important;
    }

    .project-card .info-value {
        margin-left: 20px !important;
        font-size: 0.95em !important;
    }

    .project-card .info-label i {
        margin-right: 10px !important;
        width: 16px !important;
    }
}

/* Mobile très petit */
@media (max-width: 575.98px) {
    .project-card .info-label {
        min-width: 110px !important;
        width: 110px !important;
        font-size: 0.9em !important;
    }

    .project-card .info-value {
        margin-left: 18px !important;
        font-size: 0.9em !important;
    }

    .project-card .info-label i {
        margin-right: 8px !important;
        width: 14px !important;
        font-size: 1em !important;
    }
}