/* Base Styles */
:root {
    --primary: #3b5ce2;
    --primary-dark: #2949c4;
    --secondary: #f8f9fa;
    --accent: #ff6b35;
    --success: #28a745;
    --warning: #ffc107;
    --error: #dc3545;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
    --white: #ffffff;
    --space-8: 8px;
    --space-16: 16px;
    --space-24: 24px;
    --space-32: 32px;
    --space-48: 48px;
    --space-64: 64px;
    --border-radius-sm: 4px;
    --border-radius: 8px;
    --border-radius-lg: 16px;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --box-shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Merriweather Sans', sans-serif;
    color: var(--gray-800);
    line-height: 1.5;
    overflow-x: hidden;}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

.btn {
    border-radius: var(--border-radius);
    padding: var(--space-8) var(--space-16);
    font-weight: 500;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-outline-dark {
    border-color: var(--gray-800);
    color: var(--gray-800);
}

.btn-outline-dark:hover {
    background-color: var(--gray-800);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-lg {
    padding: var(--space-16) var(--space-24);
}

.section-header {
    margin-bottom: var(--space-48);
}

.section-header h2 {
    font-size: 2.25rem;
    position: relative;
    display: inline-block;
	font-weight: 500;
}

/*.section-header h2:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: #F0FF00;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
}*/

.section-title {
      font-size: 52px;
      font-weight: normal;
    }
    .section-subtitle {
		font-family: 'Merriweather Sans', sans-serif;
	  font-size: 22px;
      font-weight: 500;
	  margin-bottom: 0px
    }


.section-header p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Header Styles */
.header {
    /*padding: var(--space-16) 0;*/
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.brand-text {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary);
}

.navbar-nav .nav-link {
    font-weight: 500;
    padding: var(--space-8) var(--space-16);
    margin: 0 var(--space-8);
    color: var(--gray-700);
}

.navbar-nav .nav-link:hover {
    color: var(--primary);
}

.nav-btn {
    margin-left: var(--space-16);
}

/* Hero Section */
.hero {
    padding: 150px 0 var(--space-64);
    background-color: var(--white);
    position: relative;
    background: url("../images/bg.jpg") center center no-repeat;
	background-size: cover;
}

.hero-image {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 55vw; /* ou 40vw selon l'effet souhaité */
    background: url("../images/header.png") center bottom no-repeat;
    background-size: contain;
}
.hero-title {
    font-size: 3rem;
    margin-bottom: var(--space-24);
    color: var(--gray-900);
    line-height: 1.2;
}

.hero-title2{
    font-size: 1.25rem;
	font-weight:400;
    margin-bottom: var(--space-24);
    color: var(--gray-900);
    line-height: 1.2;
	margin-bottom: 5px;
	padding-top: 40px;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: var(--space-32);
    color: var(--gray-700);
    font-weight: 300;
}

.hero-cta {
}

.hero-image img {
    max-width: 100%;
    height: auto;
    transition: var(--transition);
}

.hero-image img:hover {
    transform: scale(1.02);
}


/* Advantages Section */
.advantages {
	padding: 15px 0px;
}

.advantage-card {
    padding: var(--space-32);
    text-align: center;
    border-radius: var(--border-radius);
    transition: var(--transition);
    height: 100%;
    background-color: var(--white);
    box-shadow: var(--box-shadow);
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-lg);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-24);
    transition: var(--transition);
}

.advantage-icon i {
    font-size: 32px;
    color: var(--white);
}

.advantage-card:hover .advantage-icon {
    background-color: var(--accent);
    transform: rotateY(180deg);
}

.advantage-card h3 {
    font-size: 1.4rem;
    margin-bottom: var(--space-16);
}

.advantage-card p {
    color: var(--gray-600);
    margin-bottom: 0;
}

/* Products Section */
.products {
    padding: var(--space-64) 0;
}

