/* ============================================
   S&J AUTO SERVICES - STYLE PRINCIPAL UNIFIÉ
   ============================================ */

   :root { 
    --primary: #FF5722;
    --primary-dark: #E64A19;
    --primary-light: #FF8A50;
    --secondary: #0b0b0b;
    --secondary-light: #1a1a1a;
    --accent: #FF8A50;
    --accent-gold: #FFD700;
    --success: #10B981;
    --warning: #F59E0B;
    --danger: #EF4444;
    --white: #ffffff;
    --light: #f8fafc;
    --light-grey: #f1f5f9;
    --border: #e2e8f0;
    --text-dark: #0f172a;
    --text-grey: #64748b;
    --text-light: #94a3b8;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 30px -10px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-primary: 0 10px 40px -10px rgba(255, 87, 34, 0.35);
    --shadow-glow: 0 0 30px rgba(255, 87, 34, 0.3);
    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-full: 50px;
    --transition: 0.3s ease;
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-fixed: 500;
    --z-modal: 1000;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body { 
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--light); 
    color: var(--text-dark); 
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 100px 20px; position: relative; }
.section-header { text-align: center; margin-bottom: 60px; }

.section-badge-new {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    box-shadow: var(--shadow-primary);
}

.section-badge-new.light {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.section-title { 
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 15px;
    line-height: 1.2;
}

.section-subtitle { 
    color: #475569; 
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.text-white { color: var(--white) !important; }
.text-white-muted { color: rgba(255, 255, 255, 0.7) !important; }
.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.bg-light { background: var(--light-grey); }
.bg-dark { background: var(--secondary); color: var(--white); }

/* NAVBAR */
.navbar { 
    position: fixed; 
    top: 0; 
    width: 100%; 
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 0.8rem 20px; 
    z-index: var(--z-fixed); 
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}
.navbar.scrolled { padding: 0.6rem 20px; box-shadow: var(--shadow); }
.nav-container { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.logo { 
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800; 
    font-size: 1.3rem; 
    color: var(--secondary); 
    text-decoration: none;
    letter-spacing: -0.5px;
    transition: var(--transition);
}
.logo:hover { opacity: 0.9; }
.logo-img { height: 42px; width: auto; border-radius: var(--radius-sm); }
.logo .blue { color: var(--primary); }
.nav-menu { display: flex; gap: 32px; list-style: none; align-items: center; }
.nav-menu a { 
    text-decoration: none; 
    color: var(--text-dark); 
    font-weight: 600; 
    font-size: 0.95rem; 
    transition: var(--transition);
    position: relative;
}
.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}
.nav-menu a:hover::after { width: 100%; }
.nav-menu a:hover { color: var(--primary); }
.btn-nav { 
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white) !important; 
    padding: 12px 28px; 
    border-radius: var(--radius-full); 
    box-shadow: var(--shadow-primary);
    font-weight: 700;
}
.btn-nav::after { display: none; }
.btn-nav:hover { transform: translateY(-2px); box-shadow: var(--shadow-glow); }
.burger { display: none; font-size: 1.5rem; cursor: pointer; color: var(--secondary); padding: 5px; }

/* HERO */
.hero { 
    position: relative;
    min-height: 100vh;
    display: flex; 
    align-items: center; 
    justify-content: center; 
    text-align: center; 
    color: var(--white);
    padding-top: 80px;
    background-color: #0b0b0b;
    overflow: hidden;
}
.hero-overlay { 
    position: absolute; 
    inset: 0; 
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(15, 10, 5, 0.7) 50%, rgba(255, 87, 34, 0.15) 100%);
    z-index: 1;
}
.hero-particles {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 87, 34, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 138, 80, 0.08) 0%, transparent 50%);
    z-index: 1;
}
.hero-content { position: relative; z-index: 2; max-width: 900px; padding: 40px 20px; }
.hero-badge-container { margin-bottom: 25px; }
.badge { 
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white); 
    padding: 10px 24px; 
    border-radius: var(--radius-full); 
    font-weight: 700; 
    font-size: 0.85rem; 
    letter-spacing: 1px;
    box-shadow: var(--shadow-primary);
}
.pulse-badge { animation: pulse-glow 2s ease-in-out infinite; }
@keyframes pulse-glow {
    0%, 100% { box-shadow: var(--shadow-primary); }
    50% { box-shadow: var(--shadow-glow), 0 0 20px rgba(255, 87, 34, 0.5); }
}
.hero h1 { 
    font-size: clamp(2.5rem, 6vw, 4rem);
    line-height: 1.1; 
    margin-bottom: 25px; 
    font-weight: 800;
    letter-spacing: -1px;
}
.hero-description { 
    font-size: 1.2rem; 
    opacity: 0.9; 
    margin-bottom: 35px; 
    max-width: 650px; 
    margin-left: auto; 
    margin-right: auto;
    line-height: 1.7;
}

/* HERO SOCIAL PROOF */
.hero-social-proof {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
    padding: 20px 30px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.proof-item { text-align: center; }
.proof-number { display: block; font-size: 1.8rem; font-weight: 800; color: var(--white)!important; line-height: 1; }
.proof-number .star { color: var(--accent-gold); font-size: 1.2rem; margin-left: 2px; }
.proof-label { font-size: 0.8rem; color: rgba(255, 255, 255, 0.7); text-transform: uppercase; letter-spacing: 0.5px; }
.proof-divider { width: 1px; height: 40px; background: rgba(255, 255, 255, 0.2); }

/* HERO BUTTONS */
.hero-btns { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }
.btn-primary, .btn-secondary { 
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px; 
    border-radius: var(--radius-full); 
    text-decoration: none; 
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition);
    position: relative;
}
.btn-primary { 
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white); 
    border: none;
    box-shadow: var(--shadow-primary);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: var(--shadow-glow); }
.btn-badge {
    background: var(--accent-gold);
    color: var(--secondary);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 800;
    margin-left: 5px;
}
.btn-secondary { 
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--white); 
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.btn-secondary:hover { background: var(--white); color: var(--secondary); border-color: var(--white); }

/* SCROLL INDICATOR */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    animation: bounce 2s ease-in-out infinite;
}
.scroll-arrow {
    width: 24px;
    height: 24px;
    border-right: 2px solid rgba(255, 255, 255, 0.5);
    border-bottom: 2px solid rgba(255, 255, 255, 0.5);
    transform: rotate(45deg);
}
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* TRUST BAR */
.trust-bar { background: var(--secondary); padding: 15px 20px; overflow: hidden; }
.trust-bar-inner { display: flex; justify-content: center; align-items: center; gap: 40px; flex-wrap: wrap; }
.trust-item-bar { display: flex; align-items: center; gap: 10px; color: rgba(255, 255, 255, 0.85); font-size: 0.9rem; font-weight: 600; white-space: nowrap; }
.trust-item-bar i { color: var(--primary); font-size: 1.1rem; }

