* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #222;
    background: #fff;
	overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: min(1280px, 92%);
    margin: 0 auto;
}

.center {
    text-align: center;
}

.skip-link {
    position: absolute;
    left: -9999px;
}

.skip-link:focus {
    left: 20px;
    top: 20px;
    background: #fff;
    padding: 10px;
    z-index: 9999;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    border-bottom: 1px solid #ddd;
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 90px;
}

.logo img {
    max-height: 60px;
}

.main-nav ul {
    display: flex;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.has-dropdown {
    position: relative;
}

.mega-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 960px;
    background: #fff;
    border: 1px solid #ddd;
    padding: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,.12);
}

.has-dropdown:hover .mega-menu {
    display: block;
}

.mega-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.mega-card {
    text-align: center;
}

.mobile-menu-toggle {
    display: none;
}

.mobile-menu {
    display: none;
    padding: 20px;
    background: #fff;
    border-top: 1px solid #ddd;
}

.mobile-menu.open {
    display: block;
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
}

.mobile-menu li {
    margin-bottom: 12px;
}

.mobile-menu .submenu {
    padding-left: 18px;
    margin-top: 8px;
}

.hero-slider {
    position: relative;
    overflow: hidden;
}

.slide {
    min-height: 700px;
    background-position: center;
    background-size: cover;
    display: none;
    align-items: center;
}

.slide.active {
    display: flex;
}

.slide-overlay {
    background: rgba(255,255,255,.88);
    max-width: 760px;
    padding: 32px;
    margin: 100px 0;
}

.slide-meta {
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 12px;
    color: #555;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: 0;
    background: rgba(255,255,255,.8);
    width: 48px;
    height: 48px;
    font-size: 30px;
    cursor: pointer;
}

.slider-arrow.prev {
    left: 20px;
}

.slider-arrow.next {
    right: 20px;
}

.section-dark {
    background: #3B5A99;
    color: #fff;
    padding: 70px 0;
}

.section-primary {
    background: #faa61a;
    color: #222;
    padding: 70px 0;
}

.section-secondary {
    background: #f5f5f5;
    padding: 70px 0;
}

.intro-section,
.guide-section,
.brands-section,
.services-section,
.visit-section,
.offers-section {
    padding: 70px 0;
}

.cta-banner {
    color: #fff;
    padding: 110px 0;
    background-position: center;
    background-size: cover;
}

.cta-banner .pretitle {
    color: #faa61a;
    font-weight: bold;
    font-size: 28px;
    margin-bottom: 10px;
}

.btn {
    display: inline-block;
    padding: 12px 22px;
    border-radius: 4px;
    font-weight: bold;
    transition: .2s ease;
}

.btn-primary,
.btn-accent {
    background: #faa61a;
    color: #222;
}

.btn-primary:hover,
.btn-accent:hover {
    background: #ffcd70;
}

.btn-outline {
    border: 1px solid #222;
    color: #222;
    background: transparent;
}

.btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.offer-card {
    border: 1px solid #ddd;
    padding: 20px;
    background: #fff;
    transition: .2s ease;
}

.offer-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,.08);
}

.offer-head {
    text-align: center;
}

.offer-model {
    color: #666;
    margin-bottom: 16px;
}

.offer-body {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 18px;
}

.offer-description {
    font-size: 15px;
    color: #444;
}

.offer-price {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    margin: 14px 0;
}

.offer-meta {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    align-items: center;
}

.brand-item {
    text-align: center;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.step-card {
    background: #fff;
    padding: 24px;
    border-radius: 6px;
}

.step-icon {
    font-size: 46px;
    margin-bottom: 15px;
}

.site-footer {
    background: #3B5A99;
    color: #fff;
    padding-top: 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding-bottom: 30px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col li {
    margin-bottom: 10px;
}

.footer-col a {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.15);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.rgpd-open-settings{cursor:pointer;}
.socials {
    display: flex;
    gap: 15px;
}

.newsletter-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.65);
    z-index: 3000;
    padding: 20px;
}

.newsletter-modal.open {
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-modal-content {
    background: #fff;
    width: min(840px, 100%);
    position: relative;
    padding: 20px;
    text-align: center;
}

.newsletter-close {
    position: absolute;
    top: 10px;
    right: 10px;
    border: 0;
    background: none;
    font-size: 30px;
    cursor: pointer;
}

.full {
    width: 100%;
}

.small {
    font-size: 13px;
    opacity: .85;
}

@media (max-width: 991px) {
    .main-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: inline-block;
    }

    .offers-grid,
    .brands-grid,
    .steps-grid,
    .footer-grid,
    .offer-body {
        grid-template-columns: 1fr;
    }

    .slide {
        min-height: 520px;
    }

    .slide-overlay {
        margin: 60px 0;
        padding: 24px;
    }
}

