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

/* =========================================================
VARIABLES (MODERNE 2026)
========================================================= */
:root {
    --black: #000;
    --dark: #111;
    --dark-light: #1a1a1a;
    --red: #e30613;
    --white: #fff;
    --gray: #b5b5b5;
}

/* =========================================================
BASE
========================================================= */
body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--dark);
    color: var(--white);
    width: 100%;
    overflow-x: hidden;
}

/* =========================================================
HEADER
========================================================= */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 80px;
    background-color: var(--black);
    z-index: 1000;
}

.header-container {
    max-width: 1300px;
    height: 100%;
    margin: auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* =========================================================
LOGO
========================================================= */
.logo img {
    width: 200px;
    position: relative;
    top: 15px;
}

/* =========================================================
NAVIGATION
========================================================= */
.navigation ul {
    display: flex;
    gap: 30px;
    list-style: none;
}

.navigation a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.navigation a:hover,
.navigation a.active {
    color: var(--red);
}

/* =========================================================
BOUTON WHATSAPP
========================================================= */
.btn-whatsapp {
    background-color: #25D366;
    padding: 10px 22px;
    border-radius: 50px;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
}

.btn-whatsapp:hover {
    transform: scale(1.05);
}

/* =========================================================
HERO GÉNÉRAL
========================================================= */
.hero {
    width: 100%;
    min-height: 100vh;
    background: url('../images/hero-car.jpeg') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
}

.hero-content {
    position: relative;
    max-width: 900px;
    padding: 20px;
}

.hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.2rem;
    margin-bottom: 20px;
}

.hero p {
    color: var(--gray);
    font-size: 1.2rem;
    margin-bottom: 35px;
}

/* =========================================================
BOUTONS HERO
========================================================= */
.btn-primary {
    background-color: var(--red);
    color: #fff;
    padding: 14px 34px;
    border-radius: 50px;
    text-decoration: none;
    margin-right: 15px;
    transition: 0.3s;
}

.btn-primary:hover {
    transform: scale(1.05);
}

.btn-secondary {
    border: 2px solid #fff;
    padding: 14px 34px;
    border-radius: 50px;
    text-decoration: none;
    color: #fff;
    transition: 0.3s;
}

.btn-secondary:hover {
    background-color: var(--red);
    color: #fff;
}

/* =========================================================
SERVICES (PAGE ACCUEIL)
========================================================= */
.services {
    width: 100%;
    text-decoration: none;
    min-height: auto; /* ne pas forcer 100vh */
    background-color: var(--dark);
    text-align: center;
    padding: 120px 20px;
}

.services h2 {
    font-size: 2.6rem;
    margin-bottom: 10px;
  
    text-decoration: none;
}

.section-subtitle {
    color: var(--gray);
    margin-bottom: 60px;
     text-decoration: none;
}

/* FIX Nos Services */
.service-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start; /* important pour cartes alignées en haut */
    gap: 35px;
    width: 100%;
    padding: 0;
    margin: 0;
}

.service-cards li {
    list-style: none; /* si tu utilises li */
}