/* CONCIERGERIE SECTION */
.conciergerie-section { background: linear-gradient(180deg, var(--white) 0%, var(--light) 100%); padding: 100px 20px; }
.exclusivity-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, var(--secondary) 0%, #1a1a1a 100%);
    border-radius: var(--radius-xl);
    padding: 40px 50px;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
}
.exclusivity-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 87, 34, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}
.banner-content { position: relative; z-index: 2; }
.exclusive-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, #FFA000 100%);
    color: var(--secondary);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 15px;
}
.banner-title { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; color: var(--white); margin-bottom: 8px; }
.banner-subtitle { color: rgba(255, 255, 255, 0.7); font-size: 1rem; }
.banner-badge {
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-glow);
    flex-shrink: 0;
}
.badge-text { font-size: 2rem; font-weight: 900; color: var(--white); line-height: 1; }
.badge-subtext { font-size: 0.75rem; color: rgba(255, 255, 255, 0.9); font-weight: 600; }
.conciergerie-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.conciergerie-content { padding-right: 20px; }
.section-label { display: inline-flex; align-items: center; gap: 10px; color: var(--primary); font-size: 0.85rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 20px; }
.section-label i { font-size: 1.2rem; }
.conciergerie-title { font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 800; color: var(--secondary); line-height: 1.2; margin-bottom: 20px; }
.conciergerie-title .highlight { color: var(--primary); position: relative; }
.conciergerie-title .highlight::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 100%; height: 4px; background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%); border-radius: 2px; }
.conciergerie-description { font-size: 1.1rem; color: var(--text-grey); line-height: 1.8; margin-bottom: 35px; }
.conciergerie-features { list-style: none; margin-bottom: 40px; }
.conciergerie-features li { display: flex; gap: 18px; margin-bottom: 25px; align-items: flex-start; }
.feature-icon-wrap {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-primary);
}
.feature-content strong { display: block; font-size: 1rem; color: var(--secondary); margin-bottom: 4px; }
.feature-content span { font-size: 0.9rem; color: var(--text-grey); }
.conciergerie-cta { margin-top: 30px; }
.btn-conciergerie {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--secondary) 0%, #1a1a1a 100%);
    color: var(--white);
    padding: 18px 36px;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
}
.btn-conciergerie:hover { transform: translateY(-3px); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3); }
.btn-conciergerie i { color: var(--accent-gold); }
.cta-note { display: flex; align-items: center; gap: 8px; margin-top: 15px; font-size: 0.85rem; color: var(--text-grey); }
.cta-note i { color: var(--primary); }

/* CONCIERGERIE VISUAL */
.conciergerie-visual { position: relative; }
.visual-card { background: var(--white); border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); }
.visual-image { position: relative; height: 300px; overflow: hidden; }
.visual-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.visual-card:hover .visual-image img { transform: scale(1.05); }
.visual-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.7) 100%); display: flex; align-items: flex-end; padding: 25px; }
.overlay-content { display: flex; align-items: center; gap: 12px; color: var(--white); }
.overlay-icon { font-size: 2rem; }
.overlay-text { font-weight: 700; font-size: 1.2rem; }
.visual-stats { display: flex; gap: 15px; padding: 25px; }
.stat-bubble { flex: 1; background: var(--light); border-radius: var(--radius); padding: 18px; text-align: center; transition: var(--transition); }
.stat-bubble:hover { transform: translateY(-3px); }
.stat-bubble.accent { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); color: var(--white); }
.stat-bubble .stat-value { display: block; font-size: 1.5rem; font-weight: 800; line-height: 1; margin-bottom: 5px; }
.stat-bubble .stat-label { font-size: 0.8rem; color: var(--text-grey); }
.stat-bubble.accent .stat-label { color: rgba(255, 255, 255, 0.85); }
.visual-footnote { padding: 0 25px 20px; font-size: 0.8rem; color: #64748b; font-style: italic; }
.conciergerie-testimonial { background: var(--white); border-radius: var(--radius-lg); padding: 25px; margin-top: 25px; box-shadow: var(--shadow); border-left: 4px solid var(--primary); }
.testimonial-quote { position: relative; margin-bottom: 20px; }
.testimonial-quote i { color: var(--primary); font-size: 1.5rem; opacity: 0.3; position: absolute; top: -5px; left: -5px; }
.testimonial-quote p { font-size: 1rem; color: var(--text-dark); font-style: italic; line-height: 1.7; padding-left: 25px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 45px; height: 45px; background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-weight: 700; font-size: 1.1rem; }
.author-info { flex: 1; }
.author-info strong { display: block; font-size: 0.95rem; color: var(--secondary); }
.author-info span { font-size: 0.8rem; color: var(--text-grey); }
.author-stars { color: var(--accent-gold); font-size: 0.9rem; letter-spacing: 2px; }

/* TRANSFORMATION SECTION */
.transformation-section { padding: 100px 0; background: linear-gradient(180deg, var(--light) 0%, var(--white) 100%); position: relative; overflow: hidden; }
.psychology-hook { text-align: center; margin-bottom: 60px; }
.hook-title { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 900; color: var(--secondary); margin-bottom: 20px; line-height: 1.2; }
.hook-subtitle { font-size: 1.2rem; color: var(--text-grey); max-width: 600px; margin: 0 auto; }
.hook-subtitle strong { color: var(--primary); }

/* VIDEO SECTION */
.video-proof-section { margin: 60px 0; }
.video-container-main { max-width: 900px; margin: 0 auto; position: relative; }
.video-wrapper { position: relative; padding-bottom: 56.25%; background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%); border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); }
.video-placeholder { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--white); cursor: pointer; transition: var(--transition); }
.video-placeholder:hover { background: rgba(255, 87, 34, 0.1); }
.play-button-pulse { width: 90px; height: 90px; background: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 25px; animation: pulse-play 2s ease-in-out infinite; box-shadow: var(--shadow-primary); transition: var(--transition); }
@keyframes pulse-play { 0%, 100% { box-shadow: 0 0 0 0 rgba(255, 87, 34, 0.6); } 50% { box-shadow: 0 0 0 25px rgba(255, 87, 34, 0); } }
.video-placeholder:hover .play-button-pulse { transform: scale(1.1); }
.play-button-pulse i { font-size: 2rem; color: var(--white); margin-left: 5px; }
.video-placeholder h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 8px; }
.video-placeholder p { font-size: 1rem; opacity: 0.8; }
.video-trust-badge { position: absolute; bottom: -20px; left: 50%; transform: translateX(-50%); background: var(--white); padding: 14px 28px; border-radius: var(--radius-full); box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 10px; font-weight: 600; color: var(--secondary); font-size: 0.95rem; z-index: 10; }
.video-trust-badge i { color: var(--success); font-size: 1.2rem; }

/* GALLERY */
.transformation-gallery { margin: 100px 0 60px; }
.gallery-header { text-align: center; margin-bottom: 50px; }
.gallery-label { display: inline-block; background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); color: var(--white); padding: 8px 20px; border-radius: var(--radius-full); font-size: 0.85rem; font-weight: 700; letter-spacing: 1px; margin-bottom: 18px; text-transform: uppercase; }
.gallery-title { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; color: var(--secondary); margin-bottom: 12px; }
.gallery-hook { font-size: 1.1rem; color: var(--text-grey); }