/*********************************************************

MODIFICATIONS MENUS

**********************************************************/

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    border-bottom: 1px solid #ddd;
}

.header-top {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 90px;
}

.main-nav {
    flex: 1;
    position: static;
}

.main-nav > ul {
    display: flex;
    justify-content: flex-end;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav > ul > li {
    position: relative;
}

.main-nav > ul > li > a {
    display: inline-flex;
    align-items: center;
    min-height: 90px;
    position: relative;
    z-index: 1002;
}

.main-nav > ul > li > a {
    color: #222;
    transition: color 0.25s ease;
}

.main-nav > ul > li > a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 22px;
    width: 100%;
    height: 3px;
    background: #3b5a99;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.28s ease;
}

.main-nav > ul > li:hover > a::after,
.main-nav > ul > li:focus-within > a::after,
.main-nav > ul > li.is-active > a::after {
    transform: scaleX(1);
}

.main-nav > ul > li.is-active > a {
    color: #3b5a99;
}

.main-nav > ul > li.fullwidth-dropdown {
    position: static;
}

.main-nav > ul > li.has-dropdown::after {
    content: "";
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    height: 24px;
    background: transparent;
}

.mega-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 0;
    width: 960px;
    background: #fff;
    border: 1px solid #ddd;
    padding: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,.12);
    z-index: 1001;
}

.has-dropdown:hover .mega-menu,
.has-dropdown:focus-within .mega-menu {
    display: block;
}

.mega-menu-full {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    max-width: 100vw;
    margin-top: 0;
    background: #fff;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    border-left: 0;
    border-right: 0;
    padding: 35px 40px;
    box-shadow: 0 15px 35px rgba(0,0,0,.12);
    z-index: 1001;
    box-sizing: border-box;
}

