/* ============================================
   S&J AUTO SERVICES - STYLE PRINCIPAL UNIFIE
   Fichier CSS consolidé - Toutes les sections
   ============================================ */

/* ============================================
   CSS VARIABLES
   ============================================ */

: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;
}

/* ============================================
   RESET & BASE
   ============================================ */

*, *::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;
}

/* ============================================
   LAYOUT & UTILITIES
   ============================================ */

.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; }

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

/* ============================================
   HERO SECTION
   ============================================ */

.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: 100%;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    contain: layout;
    text-align: center;
}
.hero-badge-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
    min-height: 42px;
}

.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; }

/* Badge Ecologie — après .badge pour le surcharger */
.eco-badge {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}
@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(2rem, 8vw, 4rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -1px;
}
.hero-description {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

/* Hero Social Proof */
.hero-social-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin-bottom: 2.5rem;
    min-height: 60px;
    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;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.proof-number {
    display: block;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    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: clamp(0.75rem, 2vw, 0.9rem);
    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;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    align-items: center;
    margin-bottom: 3rem;
}
.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); }

.btn-text-mobile {
    display: none;
}

/* 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;
}
.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); }
.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(--white) 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

/* Psychology Hook */
.psychology-hook {
    text-align: center;
    margin-bottom: 80px;
    animation: fadeInDown 1s ease-out;
}

.badge-numero-1 {
    margin: 0 auto 30px;
    width: 140px;
    height: 140px;
    animation: floatBadge 4s ease-in-out infinite;
    filter: drop-shadow(0 15px 40px rgba(255, 87, 34, 0.4));
    transition: transform 0.4s;
}
.badge-numero-1:hover {
    transform: scale(1.15) rotate(5deg);
}
@keyframes floatBadge {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(3deg); }
}
.badge-img {
    width: 100%;
    height: 100%;
}

.hook-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900;
    color: var(--secondary);
    margin-bottom: 20px;
    line-height: 1.2;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}
.hook-subtitle {
    font-size: 1.3rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}
.hook-subtitle strong { color: var(--primary); font-weight: 700; }

/* ============================================
   VIDEO SECTION
   ============================================ */

.video-proof-section {
    margin: 80px 0;
    animation: fadeInUp 1s ease-out 0.3s backwards;
}
.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: 0 30px 80px rgba(0, 0, 0, 0.3);
}
.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 {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    cursor: pointer;
    transition: all 0.4s;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
    z-index: 2;
}
.video-placeholder:hover { background: rgba(255, 87, 34, 0.1); }
.play-button-pulse {
    width: 100px;
    height: 100px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    animation: pulsePlay 2s ease-in-out infinite;
    box-shadow: 0 0 0 0 rgba(255, 87, 34, 0.7);
    transition: all 0.4s;
}
@keyframes pulsePlay {
    0% { box-shadow: 0 0 0 0 rgba(255, 87, 34, 0.7); }
    70% { box-shadow: 0 0 0 30px rgba(255, 87, 34, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 87, 34, 0); }
}
.video-placeholder:hover .play-button-pulse { transform: scale(1.15); background: #ff6a3d; }
.play-button-pulse i { font-size: 2.5rem; color: var(--white); margin-left: 5px; }
.video-placeholder h3 { font-size: 1.8rem; font-weight: 700; margin-bottom: 10px; }
.video-placeholder p { font-size: 1.1rem; opacity: 0.9; }
.video-trust-badge {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    padding: 15px 30px;
    border-radius: var(--radius-full);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--secondary);
    font-size: 0.95rem;
    z-index: 10;
    animation: slideUp 1s ease-out 0.6s backwards;
}
@keyframes slideUp {
    from { opacity: 0; transform: translateX(-50%) translateY(20px); }
    to { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.video-trust-badge i { color: var(--success); font-size: 1.3rem; }

/* ============================================
   GALLERY - TRANSFORMATION AVANT/APRES
   ============================================ */

.transformation-gallery { margin: 120px 0 80px; }
.gallery-header {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInUp 1s ease-out 0.4s backwards;
}
.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.5rem); font-weight: 800; color: var(--secondary); margin-bottom: 12px; }
.gallery-hook { font-size: 1.1rem; color: var(--text-grey); max-width: 600px; margin: 0 auto; }