/* BEFORE/AFTER CARDS */
.ba-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 35px; }
.ba-card-pro { background: var(--white); border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-md); transition: var(--transition-slow); }
.ba-card-pro:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg), 0 20px 50px rgba(255, 87, 34, 0.15); }
.ba-container { position: relative; height: 320px; overflow: hidden; cursor: ew-resize; user-select: none; touch-action: pan-y; }
.ba-image { position: absolute; inset: 0; pointer-events: none; }
.ba-image.before { z-index: 1; }
.ba-image.after { z-index: 2; clip-path: inset(0 50% 0 0); }
.ba-image img { width: 100%; height: 100%; object-fit: cover; display: block; user-select: none; -webkit-user-drag: none; }
.ba-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.4) 100%); pointer-events: none; }
.ba-tag { position: absolute; top: 20px; padding: 8px 18px; font-weight: 800; font-size: 0.8rem; letter-spacing: 1.5px; z-index: 5; pointer-events: none; }
.ba-tag.red { left: 0; background: var(--danger); color: var(--white); border-radius: 0 var(--radius) var(--radius) 0; }
.ba-tag.green { right: 0; background: var(--success); color: var(--white); border-radius: var(--radius) 0 0 var(--radius); }
.ba-divider { position: absolute; left: 50%; top: 0; bottom: 0; width: 4px; background: var(--white); transform: translateX(-50%); box-shadow: 0 0 15px rgba(0, 0, 0, 0.3); z-index: 10; pointer-events: none; }
.ba-handle { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 48px; height: 48px; background: var(--primary); border: 3px solid var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 1rem; box-shadow: var(--shadow-primary); pointer-events: none; transition: transform 0.2s ease; }
.ba-container:hover .ba-handle { transform: translate(-50%, -50%) scale(1.1); }
.ba-info { padding: 25px; text-align: center; }
.ba-info h4 { font-size: 1.2rem; font-weight: 700; color: var(--secondary); margin-bottom: 8px; }
.emotion-text { color: var(--text-grey); font-size: 0.95rem; margin-bottom: 15px; font-style: italic; }
.time-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--light); padding: 8px 16px; border-radius: var(--radius-full); font-size: 0.85rem; font-weight: 600; color: var(--text-grey); }
.time-badge i { color: var(--primary); }

