/* HEADER */

header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 60px;
    background:linear-gradient(180deg, #0a0a0a, #050505);
    border-bottom:1px solid rgba(255,0,0,0.15);
    position:sticky;
    top:0;
    z-index:1000;
}

/* LOGO */
.logo img{
    height:55px;
    object-fit:contain;
}

/* NAV */
nav ul{
    display:flex;
    gap:35px;
    list-style:none;
    margin:0;
    padding:0;
}

/* LIENS */
nav ul li a{
    color:#bdbdbd;
    text-decoration:none;
    font-size:14px;
    letter-spacing:1px;
    text-transform:uppercase;
    position:relative;
    transition:0.3s ease;
}

/* HOVER STYLE PREMIUM */
nav ul li a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-6px;
    width:0%;
    height:2px;
    background:#ff0000;
    transition:0.3s ease;
}

nav ul li a:hover{
    color:#fff;
}

nav ul li a:hover::after{
    width:100%;
}

/* ACTIVE (optionnel) */
nav ul li a.active{
    color:#fff;
}

nav ul li a.active::after{
    width:100%;
}

/* RESPONSIVE */
@media(max-width:900px){
    header{
        flex-direction:column;
        gap:15px;
        padding:20px;
    }

    nav ul{
        flex-direction:column;
        gap:12px;
        align-items:center;
    }
}







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

body{
    font-family:'Poppins',sans-serif;
    background:#0d0d0d;
    color:white;
}

/* HERO */

.hero-contact{
    height:85vh;

    background:
    linear-gradient(rgba(0,0,0,.65), rgba(0,0,0,.85)),
    url("images/background.jpg");

    background-size:cover;
    background-position:center;

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

    padding:20px;
}

.hero-content{
    max-width:900px;
}

.subtitle{
    color:#d10000;
    text-transform:uppercase;
    letter-spacing:3px;
    font-size:14px;
}

.hero-content h1{
    font-size:72px;
    margin:20px 0;
    font-weight:700;
}

.hero-content p{
    color:#cfcfcf;
    font-size:20px;
    line-height:1.8;
}

/* FORM */

.contact-section{
    padding:120px 10%;
}

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

.section-title h2{
    font-size:50px;
    margin-bottom:15px;
}

.section-title p{
    color:#b5b5b5;
}

.project-form{

    max-width:1200px;
    margin:auto;

    background:#151515;

    border:1px solid rgba(255,255,255,.08);

    padding:50px;

    border-radius:25px;
}

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

.contact-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
    margin-top:25px;
}

.input-group{
    display:flex;
    flex-direction:column;
}

.input-group label{
    margin-bottom:10px;
    font-size:14px;
    color:#d5d5d5;
}

.input-group input,
.input-group textarea{

    background:#101010;

    border:1px solid rgba(255,255,255,.08);

    color:white;

    padding:16px;

    border-radius:12px;

    outline:none;

    transition:.3s;
}

.input-group textarea{
    min-height:140px;
    resize:none;
}

.input-group input:focus,
.input-group textarea:focus{

    border-color:#d10000;
}

.full-width{
    margin-top:25px;
}

.submit-btn{

    margin-top:35px;

    width:100%;

    padding:18px;

    border:none;

    background:#d10000;

    color:white;

    font-size:16px;

    font-weight:600;

    letter-spacing:2px;

    text-transform:uppercase;

    border-radius:12px;

    cursor:pointer;

    transition:.3s;
}

.submit-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(209,0,0,.35);
}

/* APPOINTMENT */

.appointment-section{

    padding:120px 20px;

    text-align:center;

    background:
    linear-gradient(
    180deg,
    #111,
    #080808
    );
}

.appointment-content{
    max-width:800px;
    margin:auto;
}

.appointment-content h2{
    font-size:52px;
    margin:20px 0;
}

.appointment-content p{
    color:#c5c5c5;
    line-height:1.8;
    margin-bottom:40px;
}

.appointment-btn{

    display:inline-block;

    text-decoration:none;

    color:white;

    background:white;

    color:black;

    padding:16px 40px;

    border-radius:50px;

    font-weight:600;

    transition:.3s;
}

.appointment-btn:hover{

    transform:translateY(-3px);
}

/* RESPONSIVE */

@media(max-width:900px){

    .hero-content h1{
        font-size:48px;
    }

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

    .project-form{
        padding:30px;
    }

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

    .appointment-content h2{
        font-size:36px;
    }
}

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

body{
    font-family:'Poppins',sans-serif;
    background:#0d0d0d;
    color:white;
}