.mega-menu-full .mega-grid {
    width: min(1280px, 92%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.mega-card {
    text-align: center;
    min-width: 0;
}

.mega-card-image {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    border-radius: 0;
    margin-bottom: 18px;
}

.mega-card h3 {
    margin: 0 0 12px;
    min-height: 52px;
}

.mega-card p {
    min-height: 96px;
    margin: 0 0 18px;
}

@media (max-width: 991px) {
    .main-nav > ul > li > a {
        min-height: auto;
    }

    .main-nav > ul > li.has-dropdown::after {
        display: none;
    }

    .mega-menu-full {
        position: static;
        left: auto;
        transform: none;
        width: 100%;
        max-width: 100%;
        padding: 20px;
        border-left: 1px solid #ddd;
        border-right: 1px solid #ddd;
    }

    .mega-menu-full .mega-grid {
        width: 100%;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .mega-card-image {
        height: auto;
    }
}

/*********************************************************

END..................MODIFICATIONS MENUS

**********************************************************/


/*********************************************************

MODIFICATIONS SLIDES


**********************************************************/

.hero-slider {
    position: relative;
    overflow: hidden;
    min-height: 700px;
}

.hero-slider .slides {
    position: relative;
    min-height: 700px;
}

.slide {
    position: absolute;
    inset: 0;
    min-height: 700px;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease-in-out, visibility 0.6s ease-in-out;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.slide-overlay {
    background: rgba(255,255,255,.88);
    max-width: 760px;
    padding: 32px;
    margin: 100px 0;
}

@media (max-width: 991px) {
    .hero-slider,
    .hero-slider .slides,
    .slide {
        min-height: 520px;
    }

    .slide-overlay {
        margin: 60px 0;
        padding: 24px;
    }
}

/*********************************************************

END..................MODIFICATIONS SLIDES


**********************************************************/

/*********************************************************

MODIFICATIONS TEXTE SLIDER DESKTOP

**********************************************************/

@media (min-width: 992px) {
    .slide-overlay {
        background: rgba(255, 255, 255, 0.58);
        max-width: 900px;
        padding: 42px 46px;
        backdrop-filter: blur(2px);
    }

    .slide-meta {
        font-size: 17px;
        font-weight: 700;
        letter-spacing: 0.08em;
        color: #4a4a4a;
        margin-bottom: 16px;
    }

    .slide-overlay h2 {
        font-size: 54px;
        line-height: 1.08;
        font-weight: 700;
        color: #3f3f3f;
        margin: 0;
		text-transform: uppercase;
    }
}


/*********************************************************

MODIFICATIONS TEXTE H2

**********************************************************/
.offers-section .section-title,
.brands-section .section-title {
    font-size: clamp(32px, 4vw, 42px);
    color: #3b5a99;
    font-weight: 700;
    line-height: 1.2;
}

/*********************************************************

CARROUSEL INFINI POUR LES LOGOS MARQUES PARTENAIRES

**********************************************************/

.brands-section {
    padding: 70px 0;
    background: #fff;
    overflow: hidden;
}

.brands-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin-top: 35px;
}

.brands-track {
    display: flex;
    align-items: center;
    gap: 50px;
    width: max-content;
    animation: brandsScroll 28s linear infinite;
}

.brand-item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
}

.brand-item img {
    max-height: 70px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.85;
    transition: all 0.3s ease;
}

.brand-item img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

@keyframes brandsScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .brands-track {
        gap: 30px;
        animation: brandsScroll 20s linear infinite;
    }

    .brand-item {
        min-width: 110px;
    }

    .brand-item img {
        max-height: 50px;
        max-width: 110px;
    }
}

/*********************************************************

FIN................CARROUSEL INFINI POUR LES LOGOS MARQUES PARTENAIRES

**********************************************************/



/*********************************************************

GUIDE D'ACHAT

**********************************************************/

.page-hero {
    position: relative;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 390px;
    display: flex;
    align-items: center;
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(195, 210, 235, 0.62);
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero-content {
    padding: 60px 0;
}

.page-hero-content h1 {
    margin: 0 0 28px;
    font-size: clamp(38px, 5vw, 66px);
    line-height: 1.08;
    font-weight: 700;
    color: #3b5a99;
    text-transform: uppercase;
    max-width: 1200px;
}

.page-hero-content .hero-subtitle {
    margin: 0;
    font-size: clamp(24px, 2.4vw, 34px);
    line-height: 1.2;
    font-weight: 700;
    color: rgba(92, 95, 140, 0.72);
}

.content-section {
    padding: 70px 0;
    background: #f3f3f3;
}

.content-section.section-light {
    background: #f3f3f3;
}

.content-section .narrow {
    width: min(1100px, 92%);
    margin: 0 auto;
}

.two-columns {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 56px;
    align-items: start;
}

.content-media img {
    width: 100%;
    border: 10px solid #faa61a;
    border-radius: 2px;
}

.content-text h2,
.content-section h2 {
    font-size: clamp(34px, 3.5vw, 52px);
    line-height: 1.15;
    color: #3b5a99;
    margin: 0 0 22px;
    font-weight: 700;
}

.content-text h3,
.content-section h3 {
    font-size: clamp(22px, 2vw, 30px);
    line-height: 1.25;
    color: #111;
    margin: 42px 0 20px;
    font-weight: 700;
}

.content-text p,
.content-section p {
    font-size: 18px;
    line-height: 1.85;
    color: #1f1f1f;
    margin: 0 0 24px;
}

.content-text h2::after {
    content: "";
    display: block;
    width: 100%;
    max-width: 520px;
    height: 1px;
    background: #d8d8d8;
    margin: 20px 0 0;
}

.content-section .center img {
    margin: 0 auto;
}

.content-section .btn {
    min-width: 320px;
    text-align: center;
    padding: 16px 26px;
    font-size: 16px;
}

.content-section .center .btn {
    margin-top: 8px;
}

.guide-hero + .content-section {
    padding-top: 42px;
}

@media (max-width: 991px) {
    .page-hero {
        min-height: 280px;
    }

    .page-hero-content {
        padding: 40px 0;
    }

    .two-columns {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .guide-gallery {
        grid-template-columns: 1fr;
    }

    .guide-gallery-item img {
        height: auto;
    }

    .content-section {
        padding: 45px 0;
    }

    .content-text h2,
    .content-section h2 {
        font-size: 32px;
    }

    .content-text h3,
    .content-section h3 {
        font-size: 24px;
    }

    .content-text p,
    .content-section p {
        font-size: 17px;
        line-height: 1.7;
    }

    .content-section .btn {
        min-width: auto;
        width: 100%;
    }
}
.guide-image-blue img {
    border: 10px solid #3b5a99;
    margin: 0 auto;
}

/*********************************************************

FIN..................GUIDE D'ACHAT

**********************************************************/
/*********************************************************

AJUSTEMENT TAILLE  GUIDE D'ACHAT

**********************************************************/

.page-hero-content h1 {
    margin: 0 0 24px;
    font-size: clamp(30px, 4vw, 52px);
    line-height: 1.1;
    font-weight: 700;
    color: #3b5a99;
    text-transform: uppercase;
    max-width: 1200px;
}

.page-hero-content .hero-subtitle {
    margin: 0;
    font-size: clamp(18px, 2vw, 26px);
    line-height: 1.2;
    font-weight: 700;
    color: rgba(92, 95, 140, 0.72);
}

.content-text h2,
.content-section h2 {
    font-size: clamp(24px, 2.4vw, 38px);
    line-height: 1.2;
    color: #3b5a99;
    margin: 0 0 18px;
    font-weight: 700;
}

.content-text h3,
.content-section h3 {
    font-size: clamp(18px, 1.7vw, 28px);
    line-height: 1.3;
    color: #111;
    margin: 34px 0 16px;
    font-weight: 700;
}

.content-text p,
.content-section p {
    font-size: 16px;
    line-height: 1.75;
    color: #1f1f1f;
    margin: 0 0 20px;
}

.content-section .btn {
    min-width: 280px;
    text-align: center;
    padding: 14px 22px;
    font-size: 15px;
}

@media (max-width: 991px) {
    .content-text h2,
    .content-section h2 {
        font-size: 26px;
    }

    .content-text h3,
    .content-section h3 {
        font-size: 21px;
    }

    .content-text p,
    .content-section p {
        font-size: 15px;
        line-height: 1.7;
    }
}

/*********************************************************

FIN...............AJUSTEMENT TAILLE  GUIDE D'ACHAT

**********************************************************/


/*********************************************************

CARROUSEL INFINI IMAGES GUIDE D'ACHAT

**********************************************************/

.guide-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin-top: 10px;
}

.guide-track {
    display: flex;
    align-items: stretch;
    gap: 8px;
    width: max-content;
    animation: guideScroll 30s linear infinite;
}

.guide-slide-item {
    flex: 0 0 auto;
    width: 360px;
}

.guide-slide-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

@keyframes guideScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 4px));
    }
}

