/*
Theme Name: Rental Bike Child
Template: bike-rental-shop
Text Domain: bike-rental-shop-child
*/

/* ==================================================
   VARIABLES
================================================== */
:root {
    --primary: #e30613;
    --dark: #111;
    --light: #ffffff;
    --grey: #f5f5f5;
}

/* ==================================================
   GLOBAL - ÉLIMINATION DES MARGES BLANCHES
================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    margin: 0 !important;
    padding: 0 !important;
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: "Segoe UI", Arial, sans-serif;
    background: var(--light);
    color: #333;
    line-height: 1.6;
}

#page {
    margin: 0 !important;
    padding: 0 !important;
}

.site-content {
    margin: 0 !important;
    padding: 0 !important;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    opacity: 0.85;
}

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

/* ==================================================
   BOUTONS (globaux)
================================================== */
.button,
.btn,
.wp-block-button__link,
.btn-reserver {
    background-color: var(--primary);
    color: var(--light);
    padding: 10px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    transition: background 0.3s ease;
}

.button:hover,
.btn:hover,
.btn-reserver:hover {
    background-color: #b9040f;
    opacity: 1;
}

/* ==================================================
   HEADER
================================================== */
.header-main {
    background: #fff;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    margin: 0 !important;
    width: 100%;
}

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

/* LOGO */
.header-left {
    display: flex !important;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
}

/* WordPress logo link */
.header-left .custom-logo-link,
.header-left a.custom-logo-link {
    display: inline-flex !important;
    align-items: center;
    line-height: 0;
}

/* Logo image */
.header-left img,
.header-left .custom-logo,
.header-left .custom-logo-link img {
    max-height: 50px !important;
    height: auto !important;
    width: auto !important;
    display: block !important;
    vertical-align: middle;
}

.site-title {
    display: flex;
    align-items: center;
    margin: 0;
}

.site-title a {
    font-size: 18px;
    font-weight: 600;
    color: #111;
    letter-spacing: 0.5px;
}

/* Logo dans le footer */
.footer-logo,
.footer-site-logo {
    margin-bottom: 20px;
}

.footer-logo .custom-logo-link,
.footer-site-logo .custom-logo-link,
.footer-logo a {
    display: block !important;
    line-height: 0;
    margin-bottom: 15px;
}

.footer-logo img,
.footer-logo .custom-logo,
.footer-site-logo img,
.footer-site-logo .custom-logo {
    max-height: 60px !important;
    height: auto !important;
    width: auto !important;
    display: block !important;
    margin-bottom: 15px;
}

.footer-logo .site-title,
.footer-logo h4 {
    color: #ffffff !important;
    font-size: 20px !important;
    font-weight: 600 !important;
    margin: 0 !important;
}

.footer-logo .site-title a {
    color: #ffffff !important;
    text-decoration: none;
}

/* MENU */
.header-center .main-menu {
    display: flex;
    gap: 35px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header-center .main-menu a {
    font-size: 15px;
    font-weight: 500;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    transition: color 0.3s;
}

.header-center .main-menu a:hover {
    color: var(--primary);
    opacity: 1;
}

/* HEADER DROITE */
.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
    white-space: nowrap;
}

/* SEARCH */
.header-right .search-field {
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid #ddd;
    font-size: 14px;
    width: 180px;
    outline: none;
}

.header-right .search-field:focus {
    border-color: var(--primary);
}

.link-account {
    color: #333;
    font-size: 14px;
    font-weight: 500;
}

.link-account:hover {
    color: var(--primary);
}

/* ==================================================
   HERO / BANNIÈRE
================================================== */
.hero-banner {
    position: relative;
    width: 100%;
    height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin: 0 !important;
}

/* Hero réduit pour pages internes (30% moins haut) */
.hero-banner-small {
    height: 350px;
}

.hero-banner-small .hero-content h1 {
    font-size: 42px;
}

.hero-banner-small .hero-content p {
    font-size: 16px;
}

/* Overlay */
.hero-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 1;
}

/* Contenu */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 16px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* Boutons hero */
.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.btn-outline {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    padding: 10px 28px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: white;
    color: var(--primary);
}

.btn-primary {
    background: var(--primary);
    color: white;
    padding: 12px 28px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
}

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

/* ==================================================
   FOOTER
================================================== */
footer.site-footer {
    background: var(--primary);
    color: #ffffff;
    padding: 60px 40px 30px;
    margin: 0 !important;
    width: 100%;
}

/* Grille footer */
footer .row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Titres colonnes */
footer .widget-title,
footer .site-title,
footer h5.widget-title {
    color: #ffffff !important;
    font-size: 20px !important;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: none;
}

/* Listes */
footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

footer ul li,
footer aside {
    font-size: 15px;
    color: #ffffff;
    line-height: 1.8;
    margin-bottom: 12px;
}

footer a {
    color: #ffffff;
    transition: opacity 0.3s;
}

footer a:hover {
    opacity: 0.8;
}

/* Bas de footer */
.site-info {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    text-align: center;
    font-size: 14px;
    opacity: 0.9;
}

/* ==================================================
   SECTION BIENVENUE
================================================== */
.welcome-section {
    background: white;
    padding: 80px 0;
}

.welcome-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
}

.welcome-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1f2349;
    margin-bottom: 30px;
    text-align: left;
}

.welcome-text p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.welcome-text p strong {
    color: var(--primary);
    font-weight: 600;
}

.welcome-cta {
    margin-top: 30px;
}

.welcome-logo {
    text-align: center;
}

.welcome-logo img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
    border-radius: 12px; /* <-- ça arrondit les coins de l'image */
    display: inline-block; /* pour s'assurer que le border-radius fonctionne correctement */
}