/* Before/After Cards */
.ba-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}
.ba-card-pro {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: fadeInUp 0.8s ease-out backwards;
}
.ba-card-pro:nth-child(1) { animation-delay: 0.1s; }
.ba-card-pro:nth-child(2) { animation-delay: 0.3s; }
.ba-card-pro:nth-child(3) { animation-delay: 0.5s; }
.ba-card-pro:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 70px rgba(255, 87, 34, 0.25);
}
.ba-container {
    position: relative;
    height: 350px;
    overflow: hidden;
    cursor: ew-resize;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-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; pointer-events: 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 20px;
    font-weight: 900;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    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; left: auto; 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%);
    cursor: ew-resize;
    box-shadow: 0 0 20px 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: 50px;
    height: 50px;
    background: var(--primary);
    border: 4px solid var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    pointer-events: none;
    transition: transform 0.3s ease-out;
    animation: pulseHandle 2s ease-in-out infinite;
}
@keyframes pulseHandle {
    0%, 100% { box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3); }
    50% { box-shadow: 0 8px 30px rgba(255, 87, 34, 0.5); }
}
.ba-container:hover .ba-handle { transform: translate(-50%, -50%) scale(1.1); }

/* Slide instruction */
.ba-container::after {
    content: '\2190 Glissez \2192';
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    pointer-events: none;
    z-index: 15;
    opacity: 0;
    transition: opacity 0.3s;
}
.ba-container:hover::after {
    opacity: 1;
}

.ba-info { padding: 25px; text-align: center; }
.ba-info h4 { font-size: 1.3rem; font-weight: 700; color: var(--secondary); margin-bottom: 8px; }
.emotion-text { color: var(--text-grey); font-size: 1rem; 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.9rem; font-weight: 600; color: var(--text-grey); }
.time-badge i { color: var(--primary); }

/* ============================================
   TRANSFORMATION CTA
   ============================================ */

.transformation-cta {
    margin-top: 100px;
    text-align: center;
    animation: fadeInUp 1s ease-out 0.7s backwards;
}
.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;
    z-index: 1;
    overflow: hidden;
}
.cta-content * { position: relative; z-index: 2; }
.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%; z-index: 0; }
.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 !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;
}
.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; transition: opacity 0.2s ease; }
.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; }

/* 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(--accent-gold) 0%, #FF8A00 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 6px;
    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); }
}
.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; }

/* Service List Compact (5-col grid) */
.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; }

/* Include All - "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 reduction */
.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: '\1F389';
    position: absolute;
    right: -25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.9rem;
}

/* 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 integree 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); }

/* ============================================
   TOGGLE COMPACT / DETAILLE
   ============================================ */

.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; }
.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); }
.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; }
.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;
}
.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; }

/* ============================================
   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; }
.testimonials-grid-6 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; 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; }
.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; }

/* 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 {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 20px;
}
.contact-socials .social-link {
    width: 50px;
    height: 50px;
    border-radius: 12px;
}

/* 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, #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 */
.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 Columns */
.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-col p { margin-bottom: 12px; font-size: 0.95rem; line-height: 1.6; }
.footer-col i { width: 25px; color: var(--primary); }

/* Footer Links */
.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 */
.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 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); }

/* ============================================
   SOCIAL ICONS - FOOTER
   ============================================ */

.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;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.social-link::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
}
.social-link:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    color: #ffffff !important;
}
.social-link:hover::before { opacity: 1; }
.social-link i {
    position: relative;
    z-index: 2;
    font-size: 1.3rem;
    color: inherit;
    transition: transform 0.3s ease;
}
.social-link:hover i { transform: scale(1.15) rotate(5deg); }
.social-link:active { transform: translateY(-3px) scale(0.98); }

/* Instagram */
.social-link.instagram {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}
.social-link.instagram:hover {
    box-shadow: 0 15px 35px rgba(225, 48, 108, 0.6), 0 0 30px rgba(225, 48, 108, 0.3);
}

