:root{
--primary:#0057FF;
--secondary:#FFD400;
--dark:#0f172a;
--light:#f8fafc;
--text:#333;
--radius:15px;
--shadow:0 10px 30px rgba(0,0,0,.08);
}

/* RESET */

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

html{
scroll-behavior:smooth;
}

body{
font-family:Arial,sans-serif;
line-height:1.7;
color:var(--text);
background:#fff;
padding-bottom:0px;
}

img{
max-width:100%;
display:block;
}

a{
text-decoration:none;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

/* HEADER */

header{
background:rgba(15,23,42,.96);
position:sticky;
top:0;
z-index:999;
}

nav{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 0;
}

.logo{
font-size:34px;
font-weight:800;
color:#fff;
}

.logo span{
color:var(--secondary);
}

.logo a{
color:inherit;
}

nav ul{
display:flex;
list-style:none;
gap:25px;
}

nav a{
color:#fff;
font-weight:600;
}

/* HERO CLASSIQUE */

.hero{
background:linear-gradient(135deg,#0057FF,#0ea5e9);
color:#fff;
text-align:center;
padding:120px 20px;
}

.hero-small{
padding:80px 20px;
}

.hero h1{
font-size:56px;
margin-bottom:20px;
}

.hero-subtitle{
font-size:24px;
max-width:800px;
margin:auto;
}

/* BOUTONS */

.btn{
display:inline-block;
padding:15px 30px;
border-radius:10px;
font-weight:700;
transition:.3s;
}

.btn-primary{
background:var(--secondary);
color:#111;
}

.btn-primary:hover{
transform:translateY(-2px);
}

.btn-secondary{
background:#fff;
color:#111;
}

/* TITRES */

section{
padding:80px 0;
}

.section-title{
text-align:center;
margin-bottom:50px;
}

.section-title h2{
font-size:42px;
color:var(--dark);
position:relative;
display:inline-block;
}

.section-title h2::after{
content:'';
display:block;
width:80px;
height:4px;
background:var(--secondary);
margin:15px auto 0;
border-radius:50px;
}

/* CARTES */

.cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:25px;
}

.card{
background:#fff;
padding:30px;
border-radius:20px;
box-shadow:var(--shadow);
transition:.3s;
}

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

.card h3{
margin-bottom:15px;
color:var(--dark);
}

.card p{
margin-bottom:20px;
}

/* SERVICES PREMIUM */

.services-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
}

.service-box{
background:#fff;
padding:35px 25px;
border-radius:20px;
text-align:center;
box-shadow:var(--shadow);
border:1px solid #eee;
transition:.3s;
}

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

.service-icon{
width:70px;
height:70px;
margin:auto auto 20px;
background:#fff7d1;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:32px;
}

.service-btn{
display:inline-block;
padding:12px 25px;
background:var(--secondary);
color:#111;
border-radius:8px;
font-weight:bold;
}

/* HERO VILLES */

.city-hero{
height:700px;
background-size:cover;
background-position:center;
background-repeat:no-repeat;
display:flex;
align-items:center;
position:relative;
}

.city-hero::before{
content:'';
position:absolute;
inset:0;
background:linear-gradient(
90deg,
rgba(15,23,42,.45) 0%,
rgba(15,23,42,.25) 40%,
rgba(15,23,42,.10) 100%
);
}

.hero-container{
position:relative;
z-index:2;
width:100%;
max-width:1200px;
margin:auto;
padding:0 30px;
}

.hero-left{
max-width:800px;
color:#fff;
}

.hero-left h1{
font-size:64px;
    line-height:1.1;
    margin-bottom:25px;
    font-weight:800;
}

.hero-left p{
font-size:24px;
margin-bottom:25px;
}

.hero-badges{
display:flex;
flex-wrap:wrap;
gap:12px;
margin-bottom:30px;
}

.hero-badges span{
background:rgba(15,23,42,.9);
padding:12px 20px;
border-radius:30px;
border:1px solid var(--secondary);
}

.hero-phone{
display:inline-block;
background:var(--secondary);
color:#111;
padding:18px 35px;
border-radius:10px;
font-size:24px;
font-weight:bold;
}

/* PRESENTATION VILLE */

.about-city{
background:#fff;
}

.about-grid{
display:grid;
grid-template-columns:1fr 450px;
gap:50px;
align-items:center;
}

.about-grid h2{
font-size:42px;
margin-bottom:25px;
}

.about-grid p{
font-size:18px;
margin-bottom:20px;
}

.about-grid img{
border-radius:20px;
box-shadow:var(--shadow);
}

/* GALERIE */

.gallery{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
}

.gallery img{
height:250px;
width:100%;
object-fit:cover;
border-radius:15px;
box-shadow:var(--shadow);
transition:.3s;
}

.gallery img:hover{
transform:scale(1.03);
}

/* CONFIANCE */

.trust{
background:var(--light);
}

.trust-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
}