.welcome-logo h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
}

/* ==================================================
   PACKS VISUELS
================================================== */
.packs-visual-section {
    background: #f9f9f9;
    padding: 80px 0;
}

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

.pack-visual-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

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

.pack-visual-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.pack-visual-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.pack-visual-badge {
    background: var(--primary);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.pack-visual-overlay h3 {
    font-size: 32px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.pack-visual-info {
    padding: 25px;
    text-align: center;
}

.pack-visual-info h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.pack-visual-info p {
    font-size: 15px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* ==================================================
   VOITURES HOME
================================================== */
.featured-cars-home {
    background: white;
    padding: 80px 0;
}

.cars-grid-home {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.car-card-home {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

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

.car-image-home {
    height: 220px;
    overflow: hidden;
}

.car-image-home img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.car-card-home:hover .car-image-home img {
    transform: scale(1.05);
}

.car-info-home {
    padding: 20px;
    text-align: center;
}

.car-category-badge {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.car-info-home h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
}

.btn-view-car {
    display: inline-block;
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 10px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-view-car:hover {
    background: var(--primary);
    color: white;
}

/* ==================================================
   COMMENT ÇA MARCHE HOME
================================================== */
.how-it-works-home {
    background: #f9f9f9;
    padding: 80px 0;
}

.steps-horizontal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.step-item {
    flex: 1;
    min-width: 200px;
    max-width: 280px;
    text-align: center;
    background: white;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.step-circle {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-item h3 {
    font-size: 14px;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.step-item h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.step-item p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.step-arrow {
    font-size: 30px;
    color: var(--primary);
    font-weight: 700;
}

/* ==================================================
   TÉMOIGNAGES
================================================== */
.testimonials-section {
    background: white;
    padding: 80px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: #f9f9f9;
    padding: 35px 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.testimonial-stars {
    font-size: 24px;
    color: #fbbf24;
    margin-bottom: 20px;
}

.testimonial-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.testimonial-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    font-style: italic;
}

/* ==================================================
   SECTIONS COMMUNES
================================================== */
section {
    padding: 80px 0;
}

section h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1f2349;
    text-align: center;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 18px;
    color: #666;
    text-align: center;
    margin-bottom: 50px;
}

.cta-center {
    text-align: center;
    margin-top: 50px;
}

/* ==================================================
   SECTION COMMENT ÇA MARCHE
================================================== */
.how-it-works {
    background: white;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.step-card {
    background: #f9f9f9;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(227,6,19,0.15);
}

.step-number {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.step-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.step-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 15px;
}

.step-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* ==================================================
   SECTION VOITURES EN VEDETTE
================================================== */
.featured-cars {
    background: #f9f9f9;
}

.cars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

a.car-card-link {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    display: block;
}

.car-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

a.car-card-link:hover .car-card {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(227,6,19,0.15);
}

.car-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.car-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.car-status {
    position: absolute;
    top: 15px;
    right: 15px;
    background: white;
    color: var(--dark);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.status-disponible {
    background: #10b981;
    color: white;
}

.status-réservée {
    background: #f59e0b;
    color: white;
}

.car-info {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.car-category {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
}

.car-info h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.car-info p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.car-info .btn-primary {
    margin-top: auto;
}

/* ==================================================
   SECTION PACKS PREVIEW
================================================== */
.packs-preview {
    background: white;
}

/* ==================================================
   PAGE NOS PACKS
================================================== */
.packs-page {
    padding: 60px 0;
    background: white;
}

.packs-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.packs-intro h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
}

.packs-intro p {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
}

/* Grille 2x2 */
.packs-grid,
.packs-comparison {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
    padding-top: 50px;
}

/* Lien cliquable */
a.pack-card-link {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    display: block;
}

/* Carte pack base - Design Luxe */
.pack-compare-card,
a.pack-card-link .pack-compare-card {
    background: white;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 20px;
    padding: 50px 35px 40px;
    text-align: center;
    position: relative;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: visible;
}

a.pack-card-link:hover .pack-compare-card {
    transform: translateY(-10px);
}

/* Badge luxe en haut - ULTRA VISIBLE */
.pack-compare-badge {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    padding: 12px 32px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    white-space: nowrap;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    z-index: 10;
}

/* ==================================================
   PACK BRONZE - Élégance Classique
================================================== */
.badge-bronze {
    background: linear-gradient(135deg, #D4AF37 0%, #AA8B3A 100%) !important;
    color: white !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    box-shadow: 0 10px 30px rgba(212,175,55,0.5) !important;
}

.pack-compare-card.pack-bronze {
    background: 
        radial-gradient(circle at top right, rgba(212,175,55,0.08) 0%, transparent 50%),
        radial-gradient(circle at bottom left, rgba(170,139,58,0.06) 0%, transparent 50%),
        white !important;
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
}


.pack-compare-card.pack-bronze::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, #D4AF37, #AA8B3A);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.4;
}

a.pack-card-link:hover .pack-compare-card.pack-bronze {
    box-shadow: 0 20px 60px rgba(212,175,55,0.3);
}

.pack-compare-card.pack-bronze h3 {
    color: #1a1a1a !important;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #D4AF37 0%, #AA8B3A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pack-compare-card.pack-bronze .pack-compare-features li {
    color: #2d2d2d !important;
    border-bottom: 1px solid rgba(212,175,55,0.12) !important;
    padding: 16px 0;
    font-size: 15px;
    font-weight: 500;
}

/* ==================================================
   PACK SILVER - Sophistication Moderne
================================================== */
.badge-silver {
    background: linear-gradient(135deg, #E8E8E8 0%, #BFBFBF 100%) !important;
    color: #1a1a1a !important;
    text-shadow: 0 1px 2px rgba(255,255,255,0.5);
    box-shadow: 0 10px 30px rgba(191,191,191,0.6) !important;
}

.pack-compare-card.pack-silver {
    background: 
        radial-gradient(circle at top right, rgba(232,232,232,0.1) 0%, transparent 50%),
        radial-gradient(circle at bottom left, rgba(191,191,191,0.08) 0%, transparent 50%),
        white !important;
    border: 2px solid transparent;
    position: relative;
}

.pack-compare-card.pack-silver::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, #E8E8E8, #BFBFBF);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.5;
}

a.pack-card-link:hover .pack-compare-card.pack-silver {
    box-shadow: 0 20px 60px rgba(191,191,191,0.35);
}

.pack-compare-card.pack-silver h3 {
    color: #1a1a1a !important;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #E8E8E8 0%, #8c8c8c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pack-compare-card.pack-silver .pack-compare-features li {
    color: #2d2d2d !important;
    border-bottom: 1px solid rgba(191,191,191,0.15) !important;
    padding: 16px 0;
    font-size: 15px;
    font-weight: 500;
}

/* ==================================================
   PACK GOLD - Prestige Absolu
================================================== */
.badge-gold {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%) !important;
    color: #1a1a1a !important;
    text-shadow: 0 1px 3px rgba(255,215,0,0.5);
    box-shadow: 0 10px 35px rgba(255,215,0,0.6) !important;
}

.pack-compare-card.pack-gold {
    background: 
        radial-gradient(circle at top right, rgba(255,215,0,0.12) 0%, transparent 50%),
        radial-gradient(circle at bottom left, rgba(255,165,0,0.1) 0%, transparent 50%),
        white !important;
    border: 2px solid transparent;
    position: relative;
}

.pack-compare-card.pack-gold::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.6;
}

.pack-compare-card.pack-gold::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,215,0,0.08) 0%, transparent 60%);
    animation: rotateGlow 20s linear infinite;
    pointer-events: none;
}

@keyframes rotateGlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

a.pack-card-link:hover .pack-compare-card.pack-gold {
    box-shadow: 0 25px 70px rgba(255,215,0,0.4);
}

.pack-compare-card.pack-gold h3 {
    color: #1a1a1a !important;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pack-compare-card.pack-gold .pack-compare-features li {
    color: #2d2d2d !important;
    border-bottom: 1px solid rgba(255,215,0,0.15) !important;
    padding: 16px 0;
    font-size: 15px;
    font-weight: 500;
}

/* ==================================================
   PACK DIAMOND - Ultra Premium VIP
================================================== */
.badge-diamond {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: white !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    box-shadow: 0 10px 35px rgba(102,126,234,0.7) !important;
    animation: diamondPulse 3s ease-in-out infinite;
}

@keyframes diamondPulse {
    0%, 100% { 
        box-shadow: 0 10px 35px rgba(102,126,234,0.7);
        transform: translateX(-50%) scale(1);
    }
    50% { 
        box-shadow: 0 15px 50px rgba(102,126,234,0.9);
        transform: translateX(-50%) scale(1.08);
    }
}

.pack-compare-card.pack-diamond {
    background: 
        radial-gradient(circle at top right, rgba(102,126,234,0.15) 0%, transparent 50%),
        radial-gradient(circle at bottom left, rgba(118,75,162,0.12) 0%, transparent 50%),
        white !important;
    border: 3px solid transparent;
    position: relative;
}

.pack-compare-card.pack-diamond::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 3px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #667eea 100%);
    background-size: 200% 200%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: borderShine 4s linear infinite;
}

@keyframes borderShine {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.pack-compare-card.pack-diamond::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
    animation: diamondShine 6s infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes diamondShine {
    0% { left: -100%; }
    20%, 100% { left: 100%; }
}

a.pack-card-link:hover .pack-compare-card.pack-diamond {
    box-shadow: 0 30px 80px rgba(102,126,234,0.5);
    transform: translateY(-15px) scale(1.02);
}

.pack-compare-card.pack-diamond h3 {
    color: #1a1a1a !important;
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
}

.pack-compare-card.pack-diamond h3::after {
    content: '👑';
    position: absolute;
    top: -10px;
    right: -35px;
    font-size: 24px;
    animation: float 3s ease-in-out infinite;
    z-index: 3;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

.pack-compare-card.pack-diamond .pack-compare-features {
    position: relative;
    z-index: 2;
}

.pack-compare-card.pack-diamond .pack-compare-features li {
    color: #2d2d2d !important;
    border-bottom: 1px solid rgba(102,126,234,0.15) !important;
    padding: 16px 0;
    font-size: 15px;
    font-weight: 600;
}

/* Old badge styles (deprecated but kept for backwards compatibility) */
.badge-popular {
    background: var(--primary) !important;
}

.badge-premium {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
}

/* Titre */
.pack-compare-card h3 {
    font-size: 26px;
    font-weight: 700;
    color: var(--dark);
    margin: 10px 0 25px;
}

/* Liste */
.pack-compare-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.pack-compare-features li {
    padding: 12px 0;
    font-size: 15px;
    color: #555;
    border-bottom: 1px solid #f0f0f0;
}

.pack-compare-features li:last-child {
    border-bottom: none;
}

/* Pack premium (deprecated - now using specific colors) */
.pack-compare-card.pack-premium {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%) !important;
    border-color: transparent !important;
}

.pack-compare-card.pack-premium h3,
.pack-compare-card.pack-premium .pack-compare-features li {
    color: white !important;
}

.pack-compare-card.pack-premium .pack-compare-features li {
    border-bottom-color: rgba(255,255,255,0.15) !important;
}

/* Old pack styles (keep for backwards compatibility) */
.packs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.pack-card {
    background: white;
    border: 2px solid #e5e5e5;
    border-radius: 12px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
}

.pack-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(227,6,19,0.15);
}

.pack-popular {
    border-color: var(--primary);
    border-width: 3px;
}

.pack-premium {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
}

.pack-premium h3,
.pack-premium .pack-price,
.pack-premium .pack-features li {
    color: white;
}

.pack-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #666;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.pack-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    margin: 20px 0 15px;
}

.pack-price {
    font-size: 16px;
    color: #666;
    margin-bottom: 25px;
}

.pack-price strong {
    font-size: 28px;
    color: var(--primary);
    font-weight: 700;
}

.pack-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    text-align: left;
}

.pack-features li {
    padding: 10px 0;
    font-size: 15px;
    color: #333;
    border-bottom: 1px solid #f0f0f0;
}

.pack-features li:last-child {
    border-bottom: none;
}

/* ==================================================
   SECTION POURQUOI NOUS
================================================== */
.why-us {
    background: #f9f9f9;
}

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

.why-item {
    text-align: center;
}

.why-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.why-item h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 12px;
}

.why-item p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* ==================================================
   PAGE À PROPOS / ÉQUIPE
================================================== */
.about-page {
    background: white;
}

.about-intro {
    padding: 80px 0;
    background: #f9f9f9;
}

.about-intro-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-intro-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1f2349;
    margin-bottom: 30px;
}