@media (max-width: 991px) {
    .guide-slide-item {
        width: 280px;
    }

    .guide-slide-item img {
        height: 200px;
    }

    .guide-track {
        animation: guideScroll 22s linear infinite;
    }
}








/*********************************************************

fin................CARROUSEL INFINI IMAGES GUIDE D'ACHAT

**********************************************************/

.content-section {
    padding-top: 50px;
    padding-bottom: 20px;
}

/*********************************************************

PAGE SERVICES

**********************************************************/

.services-hero {
    min-height: 700px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.services-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.08);
}

.services-hero .page-hero-content {
    position: relative;
    z-index: 2;
    padding: 140px 0;
}

.services-hero .page-hero-content h1 {
    color: #fff;
    font-size: clamp(52px, 7vw, 96px);
    line-height: 1.05;
    margin: 0;
    text-transform: uppercase;
}

.services-intro-section {
    background: #f3f3f3;
    padding-top: 50px;
    padding-bottom: 0;
}

.services-intro {
    font-size: 18px;
    line-height: 1.7;
    color: #2a2a2a;
    max-width: 980px;
    margin: 0 auto;
}

.services-cards-section {
    background: #f3f3f3;
    padding-top: 45px;
    padding-bottom: 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 38px;
}

.service-card {
    background: #f3f3f3;
    display: flex;
    flex-direction: column;
}

.service-card-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.service-card-body {
    padding: 34px 38px 28px;
    background: #f3f3f3;
    flex: 1;
}

.service-card-body h2 {
    font-size: clamp(24px, 2.1vw, 32px);
    line-height: 1.25;
    color: #111;
    margin: 0 0 26px;
    font-weight: 700;
}

.service-card-body p {
    font-size: 16px;
    line-height: 1.9;
    color: #222;
    margin: 0 0 26px;
}

.service-link {
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    color: #3b5a99;
    border-bottom: 2px solid #3b5a99;
    padding-bottom: 2px;
}

.more-services-section {
    background: #faa61a;
    padding: 90px 0;
    margin-top: 70px;
}

.more-services-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
}

.more-services-left h2 {
    font-size: clamp(42px, 5vw, 72px);
    line-height: 1.05;
    color: #fff;
    margin: 0 0 18px;
    font-weight: 700;
}