.card {
    width: 270px;
    background-color: var(--dark-light);
    border-radius: 22px;
    overflow: hidden;
    transition: 0.4s;
    display: flex;
    flex-direction: column; /* s’assure que img+h3 s’empilent correctement */
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card h3 {
    padding: 20px;
    color: #fff;
}

.card {
    width: 270px;
    background-color: var(--dark-light);
    border-radius: 22px;
    overflow: hidden;
    transition: 0.4s;
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card h3 {
    padding: 20px;
}

.card:hover {
    transform: translateY(-12px);
    box-shadow: 0 15px 40px rgba(227, 6, 19, 0.35);
}

/* =========================================================
HERO PAGE LAVAGE EXTÉRIEUR
========================================================= */
.hero-exterieur {
    width: 100%;
    
    background: url('../images/lavage-exterieur/principal.png') center 30% / cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-service::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
}

/* =========================================================
SECTION DÉTAIL SERVICES
========================================================= */
.service-detail {
    padding: 120px 20px;
    background-color: var(--dark);
    text-align: center;
}

.service-detail h2 {
    font-size: 2.6rem;
    margin-bottom: 20px;
}

.service-detail .section-subtitle {
    color: var(--gray);
    margin-bottom: 60px;
}

.service-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-item {
    background-color: var(--dark-light);
    padding: 20px;
    border-radius: 20px;
    width: 270px;
    transition: 0.4s;
}

.service-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 15px;
}

.service-item h3 {
    margin-bottom: 10px;
}

.service-item p {
    color: var(--gray);
    font-size: 0.95rem;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(227, 6, 19, 0.35);
}

/* =========================================================
CTA SECTION
========================================================= */
.cta-section {
    background-color: var(--dark-light);
    padding: 60px 20px;
    text-align: center;
    border-radius: 20px;
    margin: 50px 20px;
}

.cta-section h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

/* =========================================================
FOOTER
========================================================= */
.footer {
    background-color: var(--black);
    padding: 70px 40px;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.footer-columns {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 50px 0;
}

.footer-column {
    max-width: 260px;
}

.footer-column h3 {
    margin-bottom: 15px;
    color: var(--red);
}

.footer-column a {
    color: var(--white);
    text-decoration: none;
    transition: 0.3s;
}

.footer-column a:hover {
    color: var(--red);
}

.socials {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
}

.socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.socials img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.socials img:hover {
    transform: scale(1.2);
    filter: drop-shadow(0 6px 12px rgba(227, 6, 19, 0.7));
}

/* =========================================================
CONTACT ITEM
========================================================= */
.contact-item {
    margin: 15px 0;
}

.contact-item a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    text-decoration: none;
    font-size: 1rem;
    transition: 0.3s;
}

.contact-item a:hover {
    color: var(--red);
}

.contact-item img {
    width: 22px;
    height: 22px;
    background: transparent;
    transition: transform 0.3s ease;
}

.contact-item a:hover img {
    transform: scale(1.2);
}


/* =========================================================
HERO PAGE LAVAGE INTÉRIEUR
========================================================= */
.hero-interieur {
    background: url('../images/lavage-interieur/principal.jpg') center 17% /cover no-repeat;
   
    position: relative;
}

/* Overlay plus doux pour intérieur */
.hero-interieur::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

/* =========================================================
SECTION LAVAGE INTÉRIEUR – AJUSTEMENTS
========================================================= */
.hero-interieur .hero-content h1 {
    font-size: 3rem;
}

.hero-interieur .hero-content p {
    max-width: 700px;
    margin: 0 auto 35px;
}

/* =========================================================
SERVICE GRID – LAVAGE INTÉRIEUR
========================================================= */
.hero-interieur + .service-detail .service-item {
    background: linear-gradient(
        145deg,
        #1a1a1a,
        #141414
    );
}

/* Icônes / images plus propres */
.hero-interieur + .service-detail .service-item img {
    filter: contrast(1.05) brightness(1.05);
}

/* =========================================================
HOVER SPÉCIFIQUE INTÉRIEUR
========================================================= */
.hero-interieur + .service-detail .service-item:hover {
    box-shadow: 0 12px 35px rgba(227, 6, 19, 0.45);
    transform: translateY(-12px);
}

/* =========================================================
CTA SPÉCIFIQUE LAVAGE INTÉRIEUR
========================================================= */
.hero-interieur ~ .cta-section {
    background: linear-gradient(
        135deg,
        #1a1a1a,
        #0f0f0f
    );
}






/* ================= HERO LUSTRAGE ================= */
.hero-lustrage {
    background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
                url("../images/lustrage/photo-principal.avif") center 50% / cover no-repeat;
}

/* ================= SERVICE GRID ================= */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-item {
    background: #111;
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.service-item img {
    width: 50%;
    height: 100px;

}

.service-item h3 {
    margin: 20px 0 10px;
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
}

.service-item p {
    font-size: 14px;
    padding: 0 20px 25px;
    color: #ccc;
}




/* =========================================================
PAGE DEVIS – FORMULAIRE SUR IMAGE
========================================================= */

.hero-devis {
    min-height: 100vh;
    background: url("../images/hero-car.jpeg") center / cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
}

.devis-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.65);
}

.devis-wrapper {
    position: relative;
    max-width: 750px;
    width: 100%;
    margin: 40px;
    background: rgba(17,17,17,0.95);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
}

.devis-header {
    text-align: center;
    margin-bottom: 35px;
}

.devis-header h1 {
    font-size: 2.6rem;
    margin-bottom: 10px;
}

.devis-header p {
    color: var(--gray);
}

.devis-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-row {
    display: flex;
    gap: 15px;
}

.devis-form input,
.devis-form textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 10px;
    border: none;
    font-size: 14px;
}

.devis-form textarea {
    min-height: 120px;
    resize: vertical;
}