.about-intro-text p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-intro-logo {
    text-align: center;
    background: white;
    padding: 40px;
    border-radius: 12px;
}

.about-intro-logo img {
    max-width: 100%;
    height: auto;
}

.family-professional {
    padding: 80px 0;
    background: white;
}

.family-professional h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #1f2349;
    margin-bottom: 40px;
}

.fp-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.fp-images {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    justify-content: center;
}

.fp-image {
    flex: 1;
    max-width: 450px;
    text-align: center;
}

.fp-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 8px;
}

.fp-image p {
    margin-top: 0.5rem;
    font-weight: bold;
    font-size: 0.9rem;
}

.activities {
    padding: 80px 0;
    background: #f9f9f9;
}

.activities h2 {
    text-align: center;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.activity-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

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

.activity-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.activity-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.activity-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.structure-section {
    padding: 80px 0;
    background: white;
}

.structure-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.structure-main {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    margin-bottom: 3rem;
}

.structure-images {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 0 0 220px;
}

.structure-images img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
}

.structure-text {
    flex: 1;
    font-size: 0.9rem;
}

.structure-checklist {
    list-style: none;
    padding: 0;
    margin-top: 0.5rem;
}

.structure-checklist > li,
.structure-checklist ul li {
    padding: 0.2rem 0 0.2rem 1.5rem;
    position: relative;
}