.more-services-left p {
    font-size: 18px;
    line-height: 1.7;
    color: #fff;
    margin: 0;
    max-width: 300px;
}

.more-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 34px;
}

.more-service-item h3 {
    font-size: 24px;
    line-height: 1.25;
    color: #fff;
    margin: 0 0 16px;
    font-weight: 700;
}

.more-service-item p {
    font-size: 16px;
    line-height: 1.8;
    color: #fff;
    margin: 0;
}

@media (max-width: 1100px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .more-services-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .more-services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .services-hero {
        min-height: 420px;
    }

    .services-hero .page-hero-content {
        padding: 90px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .service-card-body {
        padding: 26px 24px 22px;
    }

    .service-card-image img {
        height: 200px;
    }

    .services-intro {
        font-size: 16px;
    }

    .more-services-section {
        padding: 60px 0;
        margin-top: 50px;
    }

    .more-services-left h2 {
        font-size: 42px;
    }

    .more-services-left p,
    .more-service-item p {
        font-size: 15px;
    }

    .more-service-item h3 {
        font-size: 22px;
    }
}

/*********************************************************

fin.....................PAGE SERVICES

**********************************************************/
/*********************************************************

PAGE LA SOCIETE

**********************************************************/

.company-title-section {
    background: #f3f3f3;
    padding: 55px 0 35px;
}

.company-title-container h1 {
    margin: 0;
    font-size: clamp(38px, 5vw, 74px);
    line-height: 1.02;
    font-weight: 700;
    text-transform: uppercase;
    color: #4a59a8;
    max-width: 1400px;
}

.company-banner {
    min-height: 55vh;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.company-content-section {
    background: #f3f3f3;
    padding: 55px 0 0;
}

.company-grid {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 46px;
    align-items: start;
}

.company-side-left h2 {
    margin: 0;
    font-size: 24px;
    line-height: 1.35;
    font-weight: 700;
    color: #111;
}

.company-main-text .lead {
    font-size: 20px;
    line-height: 1.7;
    margin: 0 0 34px;
    color: #222;
}

.company-main-text p {
    font-size: 16px;
    line-height: 1.95;
    margin: 0 0 24px;
    color: #222;
    text-align: justify;
}

.company-side-right h3 {
    margin: 0 0 28px;
    font-size: 24px;
    line-height: 1.3;
    font-weight: 700;
    color: #111;
}

.company-contact-block {
    margin-bottom: 34px;
}

.company-contact-block p {
    margin: 0 0 10px;
    font-size: 16px;
    line-height: 1.7;
    color: #222;
}

.company-side-right a {
    color: #7a7a7a;
}

@media (max-width: 1100px) {
    .company-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .company-banner {
        min-height: 36vh;
    }
}

@media (max-width: 768px) {
    .company-title-section {
        padding: 40px 0 25px;
    }

    .company-title-container h1 {
        font-size: 34px;
        line-height: 1.08;
    }

    .company-banner {
        min-height: 240px;
    }

    .company-content-section {
        padding: 40px 0 0;
    }

    .company-main-text .lead {
        font-size: 18px;
        line-height: 1.65;
    }

    .company-main-text p,
    .company-contact-block p {
        font-size: 15px;
        line-height: 1.8;
    }

    .company-side-left h2,
    .company-side-right h3 {
        font-size: 22px;
    }
}
/*********************************************************

fin.......................PAGE LA SOCIETE

**********************************************************/
/*********************************************************

PAGE CONTACT

**********************************************************/

.contact-title-section {
    background: #f3f3f3;
    padding: 55px 0 35px;
}

.contact-title-container h1 {
    margin: 0;
    font-size: clamp(40px, 5vw, 72px);
    line-height: 1.05;
    font-weight: 700;
    text-transform: uppercase;
    color: #111;
    max-width: 900px;
}

.contact-map-section {
    background: #f3f3f3;
    padding: 0;
}

.contact-map-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    align-items: stretch;
}

.contact-map-wrap {
    min-height: 750px;
}

#contactMap {
    width: 100%;
    height: 100%;
    min-height: 750px;
}

.contact-info-panel {
    background: #efefef;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.contact-address p {
    margin: 0 0 10px;
    font-size: 24px;
    line-height: 1.35;
    font-weight: 700;
    color: #1a1a1a;
}

.contact-address {
    margin-bottom: 70px;
}

.contact-person-name {
    margin: 0 0 8px;
    font-size: 22px;
    line-height: 1.35;
    color: #7a7a7a;
    font-weight: 700;
}

