:root{
  --main:#e43d30;
  --dark:#151515;
  --soft:#f7f7f7;
  --text:#333;
  --muted:#6f6f6f;
  --gold:#ffc24a;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  font-family:Arial,Helvetica,sans-serif;
  color:var(--text);
  line-height:1.7;
  background:#fff;
}

/* NAVBAR */
.navbar{
  background:#fffffff5;
  box-shadow:0 8px 26px #00000014;
  padding:14px 0;
}
.navbar-brand{
  font-weight:800;
  color:var(--dark);
  font-size:1.35rem;
}
.navbar-brand:hover,
.nav-link:hover{color:var(--main)}
.nav-link{
  font-weight:700;
  color:#222;
}

/* BUTTONS */
.btn-main,
.btn-outline-main{
  display:inline-block;
  text-decoration:none;
  border-radius:50px;
  padding:13px 24px;
  font-weight:800;
  transition:.2s;
}
.btn-main{
  background:var(--main);
  color:#fff;
  box-shadow:0 12px 24px #e43d3047;
}
.btn-main:hover{
  transform:translateY(-2px);
  background:#c92e24;
  color:#fff;
}
.btn-outline-main{
  border:2px solid #fff;
  color:#fff;
}
.btn-outline-main:hover{
  background:#fff;
  color:var(--main);
}

/* HERO */
.hero{
  position:relative;
  min-height:730px;
  padding:170px 0 120px;
  display:flex;
  align-items:center;
  color:#fff;

  background-image:
    linear-gradient(
      135deg,
      rgba(0,0,0,.62),
      rgba(74,42,24,.70)
    ),
    url("../images/bg-pneu-paris.webp");

  background-size:cover;
  background-position:center center;
  background-repeat:no-repeat;
}

.hero h1{
  font-size:clamp(2.4rem,5vw,4.8rem);
  font-weight:900;
  letter-spacing:-1.5px;
  line-height:1.05;
}

.lead{font-size:1.25rem}

.badge-hero{
  background:linear-gradient(
    135deg,
    rgba(255,194,74,.18),
    rgba(255,194,74,.08)
  );
  border:1px solid rgba(255,194,74,.4);
  color:#ffd77a;
  text-shadow:0 1px 2px rgba(0,0,0,.4);
  border-radius:50px;
  padding:8px 14px;
  font-weight:800;
  backdrop-filter:blur(8px);
}

/* SECTIONS */
.section-padding{padding:90px 0}
.bg-soft{background:var(--soft)}
.section-small{
  display:inline-block;
  color:var(--main);
  text-transform:uppercase;
  font-weight:900;
  letter-spacing:.08em;
  margin-bottom:10px;
}
.section-title{
  font-weight:900;
  color:var(--dark);
  letter-spacing:-.6px;
}
.text-muted-custom{color:var(--muted)}

/* CARDS */
.card-service,
.step-card,
.visual-card,
.contact-panel,
.paris-box{
  background:#fff;
  border-radius:24px;
  padding:30px;
  box-shadow:0 16px 45px #00000014;
  height:100%;
  border:1px solid #0000000d;
}

.card-service{transition:.2s}
.card-service:hover{
  transform:translateY(-5px);
  box-shadow:0 22px 55px #0000001f;
}

.icon{
  width:54px;
  height:54px;
  border-radius:18px;
  background:#ffe8e5;

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

  font-size:1.8rem;
  line-height:1;

  margin:0 auto 16px;
}

.card-service h3,
.step-card h3{
  font-weight:900;
  color:#1d1d1d;
   text-align:center;
}

.visual-card{
  background:linear-gradient(145deg,#fff,#fff2f0);
  text-align:center;
}

.tire-icon{
  width:180px;
  height:180px;
  border:28px solid #222;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 25px;
  font-size:70px;
  color:var(--main);
  background:#444;
  box-shadow:inset 0 0 0 16px #777,0 25px 55px #0003;
}

.urgence-section{
  background:#fff;
}

.urgence-card{
  position:relative;
  height:100%;
  background:#fff;
  border-radius:24px;
  padding:34px 28px 30px;
  box-shadow:0 16px 45px rgba(0,0,0,.08);
  border:1px solid rgba(0,0,0,.08);
  text-align:left;
  overflow:hidden;
}

.urgence-card::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:5px;
  background:linear-gradient(90deg,var(--main),var(--gold));
}