.structure-checklist > li::before,
.structure-checklist ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #333;
}

.structure-checklist ul {
    list-style: none;
    padding: 0;
}

/* Parc de véhicules */
.parc-vehicules {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.parc-text {
    flex: 1;
}

.parc-text h3 {
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.parc-text ul {
    padding-left: 1.2rem;
    font-size: 0.9rem;
}

.parc-text ul li {
    margin-bottom: 0.3rem;
}

.parc-image {
    flex: 0 0 380px;
    max-width: 380px;
}

.parc-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 8px;
}

.values-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    background: white;
    padding: 35px 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.value-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
}

.value-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* ==================================================
   PAGE CONTACT SIMPLE
================================================== */
.contact-page-simple {
    padding: 80px 0;
    background: #f9f9f9;
}

.contact-form-center {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.contact-form-center h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1f2349;
    margin-bottom: 30px;
    text-align: center;
}

.alert {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    font-size: 15px;
}

.alert-success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.alert-error {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.contact-form-simple .form-group {
    margin-bottom: 20px;
}

.contact-form-simple label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.contact-form-simple input,
.contact-form-simple textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    font-family: "Segoe UI", Arial, sans-serif;
    transition: border-color 0.3s;
}

.contact-form-simple input:focus,
.contact-form-simple textarea:focus {
    border-color: var(--primary);
    outline: none;
}

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

.form-submit {
    text-align: right;
    margin-top: 25px;
}

.btn-submit {
    background: var(--primary);
    color: white;
    padding: 14px 40px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #b9050f;
}

.form-note {
    font-size: 13px;
    color: #999;
    margin-top: 15px;
    text-align: center;
}

/* ==================================================
   PAGE DÉTAIL VOITURE
================================================== */
.car-detail-page {
    padding: 60px 0;
    background: #f9f9f9;
}

.car-detail-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

