/* ==========================================================
   STYLE.CSS — RBK GROUPE
   Thème : Blanc Cassé / Crème
   Feuille de styles globale — toutes pages
   ========================================================== */


/* ----------------------------------------------------------
   1. VARIABLES, RESET & BASE
   ---------------------------------------------------------- */

        /* BASE & THEME */
        :root {
            --rbk-red: #e11a1a;      
            --rbk-grey: #4a4a4a;     
            --bg-dark: #faf8f5;      
            --bg-card: #f0ede8;      
            --text-light: #1a1612;
            --text-muted: #7a7268;
            --border-color: #e0dbd4;
        }

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

        body {
            font-family: 'Urbanist', sans-serif;
            background-color: var(--bg-dark);
            color: var(--text-light);
            overflow-x: hidden;
            line-height: 1.6;
        }

        /* HEADER OPTIMISÉ : Onglets proches du logo */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(250, 248, 245, 0.97);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border-color);
            z-index: 1000;
            padding: 12px 4%;
            display: flex;
            justify-content: flex-start; /* Aligne tout à gauche */
            align-items: center;
            gap: 60px; /* Espace contrôlé entre le logo et les onglets */
        }

        .logo-container {
            display: flex;
            align-items: center;
            text-decoration: none;
            flex-shrink: 0;
        }

        .rbk-logo-img {
            height: 95px; /* Logo plus grand et imposant */
            width: auto;
            object-fit: contain;
            transition: transform 0.3s ease;
        }

        .logo-container:hover .rbk-logo-img {
            transform: scale(1.03);
        }

        nav {
            display: flex;
            align-items: center;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 15px;
            align-items: center;
        }

        nav ul li a {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 500;
            font-size: 15px;
            padding: 10px 24px;
            border-radius: 30px;
            background: #f0ede8;
            border: 1px solid #e0dbd4;
            transition: all 0.3s ease;
            text-transform: capitalize;
            white-space: nowrap;
        }

        nav ul li a:hover, nav ul li a.active {
            background: var(--rbk-red);
            border-color: var(--rbk-red);
            color: #ffffff;
            box-shadow: 0 4px 15px rgba(225, 26, 26, 0.3);
        }

        /* MENU DÉROULANT */
        .nav-dropdown {
            position: relative;
        }

        .nav-dropdown > a {
            display: flex;
            align-items: center;
            gap: 7px;
            padding: 10px 24px;
        }

        .nav-dropdown > a .dropdown-arrow {
            font-size: 11px;
            transition: transform 0.35s ease;
        }

        .nav-dropdown:hover > a .dropdown-arrow,
        .nav-dropdown.open > a .dropdown-arrow {
            transform: rotate(180deg);
        }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%) translateY(-8px);
            background: #f0ede8;
            border: 1px solid #e0dbd4;
            border-radius: 18px;
            padding: 10px;
            padding-top: 20px;
            margin-top: -8px; 
            min-width: 230px;
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), visibility 0.3s;
            z-index: 2000;
            box-shadow: 0 20px 50px rgba(26,22,18,0.12), 0 0 0 1px rgba(255,255,255,0.03);
        }

        .nav-dropdown:hover .dropdown-menu,
        .nav-dropdown.open .dropdown-menu {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
            transform: translateX(-50%) translateY(0);
        }

        .dropdown-menu a {
            display: flex !important;
            align-items: center !important;
            gap: 12px !important;
            padding: 12px 16px !important;
            border-radius: 12px !important;
            background: transparent !important;
            border: none !important;
            color: var(--text-muted) !important;
            font-size: 14px !important;
            font-weight: 500 !important;
            text-decoration: none !important;
            transition: all 0.2s ease !important;
            white-space: nowrap !important;
        }

        .dropdown-menu a:hover {
            background: #e8e4de !important;
            color: #1a1612 !important;
            border: none !important;
        }

        .dropdown-menu a .service-icon {
            width: 32px;
            height: 32px;
            border-radius: 8px;
            background: #f0ede8;
            border: 1px solid #e0dbd4;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 13px;
            color: var(--rbk-red);
            flex-shrink: 0;
        }

        .dropdown-menu a:hover .service-icon {
            background: var(--rbk-red);
            color: #1a1612;
            border-color: var(--rbk-red);
        }

        .dropdown-divider {
            height: 1px;
            background: #222;
            margin: 6px 8px;
        }

        /* SECTION HERO */
        .hero {
            height: 90vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 0 6%;
            background: radial-gradient(circle at center, #f0e8e4 0%, #faf8f5 80%) 80%);
            position: relative;
            margin-top: 100px;
        }

        .hero h1 {
            font-size: 72px;
            font-weight: 800;
            margin-bottom: 20px;
            letter-spacing: -1.5px;
            opacity: 0;
            transform: translateY(30px);
            animation: heroLoad 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
        }

        .hero h1 span {
            color: var(--rbk-red);
        }

        .hero p {
            font-size: 22px;
            color: var(--text-muted);
            max-width: 750px;
            margin-bottom: 45px;
            font-weight: 300;
            opacity: 0;
            transform: translateY(20px);
            animation: heroLoad 1s cubic-bezier(0.25, 1, 0.5, 1) 0.2s forwards;
        }

        .hero .btn-main {
            opacity: 0;
            transform: translateY(15px);
            animation: heroLoad 1s cubic-bezier(0.25, 1, 0.5, 1) 0.4s forwards;
        }

        @keyframes heroLoad {
            to { opacity: 1; transform: translateY(0); }
        }

        .scroll-indicator {
            position: absolute;
            bottom: 30px;
            font-size: 14px;
            color: var(--text-muted);
            animation: bounce 2s infinite;
            text-align: center;
        }

        /* SECTION PRÉSENTATION */
        .section-presentation-container {
            padding: 120px 4% 140px 4%;
            width: 100%;
        }

        .section-header {
            margin-bottom: 30px;
            text-align: center;
        }

        .section-header h2 {
            font-size: 54px;
            font-weight: 800;
            color: #1a1612;
        }

        .presentation-intro-text {
            font-size: 22px;
            color: #1a1612;
            max-width: 1200px;
            margin: 0 auto 90px auto;
            text-align: center;
            line-height: 1.8;
            font-weight: 300;
        }

        .services-vertical-stack {
            display: flex;
            flex-direction: column;
            gap: 140px;
        }

        .service-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 8%;
            align-items: center;
            padding: 0 2%;
        }

        .block-image-container {
            width: 100%;
            height: 480px;
            background: #faf8f5;
            border-radius: 32px;
            overflow: hidden;
            border: 1px solid #e8e4de;
        }

        .block-image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .service-row:hover .block-image-container img {
            transform: scale(1.03);
        }

        .block-text-content {
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .block-text-content h3 {
            font-size: 44px;
            margin-bottom: 25px;
            font-weight: 800;
            color: #1a1612;
        }

        .block-text-content h3::after {
            content: '';
            display: block;
            width: 70px;
            height: 4px;
            background: var(--rbk-red);
            margin-top: 15px;
        }

        .block-text-content p {
            color: #1a1612;
            font-size: 19px;
            line-height: 1.8;
            margin-bottom: 40px;
            font-weight: 300;
        }

        .btn-discover {
            align-self: flex-start;
            background: #f0ede8;
            color: #1a1612;
            border: 1px solid #ddd8d2;
            padding: 14px 40px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
        }

        .btn-discover:hover {
            background: var(--rbk-red);
            border-color: var(--rbk-red);
            color: #ffffff;
            box-shadow: 0 5px 20px rgba(225, 26, 26, 0.4);
            transform: translateY(-2px);
        }

        .btn-main {
            display: inline-block;
            background-color: var(--rbk-red);
            color: white;
            padding: 14px 36px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
        }

        .btn-main:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(225, 26, 26, 0.4);
        }

        /* SCROLL REVEAL EFFECTS */
        .reveal {
            opacity: 0;
            transition: opacity 1s cubic-bezier(0.215, 0.61, 0.355, 1), transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
            will-change: transform, opacity;
        }

        .reveal-left { transform: translateX(-60px); }
        .reveal-right { transform: translateX(60px); }
        .reveal-up { transform: translateY(50px); }
        .reveal.active { opacity: 1; transform: translate(0); }
        .delay-1 { transition-delay: 0.15s; }

        /* BACK TO TOP */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            left: 30px;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: var(--rbk-red);
            color: #1a1612;
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            cursor: pointer;
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
            transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
            box-shadow: 0 4px 15px rgba(225, 26, 26, 0.4);
        }

        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .back-to-top:hover {
            transform: translateY(-5px);
            background-color: #ff3333;
        }

        /* FOOTER */
        footer {
            background: #e8e4de;
            padding: 100px 6% 50px 6%;
            border-top: 1px solid var(--border-color);
        }

        .footer-container {
            max-width: 100%;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.5fr 1fr;
            gap: 100px;
            margin-bottom: 80px;
        }

        .footer-left-content {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 60px;
        }

        .footer-nav-col h4, .footer-right-content h4, .footer-about-box h4 {
            font-size: 20px;
            color: #1a1612;
            margin-bottom: 30px;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            padding-bottom: 12px;
        }

        .footer-nav-col h4::after, .footer-right-content h4::after, .footer-about-box h4::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 40px;
            height: 2px;
            background: var(--rbk-red);
        }

        .footer-nav-col ul { list-style: none; }
        .footer-nav-col ul li { margin-bottom: 18px; }
        .footer-nav-col ul li a {
            color: #1a1612;
            text-decoration: none;
            font-size: 16px;
            transition: color 0.3s ease;
        }
        .footer-nav-col ul li a:hover { color: var(--rbk-red); }

        .footer-about-box { color: #1a1612; font-size: 16px; }
        .footer-about-box p { margin-bottom: 25px; }

        .footer-right-content {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .footer-right-content p { color: var(--text-muted); font-size: 16px; margin-bottom: 30px; }
        .social-links { display: flex; gap: 20px; }

        .social-btn {
            width: 56px;
            height: 56px;
            background: #faf8f5;
            border: 1px solid #e0dbd4222;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-light);
            text-decoration: none;
            font-size: 22px;
            transition: all 0.3s ease;
        }

        .social-btn:hover {
            background: var(--rbk-red);
            border-color: var(--rbk-red);
            transform: translateY(-4px);
            box-shadow: 0 8px 20px rgba(225, 26, 26, 0.4);
        }

        .footer-bottom {
            border-top: 1px solid #e0dbd4;
            padding-top: 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: var(--rbk-grey);
            font-size: 15px;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
            40% { transform: translateY(-10px); }
            60% { transform: translateY(-5px); }
        }

        /* RESPONSIVE */
        @media (max-width: 1024px) {
            header { padding: 15px 4%; gap: 30px; }
            nav ul { gap: 10px; }
            nav ul li a { padding: 8px 16px; font-size: 14px; }
            .service-row { grid-template-columns: 1fr; gap: 50px; }
            .block-image-container { height: 380px; }
        }

        @media (max-width: 768px) {
            header { flex-direction: column; gap: 15px; justify-content: center; }
            nav ul { justify-content: center; flex-wrap: wrap; }
            .hero h1 { font-size: 48px; }
            .footer-left-content { grid-template-columns: 1fr; }
            .footer-container { grid-template-columns: 1fr; gap: 50px; }
        }
    

/* ----------------------------------------------------------
   2. STYLES PAGE CONTACT
   ---------------------------------------------------------- */

        /* =========================================
           BASE & VARIABLES (cohérence avec index)
        ========================================= */
        :root {
            --rbk-red: #e11a1a;
            --rbk-red-dark: #b81414;
            --rbk-red-glow: rgba(225, 26, 26, 0.25);
            --rbk-grey: #4a4a4a;
            --bg-dark: #faf8f5;
            --bg-card: #f0ede8;
            --bg-card-hover: #e8e4de;
            --text-light: #1a1612;
            --text-muted: #5a5248;
            --text-dim: #1a1612;
            --border-color: #ddd8d2;
            --border-hover: #c8c2ba;
            --success: #22c55e;
            --error: #ef4444;
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

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

        html { scroll-behavior: smooth; }

        body {
            font-family: 'Urbanist', sans-serif;
            background-color: var(--bg-dark);
            color: var(--text-light);
            overflow-x: hidden;
            line-height: 1.65;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }

        /* =========================================
           HEADER — identique index
        ========================================= */
        header {
            position: fixed;
            top: 0; left: 0;
            width: 100%;
            background: rgba(250, 248, 245, 0.97);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border-bottom: 1px solid var(--border-color);
            z-index: 1000;
            padding: 12px 4%;
            display: flex;
            justify-content: flex-start;
            align-items: center;
            gap: 60px;
        }

        .logo-container {
            display: flex;
            align-items: center;
            text-decoration: none;
            flex-shrink: 0;
        }

        .rbk-logo-img {
            height: 95px;
            width: auto;
            object-fit: contain;
            transition: transform 0.3s ease;
        }
        .logo-container:hover .rbk-logo-img { transform: scale(1.03); }

        nav { display: flex; align-items: center; }

        nav ul {
            display: flex;
            list-style: none;
            gap: 15px;
            align-items: center;
        }

        nav ul li a {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 500;
            font-size: 15px;
            padding: 10px 24px;
            border-radius: 30px;
            background: #f0ede8;
            border: 1px solid #e0dbd4;
            transition: var(--transition);
            white-space: nowrap;
        }

        nav ul li a:hover,
        nav ul li a.active {
            background: var(--rbk-red);
            border-color: var(--rbk-red);
            color: #ffffff;
            box-shadow: 0 4px 18px var(--rbk-red-glow);
        }

        /* Dropdown */
        .nav-dropdown { position: relative; }
        .nav-dropdown > a { display: flex; align-items: center; gap: 7px; }
        .nav-dropdown > a .dropdown-arrow { font-size: 11px; transition: transform 0.35s ease; }
        .nav-dropdown:hover > a .dropdown-arrow,
        .nav-dropdown.open > a .dropdown-arrow { transform: rotate(180deg); }

        .dropdown-menu {
            position: absolute;
            top: 100%; left: 50%;
            transform: translateX(-50%) translateY(-8px);
            background: #f0ede8;
            border: 1px solid #e0dbd4;
            border-radius: 18px;
            padding: 10px; padding-top: 20px;
            margin-top: -8px;
            min-width: 230px;
            opacity: 0; visibility: hidden; pointer-events: none;
            transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), visibility 0.3s;
            z-index: 2000;
            box-shadow: 0 20px 50px rgba(26,22,18,0.12), 0 0 0 1px rgba(255,255,255,0.03);
        }
        .nav-dropdown:hover .dropdown-menu,
        .nav-dropdown.open .dropdown-menu {
            opacity: 1; visibility: visible; pointer-events: auto;
            transform: translateX(-50%) translateY(0);
        }
        .dropdown-menu a {
            display: flex !important; align-items: center !important; gap: 12px !important;
            padding: 12px 16px !important; border-radius: 12px !important;
            background: transparent !important; border: none !important;
            color: var(--text-muted) !important; font-size: 14px !important;
            font-weight: 500 !important; text-decoration: none !important;
            transition: all 0.2s ease !important; white-space: nowrap !important;
        }
        .dropdown-menu a:hover { background: #e8e4de !important; color: #1a1612 !important; }
        .dropdown-menu a .service-icon {
            width: 32px; height: 32px; border-radius: 8px;
            background: #f0ede8; border: 1px solid #e0dbd4;
            display: flex; align-items: center; justify-content: center;
            font-size: 13px; color: var(--rbk-red); flex-shrink: 0;
        }
        .dropdown-menu a:hover .service-icon {
            background: var(--rbk-red); color: #1a1612; border-color: var(--rbk-red);
        }
        .dropdown-divider { height: 1px; background: #222; margin: 6px 8px; }

        /* Hamburger mobile */
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 8px;
            border: 1px solid #e0dbd4;
            border-radius: 10px;
            background: #f0ede8;
            margin-left: auto;
        }
        .hamburger span {
            width: 22px; height: 2px;
            background: var(--text-light);
            border-radius: 2px;
            transition: var(--transition);
        }
        .hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
        .hamburger.active span:nth-child(2) { opacity: 0; }
        .hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

        /* =========================================
           MAIN LAYOUT
        ========================================= */
        main {
            flex-grow: 1;
            margin-top: 120px;
        }

        /* =========================================
           HERO CONTACT
        ========================================= */
        .contact-hero {
            padding: 70px 5% 50px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .contact-hero::before {
            content: '';
            position: absolute;
            top: -120px; left: 50%;
            transform: translateX(-50%);
            width: 600px; height: 600px;
            background: radial-gradient(circle, rgba(225, 26, 26, 0.08) 0%, transparent 70%);
            pointer-events: none;
        }

        .hero-label {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--rbk-red);
            background: rgba(225, 26, 26, 0.08);
            border: 1px solid rgba(225, 26, 26, 0.2);
            border-radius: 50px;
            padding: 6px 16px;
            margin-bottom: 24px;
        }

        .hero-label i { font-size: 10px; }

        .contact-hero h1 {
            font-size: clamp(36px, 5.5vw, 64px);
            font-weight: 800;
            line-height: 1.1;
            letter-spacing: -1px;
            color: #1a1612;
            margin-bottom: 20px;
        }

        .contact-hero h1 span { color: var(--rbk-red); }

        .contact-hero .hero-sub {
            font-size: clamp(16px, 1.6vw, 19px);
            color: #1a1612;
            font-weight: 300;
            max-width: 580px;
            margin: 0 auto 40px;
        }

        /* Badges disponibilité */
        .availability-badges {
            display: flex;
            gap: 12px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .badge {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            padding: 8px 18px;
            border-radius: 50px;
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            font-size: 13px;
            font-weight: 500;
            color: var(--text-muted);
        }

        .badge .dot {
            width: 7px; height: 7px;
            border-radius: 50%;
            background: var(--success);
            box-shadow: 0 0 6px var(--success);
            animation: pulse-dot 2s infinite;
        }

        @keyframes pulse-dot {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.7; transform: scale(1.3); }
        }

        /* =========================================
           CONTACT GRID PRINCIPALE
        ========================================= */
        .contact-section {
            padding: 20px 5% 100px;
            max-width: 1300px;
            margin: 0 auto;
            width: 100%;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 420px 1fr;
            gap: 40px;
            align-items: start;
        }

        /* =========================================
           COLONNE GAUCHE — Infos & Carte
        ========================================= */
        .info-column {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .info-card {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 20px;
            overflow: hidden;
            transition: var(--transition);
        }
        .info-card:hover { border-color: var(--border-hover); }

        .info-card-header {
            padding: 22px 24px 16px;
            border-bottom: 1px solid var(--border-color);
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .info-card-header .header-icon {
            width: 38px; height: 38px;
            border-radius: 10px;
            background: rgba(225, 26, 26, 0.1);
            border: 1px solid rgba(225, 26, 26, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            color: var(--rbk-red);
            flex-shrink: 0;
        }

        .info-card-header h3 {
            font-size: 15px;
            font-weight: 700;
            color: #1a1612;
            letter-spacing: 0.3px;
        }

        .info-card-body { padding: 20px 24px; }

        /* Ligne d'info contact */
        .contact-row {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            padding: 14px 0;
            border-bottom: 1px solid var(--border-color);
            text-decoration: none;
            transition: var(--transition);
        }

        .contact-row:last-child { border-bottom: none; padding-bottom: 0; }
        .contact-row:first-child { padding-top: 0; }

        a.contact-row:hover { transform: translateX(4px); }
        a.contact-row:hover .row-label { color: var(--rbk-red); }

        .row-icon {
            width: 36px; height: 36px;
            border-radius: 9px;
            background: #f0ede8;
            border: 1px solid #e0dbd4;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 13px;
            color: var(--rbk-red);
            flex-shrink: 0;
            margin-top: 2px;
        }

        .row-content { flex: 1; }

        .row-sup {
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--text-dim);
            margin-bottom: 3px;
        }

        .row-label {
            font-size: 15px;
            font-weight: 600;
            color: #1a1612;
            transition: color 0.2s;
        }

        .row-sub {
            font-size: 13px;
            color: var(--text-muted);
            margin-top: 2px;
        }

        /* Horaires */
        .hours-grid {
            display: grid;
            grid-template-columns: 1fr auto;
            gap: 6px 12px;
        }

        .hours-day { font-size: 14px; color: var(--text-muted); font-weight: 400; }
        .hours-time {
            font-size: 14px;
            color: #1a1612;
            font-weight: 600;
            text-align: right;
            white-space: nowrap;
        }
        .hours-closed { color: var(--text-dim); }
        .hours-separator {
            grid-column: 1 / -1;
            height: 1px;
            background: var(--border-color);
            margin: 6px 0;
        }

        /* Open now badge */
        .open-now-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 12px;
            font-weight: 600;
            color: var(--success);
            background: rgba(34, 197, 94, 0.08);
            border: 1px solid rgba(34, 197, 94, 0.2);
            border-radius: 50px;
            padding: 4px 12px;
            margin-bottom: 14px;
        }
        .open-now-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--success); }

        /* Carte */
        .map-container {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid var(--border-color);
            background: #e8e4de;
            aspect-ratio: 4/3;
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
            display: block;
            filter: grayscale(0.3) contrast(1.05);
        }

        .map-overlay-btn {
            position: absolute;
            bottom: 12px;
            right: 12px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 16px;
            background: var(--rbk-red);
            color: #ffffff;
            font-family: 'Urbanist', sans-serif;
            font-size: 13px;
            font-weight: 700;
            border-radius: 10px;
            text-decoration: none;
            transition: var(--transition);
            box-shadow: 0 4px 16px rgba(0,0,0,0.5);
            z-index: 10;
        }
        .map-overlay-btn:hover {
            background: var(--rbk-red-dark);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(225,26,26,0.4);
        }

        /* =========================================
           COLONNE DROITE — Formulaire
        ========================================= */
        .form-column {}

        .form-card {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 24px;
            overflow: hidden;
        }

        .form-card-header {
            padding: 32px 36px 28px;
            border-bottom: 1px solid var(--border-color);
            background: linear-gradient(135deg, rgba(225,26,26,0.04) 0%, transparent 60%);
        }

        .form-card-header h2 {
            font-size: 26px;
            font-weight: 800;
            color: #1a1612;
            margin-bottom: 8px;
            letter-spacing: -0.3px;
        }

        .form-card-header p {
            font-size: 15px;
            color: var(--text-muted);
            font-weight: 400;
        }

        .form-card-body { padding: 32px 36px 36px; }

        /* Champs */
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-bottom: 16px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
            margin-bottom: 16px;
        }

        .form-group:last-of-type { margin-bottom: 0; }

        label {
            font-size: 13px;
            font-weight: 600;
            color: var(--text-muted);
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }

        label .required-star {
            color: var(--rbk-red);
            margin-left: 3px;
        }

        input[type="text"],
        input[type="email"],
        textarea,
        select {
            width: 100%;
            background: #e8e4de;
            border: 1px solid #e0dbd4;
            border-radius: 12px;
            padding: 14px 16px;
            color: #1a1612;
            font-family: 'Urbanist', sans-serif;
            font-size: 15px;
            font-weight: 400;
            outline: none;
            transition: var(--transition);
            -webkit-appearance: none;
        }

        input[type="text"]:focus,
        input[type="email"]:focus,
        textarea:focus {
            border-color: var(--rbk-red);
            background: #faf8f5;
            box-shadow: 0 0 0 3px rgba(225,26,26,0.08);
        }

        input[type="text"]::placeholder,
        input[type="email"]::placeholder,
        textarea::placeholder {
            color: #5a5248;
        }

        textarea {
            resize: vertical;
            min-height: 140px;
            line-height: 1.6;
        }

        /* Input error state */
        input.is-invalid,
        textarea.is-invalid {
            border-color: var(--error) !important;
            box-shadow: 0 0 0 3px rgba(239,68,68,0.08) !important;
        }

        /* Sujet — optionnel */
        .subject-chips {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            margin-bottom: 16px;
        }

        .chip {
            padding: 7px 14px;
            border-radius: 50px;
            border: 1px solid #e0dbd4;
            background: #e8e4de;
            color: var(--text-muted);
            font-family: 'Urbanist', sans-serif;
            font-size: 13px;
            font-weight: 500;
            cursor: pointer;
            transition: var(--transition);
        }

        .chip:hover,
        .chip.active {
            border-color: var(--rbk-red);
            background: rgba(225,26,26,0.08);
            color: #1a1612;
        }

        /* ---- HONEYPOT (anti-spam invisible) ---- */
        .hp-field {
            position: absolute !important;
            left: -9999px !important;
            top: auto !important;
            width: 1px !important;
            height: 1px !important;
            overflow: hidden !important;
            clip: rect(0 0 0 0) !important;
            white-space: nowrap !important;
            pointer-events: none !important;
            tab-index: -1 !important;
        }

        /* ---- Checkbox RGPD ---- */
        .checkbox-group {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-top: 20px;
            padding: 16px 18px;
            background: #e8e4de;
            border: 1px solid #e0dbd4;
            border-radius: 12px;
            cursor: pointer;
            transition: var(--transition);
        }

        .checkbox-group:has(input:checked) {
            border-color: rgba(225,26,26,0.3);
            background: rgba(225,26,26,0.03);
        }

        .checkbox-group.is-invalid {
            border-color: var(--error) !important;
        }

        .checkbox-group input[type="checkbox"] {
            width: 18px;
            height: 18px;
            border: 1.5px solid #333;
            border-radius: 5px;
            background: #f0ede8;
            cursor: pointer;
            flex-shrink: 0;
            margin-top: 1px;
            accent-color: var(--rbk-red);
            transition: var(--transition);
        }

        .checkbox-group label {
            font-size: 13px;
            font-weight: 400;
            color: var(--text-muted);
            text-transform: none;
            letter-spacing: 0;
            cursor: pointer;
            line-height: 1.5;
        }

        .checkbox-group label a {
            color: var(--rbk-red);
            text-decoration: none;
            font-weight: 600;
        }
        .checkbox-group label a:hover { text-decoration: underline; }

        /* Bouton submit */
        .btn-submit {
            width: 100%;
            margin-top: 20px;
            padding: 16px 28px;
            background: var(--rbk-red);
            color: #ffffff;
            font-family: 'Urbanist', sans-serif;
            font-size: 16px;
            font-weight: 700;
            border: none;
            border-radius: 14px;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            position: relative;
            overflow: hidden;
            letter-spacing: 0.3px;
        }

        .btn-submit::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(26,22,18,0.05) 0%, transparent 100%);
        }

        .btn-submit:hover {
            background: var(--rbk-red-dark);
            transform: translateY(-2px);
            box-shadow: 0 12px 30px rgba(225,26,26,0.35);
        }

        .btn-submit:active { transform: translateY(0); }

        .btn-submit:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }

        .btn-submit .spinner {
            width: 18px; height: 18px;
            border: 2px solid rgba(255,255,255,0.3);
            border-top-color: #ffffff;
            border-radius: 50%;
            animation: spin 0.7s linear infinite;
            display: none;
        }

        @keyframes spin { to { transform: rotate(360deg); } }

        .btn-submit.loading .spinner { display: block; }
        .btn-submit.loading .btn-text { display: none; }

        /* Message retour AJAX */
        .form-feedback {
            display: none;
            margin-top: 16px;
            padding: 16px 20px;
            border-radius: 12px;
            font-size: 14px;
            font-weight: 500;
            line-height: 1.5;
            align-items: center;
            gap: 12px;
            animation: fadeInUp 0.4s ease;
        }

        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(8px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .form-feedback.show { display: flex; }

        .form-feedback.success {
            background: rgba(34,197,94,0.08);
            border: 1px solid rgba(34,197,94,0.25);
            color: #86efac;
        }

        .form-feedback.error {
            background: rgba(239,68,68,0.08);
            border: 1px solid rgba(239,68,68,0.25);
            color: #fca5a5;
        }

        .form-feedback i { font-size: 18px; flex-shrink: 0; }

        /* Aide supplémentaire */
        .form-helper {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-top: 14px;
            font-size: 12px;
            color: var(--text-dim);
            justify-content: center;
        }

        .form-helper i { font-size: 11px; color: var(--rbk-red); }

        /* =========================================
           FOOTER
        ========================================= */
        footer {
            background: #e8e4de;
            border-top: 1px solid var(--border-color);
            padding: 50px 5% 30px;
        }

        .footer-container {
            max-width: 1300px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            padding-bottom: 40px;
            border-bottom: 1px solid var(--border-color);
        }

        .footer-left-content {
            display: flex;
            gap: 60px;
        }

        .footer-nav-col h4,
        .footer-about-box h4,
        .footer-right-content h4 {
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--text-dim);
            margin-bottom: 18px;
        }

        .footer-nav-col ul { list-style: none; }
        .footer-nav-col ul li { margin-bottom: 10px; }
        .footer-nav-col ul li a {
            color: #1a1612;
            text-decoration: none;
            font-size: 14px;
            font-weight: 400;
            transition: color 0.2s;
        }
        .footer-nav-col ul li a:hover { color: var(--rbk-red); }

        .footer-about-box p {
            color: var(--text-muted);
            font-size: 14px;
            line-height: 1.7;
            font-weight: 300;
            margin-bottom: 12px;
        }

        .footer-right-content p {
            color: var(--text-muted);
            font-size: 14px;
            margin-bottom: 18px;
        }

        .social-links { display: flex; gap: 10px; }

        .social-btn {
            width: 42px; height: 42px;
            border-radius: 11px;
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            color: var(--text-muted);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            text-decoration: none;
            transition: var(--transition);
        }
        .social-btn:hover {
            background: var(--rbk-red);
            border-color: var(--rbk-red);
            color: #1a1612;
            transform: translateY(-2px);
        }

        .footer-bottom {
            max-width: 1300px;
            margin: 24px auto 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 8px;
        }

        .footer-bottom p {
            font-size: 13px;
            color: #1a1612;
            font-weight: 400;
        }

        /* Back to top */
        .back-to-top {
            position: fixed;
            bottom: 30px; left: 30px;
            width: 44px; height: 44px;
            background: var(--rbk-red);
            color: #1a1612;
            border: none;
            border-radius: 12px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 15px;
            opacity: 0;
            transform: translateY(20px);
            transition: var(--transition);
            z-index: 500;
        }
        .back-to-top.visible { opacity: 1; transform: translateY(0); }
        .back-to-top:hover {
            background: var(--rbk-red-dark);
            box-shadow: 0 8px 20px rgba(225,26,26,0.4);
        }

        /* =========================================
           ANIMATIONS
        ========================================= */
        .reveal {
            opacity: 0;
            transition: opacity 0.7s ease, transform 0.7s ease;
        }
        .reveal-up { transform: translateY(30px); }
        .reveal-left { transform: translateX(-30px); }
        .reveal-right { transform: translateX(30px); }
        .reveal.active { opacity: 1; transform: none; }
        .delay-1 { transition-delay: 0.12s; }
        .delay-2 { transition-delay: 0.24s; }

        /* =========================================
           RESPONSIVE
        ========================================= */
        @media (max-width: 1024px) {
            .contact-grid {
                grid-template-columns: 1fr;
                max-width: 680px;
                margin: 0 auto;
            }
            .info-column { order: 2; }
            .form-column { order: 1; }
        }

        @media (max-width: 768px) {
            header { gap: 0; padding: 10px 4%; }
            .rbk-logo-img { height: 70px; }
            nav { display: none; position: fixed; top: 92px; left: 0; right: 0; bottom: 0; background: rgba(250, 248, 245, 0.99); padding: 30px 5%; overflow-y: auto; flex-direction: column; align-items: flex-start; }
            nav.open { display: flex; }
            nav ul { flex-direction: column; width: 100%; gap: 8px; }
            nav ul li a { display: block; padding: 14px 20px; border-radius: 14px; font-size: 17px; }
            .hamburger { display: flex; }
            .dropdown-menu { position: static; transform: none; opacity: 1; visibility: visible; pointer-events: auto; box-shadow: none; background: #e8e4de; margin-top: 8px; border-radius: 14px; display: none; }
            .nav-dropdown.open .dropdown-menu { display: block; }

            main { margin-top: 92px; }
            .contact-hero { padding: 50px 5% 30px; }
            .form-row { grid-template-columns: 1fr; }
            .form-card-header, .form-card-body { padding: 24px 20px; }
            .footer-container { grid-template-columns: 1fr; gap: 32px; }
            .footer-left-content { flex-direction: column; gap: 24px; }
            .footer-bottom { flex-direction: column; text-align: center; }
        }

        @media (max-width: 480px) {
            .availability-badges { flex-direction: column; align-items: center; }
            .subject-chips { gap: 6px; }
            .chip { font-size: 12px; padding: 6px 12px; }
        }
    

/* ----------------------------------------------------------
   3. STYLES PAGES MENTIONS LÉGALES
   ---------------------------------------------------------- */

        :root {
            --rbk-red: #e11a1a;
            --rbk-red-dark: #b81414;
            --rbk-red-glow: rgba(225,26,26,0.18);
            --bg-dark: #faf8f5;
            --bg-card: #f0ede8;
            --text-light: #1a1612;
            --text-muted: #5a5248;
            --text-dim: #1a1612;
            --border-color: #ddd8d2;
            --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
        }
        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
        html { scroll-behavior: smooth; }
        body {
            font-family: 'Urbanist', sans-serif;
            background: var(--bg-dark);
            color: var(--text-light);
            overflow-x: hidden;
            line-height: 1.7;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }

        /* HEADER */
        header {
            position: fixed; top: 0; left: 0; width: 100%;
            background: rgba(250, 248, 245, 0.97);
            backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
            border-bottom: 1px solid var(--border-color);
            z-index: 1000; padding: 12px 4%;
            display: flex; justify-content: flex-start; align-items: center; gap: 60px;
        }
        .logo-container { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
        .rbk-logo-img { height: 95px; width: auto; object-fit: contain; transition: transform 0.3s ease; }
        .logo-container:hover .rbk-logo-img { transform: scale(1.03); }
        nav { display: flex; align-items: center; }
        nav ul { display: flex; list-style: none; gap: 15px; align-items: center; }
        nav ul li a {
            color: var(--text-light); text-decoration: none; font-weight: 500; font-size: 15px;
            padding: 10px 24px; border-radius: 30px; background: #f0ede8; border: 1px solid #e0dbd4;
            transition: var(--transition); white-space: nowrap;
        }
        nav ul li a:hover, nav ul li a.active {
            background: var(--rbk-red); border-color: var(--rbk-red); color: #ffffff;
            box-shadow: 0 4px 18px var(--rbk-red-glow);
        }

        .hamburger {
            display: none; flex-direction: column; gap: 5px; cursor: pointer;
            padding: 8px; border: 1px solid #e0dbd4; border-radius: 10px;
            background: #f0ede8; margin-left: auto;
        }
        .hamburger span { width: 22px; height: 2px; background: #1a1612; border-radius: 2px; transition: var(--transition); }
        .hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
        .hamburger.active span:nth-child(2) { opacity: 0; }
        .hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

        /* MAIN */
        main { flex-grow: 1; margin-top: 120px; }

        /* PAGE HERO */
        .legal-hero {
            padding: 60px 5% 40px;
            border-bottom: 1px solid var(--border-color);
            background: linear-gradient(180deg, rgba(225,26,26,0.03) 0%, transparent 100%);
        }
        .legal-hero .breadcrumb {
            display: flex; align-items: center; gap: 8px;
            font-size: 13px; color: var(--text-dim); margin-bottom: 20px;
        }
        .legal-hero .breadcrumb a { color: var(--text-dim); text-decoration: none; transition: color 0.2s; }
        .legal-hero .breadcrumb a:hover { color: var(--rbk-red); }
        .legal-hero .breadcrumb i { font-size: 10px; }
        .legal-hero h1 {
            font-size: clamp(32px, 4vw, 52px); font-weight: 800; letter-spacing: -1px;
            color: #1a1612; margin-bottom: 14px;
        }
        .legal-hero h1 span { color: var(--rbk-red); }
        .legal-meta {
            display: flex; gap: 20px; flex-wrap: wrap;
            font-size: 13px; color: var(--text-dim);
        }
        .legal-meta span { display: flex; align-items: center; gap: 6px; }
        .legal-meta i { color: var(--rbk-red); font-size: 11px; }

        /* LAYOUT */
        .legal-layout {
            display: grid;
            grid-template-columns: 240px 1fr;
            gap: 48px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 48px 5% 100px;
        }

        /* TABLE DES MATIÈRES */
        .toc {
            position: sticky;
            top: 140px;
            align-self: start;
        }
        .toc-title {
            font-size: 11px; font-weight: 700; letter-spacing: 2px;
            text-transform: uppercase; color: var(--text-dim); margin-bottom: 14px;
        }
        .toc ul { list-style: none; }
        .toc ul li { margin-bottom: 2px; }
        .toc ul li a {
            display: block; padding: 7px 12px;
            font-size: 13px; font-weight: 500; color: var(--text-muted);
            text-decoration: none; border-radius: 8px;
            border-left: 2px solid transparent;
            transition: var(--transition);
        }
        .toc ul li a:hover {
            color: #1a1612; background: #f0ede8; border-left-color: var(--rbk-red);
        }

        /* CONTENU LÉGAL */
        .legal-content {}

        .legal-section {
            margin-bottom: 48px;
            padding-bottom: 48px;
            border-bottom: 1px solid var(--border-color);
        }
        .legal-section:last-child { border-bottom: none; margin-bottom: 0; }

        .section-number {
            font-size: 11px; font-weight: 700; letter-spacing: 2px;
            text-transform: uppercase; color: var(--rbk-red);
            margin-bottom: 8px;
        }

        .legal-section h2 {
            font-size: clamp(20px, 2.5vw, 26px); font-weight: 800;
            color: #1a1612; margin-bottom: 20px; letter-spacing: -0.3px;
        }

        .legal-section h3 {
            font-size: 16px; font-weight: 700; color: #ddd;
            margin: 24px 0 10px;
        }

        .legal-section p {
            font-size: 15px; color: var(--text-muted);
            line-height: 1.75; margin-bottom: 14px; font-weight: 400;
        }

        .legal-section p:last-child { margin-bottom: 0; }

        .legal-section a {
            color: var(--rbk-red); text-decoration: none; font-weight: 600;
        }
        .legal-section a:hover { text-decoration: underline; }

        /* Info box */
        .info-box {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-left: 3px solid var(--rbk-red);
            border-radius: 10px;
            padding: 16px 20px;
            margin: 16px 0;
        }
        .info-box p { margin-bottom: 6px; font-size: 14px; }
        .info-box p:last-child { margin-bottom: 0; }
        .info-box strong { color: #1a1612; }

        /* Tableau */
        .legal-table {
            width: 100%;
            border-collapse: collapse;
            margin: 16px 0;
            font-size: 14px;
        }
        .legal-table th {
            text-align: left; padding: 10px 14px;
            background: #f0ede8; border: 1px solid var(--border-color);
            color: #1a1612; font-weight: 700; font-size: 12px;
            text-transform: uppercase; letter-spacing: 0.5px;
        }
        .legal-table td {
            padding: 10px 14px; border: 1px solid var(--border-color);
            color: var(--text-muted); vertical-align: top;
        }
        .legal-table tr:nth-child(even) td { background: #e8e4de; }

        /* PLACEHOLDER */
        .placeholder {
            background: rgba(225,26,26,0.06);
            border: 1px dashed rgba(225,26,26,0.3);
            border-radius: 6px;
            padding: 2px 8px;
            color: #f87171;
            font-weight: 600;
            font-size: 0.95em;
        }

        /* FOOTER */
        footer {
            background: #e8e4de; border-top: 1px solid var(--border-color);
            padding: 50px 5% 30px;
        }
        .footer-container {
            max-width: 1300px; margin: 0 auto;
            display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
            padding-bottom: 40px; border-bottom: 1px solid var(--border-color);
        }
        .footer-left-content { display: flex; gap: 60px; }
        .footer-nav-col h4, .footer-about-box h4, .footer-right-content h4 {
            font-size: 13px; font-weight: 700; letter-spacing: 1.5px;
            text-transform: uppercase; color: var(--text-dim); margin-bottom: 18px;
        }
        .footer-nav-col ul { list-style: none; }
        .footer-nav-col ul li { margin-bottom: 10px; }
        .footer-nav-col ul li a { color: var(--text-muted); text-decoration: none; font-size: 14px; transition: color 0.2s; }
        .footer-nav-col ul li a:hover { color: var(--rbk-red); }
        .footer-about-box p { color: #1a1612; font-size: 14px; line-height: 1.7; font-weight: 300; margin-bottom: 12px; }
        .footer-right-content p { color: #1a1612; font-size: 14px; margin-bottom: 18px; }
        .social-links { display: flex; gap: 10px; }
        .social-btn {
            width: 42px; height: 42px; border-radius: 11px;
            background: var(--bg-card); border: 1px solid var(--border-color);
            color: var(--text-muted); display: flex; align-items: center;
            justify-content: center; font-size: 16px; text-decoration: none; transition: var(--transition);
        }
        .social-btn:hover { background: var(--rbk-red); border-color: var(--rbk-red); color: #ffffff; transform: translateY(-2px); }
        .footer-bottom { max-width: 1300px; margin: 24px auto 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
        .footer-bottom p { font-size: 13px; color: #1a1612; }
        .back-to-top {
            position: fixed; bottom: 30px; left: 30px;
            width: 44px; height: 44px; background: var(--rbk-red);
            color: #1a1612; border: none; border-radius: 12px; cursor: pointer;
            display: flex; align-items: center; justify-content: center;
            font-size: 15px; opacity: 0; transform: translateY(20px);
            transition: var(--transition); z-index: 500;
        }
        .back-to-top.visible { opacity: 1; transform: translateY(0); }
        .back-to-top:hover { background: var(--rbk-red-dark); box-shadow: 0 8px 20px rgba(225,26,26,0.4); }

        @media (max-width: 900px) {
            .legal-layout { grid-template-columns: 1fr; }
            .toc { position: static; display: none; }
        }
        @media (max-width: 768px) {
            header { gap: 0; padding: 10px 4%; }
            .rbk-logo-img { height: 70px; }
            nav { display: none; position: fixed; top: 92px; left: 0; right: 0; bottom: 0; background: rgba(250, 248, 245, 0.99); padding: 30px 5%; overflow-y: auto; flex-direction: column; align-items: flex-start; }
            nav.open { display: flex; }
            nav ul { flex-direction: column; width: 100%; gap: 8px; }
            nav ul li a { display: block; padding: 14px 20px; border-radius: 14px; font-size: 17px; }
            .hamburger { display: flex; }
            main { margin-top: 92px; }
            .legal-hero { padding: 40px 5% 28px; }
            .footer-container { grid-template-columns: 1fr; gap: 32px; }
            .footer-left-content { flex-direction: column; gap: 24px; }
            .footer-bottom { flex-direction: column; text-align: center; }
        }
    

/* ----------------------------------------------------------
   4. STYLES PAGE POLITIQUE DE CONFIDENTIALITÉ
   ---------------------------------------------------------- */

        :root {
            --rbk-red: #e11a1a;
            --rbk-red-dark: #b81414;
            --rbk-red-glow: rgba(225,26,26,0.18);
            --bg-dark: #faf8f5;
            --bg-card: #f0ede8;
            --text-light: #1a1612;
            --text-muted: #5a5248;
            --text-dim: #1a1612;
            --border-color: #ddd8d2;
            --success: #22c55e;
            --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
        }
        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
        html { scroll-behavior: smooth; }
        body {
            font-family: 'Urbanist', sans-serif;
            background: var(--bg-dark); color: var(--text-light);
            overflow-x: hidden; line-height: 1.7;
            display: flex; flex-direction: column; min-height: 100vh;
        }

        /* HEADER */
        header {
            position: fixed; top: 0; left: 0; width: 100%;
            background: rgba(250, 248, 245, 0.97);
            backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
            border-bottom: 1px solid var(--border-color);
            z-index: 1000; padding: 12px 4%;
            display: flex; justify-content: flex-start; align-items: center; gap: 60px;
        }
        .logo-container { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
        .rbk-logo-img { height: 95px; width: auto; object-fit: contain; transition: transform 0.3s; }
        .logo-container:hover .rbk-logo-img { transform: scale(1.03); }
        nav { display: flex; align-items: center; }
        nav ul { display: flex; list-style: none; gap: 15px; align-items: center; }
        nav ul li a {
            color: var(--text-light); text-decoration: none; font-weight: 500; font-size: 15px;
            padding: 10px 24px; border-radius: 30px; background: #f0ede8;
            border: 1px solid #e0dbd4; transition: var(--transition); white-space: nowrap;
        }
        nav ul li a:hover, nav ul li a.active {
            background: var(--rbk-red); border-color: var(--rbk-red); color: #ffffff;
            box-shadow: 0 4px 18px var(--rbk-red-glow);
        }
        .hamburger {
            display: none; flex-direction: column; gap: 5px; cursor: pointer;
            padding: 8px; border: 1px solid #e0dbd4; border-radius: 10px;
            background: #f0ede8; margin-left: auto;
        }
        .hamburger span { width: 22px; height: 2px; background: #1a1612; border-radius: 2px; transition: var(--transition); }
        .hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
        .hamburger.active span:nth-child(2) { opacity: 0; }
        .hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

        main { flex-grow: 1; margin-top: 120px; }

        /* HERO */
        .legal-hero {
            padding: 60px 5% 40px;
            border-bottom: 1px solid var(--border-color);
            background: linear-gradient(180deg, rgba(225,26,26,0.03) 0%, transparent 100%);
        }
        .breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-dim); margin-bottom: 20px; }
        .breadcrumb a { color: var(--text-dim); text-decoration: none; transition: color 0.2s; }
        .breadcrumb a:hover { color: var(--rbk-red); }
        .breadcrumb i { font-size: 10px; }
        .legal-hero h1 { font-size: clamp(30px, 4vw, 50px); font-weight: 800; letter-spacing: -1px; color: #1a1612; margin-bottom: 14px; }
        .legal-hero h1 span { color: var(--rbk-red); }
        .legal-meta { display: flex; gap: 20px; flex-wrap: wrap; font-size: 13px; color: var(--text-dim); }
        .legal-meta span { display: flex; align-items: center; gap: 6px; }
        .legal-meta i { color: var(--rbk-red); font-size: 11px; }

        /* INTRO RGPD (bannière) */
        .rgpd-intro {
            max-width: 1200px; margin: 32px auto 0; padding: 0 5%;
        }
        .rgpd-banner {
            background: rgba(34,197,94,0.06);
            border: 1px solid rgba(34,197,94,0.2);
            border-left: 3px solid var(--success);
            border-radius: 12px;
            padding: 18px 24px;
            display: flex;
            align-items: flex-start;
            gap: 16px;
            font-size: 14px;
            color: #86efac;
            line-height: 1.6;
        }
        .rgpd-banner i { font-size: 20px; flex-shrink: 0; margin-top: 1px; }
        .rgpd-banner strong { color: var(--success); }

        /* LAYOUT */
        .legal-layout {
            display: grid;
            grid-template-columns: 240px 1fr;
            gap: 48px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 48px 5% 100px;
        }
        .toc { position: sticky; top: 140px; align-self: start; }
        .toc-title { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--text-dim); margin-bottom: 14px; }
        .toc ul { list-style: none; }
        .toc ul li { margin-bottom: 2px; }
        .toc ul li a {
            display: block; padding: 7px 12px; font-size: 13px; font-weight: 500;
            color: var(--text-muted); text-decoration: none; border-radius: 8px;
            border-left: 2px solid transparent; transition: var(--transition);
        }
        .toc ul li a:hover { color: #1a1612; background: #f0ede8; border-left-color: var(--rbk-red); }

        /* SECTIONS */
        .legal-content {}
        .legal-section { margin-bottom: 48px; padding-bottom: 48px; border-bottom: 1px solid var(--border-color); }
        .legal-section:last-child { border-bottom: none; margin-bottom: 0; }
        .section-number { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--rbk-red); margin-bottom: 8px; }
        .legal-section h2 { font-size: clamp(20px, 2.5vw, 26px); font-weight: 800; color: #1a1612; margin-bottom: 20px; letter-spacing: -0.3px; }
        .legal-section h3 { font-size: 16px; font-weight: 700; color: #ddd; margin: 24px 0 10px; }
        .legal-section p { font-size: 15px; color: var(--text-muted); line-height: 1.75; margin-bottom: 14px; font-weight: 400; }
        .legal-section p:last-child { margin-bottom: 0; }
        .legal-section a { color: var(--rbk-red); text-decoration: none; font-weight: 600; }
        .legal-section a:hover { text-decoration: underline; }
        .legal-section ul { list-style: none; margin: 12px 0 14px; }
        .legal-section ul li { font-size: 15px; color: var(--text-muted); padding: 5px 0; padding-left: 20px; position: relative; }
        .legal-section ul li::before { content: ''; position: absolute; left: 0; top: 14px; width: 6px; height: 6px; border-radius: 50%; background: var(--rbk-red); }

        .info-box {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-left: 3px solid var(--rbk-red);
            border-radius: 10px; padding: 16px 20px; margin: 16px 0;
        }
        .info-box p { margin-bottom: 6px; font-size: 14px; }
        .info-box p:last-child { margin-bottom: 0; }
        .info-box strong { color: #1a1612; }

        /* Tableau récapitulatif */
        .legal-table { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: 14px; }
        .legal-table th {
            text-align: left; padding: 10px 14px;
            background: #f0ede8; border: 1px solid var(--border-color);
            color: #1a1612; font-weight: 700; font-size: 12px;
            text-transform: uppercase; letter-spacing: 0.5px;
        }
        .legal-table td { padding: 11px 14px; border: 1px solid var(--border-color); color: var(--text-muted); vertical-align: top; line-height: 1.5; }
        .legal-table tr:nth-child(even) td { background: #e8e4de; }

        /* Droits cards */
        .rights-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 20px 0; }
        .right-card {
            background: var(--bg-card); border: 1px solid var(--border-color);
            border-radius: 12px; padding: 16px 18px; transition: var(--transition);
        }
        .right-card:hover { border-color: #2e2e2e; }
        .right-card-header { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
        .right-icon {
            width: 32px; height: 32px; border-radius: 8px;
            background: rgba(225,26,26,0.1); border: 1px solid rgba(225,26,26,0.2);
            display: flex; align-items: center; justify-content: center;
            font-size: 13px; color: var(--rbk-red); flex-shrink: 0;
        }
        .right-card h4 { font-size: 14px; font-weight: 700; color: #1a1612; }
        .right-card p { font-size: 13px; color: var(--text-muted); line-height: 1.5; margin: 0; }

        .placeholder { background: rgba(225,26,26,0.06); border: 1px dashed rgba(225,26,26,0.3); border-radius: 6px; padding: 2px 8px; color: #f87171; font-weight: 600; font-size: 0.95em; }

        /* FOOTER */
        footer { background: #e8e4de; border-top: 1px solid var(--border-color); padding: 50px 5% 30px; }
        .footer-container { max-width: 1300px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; padding-bottom: 40px; border-bottom: 1px solid var(--border-color); }
        .footer-left-content { display: flex; gap: 60px; }
        .footer-nav-col h4, .footer-about-box h4, .footer-right-content h4 { font-size: 13px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: #1a1612; margin-bottom: 18px; }
        .footer-nav-col ul { list-style: none; }
        .footer-nav-col ul li { margin-bottom: 10px; }
        .footer-nav-col ul li a { color: var(--text-muted); text-decoration: none; font-size: 14px; transition: color 0.2s; }
        .footer-nav-col ul li a:hover { color: var(--rbk-red); }
        .footer-about-box p { color: #1a1612; font-size: 14px; line-height: 1.7; font-weight: 300; margin-bottom: 12px; }
        .footer-right-content p { color: #1a1612; font-size: 14px; margin-bottom: 18px; }
        .social-links { display: flex; gap: 10px; }
        .social-btn { width: 42px; height: 42px; border-radius: 11px; background: var(--bg-card); border: 1px solid var(--border-color); color: var(--text-muted); display: flex; align-items: center; justify-content: center; font-size: 16px; text-decoration: none; transition: var(--transition); }
        .social-btn:hover { background: var(--rbk-red); border-color: var(--rbk-red); color: #ffffff; transform: translateY(-2px); }
        .footer-bottom { max-width: 1300px; margin: 24px auto 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
        .footer-bottom p { font-size: 13px; color: #1a1612; }
        .back-to-top { position: fixed; bottom: 30px; left: 30px; width: 44px; height: 44px; background: var(--rbk-red); color: #ffffff; border: none; border-radius: 12px; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 15px; opacity: 0; transform: translateY(20px); transition: var(--transition); z-index: 500; }
        .back-to-top.visible { opacity: 1; transform: translateY(0); }
        .back-to-top:hover { background: var(--rbk-red-dark); box-shadow: 0 8px 20px rgba(225,26,26,0.4); }

        @media (max-width: 900px) { .legal-layout { grid-template-columns: 1fr; } .toc { position: static; display: none; } .rights-grid { grid-template-columns: 1fr; } }
        @media (max-width: 768px) {
            header { gap: 0; padding: 10px 4%; }
            .rbk-logo-img { height: 70px; }
            nav { display: none; position: fixed; top: 92px; left: 0; right: 0; bottom: 0; background: rgba(250, 248, 245, 0.99); padding: 30px 5%; overflow-y: auto; flex-direction: column; align-items: flex-start; }
            nav.open { display: flex; }
            nav ul { flex-direction: column; width: 100%; gap: 8px; }
            nav ul li a { display: block; padding: 14px 20px; border-radius: 14px; font-size: 17px; }
            .hamburger { display: flex; }
            main { margin-top: 92px; }
            .legal-hero { padding: 40px 5% 28px; }
            .footer-container { grid-template-columns: 1fr; gap: 32px; }
            .footer-left-content { flex-direction: column; gap: 24px; }
            .footer-bottom { flex-direction: column; text-align: center; }
        }
    