/* TRANSFORMATION CTA */
.transformation-cta { margin-top: 80px; }
.cta-content { background: var(--white); padding: 50px 40px; border-radius: var(--radius-xl); box-shadow: var(--shadow-md); text-align: center; max-width: 750px; margin: 0 auto; border: 2px solid var(--primary); position: relative; overflow: hidden; }
.cta-content::before { content: ''; position: absolute; top: -50%; right: -30%; width: 300px; height: 300px; background: radial-gradient(circle, rgba(255, 87, 34, 0.08) 0%, transparent 70%); border-radius: 50%; }
.cta-badge { display: inline-block; background: linear-gradient(135deg, var(--accent-gold) 0%, #FFA000 100%); color: var(--secondary); padding: 8px 20px; border-radius: var(--radius-full); font-size: 0.85rem; font-weight: 800; letter-spacing: 0.5px; margin-bottom: 20px; animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.03); } }
.cta-content h3 { font-size: 2rem; font-weight: 800; color: var(--secondary); margin-bottom: 12px; }
.cta-content p { font-size: 1.15rem; color: var(--text-grey); margin-bottom: 30px; }
.cta-content p strong { color: var(--primary); }
.cta-button-transform { display: inline-flex; align-items: center; gap: 12px; background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); color:#000; padding: 18px 40px; border-radius: var(--radius-full); font-size: 1.1rem; font-weight: 700; text-decoration: none; box-shadow: var(--shadow-primary); transition: var(--transition); margin-bottom: 25px; }
.cta-button-transform:hover { transform: translateY(-3px); box-shadow: var(--shadow-glow); }
.cta-button-transform i { transition: transform 0.3s ease; }
.cta-button-transform:hover i { transform: translateX(5px); }
.trust-indicators { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; color: var(--text-grey); font-size: 0.9rem; font-weight: 600; }
.trust-item i { color: var(--success); }

/* SERVICES SECTION */
.services-section { background: var(--white); padding: 100px 20px; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; margin-bottom: 50px; }
.service-card { background: var(--white); border-radius: var(--radius-xl); padding: 35px 30px; border: 2px solid var(--border); text-align: center; transition: var(--transition); position: relative; overflow: hidden; }
.service-card:hover { border-color: var(--primary); transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.service-card.featured { border-color: var(--primary); box-shadow: var(--shadow-primary); transform: scale(1.03); z-index: 2; }
.service-card.featured:hover { transform: scale(1.03) translateY(-8px); }
.service-card.premium { background: linear-gradient(180deg, var(--white) 0%, #fffaf7 100%); }
.badge-popular, .badge-premium { position: absolute; top: 0; right: 0; padding: 8px 18px; font-size: 0.7rem; font-weight: 800; letter-spacing: 0.5px; border-bottom-left-radius: var(--radius); }
.badge-popular { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); color: var(--white); display: flex; align-items: center; gap: 6px; }
.badge-premium { background: linear-gradient(135deg, var(--accent-gold) 0%, #FFA000 100%); color: var(--secondary); display: flex; align-items: center; gap: 6px; }
.card-header { margin-bottom: 20px; }
.service-icon { font-size: 3rem; margin-bottom: 15px; }
.service-card h3 { font-size: 1.4rem; font-weight: 800; color: var(--secondary); margin-bottom: 8px; }
.service-tagline { font-size: 0.9rem; color: var(--text-grey); font-style: italic; }
.card-price { margin: 25px 0; padding: 20px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.price-old { font-size: 1rem; color: var(--text-light); text-decoration: line-through; display: block; margin-bottom: 5px; }
.price-value { font-size: 2.5rem; font-weight: 900; color: var(--secondary); }
.featured .price-value { color: var(--primary); }
.price-duration { display: block; font-size: 0.85rem; color: var(--text-grey); margin-top: 5px; }
.service-list { list-style: none; text-align: left; margin-bottom: 25px; }
.service-list li { display: flex; align-items: flex-start; gap: 12px; padding: 10px 0; font-size: 0.95rem; color: var(--text-dark); border-bottom: 1px solid var(--light-grey); }
.service-list li:last-child { border-bottom: none; }
.service-list li i { color: var(--success); font-size: 0.9rem; margin-top: 4px; flex-shrink: 0; }
.service-list li strong { color: var(--primary); }
.btn-service { display: inline-flex; align-items: center; justify-content: center; gap: 10px; width: 100%; padding: 15px 25px; background: var(--light); color: var(--secondary); border: 2px solid var(--border); border-radius: var(--radius); text-decoration: none; font-weight: 700; transition: var(--transition); }
.btn-service:hover { background: var(--secondary); color: var(--white); border-color: var(--secondary); }
.btn-service.btn-featured { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); color: var(--white); border-color: var(--primary); }
.btn-service.btn-featured:hover { box-shadow: var(--shadow-glow); transform: translateY(-2px); }
.card-footer { margin-top: 15px; padding-top: 15px; border-top: 1px dashed var(--border); font-size: 0.85rem; color: var(--primary); font-weight: 600; display: flex; align-items: center; justify-content: center; gap: 8px; }
.services-guarantees { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; padding-top: 40px; border-top: 1px solid var(--border); }
.guarantee-item { display: flex; align-items: center; gap: 10px; color: var(--text-grey); font-size: 0.95rem; font-weight: 600; }
.guarantee-item i { color: var(--primary); font-size: 1.2rem; }

/* TESTIMONIALS SECTION */
.testimonials-section { background: var(--light-grey); padding: 100px 20px; }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; margin-bottom: 50px; }
.testimonial-card { background: var(--white); border-radius: var(--radius-xl); padding: 30px; box-shadow: var(--shadow); transition: var(--transition); border: 1px solid transparent; }
.testimonial-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--primary); }
.testimonial-card.featured { border: 2px solid var(--primary); box-shadow: var(--shadow-primary); }
.card-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.stars { color: var(--accent-gold); font-size: 1.1rem; letter-spacing: 2px; }
.verified-badge { display: flex; align-items: center; gap: 6px; font-size: 0.75rem; color: var(--text-light); background: var(--light); padding: 4px 10px; border-radius: var(--radius-full); }
.verified-badge i { color: #4285F4; }
.testimonial-text { font-size: 1.05rem; line-height: 1.7; color: var(--text-dark); margin-bottom: 25px; font-style: italic; }
.testimonial-footer { display: flex; justify-content: space-between; align-items: center; }
.author { display: flex; align-items: center; gap: 12px; }
.avatar { width: 45px; height: 45px; background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-weight: 700; font-size: 1.1rem; }
.author-info strong { display: block; font-size: 0.95rem; color: var(--secondary); }
.author-info span { font-size: 0.8rem; color: var(--text-grey); }
.service-tag { background: var(--light); padding: 6px 12px; border-radius: var(--radius-full); font-size: 0.75rem; font-weight: 600; color: var(--primary); }
.more-reviews { text-align: center; }
.btn-reviews { display: inline-flex; align-items: center; gap: 10px; background: var(--white); color: var(--secondary); padding: 14px 28px; border-radius: var(--radius-full); text-decoration: none; font-weight: 600; border: 2px solid var(--border); transition: var(--transition); }
.btn-reviews:hover { border-color: var(--primary); color: var(--primary); }
.btn-reviews i:first-child { color: #4285F4; }

/* CONTACT SECTION */
.contact-section { background: var(--light-grey); padding: 100px 20px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.info-card { background: var(--white); border-radius: var(--radius-lg); padding: 28px; display: flex; gap: 20px; box-shadow: var(--shadow); transition: var(--transition); border: 1px solid transparent; }
.info-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--primary); }
.info-icon { width: 56px; height: 56px; background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; color: var(--white); flex-shrink: 0; box-shadow: var(--shadow-primary); }
.info-content h3 { font-size: 1.1rem; font-weight: 700; color: var(--secondary); margin-bottom: 8px; }
.info-content p { font-size: 0.95rem; color: var(--text-grey); line-height: 1.6; }
.phone-link { color: var(--primary); text-decoration: none; font-size: 1.3rem; font-weight: 700; transition: var(--transition); }
.phone-link:hover { color: var(--primary-dark); }
.info-note { display: block; margin-top: 5px; font-size: 0.85rem; color: var(--text-light); font-style: italic; }
.info-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 12px; color: var(--primary); text-decoration: none; font-size: 0.9rem; font-weight: 600; transition: var(--transition); }
.info-link:hover { gap: 12px; color: var(--primary-dark); }
.hours-list { display: flex; flex-direction: column; gap: 8px; }
.hour-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid var(--border); }
.hour-row:last-child { border-bottom: none; }
.hour-row .day { font-size: 0.9rem; color: var(--text-dark); font-weight: 600; }
.hour-row .time { font-size: 0.9rem; color: var(--primary); font-weight: 700; }
.hour-row .time.closed { color: var(--danger); }

/* WHATSAPP CARD */
.whatsapp-card { margin-top: 10px; }
.whatsapp-btn { display: flex; align-items: center; gap: 15px; background: #25D366; color: var(--white); padding: 18px 25px; border-radius: var(--radius-lg); text-decoration: none; transition: var(--transition); box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3); }
.whatsapp-btn:hover { transform: translateY(-3px); box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4); }
.whatsapp-btn i { font-size: 2rem; }
.whatsapp-text strong { display: block; font-size: 1rem; margin-bottom: 2px; }
.whatsapp-text span { font-size: 0.85rem; opacity: 0.9; }

/* MAP */
.map-wrapper { position: relative; height: 100%; min-height: 480px; border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); border: 3px solid var(--primary); }
.map-container { width: 100%; height: 100%; min-height: 480px; }
.map-container iframe { width: 100%; height: 100%; border: none; }
.map-overlay { position: absolute; top: 20px; left: 20px; background: var(--white); padding: 12px 20px; border-radius: var(--radius-full); display: flex; align-items: center; gap: 10px; box-shadow: var(--shadow-md); font-size: 0.9rem; font-weight: 600; color: var(--primary); pointer-events: none; animation: pulse-overlay 2s ease-in-out infinite; }
@keyframes pulse-overlay { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.02); } }