/* Galerie */
.car-gallery {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.gallery-main {
    width: 100%;
    height: 400px;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.gallery-thumbs img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s;
}

.gallery-thumbs img:hover,
.gallery-thumbs img.thumb-active {
    border-color: var(--primary);
}

/* Spécifications */
.car-specs {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.car-specs h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 30px;
    text-align: left;
}

.specs-list {
    margin-bottom: 30px;
}

.spec-item {
    display: grid;
    grid-template-columns: 40px 1fr 1fr;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.spec-item:last-child {
    border-bottom: none;
}

.spec-icon {
    font-size: 20px;
}

.spec-label {
    font-size: 15px;
    color: #666;
    font-weight: 500;
}

.spec-value {
    font-size: 15px;
    color: var(--dark);
    font-weight: 600;
    text-align: right;
}

.btn-large {
    padding: 16px 40px;
    font-size: 16px;
    width: 100%;
    text-align: center;
    display: block;
}

/* Info cards */
.car-info-sections {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.info-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.info-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
}

.info-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.8;
}

/* Experience section */
.experience-section,
.recommended-section,
.our-opinion,
.request-section {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.experience-section h2,
.recommended-section h2,
.our-opinion h2,
.request-section h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 30px;
    text-align: left;
}

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

.experience-card {
    text-align: center;
    padding: 25px;
    background: #f9f9f9;
    border-radius: 8px;
}

.exp-stars {
    font-size: 24px;
    color: #fbbf24;
    margin-bottom: 15px;
}

.experience-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.experience-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.recommended-section p,
.our-opinion p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

.request-section p {
    font-size: 16px;
    color: #555;
    margin-bottom: 25px;
}

.request-cta {
    text-align: center;
}

/* ==================================================
   PAGE NOS PACKS (MAQUETTE EXACTE)
================================================== */
.packs-list-page {
    padding: 60px 0;
    background: white;
}

.packs-intro-text {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.packs-intro-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 25px;
}

.packs-intro-text p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}

.packs-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.pack-card-white {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.pack-header-red {
    background: var(--primary);
    padding: 20px;
    text-align: center;
}

.pack-badge-white {
    display: inline-block;
    background: white;
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.pack-body {
    padding: 30px 20px;
    text-align: center;
}

.pack-body h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
}

.pack-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
    text-align: left;
}

.pack-list li {
    padding: 10px 0;
    font-size: 14px;
    color: #555;
    border-bottom: 1px solid #f0f0f0;
}

.pack-list li:last-child {
    border-bottom: none;
}

.btn-pack {
    display: inline-block;
    background: transparent;
    border: 2px solid var(--dark);
    color: var(--dark);
    padding: 10px 30px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-pack:hover {
    background: var(--dark);
    color: white;
}

/* ==================================================
   PAGE NOS PACKS & COMPARATEUR
================================================== */
.packs-page {
    padding: 60px 0;
    background: white;
}

.packs-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.packs-intro h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1f2349;
    margin-bottom: 20px;
}

.packs-intro p {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
}

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

.pack-compare-card {
    background: white;
    border: 2px solid #e5e5e5;
    border-radius: 12px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
}

.pack-compare-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(227,6,19,0.15);
}

.pack-compare-card.pack-popular {
    border-color: var(--primary);
    border-width: 3px;
}

.pack-compare-card.pack-premium {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
}

.pack-compare-card.pack-premium h3,
.pack-compare-card.pack-premium .pack-compare-features li {
    color: white;
}

.pack-compare-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #666;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.pack-compare-badge.badge-popular {
    background: var(--primary);
}

.pack-compare-badge.badge-premium {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.pack-compare-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    margin: 20px 0 25px;
}

.pack-compare-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    text-align: left;
}

.pack-compare-features li {
    padding: 10px 0;
    font-size: 15px;
    color: #333;
    border-bottom: 1px solid #f0f0f0;
}

.pack-compare-features li:last-child {
    border-bottom: none;
}

/* ==================================================
   PAGE DÉTAIL PACK
================================================== */
.pack-detail-page {
    padding: 60px 0;
    background: #f9f9f9;
}

.pack-detail-main {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.pack-detail-image {
    position: relative;
}

.pack-badge-large {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    z-index: 10;
}

.pack-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.pack-detail-info h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 30px;
    text-align: left;
}

.pack-includes {
    margin-bottom: 30px;
}

.pack-includes h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
}

.includes-list {
    list-style: none;
    padding: 0;
}

.includes-list li {
    padding: 12px 0;
    font-size: 16px;
    border-bottom: 1px solid #f0f0f0;
}

.includes-list li.included {
    color: #10b981;
    font-weight: 500;
}

.includes-list li.not-included {
    color: #999;
}

.pack-description {
    margin-bottom: 30px;
}

.pack-description p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

.back-button-section {
    margin-bottom: 40px;
}

.btn-back {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.btn-back:hover {
    color: #b9050f;
}

.pack-cars-section {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.pack-cars-section h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 30px;
    text-align: left;
}

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

.pack-car-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

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

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

.pack-car-info {
    padding: 20px;
    background: white;
}

.pack-car-info .car-category {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 10px;
}

.pack-car-info h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
}

/* ==================================================
   PAGES AUTHENTIFICATION (Inscription/Connexion)
================================================== */
.auth-page {
    padding: 80px 0;
    background: #f9f9f9;
}

.auth-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.auth-form-wrapper h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1f2349;
    margin-bottom: 30px;
    text-align: center;
}

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

.auth-form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.auth-form input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    font-family: "Segoe UI", Arial, sans-serif;
    transition: border-color 0.3s;
}

.auth-form input:focus {
    border-color: var(--primary);
    outline: none;
}

.auth-switch {
    text-align: center;
    margin-top: 25px;
    font-size: 15px;
    color: #666;
}

.auth-switch a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.auth-switch a:hover {
    text-decoration: underline;
}

/* ==================================================
   PAGE MON COMPTE
================================================== */
.account-page {
    padding: 60px 0;
    background: #f9f9f9;
}

.account-header {
    text-align: center;
    margin-bottom: 60px;
}

.profile-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 4px solid var(--primary);
}

.profile-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.account-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
    text-align: center;
}

.btn-edit {
    display: inline-block;
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    text-decoration: underline;
    cursor: pointer;
}