.urgence-number{
  width:58px;
  height:58px;
  border-radius:50%;
  background:linear-gradient(135deg,var(--main),#8b241c);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.45rem;
  font-weight:900;
  margin:0 auto 20px;
  box-shadow:0 12px 25px rgba(228,61,48,.28);
}

.urgence-card h3{
  font-weight:900;
  color:var(--dark);
  margin-bottom:12px;
}

.urgence-card p{
  color:var(--muted);
  margin-bottom:0;
}
.urgence-card{
  text-align:center;
}
.step{
  display:flex;
  align-items:flex-start;
  gap:18px;
  margin-top:28px;
}

.step-number{
  flex-shrink:0;
  width:58px;
  height:58px;
  border-radius:50%;

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

  background:linear-gradient(
    135deg,
    var(--main),
    #8b241c
  );

  color:#fff;
  font-size:1.35rem;
  font-weight:900;

  box-shadow:0 12px 25px rgba(228,61,48,.25);
}

.step h3{
  margin-bottom:8px;
  color:var(--dark);
}

.step p{
  margin-bottom:0;
  color:var(--muted);
}
@media(max-width:767px){
  .urgence-card{
    padding:30px 24px;
  }

  .urgence-number{
    width:52px;
    height:52px;
    font-size:1.25rem;
  }
}
.checklist li{margin-bottom:12px}

/* PARIS BOX */
.paris-box{
  background:linear-gradient(135deg,var(--dark),#3a1110);
  color:#fff;
  text-align:center;
  display:flex;
  flex-direction:column;
  gap:12px;
  justify-content:center;
  min-height:260px;
}
.paris-box strong{font-size:3.5rem}
.paris-box span{font-size:1.15rem}

/* FORM */
.form-box{
  background:#fff;
  border-radius:30px;
  padding:2.3rem;
  box-shadow:0 24px 60px rgba(0,31,91,.12);
}

.form-control,
.form-select{
  border-radius:15px;
  padding:.9rem 1rem;
  border:1px solid #dbe4f0;
}

.form-control:focus,
.form-select:focus{
  border-color:var(--main);
  box-shadow:0 0 0 .2rem rgba(228,61,48,.16);
  outline:0 none;
}

#contact-page{
  padding-top:0;
  background:#fff;
  margin-bottom:50px;
}

#contact-page .contact-form .form-group label{
  color:#4E4E4E;
  font-size:14px;
  font-weight:300;
}

.form-group .form-control{
  padding:7px 12px;
  border-color:#f2f2f2;
  box-shadow:none;
}

.validation{
  color:red;
  display:none;
  margin:0 0 20px;
  font-weight:400;
  font-size:13px;
}

#sendmessage{
  color:green;
  border:1px solid green;
  display:none;
  text-align:center;
  padding:15px;
  font-weight:600;
  margin-bottom:15px;
}

#errormessage{
  color:red;
  display:none;
  border:1px solid red;
  text-align:left;
  padding:15px;
  font-weight:600;
  margin-bottom:15px;
}

#formulaire.cacher{display:none}
#sendmessage.show,
#errormessage.show,
.show{display:block}

/* FAQ */
.faq .accordion-item{
  border:0;
  border-radius:18px!important;
  margin-bottom:14px;
  overflow:hidden;
  box-shadow:0 10px 30px #0000000f;
}
.accordion-button{font-weight:900}
.accordion-button:not(.collapsed){
  background:#E5EEFF;
  color:var(--dark);
}