.contact-person-phone {
    margin: 0;
    font-size: 22px;
    line-height: 1.35;
    color: #111;
    font-weight: 700;
}

.contact-form-section {
    background: #4666a9;
    padding: 55px 0 70px;
}

.contact-form-container {
    width: min(1020px, 92%);
    margin: 0 auto;
}

.contact-form-visual {
    color: #fff;
}

.form-row {
    margin-bottom: 22px;
}

.form-row label,
.form-label {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    line-height: 1.4;
    color: #fff;
}

.form-row span,
.form-label span {
    color: #fff;
}

.form-row input,
.form-row textarea {
    width: 100%;
    border: 0;
    background: rgba(255,255,255,0.14);
    color: #fff;
    padding: 12px 14px;
    font-size: 16px;
    outline: none;
}

.form-row input {
    height: 42px;
}

.form-row textarea {
    resize: vertical;
    min-height: 230px;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
    color: rgba(255,255,255,0.75);
}

.form-civility {
    margin-bottom: 18px;
}

.civility-options {
    display: flex;
    flex-wrap: wrap;
    gap: 26px;
    margin-top: 8px;
}

.civility-option {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
}

.civility-option input {
    width: 18px;
    height: 18px;
    accent-color: #fff;
}

.form-actions {
    margin: 12px 0 20px;
}

.contact-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.85);
    padding: 12px 22px;
    font-size: 16px;
    font-weight: 700;
    cursor: default;
}

.btn-icon {
    font-size: 18px;
    line-height: 1;
}

.fake-captcha {
    width: 304px;
    max-width: 100%;
    min-height: 78px;
    background: #fff;
    border-radius: 4px;
    display: grid;
    grid-template-columns: 46px 1fr 88px;
    align-items: center;
    gap: 12px;
    padding: 14px 14px 10px;
    color: #222;
}

.fake-captcha-box {
    width: 28px;
    height: 28px;
    border: 1px solid #777;
    border-radius: 3px;
    background: #f8f8f8;
}

.fake-captcha-text {
    font-size: 14px;
    line-height: 1.3;
}

.fake-captcha-badge {
    text-align: center;
    font-size: 10px;
    line-height: 1.2;
    color: #666;
}

.fake-captcha-logo {
    width: 24px;
    height: 24px;
    margin: 0 auto 4px;
    border-radius: 4px;
    background: #36b9d6;
    color: #fff;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: lowercase;
}

.fake-captcha-brand {
    font-weight: 700;
    margin-bottom: 2px;
}

.fake-captcha-links {
    font-size: 9px;
}

@media (max-width: 1100px) {
    .contact-map-grid {
        grid-template-columns: 1fr;
    }

    .contact-map-wrap,
    #contactMap {
        min-height: 520px;
    }

    .contact-info-panel {
        padding: 36px 24px;
    }
}

@media (max-width: 768px) {
    .contact-title-section {
        padding: 40px 0 25px;
    }

    .contact-title-container h1 {
        font-size: 34px;
        line-height: 1.08;
    }

    .contact-map-wrap,
    #contactMap {
        min-height: 380px;
    }

    .contact-address p,
    .contact-person-name,
    .contact-person-phone {
        font-size: 18px;
    }

    .contact-address {
        margin-bottom: 36px;
    }

    .contact-form-section {
        padding: 40px 0 50px;
    }

    .fake-captcha {
        grid-template-columns: 40px 1fr 72px;
        gap: 10px;
        padding: 12px;
    }
}
/*********************************************************

FIN.........................PAGE CONTACT

**********************************************************/
/*********************************************************

PAGE CAMPINGS

**********************************************************/

.campings-title-section {
    background: #f3f3f3;
    padding: 40px 0 20px;
}

.campings-title-container h1 {
    margin: 0;
    font-size: clamp(34px, 4.2vw, 62px);
    line-height: 1.08;
    font-weight: 700;
    color: #111;
}

.campings-list-section {
    background: #f3f3f3;
    padding: 10px 0 0;
}

.campings-container {
    width: min(1500px, 96%);
    margin: 0 auto;
}

.camping-item {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
    align-items: stretch;
    margin-bottom: 80px;
}

.camping-photo img {
    width: 100%;
    height: 100%;
    min-height: 540px;
    object-fit: cover;
    display: block;
}

.camping-map-wrap {
    min-height: 540px;
}

.camping-map {
    width: 100%;
    height: 100%;
    min-height: 540px;
}