.form-upload label {
    font-size: 0.9rem;
    margin-bottom: 6px;
    display: block;
    color: var(--gray);
}

.form-upload input {
    background: var(--dark-light);
    color: #fff;
}

.devis-form .btn-primary {
    margin-top: 15px;
    align-self: center;
    padding: 15px 40px;
}




/* HERO / PACKS PROFESSIONNELS */
.hero-pricing-pro {
    width: 100%;
    min-height: 100vh;

    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 60px;
    font-family: 'Montserrat', sans-serif;
}

.hero-pricing-pro .overlay {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1;
}

.hero-pricing-pro .hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
}

/* PRICING GRID */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.pricing-card {
    background: rgba(255,255,255,0.05);
    border-radius: 18px;
    padding: 25px 20px;
    border-top: 4px solid var(--red);
    transition: all 0.4s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

.pricing-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #fff;
}

.price {
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--red);
    margin: 10px 0;
}

.desc {
    font-size: 0.95rem;
    color: #ccc;
    line-height: 1.6;
}

/* FEATURED PACK */
.featured {
    border: 2px solid var(--red);
    transform: scale(1.03);
}

/* BOUTON DEVIS */
.btn-primary {
    background-color: var(--red);
    color: #fff;
    text-decoration: none;
    padding: 16px 45px;
    border-radius: 50px;
    font-size: 1.1rem;
    transition: 0.3s;
}

.btn-primary:hover {
    transform: scale(1.05);
}

/* RESPONSIVE */
@media screen and (max-width: 768px){
    .hero-pricing-pro {
        padding: 100px 15px 40px;
    }
}






/* HERO Phares */
.hero-phares {
    width: 100%;
    min-height: 90vh;
    background: url('../images/phare/Voiture\ moderne\ noire.avif') center  / cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 60px;
}

.hero-phares .overlay {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 1;
}

.hero-phares .hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-phares h1 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 15px;
}

.hero-phares p {
    font-size: 1.2rem;
    color: #ccc;
}

/* SERVICE DETAIL Phares */
.service-detail .service-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.service-item {
    background-color: rgba(255,255,255,0.05);
    padding: 20px;
    border-radius: 18px;
    width: 270px;
    transition: all 0.3s;
}

.service-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 12px;
}

.service-item h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.service-item p {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.5;
}

.service-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(227,6,19,0.3);
}




/* =========================================================
HERO CONTACT
========================================================= */
.hero-contact {
    background: url('../images/LOGO.png') center 20% / cover no-repeat;
    min-height: 60vh;
}

/* =========================================================
CONTACT PREMIUM
========================================================= */
.contact-premium {
    background-color: #0e0e0e;
    padding: 100px 20px;
}

.contact-wrapper {
    max-width: 1200px; /* Style PC */
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

/* =========================================================
FORMULAIRE & CÔTÉ CONTACT
========================================================= */
.contact-form-box,
.contact-side {
    background-color: #1a1a1a;
    border-radius: 20px;
    padding: 45px;
}

.form-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.form-group {
    flex: 1;
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    color: #fff;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px;
    background-color: #2a2a2a;
    border: none;
    border-radius: 10px;
    color: #fff;
    font-size: 1rem;
}



/* =========================================================
RADIO GROUP
========================================================= */
.radio-group {
    display: flex;
    gap: 20px; /* espace entre chaque bouton, tu peux ajuster */
    align-items:var(--dark-light);
}

.radio-group label {
    color: #fff;
    font-weight: 500;
}

/* =========================================================
CONTACT SIDE LINKS
========================================================= */
.contact-side p {
    margin-bottom: 15px;
    color: #fff;
}

.contact-side a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s ease;
}

.contact-side a:hover {
    color: #e30613;
}

/* =========================================================
SOCIALS
========================================================= */
.social-title {
    margin: 35px 0 15px 0;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}

.contact-socials {
    display: flex;
    gap: 18px;
    margin-bottom: 30px;
}

.contact-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: #1f1f1f;
    transition: all 0.3s ease;
}

.contact-socials a:hover {
    background-color: #e30613;
    transform: translateY(-4px);
}

.contact-socials img {
    width: 22px;
    height: 22px;
    transition: transform 0.3s ease;
}

.contact-socials a:hover img {
    transform: scale(1.15);
}

/* =========================================================
MAP
========================================================= */
.contact-map iframe {
    width: 100%;
    height: 450px;
    border-radius: 15px;
    border: none;
}