/* BOOKING SECTION */
.booking-section { background: linear-gradient(135deg, var(--secondary) 0%, #0d0d0d 100%); padding: 100px 20px 120px; position: relative; }
.urgency-bar { display: flex; align-items: center; justify-content: center; gap: 15px; background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); color: var(--white); padding: 15px 30px; border-radius: var(--radius-full); max-width: 500px; margin: 0 auto 40px; box-shadow: var(--shadow-glow); animation: pulse 2s ease-in-out infinite; }
.urgency-icon { font-size: 1.3rem; animation: shake 1s ease-in-out infinite; }
@keyframes shake { 0%, 100% { transform: rotate(0deg); } 25% { transform: rotate(-5deg); } 75% { transform: rotate(5deg); } }
.urgency-text { font-size: 0.95rem; }
.urgency-text strong { display: block; font-size: 1rem; }
.booking-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; max-width: 1000px; margin: 0 auto; }
.cal-panel, .form-panel { background: var(--white); border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); }
.panel-header { background: var(--light); padding: 25px; border-bottom: 1px solid var(--border); }
.panel-header h3 { display: flex; align-items: center; gap: 12px; font-size: 1.2rem; font-weight: 700; color: var(--secondary); margin: 0; }
.panel-header h3 i { color: var(--primary); }
.date-controls { display: flex; align-items: center; justify-content: space-between; margin-top: 15px; background: var(--white); padding: 8px; border-radius: var(--radius-full); border: 1px solid var(--border); }
.date-controls button { width: 40px; height: 40px; border: none; background: var(--primary); color: var(--white); border-radius: 50%; cursor: pointer; transition: var(--transition); display: flex; align-items: center; justify-content: center; }
.date-controls button:hover { background: var(--primary-dark); transform: scale(1.05); }
.date-controls span { font-weight: 700; color: var(--secondary); text-transform: capitalize; font-size: 0.95rem; }
.slots-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(85px, 1fr)); gap: 10px; padding: 25px; max-height: 320px; overflow-y: auto; }
.slot-btn { padding: 14px 8px; border: 2px solid var(--border); border-radius: var(--radius); cursor: pointer; text-align: center; font-size: 0.95rem; font-weight: 700; transition: var(--transition); color: var(--text-dark); background: var(--white); }
.slot-btn:hover:not(.disabled) { border-color: var(--primary); color: var(--primary); background: rgba(255, 87, 34, 0.05); }
.slot-btn.selected { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); color: var(--white); border-color: var(--primary); transform: scale(1.05); box-shadow: var(--shadow-primary); }
.slot-btn.disabled { background: var(--light); color: var(--text-light); cursor: not-allowed; border-color: var(--light); text-decoration: line-through; }
.form-panel { transition: var(--transition); }
.form-panel.disabled { opacity: 0.5; pointer-events: none; filter: grayscale(0.5); }
.selected-slot { display: flex; align-items: center; gap: 8px; margin-top: 12px; padding: 10px 15px; background: var(--white); border-radius: var(--radius); font-size: 0.9rem; font-weight: 600; color: var(--primary); }
.selected-slot i { color: var(--success); }
.form-panel form { padding: 25px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; font-weight: 600; font-size: 0.9rem; color: var(--text-dark); }
.form-group label i { color: var(--primary); font-size: 0.85rem; }
input, select { width: 100%; padding: 14px 16px; border: 2px solid var(--border); border-radius: var(--radius); background: var(--light); font-size: 1rem; transition: var(--transition); font-family: inherit; }
input:focus, select:focus { outline: none; border-color: var(--primary); background: var(--white); box-shadow: 0 0 0 4px rgba(255, 87, 34, 0.1); }
.btn-submit { width: 100%; padding: 18px; background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); color: var(--white); border: none; border-radius: var(--radius); font-size: 1.05rem; font-weight: 800; cursor: pointer; transition: var(--transition); display: flex; align-items: center; justify-content: center; gap: 10px; text-transform: uppercase; letter-spacing: 0.5px; }
.btn-submit:hover { transform: translateY(-2px); box-shadow: var(--shadow-glow); }
.form-reassurance { display: flex; justify-content: center; gap: 25px; margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--border); }
.reassurance-item { display: flex; align-items: center; gap: 6px; font-size: 0.8rem; color: var(--text-grey); }
.reassurance-item i { color: var(--success); }
.error-msg { color: var(--danger); font-size: 0.9rem; margin: 15px 20px; padding: 12px 15px; background: #FEE2E2; border-radius: var(--radius); display: none; border-left: 4px solid var(--danger); }
.error-msg:not(:empty) { display: block; }
.booking-reminder { display: flex; align-items: center; gap: 20px; max-width: 600px; margin: 40px auto 0; padding: 20px 30px; background: rgba(255, 255, 255, 0.08); backdrop-filter: blur(10px); border-radius: var(--radius-lg); border: 1px solid rgba(255, 255, 255, 0.1); }
.reminder-icon { font-size: 2.5rem; }
.reminder-text { color: rgba(255, 255, 255, 0.9); font-size: 0.95rem; line-height: 1.6; }
.reminder-text strong { color: var(--accent-gold); }
.reminder-code { display: block; margin-top: 5px; color: rgba(255, 255, 255, 0.7); font-size: 0.85rem; }

/* WHATSAPP FLOATING BUTTON */
.whatsapp-float { position: fixed; bottom: 100px; right: 25px; width: 60px; height: 60px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 1.8rem; box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4); z-index: var(--z-fixed); transition: var(--transition); }
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5); }
.whatsapp-tooltip { position: absolute; right: 70px; background: var(--white); color: var(--secondary); padding: 8px 15px; border-radius: var(--radius); font-size: 0.85rem; font-weight: 600; white-space: nowrap; box-shadow: var(--shadow); opacity: 0; pointer-events: none; transition: var(--transition); }
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

/* MOBILE BOTTOM NAV */
.mobile-bottom-nav { display: none; position: fixed; bottom: 0; left: 0; right: 0; background: var(--white); padding: 10px 0; box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1); z-index: var(--z-fixed); grid-template-columns: repeat(4, 1fr); }
.mobile-nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; padding: 8px; color: var(--text-grey); text-decoration: none; font-size: 0.7rem; font-weight: 600; transition: var(--transition); }
.mobile-nav-item i { font-size: 1.3rem; }
.mobile-nav-item.primary { color: var(--primary); }
.mobile-nav-item:hover { color: var(--primary); }

/* FOOTER */
.footer { background: linear-gradient(135deg, var(--secondary) 0%, #050505 100%); color: rgba(255, 255, 255, 0.7); padding: 60px 20px 30px; border-top: 3px solid var(--primary); }
.footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; max-width: 1200px; margin: 0 auto 40px; }
.footer-col h4 { color: var(--white); font-size: 1.2rem; font-weight: 700; margin-bottom: 20px; }
.footer-col p { margin-bottom: 12px; font-size: 0.95rem; line-height: 1.6; }
.footer-col i { width: 25px; color: var(--primary); }
.footer-bottom { text-align: center; padding-top: 25px; border-top: 1px solid rgba(255, 255, 255, 0.1); font-size: 0.9rem; }

/* RESPONSIVE */
@media (max-width: 1024px) {
    .conciergerie-grid { grid-template-columns: 1fr; gap: 40px; }
    .conciergerie-content { padding-right: 0; }
    .exclusivity-banner { flex-direction: column; text-align: center; gap: 25px; padding: 30px; }
    .booking-wrapper { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .section { padding: 70px 15px; }
    .nav-menu { display: none; position: absolute; top: 70px; left: 0; width: 100%; background: var(--white); flex-direction: column; padding: 20px; gap: 0; box-shadow: var(--shadow-lg); }
    .nav-menu.active { display: flex; }
    .nav-menu li { width: 100%; }
    .nav-menu a { display: block; padding: 15px 0; border-bottom: 1px solid var(--border); }
    .nav-menu a::after { display: none; }
    .burger { display: block; }
    .hero { min-height: auto; padding: 120px 20px 80px; }
    .hero-social-proof { flex-direction: column; gap: 15px; padding: 20px; }
    .proof-divider { width: 50px; height: 1px; }
    .hero-btns { flex-direction: column; align-items: center; }
    .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
    .scroll-indicator { display: none; }
    .trust-bar-inner { flex-direction: column; gap: 15px; }
    .contact-grid { grid-template-columns: 1fr; }
    .map-wrapper { min-height: 350px; }
    .mobile-bottom-nav { display: grid; }
    .whatsapp-float { bottom: 90px; }
    .booking-section { padding-bottom: 150px; }
    .ba-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .service-card.featured { transform: none; }
    .service-card.featured:hover { transform: translateY(-8px); }
}
@media (max-width: 480px) {
    .exclusivity-banner { padding: 25px 20px; }
    .banner-badge { width: 80px; height: 80px; }
    .badge-text { font-size: 1.5rem; }
    .conciergerie-features li { flex-direction: column; text-align: center; }
    .feature-icon-wrap { margin: 0 auto; }
    .form-reassurance { flex-direction: column; align-items: center; gap: 10px; }
    .booking-reminder { flex-direction: column; text-align: center; }
    .trust-indicators { flex-direction: column; gap: 15px; }
}

/* ANIMATIONS */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-30px); } to { opacity: 1; transform: translateY(0); } }
[data-aos="fade-up"] { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
[data-aos="fade-up"].aos-animate { opacity: 1; transform: translateY(0); }

/* ============================================
   NOUVELLES STRUCTURES - MAJ
   ============================================ */

/* NAVBAR CONCIERGERIE LINK */
.nav-conciergerie { color: var(--primary) !important; font-weight: 700 !important; }
.nav-conciergerie i { margin-right: 5px; }

/* CONCIERGERIE LOGO */
.banner-badges { display: flex; align-items: center; gap: 25px; position: relative; z-index: 2; }
.conciergerie-logo { width: 100px; height: 100px; border-radius: 50%; object-fit: cover; border: 4px solid var(--accent-gold); box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3); }

