/*--------------------- Google fonts ------------------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap');


/* --------------------- CSS Global variables ------------*/
:root
{
	/*------------ Colors -------------*/
	--primary-color: #e0e0e0;     /*---- white ----*/
	--secondary-color: #003366;   /*---- Blue ------*/
	--third-color: #d4af37;       /*----- yellow ------*/
	--fourth-color: #e2725b;      /*---- red ------*/


	/*------------ Font Size --------------*/
	--heading-font-size: 1.5rem;
	--paragraph-font-size: 1rem;
}

*
{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html
{
	font-size: 15px;
}

body
{
	font-family: 'Lato', sans-serif;
}

.container
{
	padding: 2rem;
}

.heading
{
	font-size: 2.2rem;
	font-weight: 600;
	line-height: 1.2;
	padding: 1rem 0;
	color: var(--secondary-color);
}

.sub-heading
{
	color: var(--third-color);
	font-size: 1rem;
	font-weight: 500;
	text-transform: uppercase;
}

img
{
	max-width: 100%;
	height: auto;
}

h1, h2, h3, h4, h5, h6
{
	font-family: 'Poppins', sans-serif;
}

p
{
	font-family: 'Inter', sans-serif;
}

.white
{
	color: #ffffff;
}

.para-line
{
	font-size: 1rem;
	line-height: 1.5;
}

.btn
{
	padding: 0.8rem 2rem;
	border: none;
	border-radius: 4px;
	cursor: pointer;
}

.btn1
{
	padding: 0.8rem 0.5rem;
	border: none;
	border-radius: 5px;
	cursor: pointer;
}

.btn a
{
	font-size: 1rem;
	font-weight: 500;
	text-transform: uppercase;
	text-decoration: none;
	letter-spacing: 1px;
}


/*-------------------------- Menu style -------------------------*/


.menu-container
{
  width: 1152px;
  max-width: 90%;
  margin: 0 auto;
}

.nav-wrapper
{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-wrapper ul.nav-list
{
  list-style-type: none;
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-wrapper ul.nav-list li 
{
  margin-left: 30px;
  padding: 20px 0;
  position: relative;
}

.nav-wrapper ul.nav-list li a
{
  color: var(--secondary-color);
  text-decoration: none;
  letter-spacing: 1px;
  transition: all .5s ease-in-out;
}

.nav-wrapper ul.nav-list li a:hover, .nav-wrapper ul.nav-list li.active a
{
  color: var(--third-color);
}

nav ul.dropdown-list
{
  list-style-type: none;
  display: block;
  background: var(--primary-color);
  padding: 6px 16px;
  position: absolute;
  width: max-content;
  z-index: 9999;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  pointer-events: none;
  border: 1px solid var(--secondary-color);
}

.nav-wrapper ul.dropdown-list li
{
  margin-left: 0;
  padding: 5px 0;
}

.nav-wrapper ul.dropdown-list li a
{
  color: var(--secondary-color);
}

.nav-wrapper ul.nav-list li:hover .dropdown-list
{
  opacity: 1;
  pointer-events: auto;
  animation: moveUp .5s ease-in-out forwards;
}


.nav-wrapper .nav-list li .btn a
{
	color: var(--fourth-color);
}

.nav-wrapper .nav-list li .btn:hover a
{
	color: var(--third-color);
}

@keyframes moveUp
{
  0%
  {
    opacity: 0;
    transform: translateX(-50%) translateY(50px);
  }
  100%
  {
    opacity: 1;
    transform: translateX(-50%) translateY(20px);
  }
}

/* .hamberger
{
  display: none;
} */

/* Règles supprimées - hamburger géré par navbar.css */

.mobile ul.nav-list
{
  background: -webkit-linear-gradient(45deg, #f5f6fa, #dcdde1);
  background: linear-gradient(45deg, #f5f6fa, #dcdde1);
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding-top: 80px;
  opacity: 0;
  pointer-events: none;
  transition: All .3s ease-in-out;
}

.hamberger, .brand
{
  z-index: 9999;
}

.mobile ul.nav-list.open
{
  opacity: 1;
  pointer-events: auto;
  z-index: 999;
  overflow-y: auto;
}


/* Règle supprimée - hamburger géré par navbar.css */

.mobile ul.nav-list li a
{
  font-size: 20px;
}

.mobile ul.dropdown-list
{
  position: relative;
  background: transparent;
  text-align: center;
  height: 0;
  overflow-y: hidden;
  transition: opacity 1s ease-in-out;
  padding-top: 0;
}

.mobile .nav-wrapper ul li:hover .dropdown-list
{
  height: max-content;
  padding-top: 6px;
}

.mobile ul.nav-list li
{
  margin-left: 0;
  text-align: center;
}

.mobile .nav-wrapper ul.dropdown-list li a
{
  color: #7f8fa6;
}

.mobile .nav-wrapper ul.dropdown-list li a:hover
{
	color: var(--third-color);
}
/*-------------------------- Menu style -------------------------*/


/*----------- Scroll to top --------------*/
#topBtn
{
  position: fixed;
  bottom: 40px;
  right: 40px;
  font-size: 22px;
  width: 40px;
  height: 40px;
  background: var(--secondary-color);
  color: #fff;
  border: none;
  cursor: pointer;
  display: none;
}

#topBtn ion-icon
{
	color: #fff;
}
/*----------- Scroll to top --------------*/

/*-------- Blue button ---------*/
.btn-blue
{
	background-color: var(--secondary-color);
	color: var(--primary-color);
	transition: all 0.3s ease;
}

.btn-blue:hover
{
	background-color: var(--third-color);
	color: var(--secondary-color);
}

.btn-blue a
{
	color: var(--primary-color);
}

.btn-blue:hover > a
{
	color: var(--secondary-color);
}

.btn-blue
{
	background-color: var(--secondary-color);
	transition: all 0.3s ease;
}

.btn-blue:hover
{
	background-color: var(--third-color);
}

.btn-blue a
{
	color: var(--primary-color);
}

.btn-blue:hover > a
{
	color: var(--secondary-color);
}

/*---------- Yellow btn ----------*/
.btn-yellow
{
	background-color: var(--third-color);
	color: var(--secondary-color);
	transition: all 0.3s ease;
}

.btn-yellow:hover
{
	background-color: var(--secondary-color);
}

.btn-yellow > a
{
	color: var(--secondary-color);
}

.btn-yellow:hover > a
{
	color: var(--primary-color);
}

.btn-yellow
{
	background-color: var(--third-color);
	transition: all 0.3s ease;
}

.btn-yellow:hover
{
	background-color: var(--secondary-color);
}

.btn-yellow a
{
	color: var(--secondary-color);
}

.btn-yellow:hover > a
{
	color: var(--primary-color);
}

/*------------ Full width button ------------*/
.btn-full-w
{
	padding: 1.2rem 2rem;
	display: block;
	width: 100%;
	box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
	
}



/*----------------- Hero section styling ----------------*/
.hero
{
	background-color: var(--secondary-color);
	margin-top: 10px;
}

.hero .hero-container
{	
	width: 100%;
	height: 80vh;
	display: flex;
	justify-content: flex-start;
	align-items: flex-end;
}

.hero-container .row > .col
{
	display: flex;
	flex-direction: column;
	gap: 1.4rem;
}

.hero-content
{
	padding: 0 2rem 3.6rem 2rem;
}

.hero-heading
{
	font-size: 2.3rem;
	line-height: 1.1;
}

.inner-row .inner-col
{
	margin: 1rem 0;
}

.hero-content .para-line {
    color: #ffffff;
}
/*----------------- Hero section styling ----------------*/


/*----------------- Why Us section styling ---------------*/
.why-us
{
	background-color: var(--primary-color);
}

.why-us-col ion-icon
{
	font-size: 2rem;
	color: var(--third-color);
	background: var(--third-color);
	padding: 1rem;
	border: none;
	border-radius: 50px;
}

.why-us-highlight-heading
{
	font-size: 1.4rem;
	font-weight: 600;
}

.lead-form
{
	border: none;
	border-radius: 12px;
	margin: 2.5rem 0;
	padding: 3rem 1.6rem;
	box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
}

.input-field
{
	display: flex;
	flex-direction: column;
	margin: 1rem 0;
}

.input-field label
{
	font-size: 0.8rem;
	font-weight: 600;
	margin: 0.3rem 0;
	text-transform: uppercase;
}

.input-field input
{
	font-size: 1rem;
	border: 1px solid var(--secondary-color);
	border-radius: 5px;
	padding: 1rem;
	background: #f3f8ff;
}

.input-field input:focus
{
	border-color: var(--third-color);
}
/*----------------- Why Us section styling ---------------*/



/*----------------- Services section styling ---------------*/
.service-img
{
	border-radius: 5px;
	margin: 0 0 2rem 0;
}

.our-services .services
{
	margin: 2rem 0;
}

.services .service
{
	border: none;
	border-radius: 10px;
	margin: 1.5rem 0;
	padding: 1.8rem;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
}

.services .service:hover
{
	box-shadow: rgba(0, 0, 0, 0.25) 0px 25px 50px -12px;
}

.service ion-icon
{
	color: var(--third-color);
	font-size: 2.6rem;
}

.service .service-heading
{
	font-weight: 600;
}
/*----------------- Services section styling ---------------*/



/*----------------- Overline section styling ---------------*/
.overline
{
	background: linear-gradient(rgba(10, 17, 79, 0.9), rgba(10, 17, 79, 0.9)), url("../img/hero-bg.jpg");
	background-position: center top;
	background-repeat: no-repeat;
	background-size: cover;
	text-align: center;
}

.insurance-policies
{
	border-radius: 6px;
}

.overlines .row .col
{
	margin: 2.6rem 0;
}

.overlines .row .col ion-icon
{
	font-size: 2.6rem;
}

.overline-heading
{
	color: var(--third-color);
	font-size: 1.3rem;
	font-weight: 600;
}
/*----------------- Overline section styling ---------------*/


/*----------------- About us section styling ---------------*/
.about
{background-image: linear-gradient(
	  155deg,
	  hsl(215deg 100% 98%) 0%,
	  hsl(215deg 100% 98%) 30%,
	  hsl(215deg 100% 98%) 38%,
	  hsl(215deg 100% 98%) 43%,
	  hsl(215deg 100% 98%) 47%,
	  hsl(215deg 100% 98%) 48%,
	  hsl(215deg 100% 98%) 50%,
	  hsl(215deg 100% 98%) 50%,
	  hsl(215deg 100% 99%) 50%,
	  hsl(215deg 100% 99%) 50%,
	  hsl(215deg 100% 99%) 50%,
	  hsl(215deg 100% 99%) 50%,
	  hsl(215deg 100% 99%) 50%,
	  hsl(215deg 100% 99%) 50%,
	  hsl(215deg 100% 99%) 50%,
	  hsl(215deg 100% 99%) 51%,
	  hsl(215deg 100% 100%) 53%,
	  hsl(215deg 100% 100%) 55%,
	  hsl(215deg 100% 100%) 60%,
	  hsl(215deg 100% 100%) 68%,
	  hsl(0deg 0% 100%) 96%
	);
}



.about-highlights
{
	margin: 2rem 0;
	
}

.about-highlight-line
{
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin: 1rem 0;
	
}

.about-highlight-line ion-icon
{
	color: var(--third-color);
	font-size: 1.6rem;
}

.highlight-line-heading
{
	font-size: 1rem;
	font-weight: 600;
	
}

.about-img
{
	border-radius: 6px;
	margin-top: 4rem;
}

.partners
{
	margin: 2rem 0;
}
/*----------------- About us section styling ---------------*/



/*----------------- Testimonial section styling --------------*/
.testimonial
{
	background: linear-gradient(rgba(53, 134, 255, 0.9), rgba(10, 17, 79, 0.9)),	url("../img/hero-bg1.jpg");
	background-position: center top;
	background-repeat: no-repeat;
	background-size: cover;
	text-align: center;
}

.testimonial-profile
{
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1rem;
	margin: 1rem;
}

.profile-img
{
	border-radius: 50px;
}

.client-name
{
	font-size: 1rem;
	font-weight: 600;
	text-align: left;
}

.client-location
{
	text-align: left;
}

.stars ion-icon
{
	color: var(--third-color);
}
/*----------------- Testimonial section styling --------------*/


/*----------------- Agent card styling -----------------------*/
.agent-card
{
	text-align: center;
}

.agent-img
{
	border-radius: 50%;
}

.agent-name
{
	font-size: 2rem;
	font-weight: 600;
}

.agent-number, .agent-email
{
	margin: 1rem 0;
	font-size: 0.9rem;
}
/*----------------- Agent card styling -----------------------*/


/*----------------- Footer styling ------------------*/
footer {
    position: relative;
    width: 100%;
    background-color: var(--secondary-color);
    min-height: 100px;
    padding: 60px 20px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
}

footer .social_icon {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 0 30px;
    flex-wrap: wrap;
    gap: 20px;
}

footer .social_icon li {
    list-style: none;
}

footer .social_icon li a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    background: var(--third-color);
    color: var(--secondary-color);
    border-radius: 50%;
    font-size: 1.5em;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

footer .social_icon li a:hover {
    transform: translateY(-5px);
    background: var(--primary-color);
    color: var(--third-color);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

footer .menu {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0;
    flex-wrap: wrap;
}

footer .menu li {
    list-style: none;
}

footer .menu li a {
    font-size: 1.2em;
    color: var(--primary-color);
    margin: 0 10px;
    display: inline-block;
    text-decoration: none;
    opacity: 0.75;
}

footer .menu li a:hover {
    opacity: 1;
}

footer p {
    color: var(--primary-color);
    text-align: center;
    margin-top: 15px;
    margin-bottom: 10px;
    font-size: 1.1em;
}

footer .wave {
    position: absolute;
    top: -95px;
    left: 0;
    width: 100%;
    height: 100px;
    background: url("../img/wave.png"); 
    background-size: 1000px 100px;
}

footer .wave#wave1 {
    z-index: 1000;
    opacity: 1;
    bottom: 0;
    animation: animateWave 4s linear infinite;
}

footer .wave#wave2 {
    z-index: 999;
    opacity: 0.5;
    bottom: 15px;
    animation: animateWave_02 4s linear infinite;
}

footer .wave#wave3 {
    z-index: 1000;
    opacity: 0.2;
    bottom: 0;
    animation: animateWave 3s linear infinite;
}

footer .wave#wave4 {
    z-index: 999;
    opacity: 0.7;
    bottom: 20px;
    animation: animateWave_02 3s linear infinite;
}

@keyframes animateWave {
    0% {
        background-position-x: 1000px;
    }

    100% {
        background-position-x: 0px;
    }
}

@keyframes animateWave_02 {
    0% {
        background-position-x: 0px;
    }

    100% {
        background-position-x: 1000px;
    }
}
/*----------------- Footer styling ------------------*/






/*--------------------------------------------------------------*/
/*-------------------- Desktop Screen Styling ------------------*/
/*--------------------------------------------------------------*/
@media screen and (min-width: 789px)
{
	.container, .hero-container
	{
		max-width: 1180px;
		margin: 0 auto;
	}

	.container
	{
		padding: 4rem 0;
	}

	.heading
	{
		font-size: 3rem;
	}

	.para-line
	{
		line-height: 1.8;
	}

	.sub-heading
	{
		font-size: 1rem;
	}

	.row
	{
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
		gap: 2rem;
	}

	.row .col
	{
		width: 100%;
	}

	.inner-row
	{
		display: flex;
		gap: 2rem;
		
	}


	/*-------------- Hero section styling ------------------*/
	.hero-container .row > .hero-content
	{
		width: 140%;
	}

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

	.hero
	{
		background-color: var(--secondary-color);
	}
	/*-------------- Hero section styling ------------------*/


	/*-------------- Why us styling ---------------------*/
	.why-us .container .row
	{
		gap: 5rem;
	}

	.why-us .container .row .why-us-content
	{
		width: 150%;
	}

	.why-us-content .inner-row
	{
		margin-top: 2rem;
	}

	.lead-form
	{
		background: var(--fourth-color);
		padding: 3rem !important;
	}

	.input-field
	{
		margin: 1.5rem 0;
	}
	/*-------------- Why us styling ---------------------*/


	/*-------------- Services section styling --------------*/
	.our-services
	{
		text-align: center;
	}

	.our-services .container .head-desc
	{
		max-width: 66%;
		margin: 0 auto;
	}

	.services, .partners-grid
	{
		display: grid;
		grid-template-rows: repeat(2, 1fr);
		grid-template-columns: repeat(3, 1fr);
		grid-gap: 2rem;
	}
	/*-------------- Services section styling --------------*/



	/*-------------- About section styling ------------------*/
	.about .container .row
	{
		gap: 4rem;
	}

	.partners
	{
		margin-top: 4rem;
	}
	/*-------------- About section styling ------------------*/


	/*-------------- Testimonial section styling ---------------*/
	.testimonial .container .para-line
	{
		max-width: 840px;
		margin: 0 auto;
		font-size: 1.1rem;
	}

	.testimonial
	{
		padding: 4rem 0;
	}
	/*-------------- Testimonial section styling ---------------*/
}

html {
    scroll-behavior: smooth;
}

/* HubSpot Form Overrides */
.hs-form fieldset {
  max-width: 100% !important;
  border: none !important;
  padding: 0 !important;
}

.hs-input {
  width: 100% !important;
  padding: 12px 15px !important;
  margin: 8px 0 !important;
  border: 1px solid var(--primary-color) !important;
  border-radius: 4px !important;
}

.hs-button.primary {
  background: var(--secondary-color) !important;
  border: none !important;
  padding: 15px 30px !important;
  font-size: 1.1rem !important;
  transition: all 0.3s ease !important;
}

.hs-button.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255,107,0,0.3) !important;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    /* Global adjustments */
    .container {
        padding: 0 15px;
    }

    /* Hero section styles moved to hero.css for better organization */

    .para-line {
        font-size: 1.1rem;
        line-height: 1.4;
        color: white;
        text-align: center;
        margin: 0.5rem auto;
        max-width: 280px;
        width: 100%;
    }

    .btn-blue {
        background: var(--primary-color);
        color: white;
        padding: 1rem 2rem;
        border-radius: 50px;
        font-size: 1.1rem;
        font-weight: 700;
        text-align: center;
        width: 90%;
        max-width: 280px;
        margin: 1rem auto 0;
        display: block;
    }

    /* Services section */
    .services-container {
        text-align: center !important;
        padding: 2rem 1rem;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
    }

    .services-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 2rem;
        padding: 1rem;
        max-width: 400px !important;
        margin: 0 auto !important;
        width: 100% !important;
        align-items: center !important;
        justify-content: center !important;
    }

    /* Services section (section nos services) */
    .our-services {
        text-align: center !important;
        padding: 2rem 1rem;
    }

    .our-services .container {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
    }

    .our-services .services {
        display: flex !important;
        flex-direction: column !important;
        gap: 1.5rem;
        padding: 1rem;
        max-width: 400px !important;
        margin: 0 auto !important;
        width: 100% !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .services .service {
        width: 100% !important;
        max-width: 350px !important;
        margin: 0 auto !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        padding: 2rem;
        border-radius: 10px;
    }

    .service .service-icon {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin: 0 auto 1rem !important;
        width: 100% !important;
    }

    .service .service-heading {
        text-align: center !important;
        margin: 1rem auto !important;
        width: 100% !important;
    }

    .service .para-line {
        text-align: center !important;
        margin: 0 auto !important;
        width: 100% !important;
        max-width: 300px !important;
    }

    .service .service-link {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        width: 100% !important;
    }

    .service-card {
        width: 100% !important;
        max-width: 350px !important;
        margin: 0 auto !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        padding: 2rem;
        background: var(--secondary-color);
        border-radius: 10px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .service-card img {
        margin: 0 auto 1rem !important;
        display: block !important;
    }

    .service-card h3 {
        text-align: center !important;
        margin-bottom: 0.8rem;
        width: 100% !important;
    }

    .service-card p {
        text-align: center !important;
        width: 100% !important;
    }

    .service-card .btn {
        margin: 1rem auto 0 !important;
        display: block !important;
    }

    /* Stats section */
    .stats {
        padding: 50px 0 !important;
        text-align: center !important;
    }

    .stats .container {
        padding: 0 15px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
        padding: 0 10px !important;
        max-width: 500px !important;
        margin: 0 auto !important;
        width: 100% !important;
    }

    .stat-card {
        padding: 20px 15px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        min-height: 140px !important;
    }

    /* Partners section */
    .partners-slider {
        padding: 0 15px;
    }

    .slider-track {
        gap: 20px;
    }

    /* Testimonials section */
    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px 15px;
    }

    .testimonial-card {
        padding: 20px;
    }

    /* Footer */
    .footer {
        padding: 60px 0 30px !important;
        text-align: center !important;
    }

    .footer-container {
        padding: 0 20px !important;
    }

    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 35px !important;
        margin-bottom: 40px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
    }

    .footer-brand {
        order: 1 !important;
        text-align: center !important;
        width: 100% !important;
        max-width: 500px !important;
        margin: 0 auto !important;
    }

    .footer-stats {
        order: 2 !important;
        text-align: center !important;
        width: 100% !important;
        max-width: 400px !important;
        margin: 0 auto !important;
        padding: 0 !important;
    }

    .footer-contact {
        order: 3 !important;
        text-align: center !important;
        width: 100% !important;
        max-width: 450px !important;
    }

    .footer-legal {
        order: 4 !important;
        text-align: center !important;
        width: 100% !important;
        max-width: 400px !important;
    }

    .footer-logo {
        display: flex !important;
        justify-content: center !important;
    }

    .footer-logo img {
        height: 180px !important;
        margin-top: -65px !important;
        margin-bottom: -65px !important;
    }

    .footer-description {
        font-size: 0.9em !important;
        max-width: 450px !important;
        text-align: center !important;
        margin: 0 auto 25px !important;
    }

    .footer-social {
        justify-content: center !important;
    }

    .contact-info {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }

    .contact-info li {
        justify-content: center !important;
        align-items: center !important;
        text-align: center !important;
        max-width: 350px !important;
    }

    .footer-links {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }

    .footer-links a {
        justify-content: center !important;
    }

    .footer-bottom {
        flex-direction: column !important;
        text-align: center !important;
        gap: 15px !important;
    }

    .footer-bottom-legal {
        text-align: center !important;
    }

    .legal-row {
        flex-direction: column !important;
        gap: 8px !important;
        text-align: center !important;
        justify-content: center !important;
    }

    .legal-row .separator {
        display: none !important;
    }

    /* Global text adjustments */
    .heading {
        font-size: 1.8rem !important;
    }

    h2 {
        font-size: 1.6rem !important;
    }

    h3 {
        font-size: 1.3rem !important;
    }

    p, .para-line {
        font-size: 0.95rem !important;
    }

    /* Hero section */
    .hero-heading {
        font-size: 1.8rem !important;
    }

    .hero-content .para-line {
        font-size: 1rem;
    }

    /* Services section */
    .service-card h3 {
        font-size: 1.3rem;
    }

    .service-card p {
        font-size: 0.9rem;
    }

    /* About section */
    .about-content h2 {
        font-size: 1.8rem;
    }

    .about-content p {
        font-size: 0.95rem;
    }

    /* Stats section */
    .stats {
        padding: 40px 0 !important;
    }

    .stats-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        max-width: 350px !important;
        padding: 0 20px !important;
    }

    .stat-card {
        padding: 25px 20px !important;
        min-height: 150px !important;
        max-width: 300px !important;
        margin: 0 auto !important;
    }

    .stat-number {
        font-size: 2rem !important;
    }

    .stat-label {
        font-size: 1rem !important;
    }

    /* Partners section */
    .partners-heading {
        font-size: 1.8rem;
    }

    /* Testimonials section */
    .testimonial-text {
        font-size: 0.95rem;
    }

    .testimonial-author {
        font-size: 1rem;
    }

    .testimonial-position {
        font-size: 0.9rem;
    }

    /* Hero section */
    .hero-container .row > .col {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1.5rem;
        padding-bottom: 2rem;
        width: 100%;
        text-align: center;
    }

    .hero-content {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .hero-description {
        width: 100%;
        text-align: center;
        color: white;
        font-size: 1.1rem;
        margin: 0 auto;
        max-width: 280px;
    }

    .para-line {
        width: 100%;
        text-align: center !important;
        color: white;
        font-size: 1.1rem;
        line-height: 1.4;
        margin: 0.5rem auto;
        max-width: 280px;
    }

    /* Global section alignments */
    .section-header {
        text-align: center !important;
        margin-bottom: 1.5rem !important;
    }

    .section-description {
        text-align: center !important;
        margin: 0 auto 2rem !important;
        max-width: 600px !important;
        width: 100% !important;
    }

    /* Services section */
    .services-container {
        text-align: center;
        padding: 2rem 1rem;
    }

    .services-container .heading {
        text-align: center;
        margin-bottom: 1.5rem;
    }

    .services-container .para-line {
        text-align: center;
        margin: 0 auto 2rem;
        max-width: 600px;
    }

    .services-grid {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        padding: 1rem;
        max-width: 400px;
        margin: 0 auto;
        width: 100%;
        align-items: center;
        justify-content: center;
    }

    .service-card {
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 2rem;
        background: var(--secondary-color);
        border-radius: 10px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .service-card img {
        margin: 0 auto 1rem;
    }

    .service-card h3 {
        text-align: center;
        margin-bottom: 0.8rem;
    }

    .service-card p {
        text-align: center;
    }

    .service-card .btn {
        margin: 1rem auto 0;
    }

    /* Why Us section */
    .why-us {
        padding: 60px 0 !important;
        text-align: center !important;
    }

    .why-us .container {
        padding: 0 15px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
    }

    .why-us-header {
        text-align: center !important;
        margin-bottom: 40px !important;
        max-width: 600px !important;
        padding: 0 15px !important;
    }

    .why-us-header .sub-heading,
    .why-us-header .heading,
    .why-us-header .para-line {
        text-align: center !important;
        margin: 0 auto !important;
    }

    .bento-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
        padding: 0 15px !important;
        max-width: 500px !important;
        margin: 0 auto !important;
        width: 100% !important;
        justify-items: center !important;
        align-items: stretch !important;
    }

    .bento-item {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        padding: 20px 15px !important;
        background: white !important;
        border-radius: 16px !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05) !important;
        min-height: 200px !important;
        width: 100% !important;
        justify-self: center !important;
        align-self: center !important;
    }

    /* Centrage spécial pour la troisième bento (Économies Garanties) */
    .bento-item:nth-child(3) {
        grid-column: 1 / -1 !important;
        max-width: 320px !important;
        justify-self: center !important;
        align-self: center !important;
    }

    .bento-icon {
        width: 55px !important;
        height: 55px !important;
        margin: 0 auto 15px !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        background: #f0f7ff !important;
        border-radius: 12px !important;
    }

    .bento-icon ion-icon {
        font-size: 26px !important;
        color: #007bff !important;
    }

    .bento-item h3 {
        font-size: 18px !important;
        margin-bottom: 12px !important;
        text-align: center !important;
        width: 100% !important;
        color: #1a1a1a !important;
    }

    .bento-item p {
        font-size: 14px !important;
        line-height: 1.5 !important;
        text-align: center !important;
        margin: 0 !important;
        width: 100% !important;
        color: #666 !important;
    }

    .why-us-cta {
        margin-top: 40px !important;
        text-align: center !important;
    }

    .why-us-cta .btn {
        padding: 16px 36px !important;
        font-size: 16px !important;
        max-width: 280px !important;
        width: 90% !important;
    }

    /* About section */
    .about {
        padding: 60px 0 !important;
        text-align: center !important;
    }

    .about-wrapper {
        gap: 35px !important;
        max-width: 600px !important;
        padding: 0 20px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        margin: 0 auto !important;
    }

    .about-content {
        order: 1 !important;
        text-align: center !important;
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .about-image {
        order: 2 !important;
        max-width: 450px !important;
        width: 100% !important;
        margin: 0 auto !important;
    }

    .about-header {
        text-align: center !important;
        margin-bottom: 20px !important;
        width: 100% !important;
    }

    .about-header .heading {
        font-size: 2rem !important;
        text-align: center !important;
        margin: 15px auto !important;
    }

    .about-header .sub-heading,
    .gradient-text {
        text-align: center !important;
        display: block !important;
        width: 100% !important;
        margin: 0 auto !important;
    }

    .about-content .para-line {
        font-size: 1rem !important;
        text-align: center !important;
        line-height: 1.7 !important;
        max-width: 550px !important;
        margin: 0 auto !important;
    }

    .image-container.modern-shadow {
        max-width: 100% !important;
        margin: 0 auto !important;
    }

    /* Stats section */
    .stats-container {
        text-align: center;
    }

    .stats-header {
        text-align: center;
    }

    /* Partners section */
    .partners-container {
        text-align: center;
    }

    .partners-header {
        text-align: center;
    }

    /* Testimonials section */
    .testimonials-container {
        text-align: center;
    }

    .testimonial-card {
        text-align: center;
    }

    /* Contact section */
    .contact-container {
        text-align: center;
    }

    .contact-content {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    /* Ajustements supplémentaires pour très petits écrans */
    /* Hero styles managed in hero.css */

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .heading {
        font-size: 1.8rem;
    }

    .sub-heading {
        font-size: 1rem;
    }

    /* Why Us section pour très petits écrans */
    .why-us {
        padding: 40px 0 !important;
    }

    .why-us-header {
        margin-bottom: 30px !important;
        padding: 0 15px !important;
    }

    .bento-grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
        max-width: 280px !important;
        padding: 0 15px !important;
        justify-items: center !important;
        align-items: stretch !important;
    }

    .bento-item {
        padding: 20px 15px !important;
        min-height: 200px !important;
        justify-self: center !important;
        align-self: center !important;
    }

    /* En mode 1 colonne, toutes les bentos sont centrées naturellement */
    .bento-item:nth-child(3) {
        grid-column: auto !important;
        max-width: 260px !important;
        justify-self: center !important;
        align-self: center !important;
    }

    .bento-icon {
        width: 50px !important;
        height: 50px !important;
        margin: 0 auto 15px !important;
    }

    .bento-icon ion-icon {
        font-size: 24px !important;
    }

    .bento-item h3 {
        font-size: 17px !important;
        margin-bottom: 12px !important;
    }

    .bento-item p {
        font-size: 14px !important;
    }

    .why-us-cta .btn {
        padding: 14px 28px !important;
        font-size: 15px !important;
        max-width: 250px !important;
    }

    /* About section pour très petits écrans */
    .about {
        padding: 40px 0 !important;
    }

    .about-wrapper {
        gap: 25px !important;
        padding: 0 15px !important;
        max-width: 100% !important;
    }

    .about-content {
        padding: 0 5px !important;
    }

    .about-image {
        max-width: 280px !important;
    }

    .about-header .heading {
        font-size: 1.6rem !important;
    }

    .gradient-text {
        font-size: 0.9rem !important;
    }

    .about-content .para-line {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
        padding: 0 5px !important;
        max-width: 100% !important;
    }

    .image-container.modern-shadow {
        border-radius: 15px !important;
    }

    /* Footer pour très petits écrans */
    .footer {
        padding: 40px 0 20px !important;
    }

    .footer-container {
        padding: 0 15px !important;
    }

    .footer-content {
        gap: 25px !important;
        margin-bottom: 30px !important;
    }

    .footer-logo img {
        height: 120px !important;
        margin-top: -45px !important;
        margin-bottom: -45px !important;
    }

    .footer-description {
        font-size: 0.8em !important;
        padding: 0 5px !important;
    }

    .footer-social {
        gap: 10px !important;
    }

    .social-icon {
        width: 32px !important;
        height: 32px !important;
    }

    .social-icon ion-icon {
        font-size: 1em !important;
    }

    .stat-item {
        padding: 12px !important;
        gap: 10px !important;
        flex-direction: column !important;
        text-align: center !important;
    }

    .stat-icon {
        font-size: 1.8em !important;
    }

    .stat-number {
        font-size: 1.3em !important;
    }

    .stat-text {
        font-size: 0.8em !important;
    }

    .contact-info li {
        font-size: 0.85em !important;
        gap: 8px !important;
        flex-direction: column !important;
        text-align: center !important;
    }

    .contact-info ion-icon {
        font-size: 1em !important;
        margin-top: 0 !important;
    }

    .footer-links a {
        font-size: 0.85em !important;
    }

    .footer-nav h3,
    .footer-contact h3,
    .footer-legal h3 {
        font-size: 1em !important;
        margin-bottom: 20px !important;
    }

    .footer-bottom {
        font-size: 0.8em !important;
    }

    .legal-row {
        gap: 6px !important;
        font-size: 0.75em !important;
    }
}