.camping-content {
    background: #f3f3f3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 22px 24px 22px 58px;
}

.camping-content h2 {
    margin: 0 0 10px;
    font-size: clamp(28px, 2.6vw, 38px);
    line-height: 1.15;
    font-weight: 700;
    color: #111;
}

.camping-address {
    font-size: clamp(22px, 2.1vw, 30px);
    line-height: 1.45;
    color: #2d2d2d;
    margin-bottom: 24px;
}

.camping-content h3 {
    margin: 0 0 18px;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 700;
    color: #111;
    padding-bottom: 12px;
    border-bottom: 1px solid #dddddd;
}

.camping-content p {
    margin: 0 0 26px;
    font-size: 16px;
    line-height: 1.9;
    color: #222;
}

.camping-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 700;
    color: #111;
    border-bottom: 3px solid #4a67ab;
    padding-bottom: 6px;
    margin-bottom: 26px;
}

.camping-link-icon {
    font-size: 18px;
    line-height: 1;
}

.camping-meta {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.camping-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: 16px;
    line-height: 1.5;
    color: #222;
}

.camping-meta-item-link {
    color: #222;
}

.camping-meta-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    min-width: 22px;
    font-size: 18px;
    line-height: 1;
    color: #555;
}

@media (max-width: 1200px) {
    .camping-item {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-bottom: 55px;
    }

    .camping-photo img,
    .camping-map-wrap,
    .camping-map {
        min-height: 420px;
    }

    .camping-content {
        padding: 10px 0 0;
    }
}

@media (max-width: 768px) {
    .campings-title-section {
        padding: 30px 0 16px;
    }

    .campings-title-container h1 {
        font-size: 34px;
    }

    .camping-photo img,
    .camping-map-wrap,
    .camping-map {
        min-height: 300px;
    }

    .camping-content h2 {
        font-size: 30px;
    }

    .camping-address {
        font-size: 20px;
    }

    .camping-content p {
        font-size: 15px;
        line-height: 1.75;
    }

    .camping-link {
        font-size: 16px;
    }
}
/*********************************************************

FIN..........................PAGE CAMPINGS

**********************************************************/

/*********************************************************

PAGE NEWS

**********************************************************/
.page-hero-kicker {
    margin: 0 0 18px;
    font-size: 1.2rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 900;
    color: #fff;
}

.news-list-section {
    padding: 70px 0 90px;
    background: #efefef;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 80px;
    row-gap: 70px;
    align-items: start;
}

.news-card {
    display: flex;
    flex-direction: column;
}

.news-card-image {
    display: block;
    text-decoration: none;
    overflow: hidden;
}

.news-card-image img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 9 / 6;
    object-fit: cover;
}

.news-card-body {
    padding-top: 34px;
}

.news-card-body h2 {
    margin: 0 0 28px;
    font-size: clamp(2.2rem, 2.4vw, 3rem);
    line-height: 1.1;
    font-weight: 700;
}

.news-card-body h2 a {
    color: #111;
    text-decoration: none;
}

.news-card-body h2 a:hover {
    color: #111;
    text-decoration: none;
}

.news-card-body p {
    margin: 0 0 38px;
    font-size: 1.05rem;
    line-height: 1.9;
    color: #222;
    max-width: 95%;
}

.news-card-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 28px;
    min-width: 175px;
    border: 2px solid #1f1f1f;
    background: transparent;
    color: #111;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1;
    transition: 0.2s ease;
}

.news-card-link:hover {
    background: #111;
    color: #fff;
    text-decoration: none;
}

@media (max-width: 991px) {
    .news-grid {
        grid-template-columns: 1fr;
        column-gap: 0;
        row-gap: 55px;
    }

    .news-list-section {
        padding: 50px 0 70px;
    }

    .news-card-body {
        padding-top: 24px;
    }

    .news-card-body h2 {
        margin-bottom: 20px;
    }

    .news-card-body p {
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .news-card-body h2 {
        font-size: 2rem;
    }

    .news-card-body p {
        font-size: 1rem;
        line-height: 1.75;
        margin-bottom: 28px;
    }

    .news-card-link {
        min-width: 155px;
        padding: 13px 22px;
    }
}


/*********************************************************

FIN.......................PAGE NEWS

**********************************************************/
/*********************************************************

PAGE ARTICLE NEWS

**********************************************************/

.article-news-hero {
    position: relative;
    min-height: 78vh;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.article-news-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.12);
}

.article-news-hero .container {
    position: relative;
    z-index: 2;
}