/* CONTACT */
.contact-panel{
  background:linear-gradient(135deg,var(--main),#a81f17);
  color:#fff;
}
.contact-panel a{
  color:#fff;
  font-weight:900;
}

.btn-success{
  border-radius:50px;
  padding:12px 34px;
  font-weight:900;
}
.visual-card{
    background:#111;
    color:#fff;
    border-radius:30px;
    padding:30px;
    text-align:center;
    box-shadow:0 20px 60px rgba(0,0,0,.18);
}

.visual-card h3{
    color:#fff;
    font-weight:900;
    margin-bottom:12px;
}

.visual-card p{
    color:#d9d9d9;
    margin-bottom:0;
}

.visual-img{
    width:100%;
    max-width:640px;
    height:auto;
    display:block;
    margin:0 auto 25px;

    border:3px solid rgba(255,255,255,.9);
    border-radius:24px;

    box-shadow:
      0 0 0 8px #111,
      0 20px 50px rgba(0,0,0,.30);

    transition:.3s ease;
}

.visual-img:hover{
    transform:translateY(-3px);
}
/*.icon{
  width:64px;
  height:64px;
  margin:0 auto 18px;
  border-radius:18px;
  background:#ffe8e5;
  display:flex;
  align-items:center;
  justify-content:center;
}

.icon i{
  font-size:32px;
  color:var(--main);
}*/

.icon{
  width:auto;
  height:auto;
  margin:0 auto 20px;
  background:transparent;
  color:var(--main);
  display:flex;
  align-items:center;
  justify-content:center;
}

.icon svg{
  width:64px;
  height:64px;
  display:block;
  stroke-width:2.5;
}
/* =========================
   GALERIE
========================= */

.gallery-card{
    position:relative;
    overflow:hidden;
    border-radius:24px;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
    background:#fff;
}

.gallery-card img{
    width:100%;
    height:280px;
    object-fit:cover;
    transition:transform .5s ease;
}

.gallery-card:hover img{
    transform:scale(1.06);
}

.gallery-caption{
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    padding:18px;
    background:linear-gradient(
        transparent,
        rgba(0,0,0,.85)
    );
    color:#fff;
    font-weight:700;
    text-align:center;
}

@media(max-width:767px){

    .gallery-card img{
        height:220px;
    }

}

/* =========================
   FOOTER
========================= */

.footer-main{
  background:#111;
  color:#e8e8e8;
  padding:60px 0 25px;
}

.footer-logo{
  font-size:1.5rem;
  font-weight:900;
  color:#fff;
  text-decoration:none;
}

.footer-logo:hover{
  color:var(--gold);
}

.footer-text{
  color:#c9c9c9;
  line-height:1.8;
}

.footer-title{
  font-size:1.1rem;
  font-weight:900;
  color:#fff;
  margin-bottom:18px;
}

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

.footer-links li{
  margin-bottom:10px;
}

.footer-links a,
.footer-contact a,
.footer-bottom a{
  color:#dcdcdc;
  text-decoration:none;
  transition:.25s;
}

.footer-links a:hover,
.footer-contact a:hover,
.footer-bottom a:hover{
  color:var(--gold);
}

.footer-contact p{
  margin-bottom:10px;
}

.footer-separator{
  border-color:rgba(255,255,255,.12);
  margin:10px 0;
}

/* Réassurance */

.footer-reassurance{
  padding-bottom:35px;
}

.footer-stat{
  text-align:center;
}

.footer-stat strong{
  display:block;
  color:var(--gold);
  font-size:1.7rem;
  font-weight:900;
  line-height:1;
  margin-bottom:8px;
}

.footer-stat span{
  display:block;
  color:#cfcfcf;
  font-size:.95rem;
}

/* Bas du footer */

.footer-bottom{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
  color:#bbb;
  font-size:.95rem;
}

.footer-bottom p{
  margin:0;
}

/* Mobile */

@media(max-width:767px){

  .footer-main{
    text-align:center;
  }

  .footer-bottom{
    display:block;
    text-align:center;
  }

  .footer-bottom p:first-child{
    margin-bottom:8px;
  }

  .footer-stat strong{
    font-size:1.4rem;
  }
}
/* RESPONSIVE */
@media (min-width:1400px){
  .hero{
    min-height:90vh;
    background-position:center center;
  }
}

@media (min-width:992px) and (max-width:1399px){
  .hero{
    min-height:80vh;
    background-position:center center;
  }
}

@media (max-width:991px){
  .navbar-nav{padding-top:15px}
  .section-padding{padding:70px 0}
}

@media (min-width:768px) and (max-width:991px){
  .hero{
    min-height:70vh;
    padding:145px 0 80px;
    background-position:65% center;
  }
}

@media (max-width:767px){
  .hero{
    min-height:65vh;
    padding:110px 0 65px;
    background-position:75% center;
  }
}

@media (max-width:575px){
  .hero h1{font-size:2.25rem}
  .lead{font-size:1.08rem}
  .footer-bottom{display:block}
  .card-service,
  .step-card,
  .visual-card,
  .contact-panel,
  .paris-box{
    padding:24px;
  }
}