/* VIDEO STYLES */
.video-wrapper video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-xl); }
.video-wrapper video::-webkit-media-controls { opacity: 0; transition: opacity 0.3s; }
.video-wrapper video:hover::-webkit-media-controls { opacity: 1; }
.video-placeholder { background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)); z-index: 2; }

/* VEHICLE LEGEND */
.vehicle-legend { display: flex; justify-content: center; gap: 30px; margin-bottom: 40px; flex-wrap: wrap; padding: 20px; background: var(--light); border-radius: var(--radius-lg); }
.legend-item { display: flex; align-items: center; gap: 8px; font-size: 0.9rem; font-weight: 600; color: var(--text-grey); }
.legend-item i { color: var(--primary); font-size: 1.1rem; }

/* SERVICES GRID 5 COLUMNS */
.services-grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; margin-bottom: 50px; }

/* CARD PRICES */
.card-prices { padding: 15px 0; margin: 15px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.price-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px dashed var(--light-grey); }
.price-row:last-child { border-bottom: none; }
.vehicle-type { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--text-grey); }
.vehicle-type i { color: var(--primary); width: 18px; text-align: center; }
.price-row .price-value { font-size: 1.1rem; font-weight: 800; color: var(--secondary); }
.featured .price-row .price-value { color: var(--primary); }

/* DEVIS CARD */
.devis-prices { min-height: 150px; display: flex; align-items: center; justify-content: center; }
.devis-message { text-align: center; padding: 15px; }
.devis-message i { font-size: 2rem; color: var(--primary); margin-bottom: 10px; }
.devis-message p { font-size: 0.9rem; color: var(--text-grey); line-height: 1.5; margin: 0; }

/* BADGES */
.badge-pack { position: absolute; top: 0; right: 0; padding: 8px 18px; font-size: 0.7rem; font-weight: 800; letter-spacing: 0.5px; border-bottom-left-radius: var(--radius); background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%); color: var(--white); display: flex; align-items: center; gap: 6px; }
.badge-devis { position: absolute; top: 0; right: 0; padding: 8px 18px; font-size: 0.7rem; font-weight: 800; letter-spacing: 0.5px; border-bottom-left-radius: var(--radius); background: linear-gradient(135deg, #64748b 0%, #475569 100%); color: var(--white); display: flex; align-items: center; gap: 6px; }
.service-card.pack { background: linear-gradient(180deg, var(--white) 0%, #fff8f5 100%); }
.service-card.devis { background: linear-gradient(180deg, var(--white) 0%, #f8fafc 100%); }

/* CARD FOOTER GOLD */
.card-footer.gold { color: var(--accent-gold); background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%); margin: 15px -30px -35px; padding: 15px 30px; border-radius: 0 0 var(--radius-xl) var(--radius-xl); }

/* BTN DEVIS */
.btn-devis { background: var(--secondary) !important; color: var(--white) !important; border-color: var(--secondary) !important; }
.btn-devis:hover { background: var(--primary) !important; border-color: var(--primary) !important; }

/* TESTIMONIALS GRID 6 */
.testimonials-grid-6 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; margin-bottom: 50px; }

/* SERVICE LIST COMPACT */
.services-grid-5 .service-list li { padding: 6px 0; font-size: 0.85rem; }
.services-grid-5 .service-card { padding: 25px 20px; }
.services-grid-5 .card-header h3 { font-size: 1.2rem; }
.services-grid-5 .service-icon { font-size: 2.5rem; margin-bottom: 10px; }

/* RESPONSIVE UPDATES */
@media (max-width: 1400px) {
    .services-grid-5 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1024px) {
    .services-grid-5 { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid-6 { grid-template-columns: repeat(2, 1fr); }
    .banner-badges { flex-direction: column; gap: 15px; }
    .conciergerie-logo { width: 80px; height: 80px; }
}
@media (max-width: 768px) {
    .services-grid-5 { grid-template-columns: 1fr; }
    .testimonials-grid-6 { grid-template-columns: 1fr; }
    .vehicle-legend { gap: 15px; }
    .legend-item { font-size: 0.8rem; }
}

/* FIX CTA BUTTON VISIBILITY */
.cta-content { position: relative; z-index: 1; }
.cta-content * { position: relative; z-index: 2; }
.cta-content::before { z-index: 0; }
.cta-button-transform { 
    display: inline-flex !important; 
    align-items: center; 
    gap: 12px; 
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); 
    color: #000 !important; 
    padding: 18px 40px; 
    border-radius: var(--radius-full); 
    font-size: 1.1rem; 
    font-weight: 700; 
    text-decoration: none; 
    box-shadow: var(--shadow-primary); 
    transition: var(--transition); 
    margin-bottom: 25px;
    visibility: visible !important;
    opacity: 1 !important;
}

/* ============================================
   RÉSEAUX SOCIAUX
   ============================================ */

/* FOOTER STYLES */
.footer { background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%); color: rgba(255, 255, 255, 0.8); padding: 60px 20px 0; border-top: 3px solid var(--primary); }
.footer-content { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; max-width: 1200px; margin: 0 auto; padding-bottom: 40px; }
.footer-brand { padding-right: 30px; }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.footer-logo-img { width: 50px; height: 50px; border-radius: 10px; object-fit: cover; }
.footer-logo span { font-size: 1.3rem; font-weight: 800; color: var(--white); }
.footer-logo .orange { color: var(--primary); }
.footer-description { font-size: 0.95rem; line-height: 1.7; color: rgba(255, 255, 255, 0.6); margin-bottom: 25px; }
.footer-col h4 { color: var(--white); font-size: 1.1rem; font-weight: 700; margin-bottom: 25px; position: relative; padding-bottom: 12px; }
.footer-col h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 40px; height: 3px; background: var(--primary); border-radius: 2px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: rgba(255, 255, 255, 0.7); text-decoration: none; font-size: 0.95rem; transition: var(--transition); display: flex; align-items: center; gap: 8px; }
.footer-links a i { font-size: 0.7rem; color: var(--primary); transition: var(--transition); }
.footer-links a:hover { color: var(--primary); padding-left: 5px; }
.footer-links a:hover i { transform: translateX(3px); }
.footer-contact { list-style: none; }
.footer-contact li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 18px; font-size: 0.95rem; }
.footer-contact li i { color: var(--primary); font-size: 1rem; margin-top: 3px; width: 20px; }
.footer-contact li a { color: rgba(255, 255, 255, 0.7); text-decoration: none; transition: var(--transition); }
.footer-contact li a:hover { color: var(--primary); }

/* FOOTER SOCIAL LINKS */
/* FOOTER STYLES */
.footer { background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%); color: rgba(255, 255, 255, 0.8); padding: 60px 20px 0; border-top: 3px solid var(--primary); }
.footer-content { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; max-width: 1200px; margin: 0 auto; padding-bottom: 40px; }
.footer-brand { padding-right: 30px; }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.footer-logo-img { width: 50px; height: 50px; border-radius: 10px; object-fit: cover; }
.footer-logo span { font-size: 1.3rem; font-weight: 800; color: var(--white); }
.footer-logo .orange { color: var(--primary); }
.footer-description { font-size: 0.95rem; line-height: 1.7; color: rgba(255, 255, 255, 0.6); margin-bottom: 25px; }
.footer-col h4 { color: var(--white); font-size: 1.1rem; font-weight: 700; margin-bottom: 25px; position: relative; padding-bottom: 12px; }
.footer-col h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 40px; height: 3px; background: var(--primary); border-radius: 2px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: rgba(255, 255, 255, 0.7); text-decoration: none; font-size: 0.95rem; transition: var(--transition); display: flex; align-items: center; gap: 8px; }
.footer-links a i { font-size: 0.7rem; color: var(--primary); transition: var(--transition); }
.footer-links a:hover { color: var(--primary); padding-left: 5px; }
.footer-links a:hover i { transform: translateX(3px); }
.footer-contact { list-style: none; }
.footer-contact li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 18px; font-size: 0.95rem; }
.footer-contact li i { color: var(--primary); font-size: 1rem; margin-top: 3px; width: 20px; }
.footer-contact li a { color: rgba(255, 255, 255, 0.7); text-decoration: none; transition: var(--transition); }
.footer-contact li a:hover { color: var(--primary); }