.trust-item{
background:#fff;
padding:20px;
border-radius:15px;
text-align:center;
box-shadow:var(--shadow);
}

/* CONTACT */

.contact-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
}

.contact-info,
.contact-form{
background:#fff;
padding:30px;
border-radius:20px;
box-shadow:var(--shadow);
}

.contact-form form{
display:flex;
flex-direction:column;
gap:15px;
}

.contact-form input,
.contact-form textarea{
padding:15px;
border:1px solid #ddd;
border-radius:10px;
font-size:16px;
}

/* FOOTER */

footer{
background:var(--dark);
color:#fff;
padding:60px 0 30px;
}

.footer-container{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:40px;
padding-left:20px;
    padding-right:20px;
}

.footer-container h4{
color:var(--secondary);
margin-bottom:15px;
}

.footer-container a{
color:#fff;
}

.footer-bottom{
margin-top:40px;
padding-top:20px;
border-top:1px solid rgba(255,255,255,.1);
text-align:center;
}

/* CTA FIXE */

.cta-bar{
width:100%;
    background:var(--secondary);

    padding:20px 30px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    margin-top:0;

}

.cta-left{
    color:#111;
}

.cta-button{
background:var(--dark);
color:#fff;
padding:15px 25px;
border-radius:10px;
font-weight:bold;
}

/* ==========================
   MOBILE
========================== */

@media(max-width:768px){

/* HEADER */

nav{
    flex-direction:column;
    gap:15px;
}

nav ul{
    flex-wrap:wrap;
    justify-content:center;
    gap:15px;
}

.logo{
    font-size:28px;
}

/* HERO */

.hero{
    padding:70px 20px;
}

.hero h1,
.hero-left h1{
    font-size:42px;
    line-height:1.2;
}

.hero-subtitle,
.hero-left p{
    font-size:18px;
}

/* HERO VILLES */

.city-hero{
    min-height:650px;
    height:auto;
}

.hero-container{
    padding:30px 20px;
}

.hero-left{
    max-width:100%;
}

.hero-badges{
    flex-direction:column;
    align-items:flex-start;
}

.hero-badges span{
    width:auto;
}

.hero-phone{
    display:block;
    width:100%;
    max-width:320px;
    margin-top:20px;
    text-align:center;
    font-size:20px;
    padding:15px;
}

/* GRILLES */

.about-grid,
.contact-grid{
    grid-template-columns:1fr;
}

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

.cards{
    grid-template-columns:1fr;
}

.trust-grid{
    grid-template-columns:1fr;
}

.gallery{
    grid-template-columns:1fr;
}

/* TITRES */

.section-title h2{
    font-size:32px;
}

.about-grid h2{
    font-size:32px;
}

/* CTA MOBILE */

.cta-bar{

    display:flex;
    flex-direction:column;

    gap:20px;

    text-align:center;

    padding:30px 20px;

    margin-top:30px;
}

.cta-left{
    display:block;
}

.cta-button{

    display:inline-block;

    background:#0f172a;
    color:#fff;

    padding:15px 25px;

    border-radius:12px;

    font-size:20px;
    font-weight:700;
}

.footer-container{
    padding-left:20px;
    padding-right:20px;
}

.footer-bottom{
    padding-left:20px;
    padding-right:20px;
}

body{
    padding-bottom:0;
}

} 

/* FIN DU MEDIA QUERY MOBILE */


/* ==========================
   COOKIE RGPD PREMIUM
========================== */

.cookie-banner{

display:none;

position:fixed;

bottom:20px;

left:20px;

right:20px;

z-index:999999;

justify-content:center;

}

.cookie-box{

max-width:1000px;

width:100%;

background:#0f172a;

color:white;

padding:25px 30px;

border-radius:15px;

box-shadow:0 15px 40px rgba(0,0,0,.25);

display:flex;

justify-content:space-between;

align-items:center;

gap:30px;

border:2px solid #FFD400;

}

.cookie-text h3{

margin-bottom:10px;

color:#FFD400;

font-size:22px;

}

.cookie-text p{

margin:0;

line-height:1.7;

font-size:15px;

}

.cookie-actions{

display:flex;

align-items:center;

gap:12px;

flex-wrap:wrap;

}

.cookie-btn{

border:none;

padding:12px 22px;

border-radius:8px;

font-weight:bold;

cursor:pointer;

font-size:15px;

}

.cookie-accept{

background:#FFD400;

color:#000;

}

.cookie-refuse{

background:#fff;

color:#0f172a;

}

.cookie-link{

color:#FFD400;

font-weight:bold;

text-decoration:none;

}

.cookie-link:hover{

text-decoration:underline;

}

@media(max-width:768px){

.cookie-banner{

left:10px;

right:10px;

bottom:10px;

}

.cookie-box{

flex-direction:column;

align-items:flex-start;

padding:20px;

}

.cookie-actions{

width:100%;

flex-direction:column;

}

.cookie-btn{

width:100%;

}

.cookie-link{

width:100%;

text-align:center;

}

}