.account-section {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.account-section h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

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

.info-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.info-label {
    font-size: 14px;
    font-weight: 600;
    color: #666;
}

.info-value {
    font-size: 16px;
    color: var(--dark);
    font-weight: 500;
}

/* Historique des commandes */
.bookings-history {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.booking-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 25px;
    align-items: center;
    padding: 25px;
    background: #f9f9f9;
    border-radius: 8px;
}

.booking-date {
    font-size: 16px;
    font-weight: 700;
    color: white;
    background: var(--primary);
    padding: 15px 20px;
    border-radius: 8px;
    text-align: center;
    min-width: 120px;
}

.booking-details p {
    font-size: 15px;
    color: #555;
    margin-bottom: 8px;
}

.booking-status {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
}

.booking-status.status-confirmée {
    background: #d4edda;
    color: #155724;
}

.booking-status.status-en.attente {
    background: #fff3cd;
    color: #856404;
}

.no-data {
    text-align: center;
    color: #999;
    font-size: 16px;
    padding: 40px 20px;
}

/* Documents */
.documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.document-card {
    text-align: center;
    padding: 30px 20px;
    background: #f9f9f9;
    border-radius: 8px;
}

.document-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.document-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.document-card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.btn-document {
    background: white;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-document:hover {
    background: var(--primary);
    color: white;
}

/* ==================================================
   PAGE COMMENT ÇA MARCHE
================================================== */
.how-it-works-page {
    padding: 60px 0;
    background: white;
}

.how-it-works-page h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--dark);
    text-align: center;
    margin-bottom: 60px;
}

.steps-list {
    max-width: 900px;
    margin: 0 auto;
}

.step-row {
    display: grid;
    grid-template-columns: 80px 1fr 80px;
    gap: 30px;
    align-items: center;
    padding: 40px 0;
    border-bottom: 1px solid #f0f0f0;
}

.step-row:last-child {
    border-bottom: none;
}

.step-number-large {
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-number-large span {
    font-size: 36px;
    font-weight: 700;
    color: white;
}

.step-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.step-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}

.step-icon-large {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-circle {
    width: 70px;
    height: 70px;
    background: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

/* ==================================================
   PAGE RÉSERVATION
================================================== */
.reservation-page {
    padding: 60px 0;
    background: white;
}

.reservation-form {
    max-width: 800px;
    margin: 0 auto;
}

.reservation-section {
    background: #f9f9f9;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.reservation-section h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
    text-align: left;
}

.section-desc {
    font-size: 15px;
    color: #666;
    margin-bottom: 25px;
}

/* Voiture sélectionnée */
.selected-car-display {
    text-align: center;
}

.selected-car-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    max-width: 400px;
    margin: 0 auto;
}

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

.selected-car-info {
    padding: 20px;
}

.selected-car-info .car-cat {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 10px;
}

.selected-car-info h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
}

.no-selection {
    text-align: center;
    color: #999;
    font-size: 16px;
    margin-bottom: 20px;
}

/* Sélection de pack */
.packs-selection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}

.pack-selection-card {
    background: white;
    border: 3px solid #e5e5e5;
    border-radius: 12px;
    padding: 25px 20px;
    cursor: pointer;
    transition: all 0.3s;
    display: block;
    position: relative;
}

.pack-selection-card input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.pack-selection-card:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
}

.pack-selection-card.selected {
    border-color: var(--primary);
    background: #fff5f5;
}

.pack-selection-header {
    text-align: center;
    margin-bottom: 15px;
}

.pack-selection-badge {
    display: inline-block;
    background: #666;
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 10px;
}

.pack-selection-card.selected .pack-selection-badge {
    background: var(--primary);
}

.pack-selection-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.pack-selection-desc {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

/* Sélection de date */
.date-selection {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.date-selection .form-group {
    margin-bottom: 0;
}

.date-selection label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.date-selection input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    font-family: "Segoe UI", Arial, sans-serif;
    transition: border-color 0.3s;
}

.date-selection input:focus {
    border-color: var(--primary);
    outline: none;
}

/* Numéro et copilote */
.reservation-section .form-group {
    margin-bottom: 20px;
}

.reservation-section .form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.reservation-section .form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    font-family: "Segoe UI", Arial, sans-serif;
    transition: border-color 0.3s;
}

.reservation-section .form-group input:focus {
    border-color: var(--primary);
    outline: none;
}

.copilot-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

/* Authentification */
.auth-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Bouton de confirmation */
.reservation-submit {
    text-align: center;
}

.btn-confirm {
    background: var(--primary);
    color: white;
    padding: 16px 50px;
    border: none;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(227,6,19,0.3);
}

.btn-confirm:hover {
    background: #b9050f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(227,6,19,0.4);
}

/* Message de succès */
.success-message {
    background: white;
    padding: 60px 40px;
    border-radius: 12px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.success-icon {
    width: 100px;
    height: 100px;
    background: #10b981;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    margin: 0 auto 30px;
}

.success-message h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
}

.success-message p {
    font-size: 16px;
    color: #666;
    margin-bottom: 15px;
}

.success-message .btn-primary {
    margin-top: 30px;
}