/* Facebook */
.social-link.facebook {
    background: linear-gradient(135deg, #1877F2 0%, #0d5dce 100%);
}
.social-link.facebook:hover {
    box-shadow: 0 15px 35px rgba(24, 119, 242, 0.6), 0 0 30px rgba(24, 119, 242, 0.3);
}

/* YouTube */
.social-link.youtube {
    background: linear-gradient(135deg, #FF0000 0%, #cc0000 100%);
}
.social-link.youtube:hover {
    box-shadow: 0 15px 35px rgba(255, 0, 0, 0.6), 0 0 30px rgba(255, 0, 0, 0.3);
}

/* TikTok */
.social-link.tiktok {
    background: linear-gradient(135deg, #000000 0%, #111111 100%);
    border: 2px solid #00f2ea;
    position: relative;
}
.social-link.tiktok::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #00f2ea, #ff0050, #00f2ea);
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}
.social-link.tiktok:hover::after { opacity: 0.3; }
.social-link.tiktok:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6),
                0 0 30px rgba(0, 242, 234, 0.4),
                0 0 50px rgba(255, 0, 80, 0.3);
}
.social-link.tiktok i {
    background: linear-gradient(45deg, #00f2ea, #ff0050);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    color: transparent !important;
}

/* ============================================
   SOCIAL FLOAT BAR (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;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0 12px 12px 0;
    width: 50px;
    overflow: hidden;
    box-shadow: 3px 0 15px rgba(0, 0, 0, 0.3);
    position: relative;
}
.social-float-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.social-float-link:hover::before { opacity: 1; }
.social-float-link span {
    font-size: 0.9rem;
    font-weight: 700;
    margin-left: 12px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.social-float-link:hover {
    width: 160px;
    padding-right: 20px;
    box-shadow: 5px 0 25px rgba(0, 0, 0, 0.4);
    color: #ffffff !important;
}
.social-float-link:hover span { opacity: 1; }
.social-float-link i {
    min-width: 20px;
    text-align: center;
    font-size: 1.2rem;
    color: inherit;
    transition: transform 0.3s ease;
}
.social-float-link:hover i { transform: scale(1.1); }
.social-float-link:active { transform: translateX(2px) scale(0.98); }

/* Float bar colors */
.social-float-link.instagram {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}
.social-float-link.facebook {
    background: linear-gradient(135deg, #1877F2 0%, #0d5dce 100%);
}
.social-float-link.youtube {
    background: linear-gradient(135deg, #FF0000 0%, #cc0000 100%);
}
.social-float-link.tiktok {
    background: linear-gradient(135deg, #000000 0%, #111111 100%);
    border-left: 3px solid #00f2ea;
}

/* ============================================
   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); }
}
@keyframes float-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}
[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); }

/* ============================================
   RESPONSIVE - 1400px
   ============================================ */

@media (max-width: 1400px) {
    .services-grid-5 { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================
   RESPONSIVE - 1024px (Tablet)
   ============================================ */

@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; }
    .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; }

    /* Footer */
    .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; }
    .footer-col h4::after { left: 0; }
    .footer-socials .social-link { width: 50px; height: 50px; }

    /* Hero badges */
    .hero-badge-container { gap: 10px; }
    .badge { font-size: 0.8rem; padding: 7px 18px; }
    .eco-badge { font-size: 0.75rem; padding: 7px 16px; }
}

/* ============================================
   RESPONSIVE - 768px (Mobile)
   ============================================ */

@media (max-width: 768px) {
    .section { padding: 70px 15px; }

    /* Navbar Mobile */
    .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 Mobile */
    .hero { min-height: auto; padding: 120px 20px 80px; }
    .hero-content { padding: 0 15px; min-height: 90vh; }
    .hero-badge-container { flex-direction: column; gap: 8px; margin-bottom: 1.5rem; }
    .badge, .eco-badge { font-size: 0.75rem; padding: 6px 16px; width: fit-content; }
    .desktop-br { display: none; }
    .hero h1 { margin-bottom: 1rem; }
    .hero-description { font-size: 1rem; margin-bottom: 2rem; }
    .hero-social-proof { flex-direction: column; gap: 15px; padding: 20px; margin-bottom: 2rem; }
    .proof-divider { display: none; }
    .hero-btns { flex-direction: column; width: 100%; gap: 12px; margin-bottom: 2rem; }
    .btn-primary, .btn-secondary { width: 100%; max-width: 350px; padding: 14px 24px; font-size: 0.95rem; justify-content: center; }
    .btn-text { display: none; }
    .btn-text-mobile { display: inline; }
    .scroll-indicator { display: none; margin-top: 1rem; }

    /* Trust Bar Mobile */
    .trust-bar-inner { flex-direction: column; gap: 15px; }

    /* Contact Mobile */
    .contact-grid { grid-template-columns: 1fr; }
    .map-wrapper { min-height: 350px; }

    /* Mobile Bottom Nav */
    .mobile-bottom-nav { display: grid; }
    .whatsapp-float { bottom: 90px; }

    /* Booking Mobile */
    .booking-section { padding-bottom: 150px; }

    /* Before/After Grid Mobile */
    .ba-grid { grid-template-columns: 1fr; gap: 30px; }
    .ba-container { height: 300px; }
    .ba-handle { width: 45px; height: 45px; font-size: 1rem; }

    /* Services Mobile */
    .services-grid { grid-template-columns: 1fr; }
    .service-card.featured { transform: none; }
    .service-card.featured:hover { transform: translateY(-8px); }
    .services-grid-5 { grid-template-columns: 1fr; }
    .testimonials-grid-6 { grid-template-columns: 1fr; }
    .vehicle-legend { gap: 15px; }
    .legend-item { font-size: 0.8rem; }
    .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; }

    /* Toggle Mobile */
    .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; }

    /* Transformation Section Mobile */
    .transformation-section { padding: 60px 0; }
    .psychology-hook { margin-bottom: 60px; }
    .badge-numero-1 { width: 120px; height: 120px; }
    .hook-title { font-size: 2rem; }
    .hook-subtitle { font-size: 1.1rem; padding: 0 20px; }
    .video-proof-section { margin: 60px 0; }
    .play-button-pulse { width: 80px; height: 80px; }
    .play-button-pulse i { font-size: 2rem; }
    .video-placeholder h3 { font-size: 1.4rem; padding: 0 20px; }
    .video-placeholder p { font-size: 1rem; padding: 0 20px; }
    .video-trust-badge { padding: 12px 20px; font-size: 0.9rem; }
    .transformation-gallery { margin: 80px 0 60px; }
    .gallery-header { margin-bottom: 40px; }
    .gallery-title { font-size: 1.8rem; padding: 0 20px; }
    .gallery-hook { font-size: 1rem; padding: 0 20px; }
    .transformation-cta { margin-top: 60px; }
    .cta-content { padding: 40px 20px; border-width: 2px; }
    .cta-content h3 { font-size: 1.6rem; }
    .cta-content p { font-size: 1rem; }
    .cta-button-transform { padding: 18px 40px; font-size: 1.1rem; }
    .trust-indicators { gap: 20px; flex-direction: column; }

    /* Footer Mobile */
    .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; }

    /* Social Mobile */
    .social-float-bar { display: none; }
    .footer-socials { justify-content: center; }
    .contact-socials { justify-content: center; }
}