/* FOOTER SOCIAL LINKS */
.footer-socials { display: flex; gap: 12px; margin-top: 20px; }
.social-link { 
    width: 45px; 
    height: 45px; 
    border-radius: 12px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 1.2rem; 
    color: #ffffff !important; /* FORCE BLANC */
    text-decoration: none;
    transition: all 0.3s ease; 
    position: relative; 
    overflow: hidden; 
}
.social-link::before { content: ''; position: absolute; inset: 0; opacity: 0; transition: opacity 0.3s ease; }
.social-link:hover { 
    transform: translateY(-5px); 
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3); 
    color: #ffffff !important; /* GARDE BLANC AU HOVER */
}
.social-link:hover::before { opacity: 1; }
.social-link i { 
    position: relative; 
    z-index: 2; 
    color: inherit; /* HÉRITE DU BLANC */
}

/* Couleurs spécifiques réseaux sociaux */
.social-link.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-link.instagram:hover { box-shadow: 0 10px 25px rgba(225, 48, 108, 0.4); }

.social-link.facebook { background: #1877F2; }
.social-link.facebook:hover { box-shadow: 0 10px 25px rgba(24, 119, 242, 0.4); }

.social-link.youtube { background: #FF0000; }
.social-link.youtube:hover { box-shadow: 0 10px 25px rgba(255, 0, 0, 0.4); }

.social-link.tiktok { background: #000000; border: 1px solid #333; }
.social-link.tiktok:hover { box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 242, 234, 0.3); }
.social-link.tiktok i { 
    background: linear-gradient(45deg, #00f2ea, #ff0050); 
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent; 
    background-clip: text; 
    color: transparent !important; /* FORCE TRANSPARENT POUR LE GRADIENT */
}

/* FOOTER BOTTOM */
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.1); padding: 25px 20px; }
.footer-bottom-content { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 15px; }
.footer-bottom p { font-size: 0.9rem; color: rgba(255, 255, 255, 0.5); margin: 0; }
.footer-bottom-links { display: flex; gap: 15px; align-items: center; }
.footer-bottom-links a { color: rgba(255, 255, 255, 0.5); text-decoration: none; font-size: 0.85rem; transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--primary); }
.footer-bottom-links span { color: rgba(255, 255, 255, 0.3); }

/* BARRE RÉSEAUX SOCIAUX FLOTTANTE (DESKTOP) */
.social-float-bar { position: fixed; left: 0; top: 50%; transform: translateY(-50%); z-index: 500; display: flex; flex-direction: column; gap: 2px; }
.social-float-link { 
    display: flex; 
    align-items: center; 
    padding: 12px 15px; 
    color: #ffffff !important; /* FORCE BLANC */
    text-decoration: none; 
    font-size: 1.1rem; 
    transition: all 0.3s ease; 
    border-radius: 0 8px 8px 0; 
    width: 50px; 
    overflow: hidden; 
}
.social-float-link span { font-size: 0.85rem; font-weight: 600; margin-left: 12px; white-space: nowrap; opacity: 0; transition: opacity 0.3s ease; }
.social-float-link:hover { 
    width: 150px; 
    padding-right: 20px; 
    color: #ffffff !important; /* GARDE BLANC AU HOVER */
}
.social-float-link:hover span { opacity: 1; }
.social-float-link i { 
    min-width: 20px; 
    text-align: center; 
    color: inherit; /* HÉRITE DU BLANC */
}