.product-card {
    border-radius: var(--border-radius);
    overflow: hidden;
    background-color: var(--white);
    box-shadow: var(--box-shadow);
    height: 100%;
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-lg);
}

.product-image {
    overflow: hidden;
    height: 240px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-info {
    padding: var(--space-24);
}

.product-info h3 {
    font-size: 1.4rem;
    margin-bottom: var(--space-16);
}

.product-info p {
    color: var(--gray-600);
    margin-bottom: var(--space-16);
}

.btn-product {
    color: var(--primary);
    font-weight: 500;
    display: inline-block;
    transition: var(--transition);
}

.btn-product i {
    margin-left: 5px;
    transition: var(--transition);
}

.btn-product:hover {
    color: var(--primary-dark);
}

.btn-product:hover i {
    transform: translateX(5px);
}

/* Process Section */
.process {
    padding: var(--space-64) 0;
}

.process-timeline {
    position: relative;
    padding: var(--space-32) 0;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background-color: var(--gray-300);
}

.process-step {
    display: flex;
    align-items: center;
    margin-bottom: var(--space-32);
    position: relative;
}

.process-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.5rem;
    z-index: 1;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: var(--transition);
}

.process-content {
    width: calc(50% - 50px);
    padding: var(--space-24);
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.process-step:nth-child(odd) .process-content {
    margin-right: auto;
    text-align: right;
}

.process-step:nth-child(even) .process-content {
    margin-left: auto;
}

.process-step:hover .process-number {
    background-color: var(--accent);
    transform: translateX(-50%) scale(1.1);
}

.process-step:hover .process-content {
    box-shadow: var(--box-shadow-lg);
    transform: translateY(-5px);
}

.process-content h3 {
    font-size: 1.4rem;
    margin-bottom: var(--space-8);
}

/* Testimonials */
.testimonials {
    padding: var(--space-64) 0;
}

.testimonial-card {
    padding: var(--space-32);
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    height: 100%;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-lg);
}

.testimonial-profile {
    width: 100px;
    height: 100px;
    margin: 0 auto var(--space-16);
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #ccc;
}

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

.testimonial-rating {
    margin-bottom: var(--space-16);
    color: #FFD700;
    text-align: center;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: var(--space-16);
    position: relative;
    padding: 0 var(--space-8);
    text-align: center;
}

.testimonial-text::before {
    content: '"';
    font-size: 3rem;
    color: var(--gray-300);
    position: absolute;
    left: -20px;
    top: -20px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.testimonial-name {
    font-weight: 500;
}

.testimonial-location {
    color: var(--gray-600);
    font-size: 0.9rem;
}

/* CTA / Form Section */
.cta-form {
    padding: var(--space-64) 0;
}

.cta-content {
    padding-right: var(--space-32);
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: var(--space-16);
}

.cta-benefits {
    list-style: none;
    padding: 0;
    margin-top: var(--space-24);
}

.cta-benefits li {
    margin-bottom: var(--space-16);
    font-size: 1.1rem;
}

.cta-benefits i {
    color: var(--success);
    margin-right: var(--space-8);
}

.form-card {
    background-color: var(--white);
    padding: var(--space-32);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow-lg);
}

.form-title {
    margin-bottom: var(--space-24);
    text-align: center;
}

.quote-form .form-label {
    font-weight: 500;
}

/* Footer */
.footer {
    background-color: #fff;
    color: #000;
}

.footer-brand {
    color: var(--white);
    margin-bottom: var(--space-16);
}

.social-links {
    margin-top: var(--space-16);
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: var(--gray-800);
    border-radius: 50%;
    color: var(--white);
    margin-right: var(--space-8);
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.footer h5 {
    color: var(--white);
    margin-bottom: var(--space-16);
    font-size: 1.1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: var(--space-8);
}

.footer-links a {
    color: var(--gray-400);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: var(--space-8);
}

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

.contact-info li {
    margin-bottom: var(--space-8);
    display: flex;
    align-items: flex-start;
	font-weight: 100;
}

.contact-info i {
    margin-right: var(--space-8);
    color: #026565;
	padding-top:4px;
	
}

.footer-divider {
    border-color: var(--gray-800);
    margin: var(--space-24) 0;
}

.top-divider {
    border-color: #CDCDCD;
    margin: 0;
}

.copyright {
    color: #000;
	font-weight: 100;
}

.legal-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
}

