@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

body {
    margin: 0;
    font-family: "Inter", sans-serif;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

header {
    padding:10px 0;
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.logo {
    color:#b00000;
    font-size:1.2rem;
}

.logo img {
    width:120px;
}

.navbar ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.navbar ul li {
    display: inline;
    margin-left: 20px;
}

.navbar ul li a {
    text-decoration: none;
    color: #284dab;
    transition: color 0.3s ease;
}

.navbar ul li a:hover {
    color: #b00000;
}

.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.burger span {
    height: 3px;
    width: 25px;
    background-color: #284dab;
    margin: 3px 0;
}

.menu-overlay {
    display:none;
}

@media (max-width: 768px) {
    .navbar {
        display: none;
    }

    .burger {
        display: flex;
        z-index: 20;
    }

    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(40, 77, 171, 1);
        display: none;
        justify-content: center;
        align-items: center;
        z-index: 10;
        transition: opacity 0.3s ease;
        opacity: 0;
    }

    .menu-overlay.show {
        display: flex;
        opacity: 1;
    }

    .mobile-nav ul {
        list-style-type: none;
        padding: 0;
        text-align: center;
        color: white;
        font-size: 24px;
    }

    .mobile-nav ul li {
        margin-bottom: 20px;
    }

    .mobile-nav ul li a {
        text-decoration: none;
        color: white;
        transition: color 0.3s ease; 
    }

    .mobile-nav ul li a:hover {
        color: #b00000; 
    }
}

/* Hero */

.hero {
    height: 70vh;
    background-image: linear-gradient(rgba(16, 19, 21, 0.3), rgba(16, 19, 21, 0.3)), url('./images/bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.hero-overlay {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 10%;
}

.hero-content {
    flex: 1;
    text-align: left;
    max-width: 800px;
}

.hero-content img {
    width: 100%;
    max-width: 500px;
    filter: drop-shadow(0 0 10px #ffffff);
    border-radius: 8px;
}

.hero h1 {
    font-size: 4rem;

    margin: 0;
    font-family: 'Inter', sans-serif;
    color: #ffffff;
    line-height: 1.2;
}

.hero h1 span {
    display: block;
    font-size: 3rem;
    color: #b00000;
}

.hero p {
    font-size: 1.5rem;
    margin: 20px 0 30px;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    color: #ffffff;
}

.cta-button {
    display: inline-block;
    background-color: #b00000;
    color: white;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(176, 0, 0, 0.2);
}

.cta-button:hover {
    background-color: #284dab;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(40, 77, 171, 0.3);
}

.img-storistesdefrance {
    flex: 1;
    position: relative;
    max-width: 500px;
    background:#FFF;
    padding:10px;
    border-radius:24px;
}

.img-storistesdefrance img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.widget-container {
    position: absolute;
    top:-140px;
    left:-15%;
    width: 28%;
    height: 120px;
    border-radius: 10px;
    overflow: hidden;
}

@media (max-width: 992px) {
    .hero {
        height: auto;
        min-height: 60vh;
        display:flex;
        align-items: center;
        justify-content: center;
    }
    .hero-overlay {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 50px 5%;
    }

    .hero-content, .img-storistesdefrance {
        max-width: 100%;
        text-align: center;
    }

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

    .hero h1 span {
        font-size: 3.2rem;
    }

    .hero p {
        font-size: 2.2rem;
    }

    .img-storistesdefrance {
        margin-top: 50px;
    }  
    
    .widget-container {
        display:none;
    }

    .img-storistesdefrance {
        display:none;
    }
}

@media (max-width: 768px) {

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

    .hero h1 span {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.6rem;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2.5rem;
    }

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

    .hero p {
        font-size: 1.3rem;
    }

    .cta-button {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}

/* Presentation */

.sfr-expertise {
    padding: 80px 0;
    background-color: #f9f9f9;
}

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

.sfr-title {
    font-size: 3rem;
    color: #284dab;
    text-align: center;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.sfr-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: #b00000;
    margin: 20px auto 0;
}

.sfr-subtitle {
    font-size: 1.2rem;
    color: #666;
    text-align: center;
    margin-bottom: 50px;
}

.sfr-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.sfr-service-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.sfr-service-card:hover {
    transform: translateY(-5px);
}

.sfr-service-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.sfr-service-content {
    padding: 20px;
}

.sfr-service-link {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #b00000; /* Couleur du bouton */
    color: white;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.sfr-service-link:hover {
    background-color: #900000; /* Couleur au survol */
}


.sfr-service-content h3 {
    font-size: 1.8rem;
    color: #284dab;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
}

.sfr-service-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #b00000;
}

.sfr-service-content p {
    color: #666;
}

.sfr-service-area {
    text-align: center;
    margin-bottom: 50px;
}

.sfr-service-area h3 {
    font-size: 1.8rem;
    color: #284dab;
    margin-bottom: 15px;
}

.sfr-service-area p {
    color: #666;
}

.sfr-cta-box {
    background-color: #284dab;
    color: #fff;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
}

.sfr-cta-box p {
    font-style: italic;
    margin-bottom: 30px;
    font-size:2rem;
}

.sfr-cta-button {
    display: inline-block;
    background-color: #b00000;
    color: #fff;
    padding: 12px 25px;
    border-radius: 5px;
    font-size:1.5rem;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.sfr-cta-button:hover {
    background-color: #900000;
}

@media (max-width: 768px) {
    .sfr-expertise {
        padding: 60px 0;
    }

    .sfr-title {
        font-size: 2rem;
    }

    .sfr-subtitle {
        font-size: 1rem;
    }

    .sfr-services-grid {
        grid-template-columns: 1fr;
    }
}

/* Partenaires */

.sfr-partners {
    background: linear-gradient(135deg, #f9fafb 0%, #f1f5f9 100%);
    padding: 80px 0;
    overflow: hidden;
}

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

.sfr-partners-title {
    font-size: 3rem;
    color: #284dab;
    text-align: center;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.sfr-partners-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: #b00000;
    margin: 20px auto 0;
}

.sfr-partners-subtitle {
    text-align: center;
    color: #666;
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
}

.sfr-partners-track {
    width: 100%;
    overflow: hidden;
}

.sfr-partners-logos {
    display: flex;
    animation: scroll 60s linear infinite;
}

.sfr-partner-logo {
    flex: 0 0 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.sfr-partner-logo img {
    max-width: 150px;
    max-height: 100px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.sfr-partner-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-360%);
    }
}

@media (max-width: 768px) {
    .sfr-partners-title {
        font-size: 2.5rem;
    }
    
    .sfr-partners-subtitle {
        font-size: 1rem;
    }
    
    .sfr-partner-logo {
        flex: 0 0 150px;
    }
    
    .sfr-partner-logo img {
        max-width: 120px;
        max-height: 80px;
    }
}



/* Realisations */

.sfr-realisations-teaser {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.sfr-realisations-title {
    font-size: 3rem;
    color: #284dab;
    text-align: center;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.sfr-realisations-subtitle {
    text-align: center;
    color: #666;
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
}

.sfr-realisations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.sfr-realisation-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sfr-realisation-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.sfr-realisation-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
    transform: scale(1.1);
}

.sfr-realisation-card:hover img {
    transform: scale(1.15);
}

.sfr-realisation-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.sfr-realisation-card:hover .sfr-realisation-overlay {
    transform: translateY(0);
}

.sfr-realisation-overlay h3 {
    margin: 0 0 10px;
    font-size: 1.5rem;
}

.sfr-realisation-overlay p {
    margin: 0;
    font-size: 1rem;
    opacity: 0.8;
}

.sfr-realisations-cta {
    text-align: center;
    margin-top: 40px;
}

.sfr-btn-primary {
    display: inline-block;
    background-color: #b00000;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.sfr-btn-primary:hover {
    background-color: #284dab;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .sfr-realisations-grid {
        grid-template-columns: 1fr;
    }
}

/* F.A.Q */

.sfr-faq-elegant {
    background: linear-gradient(135deg, #f8f9fa 0%, #f1f3f5 100%);
    padding: 100px 0;
}

.sfr-faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.sfr-faq-header h2 {
    font-size: 3rem;
    color: #284dab;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.sfr-faq-header p {
    color: #666;
    font-size: 1.1rem;
}

.sfr-faq-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.sfr-faq-item {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    overflow: hidden;
}

.sfr-faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.sfr-faq-question {
    display: flex;
    align-items: center;
    padding: 25px;
    cursor: pointer;
    border-bottom: 1px solid #f1f3f5;
}

.sfr-faq-number {
    font-size: 2rem;
    color: #284dab;
    margin-right: 20px;
    font-weight: bold;
    opacity: 0.5;
}

.sfr-faq-question h3 {
    font-size: 1.2rem;
    color: #284dab;
    margin: 0;
}

.sfr-faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.sfr-faq-answer p {
    color: #666;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .sfr-faq-wrapper {
        grid-template-columns: 1fr;
    }
}

/* Footer */

.sfr-footer {
    background-color: #f8f9fa;
    padding: 60px 0 30px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

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

.sfr-footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.sfr-footer-logo img {
    max-height: 80px;
}

.sfr-footer-nav ul {
    display: flex;
    list-style-type: none;
    gap: 30px;
    padding:0;
}

.sfr-footer-nav ul li a {
    text-decoration: none;
    color: #284dab;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.sfr-footer-nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #b00000;
    transition: width 0.3s ease;
}

.sfr-footer-nav ul li a:hover {
    color: #b00000;
}

.sfr-footer-nav ul li a:hover::after {
    width: 100%;
}

.sfr-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(0,0,0,0.1);
    padding-top: 20px;
}

.sfr-footer-copyright {
    color: #666;
    font-size: 0.9rem;
}

.sfr-footer-legal a {
    color: #284dab;
    text-decoration: none;
    transition: color 0.3s ease;
}

.sfr-footer-legal a:hover {
    color: #b00000;
}

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

    .sfr-footer-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-top: 20px;
    }

    .sfr-footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .sfr-footer-copyright {
        margin-bottom: 15px;
    }
}

/* C.T.A */

.sfr-contact-teaser {
    background: linear-gradient(135deg, rgba(40, 77, 171, 0.5), rgba(176, 0, 0, 0.5)), 
                url('./images/bg2.jpg') no-repeat center center;
    background-size: cover;
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.sfr-contact-overlay {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.sfr-contact-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.sfr-contact-content h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.sfr-contact-content p {
    font-size: 1.2rem;
    opacity: 0.8;
    margin-bottom: 40px;
}

.sfr-contact-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.sfr-contact-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    justify-content: center;
    transition: all 0.3s ease;
}

.sfr-primary-button {
    background-color: #b00000;
    color: white;
}

.sfr-secondary-button {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.sfr-contact-button svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.sfr-contact-button:hover svg {
    transform: translateX(5px);
}

.sfr-contact-details {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.sfr-contact-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sfr-contact-info svg {
    width: 24px;
    height: 24px;
}

@media (max-width: 768px) {
    .sfr-contact-content h2 {
        font-size: 2.5rem;
    }

    .sfr-contact-actions {
        flex-direction: column;
    }

    .sfr-contact-details {
        flex-direction: column;
        align-items: center;
    }
}

/* Produits */

.sfr-products {
    background-color: #f9f9f9;
    padding: 80px 20px;
}

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

.sfr-products-title {
    font-size: 2.5rem;
    color: #284dab;
    text-align: center;
    margin-bottom: 20px;
}

.sfr-products-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 50px;
}

.sfr-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.sfr-product-card {
    background-color: white;
    border-radius: 15px;
    overflow: hidden; /* Pour s'assurer que l'image ne déborde pas */
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Ajout de la transition */
}

.sfr-product-card:hover {
    transform: translateY(-5px); /* Légère élévation au survol */
    box-shadow: 0 15px 40px rgba(0,0,0,0.2); /* Ombre plus prononcée au survol */
}


.product-image {
    width: 100%;
    height: 250px; /* S'assure que l'image garde ses proportions */
    object-fit: cover;
}

.sfr-product-content {
    padding: 20px;
}

.sfr-product-content h3 {
    font-size: 1.5rem;
    color: #284dab;
}

.sfr-product-content p {
    color: #666;
}

.sfr-products-cta {
    text-align: center;
    margin-top: 50px;
}

.sfr-products-cta p {
    font-size: 1rem;
    margin-bottom: 20px;
}

.sfr-cta-button {
    display: inline-block;
    background-color: #b00000; /* Couleur du bouton */
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
}

.sfr-cta-button:hover {
    background-color: #900000; /* Couleur au survol */
}

/* Produits Overview */

.sfr-product-overview {
    background-color: #f9f9f9;
    padding: 80px 20px;
}

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

.sfr-overview-title {
    font-size: 2.5rem;
    color: #284dab;
    text-align: center;
    margin-bottom: 20px;
}

.sfr-overview-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 50px;
}

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

.sfr-overview-item {
    background-color: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center; /* Centrer le texte pour un aspect plus élégant */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sfr-overview-item:hover {
    transform: translateY(-5px); /* Légère élévation au survol */
    box-shadow: 0 15px 40px rgba(0,0,0,0.2); /* Ombre plus prononcée au survol */
}

.sfr-overview-item i {
    font-size: 2rem; /* Taille des icônes */
    color: #b00000; /* Couleur des icônes */
    margin-bottom: 10px; /* Espace entre l'icône et le titre */
}

.sfr-overview-item h3 {
    font-size: 1.5rem;
    color: #284dab;
}

.sfr-overview-item p {
    color: #666;
}

.sfr-products-cta {
    text-align: center;
    margin-top: 50px; /* Espace au-dessus du CTA */
}

.sfr-products-cta p {
    font-size: 1rem;
    margin-bottom: 20px; /* Espace entre le texte et le bouton */
}

.sfr-cta-button {
    display: inline-block;
    background-color: #b00000; /* Couleur du bouton */
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
}

.sfr-cta-button:hover {
    background-color: #900000; /* Couleur au survol */
}

h2 {
    text-transform: uppercase;
}

h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: #b00000;
    margin: 20px auto 0;
}

/* Réalisations */

.sfr-realisations {
    background-color: #f9f9f9;
    padding: 80px 20px;
}

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

.sfr-realisations-title {
    font-size: 2.5rem;
    color: #284dab;
    text-align: center;
    margin-bottom: 20px;
}

.sfr-realisations-description {
    text-align: center;
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 50px;
}

.sfr-realisations-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.filter-btn {
    background-color: #fff;
    border: 2px solid #284dab;
    color: #284dab;
    padding: 10px 20px;
    margin: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active, .filter-btn:hover {
    background-color: #284dab;
    color: #fff;
}

.sfr-realisations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.sfr-realisations-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.realisations-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.sfr-realisations-card:hover .realisations-image {
    transform: scale(1.1);
}

.realisations-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(40, 77, 171, 0.8);
    color: #fff;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.sfr-realisations-card:hover .realisations-overlay {
    transform: translateY(0);
}

.realisations-overlay h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.realisations-overlay p {
    font-size: 0.9rem;
}

/* Mentions Légales */

.sfr-mentions-legales {
    background-color: #f9f9f9;
    padding: 80px 0;
}

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

.sfr-title {
    font-size: 2.5rem;
    color: #284dab;
    text-align: center;
    margin-bottom: 50px;
}

.sfr-mentions-content {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 40px;
}

.sfr-mentions-section {
    margin-bottom: 30px;
}

.sfr-mentions-section h3 {
    font-size: 1.5rem;
    color: #b00000;
    margin-bottom: 15px;
}

.sfr-mentions-section p, .sfr-mentions-section ul {
    color: #333;
    line-height: 1.6;
}

.sfr-mentions-section ul {
    list-style-type: none;
    padding-left: 0;
}

.sfr-mentions-section ul li {
    margin-bottom: 10px;
}

.sfr-mentions-section strong {
    color: #284dab;
}

@media (max-width: 768px) {
    .sfr-mentions-content {
        padding: 20px;
    }
    
    .sfr-title {
        font-size: 2rem;
    }
    
    .sfr-mentions-section h3 {
        font-size: 1.3rem;
    }
}

/* Contact */

.sfr-contact-section {
    background-color: #f9f9f9;
    padding: 80px 0;
}

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

.sfr-contact-heading {
    font-size: 2.5rem;
    color: #284dab;
    text-align: center;
    margin-bottom: 50px;
}

.sfr-contact-flex-wrapper {
    display: flex;
    justify-content: space-evenly;
}

.sfr-contact-info-column, .sfr-contact-form-column {
    flex-basis: 48%;
}

.sfr-contact-info-subheading {
    font-size: 1.5rem;
    color: #b00000;
    margin-bottom: 20px;
}

.sfr-contact-info-list {
    list-style-type: none;
    padding: 0;
}

.sfr-contact-info-item {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.sfr-contact-info-icon {
    margin-right: 10px;
    color: #284dab;
}

.sfr-contact-social-links {
    margin-top: 30px;
}

.sfr-contact-social-icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: #284dab;
    color: white;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    transition: background-color 0.3s ease;
}

.sfr-contact-social-icon:hover {
    background-color: #b00000;
}

.sfr-contact-form-wrapper {
    background-color: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: box-shadow 0.3s ease;
}

.sfr-contact-form-wrapper:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.sfr-contact-form-group {
    margin-bottom: 25px;
    position: relative;
}

.sfr-contact-form-input,
.sfr-contact-form-textarea {
    width: 90%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #f8f8f8;
}

.sfr-contact-form-input:focus,
.sfr-contact-form-textarea:focus {
    border-color: #284dab;
    background-color: #fff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(40, 77, 171, 0.1);
}

.sfr-contact-form-textarea {
    height: 150px;
    resize: vertical;
}

.sfr-contact-form-checkbox {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.sfr-contact-form-checkbox input {
    margin-right: 10px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #284dab;
    border-radius: 4px;
    outline: none;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.sfr-contact-form-checkbox input:checked {
    background-color: #284dab;
}

.sfr-contact-form-checkbox input:checked::before {
    content: '\2713';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 14px;
}

.sfr-contact-form-checkbox label {
    font-size: 0.9rem;
    color: #555;
}

.sfr-contact-submit-btn {
    background-color: #b00000;
    color: white;
    border: none;
    padding: 14px 30px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(176, 0, 0, 0.1);
}

.sfr-contact-submit-btn:hover {
    background-color: #284dab;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(40, 77, 171, 0.2);
}

.sfr-contact-submit-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(40, 77, 171, 0.2);
}


@media (max-width: 768px) {
    .sfr-contact-flex-wrapper {
        flex-direction: column;
    }
    
    .sfr-contact-info-column, .sfr-contact-form-column {
        flex-basis: 100%;
        margin:30px 0;
    }

    .sfr-contact-info-column {
        text-align: center;
    }

    .sfr-contact-info-item {
        justify-content: center;
    }
}

/* Section Nouveauté */
.sfr-nouveaute {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.sfr-nouveaute-header {
    text-align: center;
    margin-bottom: 60px;
}

.sfr-nouveaute-header h2 {
    font-size: 2.5rem;
    color: #284dab;
    margin-bottom: 15px;
}

.sfr-nouveaute-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.sfr-nouveaute-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.sfr-nouveaute-image {
    flex: 1;
}

.sfr-nouveaute-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.sfr-nouveaute-text {
    flex: 1;
}

.sfr-nouveaute-text h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 20px;
}

.sfr-nouveaute-text > p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
}

.sfr-nouveaute-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.sfr-feature {
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.sfr-feature:hover {
    transform: translateY(-5px);
}

.sfr-feature h4 {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.sfr-feature p {
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
}

.sfr-nouveaute-cta {
    text-align: center;
    margin-top: 30px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .sfr-nouveaute-content {
        flex-direction: column;
    }

    .sfr-nouveaute-image,
    .sfr-nouveaute-text {
        width: 100%;
    }

    .sfr-nouveaute {
        padding: 60px 0;
    }

    .sfr-nouveaute-header h2 {
        font-size: 2rem;
    }

    .sfr-nouveaute-text h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .sfr-nouveaute-features {
        grid-template-columns: 1fr;
    }

    .sfr-nouveaute-header {
        margin-bottom: 40px;
    }
}

/* Section Avis Clients */
.sfr-avis {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.sfr-avis-title {
    font-size: 3rem;
    color: #284dab;
    text-align: center;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.sfr-avis-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: #b00000;
    margin: 20px auto 0;
}

.sfr-avis-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.sfr-avis-widget {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sfr-avis-widget:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

@media (max-width: 768px) {
    .sfr-avis {
        padding: 60px 0;
    }

    .sfr-avis-title {
        font-size: 2.5rem;
    }

    .sfr-avis-subtitle {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }

    .sfr-avis-widget {
        padding: 20px;
    }
}