.social-float-link.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-float-link.facebook { background: #1877F2; }
.social-float-link.youtube { background: #FF0000; }
.social-float-link.tiktok { background: #000000; }

/* CONTACT SOCIAL CARD */
.contact-social-card { 
    background: var(--white); 
    border-radius: var(--radius-lg); 
    padding: 25px; 
    box-shadow: var(--shadow); 
    margin-top: 20px; 
}
.contact-social-card h4 { 
    display: flex; 
    align-items: center; 
    gap: 10px; 
    font-size: 1rem; 
    font-weight: 700; 
    color: var(--secondary); 
    margin-bottom: 18px; 
}
.contact-social-card h4 i { 
    color: var(--primary); 
}

/* CONTACT SOCIALS - UTILISE .social-link (défini plus haut) */
.contact-socials { 
    display: flex; 
    gap: 12px; 
    flex-wrap: wrap; 
    margin-top: 20px; 
}
.contact-socials .social-link { 
    width: 50px; 
    height: 50px; 
    border-radius: 12px; 
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .footer-content { grid-template-columns: repeat(2, 1fr); }
    .footer-brand { grid-column: 1 / -1; padding-right: 0; text-align: center; }
    .footer-socials { justify-content: center; }
    .footer-logo { justify-content: center; }
}

@media (max-width: 768px) {
    .footer-content { grid-template-columns: 1fr; text-align: center; }
    .footer-col h4::after { left: 50%; transform: translateX(-50%); }
    .footer-links a { justify-content: center; }
    .footer-contact li { justify-content: center; }
    .footer-bottom-content { flex-direction: column; text-align: center; }
    
    /* Cacher barre flottante sur mobile */
    .social-float-bar { display: none; }
}
/* ============================================
   NOUVELLES MODIFICATIONS SERVICES - DEC 2025
   ============================================ */

/* Include All - Style pour "Tout le..." */
.service-list .include-all {
    background: linear-gradient(135deg, rgba(255, 87, 34, 0.1) 0%, rgba(255, 87, 34, 0.05) 100%);
    padding: 15px 12px;
    border-radius: var(--radius);
    border: 2px dashed var(--primary);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.service-list .include-all i {
    display: none;
}

.big-plus {
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plus-sign {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
}

/* Prix Bundle avec réduction */
.price-bundle {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}

.price-old-strike {
    font-size: 0.85rem;
    color: var(--text-light);
    text-decoration: line-through;
    font-weight: 600;
}

.price-value.promo {
    color: var(--success);
    font-size: 1.3rem;
    font-weight: 900;
    position: relative;
}

.price-value.promo::after {
    content: '🎉';
    position: absolute;
    right: -25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.9rem;
}

/* Badge Pack mise à jour */
.badge-pack {
    background: linear-gradient(135deg, var(--accent-gold) 0%, #FF8A00 100%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4); }
    50% { box-shadow: 0 8px 30px rgba(255, 215, 0, 0.6); }
}

/* Card Polish */
.service-card.polish-card {
    background: linear-gradient(180deg, var(--white) 0%, #fafafa 100%);
    border: 2px solid #e5e5e5;
}

.badge-polish {
    position: absolute;
    top: 0;
    right: 0;
    padding: 8px 18px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    border-bottom-left-radius: var(--radius);
    background: linear-gradient(135deg, #94a3b8 0%, #64748b 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn-polish {
    background: linear-gradient(135deg, #64748b 0%, #475569 100%) !important;
    color: var(--white) !important;
    border-color: #64748b !important;
}

.btn-polish:hover {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%) !important;
    border-color: var(--primary) !important;
    transform: translateY(-2px);
}

/* Option Phares intégrée dans Polish */
.phares-addon {
    margin: 20px 0;
    padding: 20px 0 0;
}

.addon-divider {
    position: relative;
    text-align: center;
    margin-bottom: 20px;
}

.addon-divider::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border), transparent);
}

.divider-text {
    position: relative;
    display: inline-block;
    padding: 0 15px;
    background: #fafafa;
    color: var(--text-grey);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.phares-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    border: 2px solid var(--accent-gold);
    border-radius: var(--radius-lg);
    padding: 15px 20px;
    margin-bottom: 20px;
    transition: var(--transition);
}

.phares-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
}

.phares-info {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.phares-icon-inline {
    font-size: 2rem;
    flex-shrink: 0;
}

.phares-details h5 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--secondary);
    margin: 0 0 4px 0;
}

.phares-price {
    font-size: 0.85rem;
    color: var(--text-grey);
    margin: 0;
}

.phares-price strong {
    color: var(--primary);
    font-size: 1.1rem;
    font-weight: 900;
}

.btn-addon {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: var(--radius-full);
    transition: var(--transition);
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-addon:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

/* Responsive Services */
@media (max-width: 768px) {
    .plus-sign {
        font-size: 1.5rem;
    }
    
    .big-plus {
        font-size: 1rem;
    }
    
    .service-list .include-all {
        padding: 12px 10px;
    }
    
    .phares-item {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .phares-info {
        flex-direction: column;
        text-align: center;
    }
    
    .btn-addon {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .price-bundle {
        gap: 0;
    }
    
    .price-old-strike {
        font-size: 0.75rem;
    }
    
    .price-value.promo {
        font-size: 1.1rem;
    }
    
    .price-value.promo::after {
        right: -20px;
        font-size: 0.8rem;
    }
    
    .phares-icon-inline {
        font-size: 1.8rem;
    }
    
    .phares-details h5 {
        font-size: 0.9rem;
    }
}

/* ============================================
   TOGGLE COMPACT / DÉTAILLÉ - STYLES SIMPLES
   ============================================ */

/* Item avec bouton toggle */
.toggle-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, rgba(255, 87, 34, 0.08) 0%, rgba(255, 87, 34, 0.03) 100%);
    padding: 12px !important;
    border-radius: 8px;
    border: 1px dashed rgba(255, 87, 34, 0.3) !important;
    margin-bottom: 12px !important;
}

.toggle-item strong {
    color: var(--primary);
    font-size: 0.95rem;
}

/* Bouton toggle */
.btn-toggle {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-toggle:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

/* Items de détail (services inclus) */
.detail-item {
    padding-left: 20px !important;
    color: var(--text-grey) !important;
    font-size: 0.85rem !important;
    background: rgba(226, 232, 240, 0.3);
    border-radius: 4px;
    margin: 2px 0 !important;
}

.detail-item i {
    color: var(--text-light) !important;
    font-size: 0.7rem !important;
}

/* Séparateur entre niveaux */
.divider-item {
    text-align: center !important;
    color: var(--primary) !important;
    font-size: 0.85rem !important;
    padding: 8px 0 !important;
    border-bottom: none !important;
    opacity: 0.5;
    user-select: none;
}

/* État expanded */
.toggle-item.expanded {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08) 0%, rgba(16, 185, 129, 0.03) 100%);
    border-color: rgba(16, 185, 129, 0.3) !important;
}

.toggle-item.expanded strong {
    color: var(--success);
}

.toggle-item.expanded .btn-toggle {
    background: var(--success);
}

.toggle-item.expanded .btn-toggle:hover {
    background: #059669;
}

/* Animation subtile */
.service-list {
    transition: opacity 0.2s ease;
}

/* Responsive */
@media (max-width: 768px) {
    .toggle-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .btn-toggle {
        align-self: flex-end;
        font-size: 0.7rem;
        padding: 5px 12px;
    }
    
    .detail-item {
        font-size: 0.8rem !important;
    }
}