.legal-links li {
    margin-left: var(--space-16);
}

.legal-links a {
    color: #000;
    font-size: 0.9rem;
	font-weight: 100;
}

.legal-links a:hover {
    color:#026565 ;
}

/* Responsive */
@media (max-width: 991.98px) {
    .hero {
        padding: 140px 0 var(--space-48);
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .process-timeline::before {
        left: 30px;
    }
    
    .process-number {
        left: 30px;
        transform: translateX(-50%);
    }
    
    .process-content {
        width: calc(100% - 80px);
        margin-left: 60px !important;
        text-align: left !important;
    }
}

@media (max-width: 767.98px) {
    .section-header h2 {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-cta .btn {
        display: block;
        width: 100%;
        margin-bottom: var(--space-16);
    }
    
    .hero-cta .btn:last-child {
        margin-left: 0 !important;
    }
    
    .legal-links {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .legal-links li {
        margin-left: 0;
        margin-bottom: var(--space-8);
    }
}

@media (max-width: 575.98px) {
    .hero {
        padding: 120px 0 var(--space-32);
    }
    
    .advantage-card, .product-card, .testimonial-card {
        margin-bottom: var(--space-24);
    }
}

#temoignages {	background: linear-gradient(180deg, #018a8a, #026565) !important;}
#temoignages h2 {color:#fff;}

.avantages {color:#6b6b6b;}
.checked {color: #018a8a; margin-right:10px;}
.clear {clear:both;}
.contain {max-width: 1080px; margin: 0 auto;}
#demarche { text-align:center; padding:30px 0px; background: linear-gradient(180deg, #018a8a, #026565) !important;}
#demarche h2 {color:#fff; margin:15px 0px 35px 0px; font-size: 2.25rem; font-weight: 400;}
#demarche h3 {font-size:20px; color:#fff;}
#demarche p {font-size:14px; padding:0px 20px; color:#fff; font-weight: 100;}
.icon-80 {font-size:80px; color:#fff;}
.devis {background-color:#026565; /*background: linear-gradient(180deg, #026565, #018a8a) !important;*/ color:#fff; border:none;}
.devis:hover {color:#fff; background-color:#035757;}


.maprime {padding: 35px 0px;}
.maprime h3 { text-align: center; font-size: 2rem; margin-bottom: 25px; font-weight: 400; text-align: left; line-height: 2.8rem;}
.maprime h3 span{font-weight: bold;}
.maprime ul li { padding: 5px 0px; list-style-type: none; font-weight: 100;}

/*.form-control {height: 55px;
    line-height: 55px;
    border-radius: 20px;
    border: none;
	background-color: #E6E7E8;}*/

.form-control::placeholder {
    color: #7E7E7E; font-weight: 100; /* Gris très clair */
    opacity: 1; /* Pour s'assurer que la couleur soit visible sur tous les navigateurs */
}

#whatsapp-button{position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;}
#whatsapp-button a{display: inline-block;
    background-color: #25d366;
    color: white;
    padding: 5px 16px;
    border-radius: 50%;
    text-align: center;
    font-size: 35px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);}

.rappel { width: 100%; height: 99px; background: url("../images/rappel.jpg") left center no-repeat;
	background-size: cover; margin-bottom: 30px;
}

@media (max-width: 575.98px) {
.rappel {
    width: 100%;
    height: 80px;
    background: url(../images/rappel.jpg) left center no-repeat;
    background-size: cover;
	margin-bottom: 30px;}}