.article-news-hero-content {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 78vh;
    text-align: center;
}

.article-news-hero-content h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(44px, 6vw, 84px);
    line-height: 1.05;
    font-weight: 800;
    text-transform: uppercase;
    max-width: 1100px;
}

.article-news-content-section {
    background: #efefef;
    padding: 70px 0 40px;
}

.article-news-container {
    width: min(980px, 92%);
    margin: 0 auto;
}

.article-news-content {
    color: #222;
}

.article-news-content p {
    margin: 0 0 24px;
    font-size: 18px;
    line-height: 1.9;
    text-align: justify;
}

.article-news-content h2 {
    margin: 36px 0 20px;
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1.2;
    color: #111;
    font-weight: 700;
}

.article-news-image-wrap {
    margin-top: 34px;
}

.article-news-image-wrap img {
    width: 100%;
    height: auto;
    display: block;
}

.article-news-pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 36px 0 0;
}

.news-nav-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 14px 20px;
    background: #f7f7f7;
    color: #111;
    border: 1px solid #e3e3e3;
    text-decoration: none;
    font-size: 16px;
    transition: 0.2s ease;
}

.news-nav-btn:hover {
    background: #fff;
    border-color: #d2d2d2;
}

.news-nav-prev {
    margin-right: auto;
}

.news-nav-next {
    margin-left: auto;
}

@media (max-width: 991px) {
    .article-news-hero,
    .article-news-hero-content {
        min-height: 56vh;
    }

    .article-news-content-section {
        padding: 45px 0 30px;
    }

    .article-news-content p {
        font-size: 16px;
        line-height: 1.8;
    }
}

@media (max-width: 767px) {
    .article-news-hero-content h1 {
        font-size: clamp(32px, 9vw, 48px);
    }

    .article-news-pagination {
        flex-direction: column;
        align-items: stretch;
    }

    .news-nav-prev,
    .news-nav-next {
        margin: 0;
    }

    .news-nav-btn {
        width: 100%;
    }
}

/*********************************************************

FIN..................PAGE ARTICLE NEWS

**********************************************************/
/*********************************************************

                       MODIFICATIONS INDEX


**********************************************************/
.offer-image {
    width: 100%;
    height: 260px;
    overflow: hidden;
    background: #f4f4f4;
}

.offer-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center center;
}
/*********************************************************

END..................MODIFICATIONS INDEX


**********************************************************/
/*********************************************************

					MODIFICATIONS MENU


**********************************************************/
.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav > ul {
    display: flex;
    align-items: center;
    gap: 0;
}

.main-nav > ul > li {
    position: relative;
}

.main-nav > ul > li > a {
    display: block;
    padding: 18px 14px;
}

.main-nav .has-dropdown > a::after {
    content: " ▾";
    font-size: 0.75em;
}

.main-nav .simple-dropdown {
    position: absolute;
    top: 100%;
    left: 12px;
    min-width: 240px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    display: block;
    padding: 8px 0;
}

.main-nav .has-dropdown:hover .simple-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-nav .simple-dropdown li {
    display: block;
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.main-nav .simple-dropdown li:last-child {
    border-bottom: none;
}

.main-nav .simple-dropdown a {
    display: block;
    width: 100%;
    padding: 12px 16px 12px 26px;
    color: #222;
    text-decoration: none;
    white-space: nowrap;
    box-sizing: border-box;
}

.main-nav .simple-dropdown a:hover {
    background: #f5f5f5;
    color: #000;
    padding-left: 32px;
}
/*********************************************************

END..................MODIFICATIONS MENU


**********************************************************/
/*********************************************************

                     MESSAGES CONF OU ERREUR FORM CONTACT


**********************************************************/
.contact-alert {
    max-width: 850px;
    margin: 0 auto 35px auto;
    padding: 24px 28px;
    border-radius: 12px;
    text-align: center;
    font-size: 1.05rem;
    line-height: 1.5;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
    scroll-margin-top: 140px;
}

.contact-alert strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1.25rem;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.contact-alert span {
    display: block;
    font-size: 1rem;
}

.contact-alert-success {
    background: #e8f8ef !important;
    color: #145c2e !important;
    border: 3px solid #2fa75a !important;
}

.contact-alert-error {
    background: #fff1f1 !important;
    color: #8a1515 !important;
    border: 3px solid #d64040 !important;
}
/*********************************************************

END..................MESSAGES CONF OU ERREUR FORM CONTACT


**********************************************************/