/* ===== HERO ===== */
.hero{
    height:80vh;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:20px;

    background:
    linear-gradient(rgba(0,0,0,.7), rgba(0,0,0,.9)),
    url("images/background.jpg");

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

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

.hero p{
    max-width:700px;
    margin:auto;
    color:#cfcfcf;
    line-height:1.8;
}

/* ===== FORM ===== */
.section{
    padding:100px 10%;
}

form{
    max-width:1100px;
    margin:auto;
    background:#151515;
    padding:40px;
    border-radius:20px;
    border:1px solid rgba(255,255,255,.08);
}

.grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.group{
    display:flex;
    flex-direction:column;
}

label{
    font-size:13px;
    color:#ccc;
    margin-bottom:8px;
}

input, textarea, select{
    padding:15px;
    border-radius:10px;
    border:1px solid rgba(255,255,255,.1);
    background:#101010;
    color:white;
    outline:none;
}

textarea{
    min-height:120px;
    resize:none;
}

.full{
    grid-column:1 / -1;
}

button{
    width:100%;
    margin-top:25px;
    padding:16px;
    background:#d10000;
    border:none;
    color:white;
    font-weight:600;
    letter-spacing:2px;
    cursor:pointer;
    border-radius:10px;
    transition:.3s;
}

button:hover{
    opacity:0.85;
}

/* ===== RESPONSIVE ===== */
@media(max-width:768px){
    .grid{
        grid-template-columns:1fr;
    }

    .hero h1{
        font-size:38px;
    }
}


/* ========================= */
/* Pret a importer votre Véhicule ? */
/* ========================= */

.import-cta{
    padding:120px 20px;
    text-align:center;
    background:linear-gradient(180deg,#050505,#0a0a0a);
    border-top:1px solid rgba(255,0,0,0.15);
}

.import-cta h3{
    font-size:50px;
    color:white;
    margin-bottom:20px;
    text-transform:uppercase;
    letter-spacing:2px;
}

.import-cta p{
    color:#bdbdbd;
    font-size:16px;
    margin-bottom:40px;
    line-height:1.7;
}

/* BOUTON */

.import-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:18px 40px;
    background:transparent;
    border:1px solid red;
    border-radius:12px;
    color:red;
    text-decoration:none;
    font-size:15px;
    text-transform:uppercase;
    letter-spacing:1px;
    transition:0.35s ease;
}

/* HOVER PREMIUM */

.import-btn:hover{
    background:red;
    color:#0a0a0a;
    transform:translateY(-4px);
    box-shadow:0 0 25px rgba(255,0,0,0.4);
}

/* RESPONSIVE */

@media(max-width:900px){

    .import-cta h2{
        font-size:34px;
    }

    .import-btn{
        width:100%;
        max-width:320px;
    }

}









/* FOOTER */

footer{
    background:linear-gradient(180deg, #0a0a0a, #050505);
    padding:70px 60px;
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:50px;
    border-top:1px solid rgba(255,0,0,0.15);
    font-family:Arial, sans-serif;
}

/* Colonnes */
.footer-column{
    width:230px;
    display:flex;
    flex-direction:column;
}

/* Titres */
.footer-column h3{
    color:#ff0000;
    margin-bottom:18px;
    font-size:18px;
    letter-spacing:1px;
    text-transform:uppercase;
}

/* Textes */
.footer-column p{
    color:#bdbdbd;
    margin-bottom:8px;
    font-size:14px;
    line-height:1.5;
}

/* Liens */
.footer-column a{
    color:#ff0000;
    text-decoration:none;
    margin-bottom:8px;
    font-size:14px;
    transition:0.3s ease;
}

.footer-column a:hover{
    color:#fff;
    transform:translateX(4px);
}

/* Réseaux sociaux */
.footer-socials{
    display:flex;
    gap:15px;
    margin-top:10px;
}

.footer-socials a{
    color:#ff0000;
    font-size:22px;
    width:42px;
    height:42px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid rgba(255,0,0,0.3);
    border-radius:10px;
    transition:0.3s ease;
}

.footer-socials a:hover{
    background:#ff0000;
    color:#0a0a0a;
    transform:translateY(-3px);
    box-shadow:0 0 15px rgba(255,0,0,0.6);
}

/* Petit texte */
.footer-mini{
    margin-top:12px;
    font-size:12px;
    color:#777;
}

/* RESPONSIVE */
@media(max-width:900px){
    footer{
        flex-direction:column;
        padding:50px 25px;
    }

    .footer-column{
        width:100%;
    }
}