/* ==================================================
   PAGES PAIEMENT (SUCCÈS / ANNULATION)
================================================== */
.payment-success-page,
.payment-cancel-page {
    padding: 80px 0;
    background: #f9f9f9;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.success-card,
.cancel-card {
    background: white;
    padding: 60px 40px;
    border-radius: 12px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.success-icon {
    width: 100px;
    height: 100px;
    background: #10b981;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    margin: 0 auto 30px;
    animation: scaleIn 0.5s ease-out;
}

.cancel-icon {
    width: 100px;
    height: 100px;
    background: #ef4444;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    margin: 0 auto 30px;
    animation: scaleIn 0.5s ease-out;
}

.warning-icon {
    width: 100px;
    height: 100px;
    background: #f59e0b;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    margin: 0 auto 30px;
    animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.success-card h1,
.cancel-card h1 {
    font-size: 32px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
}

.success-card p,
.cancel-card p {
    font-size: 16px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.success-actions,
.cancel-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 35px;
    flex-wrap: wrap;
}

/* ==================================================
   PAGE CONTACT
================================================== */
.contact-page {
    padding: 60px 0;
    background: #f9f9f9;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Section Infos */
.contact-info {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.contact-info h1 {
    font-size: 42px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
}

.contact-intro {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    font-size: 32px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff0f0;
    border-radius: 10px;
    flex-shrink: 0;
}

.contact-text h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.contact-text p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.contact-text a {
    color: var(--primary);
    text-decoration: none;
}

.contact-text a:hover {
    text-decoration: underline;
}

/* Section Formulaire */
.contact-form-wrapper {
    display: flex;
    align-items: flex-start;
}

.form-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    width: 100%;
}

.form-card h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 30px;
}

/* Styles Forminator */
.forminator-custom-form {
    width: 100%;
}

.forminator-row {
    margin-bottom: 20px;
}

.forminator-field {
    width: 100%;
}

.forminator-input,
.forminator-textarea {
    width: 100% !important;
    padding: 12px 16px !important;
    border: 1px solid #ddd !important;
    border-radius: 8px !important;
    font-size: 15px !important;
    font-family: "Segoe UI", Arial, sans-serif !important;
    transition: border-color 0.3s !important;
}

.forminator-input:focus,
.forminator-textarea:focus {
    border-color: var(--primary) !important;
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(227, 6, 19, 0.1) !important;
}

.forminator-textarea {
    min-height: 150px !important;
    resize: vertical !important;
}

.forminator-label {
    font-size: 14px !important;
    font-weight: 600 !important;
    color: var(--dark) !important;
    margin-bottom: 8px !important;
    display: block !important;
}

/* Bouton à droite */
.forminator-button-submit,
.forminator-button {
    background: var(--primary) !important;
    color: white !important;
    padding: 14px 32px !important;
    border-radius: 25px !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    border: none !important;
    cursor: pointer !important;
    transition: background 0.3s !important;
    float: right !important;
    margin-top: 10px !important;
}

.forminator-button-submit:hover,
.forminator-button:hover {
    background: #b9050f !important;
}

/* Forcer le bouton à droite */
.forminator-row:last-child,
.forminator-button-container {
    text-align: right !important;
}

/* ==================================================
   PAGE VOITURES
================================================== */
.cars-page {
    padding: 60px 0;
    background: #f9f9f9;
}

.cars-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    padding: 0 20px;
}

.cars-intro h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
}

.cars-intro p {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
}

.cars-grid-wrapper {
    margin-top: 40px;
}

/* ==================================================
   PAGE VOITURES
================================================== */
.cars-page {
    padding: 60px 0;
    background: #f9f9f9;
}

.page-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    padding: 0 20px;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
}

/* Filtres */
.filters-section {
    background: white;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.filters-form {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    align-items: center;
}

.filter-group {
    flex: 1;
    min-width: 200px;
}

.filter-search,
.filter-select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    font-family: "Segoe UI", Arial, sans-serif;
    transition: border-color 0.3s;
}

.filter-search:focus,
.filter-select:focus {
    border-color: var(--primary);
    outline: none;
}

.results-info {
    margin-bottom: 30px;
}

.results-info p {
    font-size: 16px;
    color: #666;
    font-weight: 500;
}

/* Grille voitures (déjà définie plus haut, on ajoute juste des spécificités) */
.cars-grid-wrapper {
    margin-top: 30px;
}

.car-model {
    font-size: 14px;
    color: #999;
    margin-bottom: 10px;
}

.car-description {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.car-actions {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.car-actions .btn-outline,
.car-actions .btn-primary {
    flex: 1;
    text-align: center;
    padding: 10px 16px;
    font-size: 14px;
}

.btn-disabled {
    flex: 1;
    text-align: center;
    padding: 10px 16px;
    font-size: 14px;
    background: #ccc;
    color: #666;
    border-radius: 25px;
    font-weight: 600;
    cursor: not-allowed;
}

/* Aucun résultat */
.no-results {
    text-align: center;
    padding: 80px 20px;
    background: white;
    border-radius: 12px;
    margin: 40px 0;
}

.no-results p {
    font-size: 20px;
    color: #666;
    margin-bottom: 30px;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 12px;
    margin-top: 60px;
}

.cta-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1f2349;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

/* Style pour VikRentCar */
.vrc-carslist-grid-wrapper,
.vrc-pitemscont {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)) !important;
    gap: 25px !important;
    padding: 20px 0;
}

.vrc-carslist-grid-item,
.vrc-pitem {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.vrc-carslist-grid-item:hover,
.vrc-pitem:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(227,6,19,0.15);
}

.vrc-carslist-grid-item img,
.vrc-pitem img,
.vrc-pitem-img img {
    width: 100%;
    height: 220px;
    max-height: 220px;
    object-fit: cover;
    object-position: center;
}

.vrc-carslist-grid-item-info,
.vrc-pitem-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.vrc-carslist-grid-item-name,
.vrc-pitem-name,
.vrc-pitem-name a {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 10px;
    text-decoration: none;
}

.vrc-carslist-grid-item-price,
.vrc-pitem-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    margin: 15px 0;
}

.vrc-carslist-grid-item-btn,
.vrc-btn-book,
.vrc-pitem-action a {
    background: var(--primary) !important;
    color: white !important;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s;
    margin-top: auto;
    text-align: center;
}

