/* RESET & FONTS */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Montserrat', sans-serif; }

/* HEADER PREMIUM */
.premium-header {
    background: linear-gradient(135deg, #0B3D91, #0F2E6D);
    color: white;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
.logo-container { display: flex; align-items: center; justify-content: center; gap: 20px; }
.logo { width: 100px; height: auto; }
.header-text h1 { font-size: 2.5em; font-weight: 700; }
.slogan { font-size: 1.2em; font-style: italic; color: #FFD700; }

/* VOITURES DISPONIBLES ET PRIX */
.cars, .cars-prices { padding: 40px 20px; text-align: center; background-color: #f8f8f8; }
.car-container { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; margin-top: 20px; }
.car { text-align: center; width: 200px; }
.car img { width: 100%; border-radius: 10px; transition: transform 0.3s; }
.car img:hover { transform: scale(1.05); }
.car p { margin-top: 10px; font-weight: 600; color: #0B3D91; }

/* PACKS PREMIUM */
.packs.premium { padding: 50px 20px; background: #f2f2f2; text-align: center; }
.pack-container { display: flex; flex-wrap: wrap; justify-content: center; gap: 40px; margin-top: 30px; }
.pack {
    background: white;
    border-radius: 15px;
    width: 320px;
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    transition: transform 0.4s, box-shadow 0.4s;
}
.pack img { width: 100%; border-radius: 15px; }
.pack h3 { margin: 15px 0 10px; font-weight: 600; }
.pack p { margin: 8px 0; }
.pack:hover { transform: translateY(-8px); box-shadow: 0 15px 25px rgba(0,0,0,0.25); }
.price { font-weight: 700; color: #FFD700; font-size: 1.1em; }

/* CONTACT PREMIUM */
.contact.premium { padding: 40px 20px; background: #0F2E6D; color: white; text-align: center; }
.contact a { color: #FFD700; text-decoration: none; font-weight: 600; }

/* RESPONSIVE */
@media (max-width: 900px) {
    .car-container, .pack-container { flex-direction: column; align-items: center; }
}