/* ============================================
   RESPONSIVE - 480px (Small Mobile)
   ============================================ */

@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; }

    /* Hero Small Mobile */
    .hero-content { padding: 0 12px; }
    .badge, .eco-badge { font-size: 0.7rem; padding: 5px 14px; }
    .hero h1 { font-size: 1.8rem; }
    .hero-description { font-size: 0.9rem; }
    .proof-item { min-width: 100px; }
    .btn-primary, .btn-secondary { padding: 12px 20px; font-size: 0.9rem; }

    /* Before/After Small Mobile */
    .ba-grid { grid-template-columns: 1fr; }
    .ba-container { height: 250px; }
    .hook-title { font-size: 1.6rem; }
    .cta-button-transform { width: 100%; justify-content: center; }

    /* Services Small Mobile */
    .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; }

    /* Social Small Mobile */
    .social-link { width: 42px; height: 42px; font-size: 1.1rem; }
    .social-link i { font-size: 1.2rem; }

    /* Footer Small Mobile */
    .footer { padding: 40px 15px 0; }
    .footer-content { gap: 30px; padding-bottom: 30px; }
    .footer-logo-img { width: 40px; height: 40px; }
    .footer-logo span { font-size: 1.1rem; }
}

/* ============================================
   RESPONSIVE - Landscape Mobile
   ============================================ */