.vrc-carslist-grid-item-btn:hover,
.vrc-btn-book:hover,
.vrc-pitem-action a:hover {
    background: #b9050f !important;
}

/* ==================================================
   RESPONSIVE
================================================== */
@media (max-width: 992px) {
    .activities-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }

    footer .row {
        grid-template-columns: 1fr 1fr;
    }

    .header-center {
        display: none;
    }

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

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-info,
    .form-card {
        padding: 30px;
    }

    .welcome-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .steps-horizontal {
        flex-direction: column;
    }

    .step-arrow {
        transform: rotate(90deg);
    }

    .about-intro-content {
        grid-template-columns: 1fr;
    }

    .fp-images {
        grid-template-columns: 1fr;
    }

    .structure-item {
        grid-template-columns: 1fr;
    }

    .structure-images {
        grid-template-columns: 1fr;
    }

    .car-detail-main {
        grid-template-columns: 1fr;
    }

    .car-info-sections {
        grid-template-columns: 1fr;
    }

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

    .pack-detail-main {
        grid-template-columns: 1fr;
    }

    .booking-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .step-row {
        grid-template-columns: 60px 1fr 60px;
        gap: 20px;
    }

    .step-number-large {
        width: 60px;
        height: 60px;
    }

    .step-number-large span {
        font-size: 28px;
    }

    .step-icon-large {
        width: 60px;
        height: 60px;
    }

    .icon-circle {
        width: 55px;
        height: 55px;
        font-size: 24px;
    }

    .date-selection,
    .copilot-form {
        grid-template-columns: 1fr;
    }

    .packs-selection-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Packs grid 4 → 2 colonnes sur tablette */
    .packs-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    footer .row {
        grid-template-columns: 1fr;
    }

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

    .header-right .search-form {
        display: none;
    }
    
    .header-flex {
        padding: 0 20px;
    }

    .contact-info h1 {
        font-size: 32px;
    }

    .form-card h2 {
        font-size: 24px;
    }

    .contact-item {
        gap: 15px;
    }

    .contact-icon {
        font-size: 24px;
        width: 40px;
        height: 40px;
    }

    .welcome-text h2 {
        font-size: 28px;
    }

    .packs-visual-grid,
    .cars-grid-home,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    /* Responsive packs & voitures */
    .packs-grid,
    .packs-comparison {
        grid-template-columns: 1fr !important;
    }
    
    .cars-grid {
        grid-template-columns: 1fr;
    }

    section h2 {
        font-size: 32px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .step-item {
        max-width: 100%;
    }

    .step-arrow {
        display: none;
    }

    .contact-form-center {
        padding: 30px;
    }

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

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

    .gallery-thumbs {
        grid-template-columns: repeat(3, 1fr);
    }

    .about-intro-text h2,
    .family-professional h2 {
        font-size: 28px;
    }

    .packs-comparison {
        grid-template-columns: 1fr;
    }

    .pack-cars-grid {
        grid-template-columns: 1fr;
    }

    .auth-form-wrapper {
        padding: 30px;
    }

    .account-section {
        padding: 25px;
    }

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

    .profile-photo {
        width: 120px;
        height: 120px;
    }

    .account-header h2 {
        font-size: 28px;
    }

    .step-row {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .step-number-large,
    .step-icon-large {
        margin: 0 auto;
    }

    .how-it-works-page 
     {
        font-size: 32px;
    }

    .step-content h3 {
        font-size: 20px;
    }

    .reservation-section {
        padding: 25px;
    }

    .reservation-section h2 {
        font-size: 24px;
    }

    .packs-selection-grid {
        grid-template-columns: 1fr;
    }

    .auth-buttons {
        flex-direction: column;
    }

    .btn-confirm {
        padding: 14px 40px;
        font-size: 16px;
    }

    .success-message {
        padding: 40px 25px;
    }

    .success-icon {
        width: 80px;
        height: 80px;
        font-size: 48px;
    }

    .success-message h2 {
        font-size: 26px;
    }

    /* Packs grid 4 → 1 colonne sur mobile */
    .packs-grid-4 {
        grid-template-columns: 1fr;
    }
    
    /* How it works - Steps en colonne sur mobile */
    .steps-grid {
        grid-template-columns: 1fr !important;
    }
    
    .step-item {
        padding: 30px 20px !important;
    }
}

/* ============================================
   SECTION COMMENT ÇA MARCHE
============================================ */

.how-it-works {
    padding: 80px 0;
    background: white;
}

.how-it-works h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #1f2349;
    margin-bottom: 60px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.step-item {
    background: #f9f9f9;
    border-radius: 12px;
    padding: 35px 30px;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.step-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: var(--primary);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 30px;
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(227,6,19,0.3);
}

.step-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
    margin-top: 10px;
}

.step-content p {
    font-size: 15px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.step-detail {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #ddd;
}

.step-detail h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
}

.step-detail p {
    font-size: 14px;
    color: #777;
    line-height: 1.5;
}

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

/* CTA Section Comment ça marche */
.how-it-works-cta {
    margin-top: 60px;
    text-align: center;
    padding: 50px 30px;
    background: linear-gradient(135deg, #f9f9f9 0%, #fff 100%);
    border-radius: 16px;
}

.how-it-works-cta h3 {
    font-size: 28px;
    font-weight: 700;
    color: #1f2349;
    margin-bottom: 15px;
}

.how-it-works-cta p {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-outline-dark {
    background: transparent;
    border: 2px solid var(--dark);
    color: var(--dark);
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-outline-dark:hover {
    background: var(--dark);
    color: white;
}