@media (max-width: 768px) and (orientation: landscape) {
    .hero-content {
        min-height: auto;
        padding: 60px 15px 40px;
    }
    .hero-badge-container { margin-bottom: 1rem; }
    .hero h1 { font-size: 2rem; margin-bottom: 0.8rem; }
    .hero-description { margin-bottom: 1.5rem; font-size: 0.9rem; }
    .hero-social-proof { margin-bottom: 1.5rem; }
    .hero-btns { margin-bottom: 1.5rem; }
    .scroll-indicator { display: none; }
}

/* ============================================
   RGPD - CHECKBOX CONSENTEMENT FORMULAIRE
   ============================================ */
.consent-group { margin-bottom: 12px; }
.consent-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.82rem;
    color: var(--text-grey);
    line-height: 1.4;
}
.consent-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    min-width: 18px;
    margin-top: 2px;
    accent-color: var(--primary);
    cursor: pointer;
}
.consent-text a {
    color: var(--primary);
    text-decoration: underline;
}
.consent-text a:hover { color: var(--primary-dark); }

/* ============================================
   RGPD - BANDEAU COOKIES
   ============================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: #1a1a1a;
    color: #e0e0e0;
    padding: 20px 24px;
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.4);
    display: none;
    animation: cookieSlideUp 0.4s ease-out;
}
.cookie-banner.active { display: block; }
@keyframes cookieSlideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}
.cookie-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.cookie-text {
    flex: 1;
    font-size: 0.88rem;
    line-height: 1.5;
    min-width: 280px;
}
.cookie-text a {
    color: var(--primary);
    text-decoration: underline;
}
.cookie-text a:hover { color: var(--primary-light); }
.cookie-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.cookie-btn {
    padding: 10px 22px;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}
.cookie-btn-accept {
    background: var(--primary);
    color: #fff;
}
.cookie-btn-accept:hover { background: var(--primary-dark); }
.cookie-btn-refuse {
    background: #333;
    color: #ccc;
    border: 1px solid #555;
}
.cookie-btn-refuse:hover { background: #444; color: #fff; }
.cookie-btn-customize {
    background: transparent;
    color: #aaa;
    border: 1px solid #555;
}
.cookie-btn-customize:hover { background: #333; color: #fff; }

/* Panel personnalisation cookies */
.cookie-details {
    display: none;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #333;
    width: 100%;
}
.cookie-details.active { display: block; }
.cookie-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #2a2a2a;
}
.cookie-option:last-child { border-bottom: none; }
.cookie-option-info { flex: 1; }
.cookie-option-title { font-size: 0.85rem; font-weight: 600; color: #fff; }
.cookie-option-desc { font-size: 0.78rem; color: #888; margin-top: 2px; }
.cookie-toggle {
    position: relative;
    width: 44px;
    height: 24px;
}
.cookie-toggle input { opacity: 0; width: 0; height: 0; }
.cookie-toggle-slider {
    position: absolute;
    inset: 0;
    background: #444;
    border-radius: 24px;
    cursor: pointer;
    transition: var(--transition);
}
.cookie-toggle-slider::before {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    left: 3px;
    bottom: 3px;
    background: #fff;
    border-radius: 50%;
    transition: var(--transition);
}
.cookie-toggle input:checked + .cookie-toggle-slider { background: var(--primary); }
.cookie-toggle input:checked + .cookie-toggle-slider::before { transform: translateX(20px); }
.cookie-toggle input:disabled + .cookie-toggle-slider {
    opacity: 0.6;
    cursor: not-allowed;
}
@media (max-width: 768px) {
    .cookie-inner { flex-direction: column; text-align: center; }
    .cookie-actions { justify-content: center; width: 100%; }
    .cookie-btn { flex: 1; min-width: 100px; }
}
