/* =============================================
   CABINET REJOUANI - CSS PRINCIPAL
   Couleurs : Bleu marine + Or + Blanc
   ============================================= */

/* Variables CSS */
:root {
    --rj-primary: #0a1f3c;
    --rj-primary-light: #132d54;
    --rj-primary-dark: #060f1e;
    --rj-gold: #c8a84e;
    --rj-gold-light: #d4b96a;
    --rj-gold-dark: #a88a3a;
    --rj-white: #ffffff;
    --rj-light: #f8f9fa;
    --rj-gray: #6c757d;
    --rj-gray-light: #e9ecef;
    --rj-text: #2d3436;
    --rj-text-light: #636e72;
    --rj-success: #27ae60;
    --rj-danger: #e74c3c;
    --rj-shadow: 0 4px 20px rgba(10, 31, 60, 0.1);
    --rj-shadow-lg: 0 10px 40px rgba(10, 31, 60, 0.15);
    --rj-radius: 8px;
    --rj-radius-lg: 16px;
    --rj-transition: all 0.3s ease;
    --rj-font-heading: 'Playfair Display', Georgia, serif;
    --rj-font-body: 'Inter', -apple-system, sans-serif;
}

/* Reset Astra & Base */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Forcer notre layout à ignorer Astra */
body,
body.flavor,
body.flavor-flavor,
#page,
#content,
#primary,
#main,
.site-content,
.ast-container,
.site-main,
.entry-content {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    float: none !important;
}

/* Cacher les éléments Astra résiduels */
.ast-above-header-wrap,
.ast-below-header-wrap,
.main-header-bar-wrap,
.site-header,
#masthead,
.ast-footer-overlay,
.site-footer,
#colophon,
.ast-small-footer,
.ast-above-header,
.ast-below-header,
.main-header-bar,
.ast-primary-header-bar {
    display: none !important;
}

body {
    font-family: var(--rj-font-body);
    color: var(--rj-text);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--rj-font-heading);
    color: var(--rj-primary);
    line-height: 1.3;
}

a {
    color: var(--rj-gold-dark);
    transition: var(--rj-transition);
}

a:hover {
    color: var(--rj-gold);
}

img {
    max-width: 100%;
    height: auto;
}

/* =============================================
   HEADER / NAVIGATION
   ============================================= */
.rj-header {
    background: var(--rj-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.rj-header .rj-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.rj-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.rj-logo-icon {
    width: 50px;
    height: 50px;
    background: var(--rj-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rj-gold);
    font-size: 22px;
    font-weight: 700;
    font-family: var(--rj-font-heading);
}

.rj-logo-text {
    display: flex;
    flex-direction: column;
}

.rj-logo-name {
    font-family: var(--rj-font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--rj-primary);
    line-height: 1.2;
}

.rj-logo-tagline {
    font-size: 11px;
    color: var(--rj-gold-dark);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
}

/* Navigation */
.rj-nav {
    display: flex;
    align-items: center;
    gap: 5px;
}

.rj-nav a {
    padding: 10px 18px;
    color: var(--rj-primary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-radius: var(--rj-radius);
    transition: var(--rj-transition);
}

.rj-nav a:hover,
.rj-nav a.active {
    background: var(--rj-primary);
    color: var(--rj-white);
}

.rj-nav .rj-nav-cta {
    background: var(--rj-gold);
    color: var(--rj-white);
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 50px;
}

.rj-nav .rj-nav-cta:hover {
    background: var(--rj-gold-dark);
    color: var(--rj-white);
}

/* Mobile menu toggle */
.rj-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--rj-primary);
    cursor: pointer;
    padding: 8px;
}

/* =============================================
   CONTAINER & SECTIONS
   ============================================= */
.rj-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.rj-section {
    padding: 80px 0;
}

.rj-section-dark {
    background: var(--rj-primary);
    color: var(--rj-white);
}

.rj-section-dark h2,
.rj-section-dark h3 {
    color: var(--rj-white);
}

.rj-section-light {
    background: var(--rj-light);
}

.rj-section-title {
    text-align: center;
    margin-bottom: 50px;
}

.rj-section-title h2 {
    font-size: 36px;
    margin-bottom: 15px;
    position: relative;
}

.rj-section-title h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--rj-gold);
    margin: 15px auto 0;
}

.rj-section-title p {
    font-size: 18px;
    color: var(--rj-text-light);
    max-width: 600px;
    margin: 0 auto;
}

.rj-section-dark .rj-section-title p {
    color: rgba(255,255,255,0.7);
}

/* =============================================
   HERO SECTION
   ============================================= */
.rj-hero {
    background: linear-gradient(135deg, var(--rj-primary) 0%, var(--rj-primary-light) 100%);
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.rj-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(200,168,78,0.1)" stroke-width="0.5"/><circle cx="50" cy="50" r="30" fill="none" stroke="rgba(200,168,78,0.08)" stroke-width="0.5"/><circle cx="50" cy="50" r="20" fill="none" stroke="rgba(200,168,78,0.06)" stroke-width="0.5"/></svg>') center/cover no-repeat;
    opacity: 0.5;
}

.rj-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.rj-hero-text h1 {
    font-size: 48px;
    color: var(--rj-white);
    margin-bottom: 10px;
    line-height: 1.2;
}

.rj-hero-text .rj-hero-highlight {
    color: var(--rj-gold);
    display: block;
}

.rj-hero-text .rj-hero-subtitle {
    font-size: 20px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 30px;
    line-height: 1.6;
}

.rj-hero-badges {
    display: flex;
    gap: 12px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

/* Grilles utilitaires */
.rj-grid-3 { grid-template-columns: repeat(3, 1fr) !important; }
.rj-grid-2 { grid-template-columns: repeat(2, 1fr) !important; }

/* Titre fondateur */
.rj-founder-title {
    font-size: 18px;
    color: var(--rj-gold-dark);
    margin-bottom: 20px;
    font-weight: 500;
}

/* Google Maps responsive */
.rj-map-section {
    width: 100%;
    height: 400px;
}

.rj-hero-badge {
    background: rgba(200, 168, 78, 0.15);
    border: 1px solid rgba(200, 168, 78, 0.3);
    color: var(--rj-gold-light);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.rj-hero-badge i {
    color: var(--rj-gold);
}

.rj-hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Hero stats card */
.rj-hero-stats {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--rj-radius-lg);
    padding: 40px;
}

.rj-hero-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.rj-stat-card {
    text-align: center;
    padding: 25px 15px;
    background: rgba(255,255,255,0.05);
    border-radius: var(--rj-radius);
    border: 1px solid rgba(255,255,255,0.08);
    transition: var(--rj-transition);
}

.rj-stat-card:hover {
    background: rgba(200, 168, 78, 0.1);
    border-color: rgba(200, 168, 78, 0.3);
}

.rj-stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--rj-gold);
    font-family: var(--rj-font-heading);
    display: block;
    margin-bottom: 5px;
}

.rj-stat-label {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =============================================
   BUTTONS
   ============================================= */
.rj-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--rj-transition);
    font-family: var(--rj-font-body);
}

.rj-btn-primary {
    background: var(--rj-gold);
    color: var(--rj-white);
    border-color: var(--rj-gold);
}

.rj-btn-primary:hover {
    background: var(--rj-gold-dark);
    border-color: var(--rj-gold-dark);
    color: var(--rj-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(200, 168, 78, 0.35);
}

.rj-btn-outline {
    background: transparent;
    color: var(--rj-white);
    border-color: rgba(255,255,255,0.3);
}

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

.rj-btn-dark {
    background: var(--rj-primary);
    color: var(--rj-white);
    border-color: var(--rj-primary);
}

.rj-btn-dark:hover {
    background: var(--rj-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--rj-shadow-lg);
    color: var(--rj-white);
}

.rj-btn-sm {
    padding: 10px 24px;
    font-size: 13px;
}

.rj-btn-lg {
    padding: 16px 40px;
    font-size: 16px;
}

/* =============================================
   SERVICES CARDS
   ============================================= */
.rj-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.rj-service-card {
    background: var(--rj-white);
    padding: 40px 30px;
    border-radius: var(--rj-radius-lg);
    box-shadow: var(--rj-shadow);
    transition: var(--rj-transition);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--rj-gray-light);
}

.rj-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--rj-gold), var(--rj-gold-light));
    opacity: 0;
    transition: var(--rj-transition);
}

.rj-service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--rj-shadow-lg);
}

.rj-service-card:hover::before {
    opacity: 1;
}

.rj-service-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, var(--rj-primary), var(--rj-primary-light));
    border-radius: var(--rj-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 28px;
    color: var(--rj-gold);
}

.rj-service-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.rj-service-card p {
    color: var(--rj-text-light);
    font-size: 15px;
    margin-bottom: 20px;
}

.rj-service-link {
    color: var(--rj-gold-dark);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.rj-service-link:hover {
    gap: 10px;
}

/* =============================================
   ABOUT / FONDATEUR
   ============================================= */
.rj-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.rj-about-image {
    position: relative;
}

.rj-about-image-main {
    border-radius: var(--rj-radius-lg);
    box-shadow: var(--rj-shadow-lg);
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.rj-about-image-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--rj-gold);
    color: var(--rj-white);
    padding: 20px 25px;
    border-radius: var(--rj-radius);
    text-align: center;
    box-shadow: var(--rj-shadow-lg);
}

.rj-about-image-badge .rj-badge-number {
    font-size: 32px;
    font-weight: 700;
    font-family: var(--rj-font-heading);
    display: block;
}

.rj-about-image-badge .rj-badge-text {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.rj-about-text h2 {
    font-size: 34px;
    margin-bottom: 20px;
}

.rj-about-text p {
    color: var(--rj-text-light);
    margin-bottom: 20px;
    font-size: 16px;
}

.rj-about-features {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.rj-about-features li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
}

.rj-about-features li i {
    color: var(--rj-gold);
    font-size: 18px;
    width: 24px;
}

/* =============================================
   CHIFFRES / STATISTIQUES
   ============================================= */
.rj-stats-section {
    background: linear-gradient(135deg, var(--rj-primary) 0%, var(--rj-primary-light) 100%);
    padding: 60px 0;
}

.rj-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.rj-stats-item {
    padding: 20px;
}

.rj-stats-item .rj-stat-number {
    font-size: 42px;
    font-weight: 700;
    color: var(--rj-gold);
    font-family: var(--rj-font-heading);
    display: block;
}

.rj-stats-item .rj-stat-label {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

/* =============================================
   SIMULATEUR
   ============================================= */
.rj-simulateur-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.rj-sim-tab {
    padding: 12px 30px;
    border: 2px solid var(--rj-gray-light);
    background: var(--rj-white);
    border-radius: 50px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: var(--rj-text);
    transition: var(--rj-transition);
    font-family: var(--rj-font-body);
    display: flex;
    align-items: center;
    gap: 8px;
}

.rj-sim-tab:hover,
.rj-sim-tab.active {
    background: var(--rj-primary);
    color: var(--rj-white);
    border-color: var(--rj-primary);
}

.rj-sim-tab.active i {
    color: var(--rj-gold);
}

.rj-sim-panel {
    display: none;
    animation: fadeIn 0.4s ease;
}

.rj-sim-panel.active {
    display: block;
}

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

.rj-sim-card {
    background: var(--rj-white);
    border-radius: var(--rj-radius-lg);
    box-shadow: var(--rj-shadow);
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid var(--rj-gray-light);
}

.rj-sim-card h3 {
    font-size: 24px;
    margin-bottom: 8px;
}

.rj-sim-card .rj-sim-desc {
    color: var(--rj-text-light);
    margin-bottom: 30px;
    font-size: 15px;
}

/* Form elements */
.rj-form-group {
    margin-bottom: 20px;
}

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

.rj-form-group .rj-label-hint {
    font-weight: 400;
    color: var(--rj-text-light);
    font-size: 12px;
    margin-left: 5px;
}

.rj-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.rj-input,
.rj-select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--rj-gray-light);
    border-radius: var(--rj-radius);
    font-size: 15px;
    font-family: var(--rj-font-body);
    transition: var(--rj-transition);
    background: var(--rj-white);
    color: var(--rj-text);
}

.rj-input:focus,
.rj-select:focus {
    border-color: var(--rj-gold);
    outline: none;
    box-shadow: 0 0 0 3px rgba(200, 168, 78, 0.15);
}

.rj-input-suffix {
    position: relative;
}

.rj-input-suffix .rj-suffix {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--rj-gray);
    font-size: 14px;
    font-weight: 500;
}

.rj-input-suffix .rj-input {
    padding-right: 60px;
}

/* Slider/Range */
.rj-range-container {
    margin-top: 8px;
}

.rj-range {
    width: 100%;
    height: 6px;
    -webkit-appearance: none;
    appearance: none;
    background: var(--rj-gray-light);
    border-radius: 3px;
    outline: none;
}

.rj-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    background: var(--rj-gold);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(200, 168, 78, 0.4);
}

.rj-range-values {
    display: flex;
    justify-content: space-between;
    margin-top: 5px;
    font-size: 12px;
    color: var(--rj-gray);
}

/* Résultats simulateur */
.rj-sim-results {
    margin-top: 30px;
    padding: 30px;
    background: linear-gradient(135deg, var(--rj-primary) 0%, var(--rj-primary-light) 100%);
    border-radius: var(--rj-radius-lg);
    display: none;
}

.rj-sim-results.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.rj-sim-results h4 {
    color: var(--rj-white);
    font-size: 20px;
    margin-bottom: 20px;
    text-align: center;
}

.rj-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
}

.rj-result-item {
    background: rgba(255,255,255,0.1);
    border-radius: var(--rj-radius);
    padding: 20px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.1);
}

.rj-result-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--rj-gold);
    font-family: var(--rj-font-heading);
    display: block;
}

.rj-result-label {
    font-size: 12px;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 5px;
}

/* Alert de surcoût */
.rj-alert-surcout {
    background: rgba(231, 76, 60, 0.15);
    border: 2px solid rgba(231, 76, 60, 0.4);
    border-radius: var(--rj-radius);
    padding: 20px;
    margin-top: 20px;
    text-align: center;
}

.rj-alert-surcout .rj-alert-icon {
    font-size: 36px;
    color: #e74c3c;
    margin-bottom: 10px;
}

.rj-alert-surcout .rj-alert-title {
    font-size: 18px;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 5px;
}

.rj-alert-surcout .rj-alert-amount {
    font-size: 28px;
    font-weight: 700;
    color: var(--rj-white);
    font-family: var(--rj-font-heading);
}

.rj-alert-surcout .rj-alert-text {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    margin-top: 10px;
}

/* =============================================
   RENDEZ-VOUS
   ============================================= */
.rj-rdv-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.rj-rdv-type {
    background: var(--rj-white);
    border: 2px solid var(--rj-gray-light);
    border-radius: var(--rj-radius-lg);
    padding: 30px;
    text-align: center;
    cursor: pointer;
    transition: var(--rj-transition);
}

.rj-rdv-type:hover,
.rj-rdv-type.selected {
    border-color: var(--rj-gold);
    box-shadow: var(--rj-shadow);
}

.rj-rdv-type.selected {
    background: linear-gradient(135deg, var(--rj-primary) 0%, var(--rj-primary-light) 100%);
    color: var(--rj-white);
}

.rj-rdv-type.selected h4,
.rj-rdv-type.selected p {
    color: var(--rj-white);
}

.rj-rdv-type.selected .rj-rdv-type-icon {
    background: rgba(200, 168, 78, 0.2);
    color: var(--rj-gold);
}

.rj-rdv-type-icon {
    width: 60px;
    height: 60px;
    background: var(--rj-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 24px;
    color: var(--rj-primary);
    transition: var(--rj-transition);
}

.rj-rdv-type h4 {
    font-size: 18px;
    margin-bottom: 8px;
    transition: var(--rj-transition);
}

.rj-rdv-type p {
    font-size: 13px;
    color: var(--rj-text-light);
    transition: var(--rj-transition);
}

.rj-rdv-type .rj-rdv-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--rj-gold-dark);
    margin-top: 10px;
}

.rj-rdv-type.selected .rj-rdv-price {
    color: var(--rj-gold);
}

/* Formulaire RDV */
.rj-rdv-form-container {
    max-width: 700px;
    margin: 0 auto;
    display: none;
}

.rj-rdv-form-container.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

.rj-rdv-form {
    background: var(--rj-white);
    padding: 40px;
    border-radius: var(--rj-radius-lg);
    box-shadow: var(--rj-shadow);
    border: 1px solid var(--rj-gray-light);
}

.rj-rdv-form h3 {
    margin-bottom: 25px;
    font-size: 22px;
}

/* Calendar */
.rj-calendar {
    margin-bottom: 25px;
}

.rj-calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.rj-calendar-header h4 {
    font-size: 16px;
    margin: 0;
}

.rj-calendar-nav {
    background: none;
    border: 1px solid var(--rj-gray-light);
    padding: 6px 12px;
    border-radius: var(--rj-radius);
    cursor: pointer;
    color: var(--rj-primary);
    transition: var(--rj-transition);
    font-size: 14px;
}

.rj-calendar-nav:hover {
    background: var(--rj-primary);
    color: var(--rj-white);
    border-color: var(--rj-primary);
}

.rj-calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
}

.rj-calendar-day-name {
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    color: var(--rj-gray);
    padding: 8px 0;
    text-transform: uppercase;
}

.rj-calendar-day {
    text-align: center;
    padding: 10px;
    border-radius: var(--rj-radius);
    cursor: pointer;
    font-size: 14px;
    transition: var(--rj-transition);
    border: 1px solid transparent;
}

.rj-calendar-day:hover:not(.disabled):not(.empty) {
    background: var(--rj-light);
    border-color: var(--rj-gold);
}

.rj-calendar-day.selected {
    background: var(--rj-gold);
    color: var(--rj-white);
    font-weight: 600;
}

.rj-calendar-day.disabled {
    color: var(--rj-gray-light);
    cursor: not-allowed;
}

.rj-calendar-day.empty {
    cursor: default;
}

.rj-calendar-day.today {
    border-color: var(--rj-gold);
    font-weight: 600;
}

/* Time slots */
.rj-time-slots {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 8px;
    margin-bottom: 25px;
}

.rj-time-slot {
    text-align: center;
    padding: 10px;
    border: 2px solid var(--rj-gray-light);
    border-radius: var(--rj-radius);
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: var(--rj-transition);
    background: var(--rj-white);
}

.rj-time-slot:hover {
    border-color: var(--rj-gold);
}

.rj-time-slot.selected {
    background: var(--rj-primary);
    color: var(--rj-white);
    border-color: var(--rj-primary);
}

.rj-time-slot.unavailable {
    opacity: 0.4;
    cursor: not-allowed;
}

/* =============================================
   TÉMOIGNAGES
   ============================================= */
.rj-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.rj-testimonial-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--rj-radius-lg);
    padding: 35px;
    position: relative;
}

.rj-testimonial-card::before {
    content: '\201C';
    font-size: 60px;
    color: var(--rj-gold);
    font-family: var(--rj-font-heading);
    position: absolute;
    top: 15px;
    left: 25px;
    opacity: 0.5;
}

.rj-testimonial-text {
    font-size: 15px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 20px;
    font-style: italic;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.rj-testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.rj-testimonial-avatar {
    width: 45px;
    height: 45px;
    background: var(--rj-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--rj-white);
    font-size: 16px;
}

.rj-testimonial-name {
    font-weight: 600;
    color: var(--rj-white);
    font-size: 15px;
}

.rj-testimonial-role {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
}

.rj-testimonial-result {
    margin-top: 15px;
    padding: 10px 15px;
    background: rgba(39, 174, 96, 0.15);
    border-radius: var(--rj-radius);
    font-size: 13px;
    color: #2ecc71;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* =============================================
   CTA SECTION
   ============================================= */
.rj-cta {
    background: linear-gradient(135deg, var(--rj-gold-dark) 0%, var(--rj-gold) 100%);
    padding: 60px 0;
    text-align: center;
}

.rj-cta h2 {
    color: var(--rj-white);
    font-size: 32px;
    margin-bottom: 15px;
}

.rj-cta p {
    color: rgba(255,255,255,0.85);
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

/* =============================================
   CONTACT
   ============================================= */
.rj-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.rj-contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.rj-contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: var(--rj-light);
    border-radius: var(--rj-radius);
}

.rj-contact-info-card i {
    width: 45px;
    height: 45px;
    background: var(--rj-primary);
    color: var(--rj-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.rj-contact-info-card h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.rj-contact-info-card p {
    color: var(--rj-text-light);
    font-size: 14px;
    margin: 0;
}

.rj-contact-form {
    background: var(--rj-white);
    padding: 35px;
    border-radius: var(--rj-radius-lg);
    box-shadow: var(--rj-shadow);
    border: 1px solid var(--rj-gray-light);
}

.rj-contact-form h3 {
    font-size: 22px;
    margin-bottom: 25px;
}

textarea.rj-input {
    min-height: 120px;
    resize: vertical;
}

/* =============================================
   FOOTER
   ============================================= */
.rj-footer {
    background: var(--rj-primary-dark);
    color: rgba(255,255,255,0.7);
    padding: 60px 0 0;
}

.rj-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.rj-footer-about p {
    font-size: 14px;
    line-height: 1.8;
    margin-top: 15px;
}

.rj-footer h4 {
    color: var(--rj-white);
    font-size: 16px;
    margin-bottom: 20px;
    font-family: var(--rj-font-body);
    font-weight: 600;
}

.rj-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rj-footer-links li {
    margin-bottom: 10px;
}

.rj-footer-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 14px;
    transition: var(--rj-transition);
}

.rj-footer-links a:hover {
    color: var(--rj-gold);
}

.rj-footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.rj-footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: var(--rj-transition);
}

.rj-footer-social a:hover {
    background: var(--rj-gold);
    color: var(--rj-white);
}

.rj-footer-bottom {
    padding: 20px 0;
    text-align: center;
    font-size: 13px;
    color: rgba(255,255,255,0.4);
}

/* =============================================
   WHATSAPP FLOATING BUTTON
   ============================================= */
.rj-whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 9999;
}

.rj-whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: var(--rj-white);
    padding: 14px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--rj-transition);
}

.rj-whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
    color: var(--rj-white);
}

.rj-whatsapp-btn i {
    font-size: 20px;
}

/* Pulse animation */
.rj-whatsapp-float::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50px;
    background: #25D366;
    opacity: 0;
    animation: whatsappPulse 2s infinite;
    z-index: -1;
}

@keyframes whatsappPulse {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.4; }
    100% { transform: translate(-50%, -50%) scale(1.3); opacity: 0; }
}

/* =============================================
   PAGE INTERIEURE HERO
   ============================================= */
.rj-page-hero {
    background: linear-gradient(135deg, var(--rj-primary) 0%, var(--rj-primary-light) 100%);
    padding: 80px 0 60px;
    text-align: center;
}

.rj-page-hero h1 {
    color: var(--rj-white);
    font-size: 40px;
    margin-bottom: 15px;
}

.rj-page-hero p {
    color: rgba(255,255,255,0.7);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

.rj-breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    font-size: 14px;
}

.rj-breadcrumb a {
    color: var(--rj-gold);
    text-decoration: none;
}

.rj-breadcrumb span {
    color: rgba(255,255,255,0.5);
}

/* =============================================
   SUCCESS MESSAGE
   ============================================= */
.rj-success-message {
    background: rgba(39, 174, 96, 0.1);
    border: 2px solid rgba(39, 174, 96, 0.3);
    border-radius: var(--rj-radius-lg);
    padding: 40px;
    text-align: center;
    display: none;
}

.rj-success-message.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.rj-success-message i {
    font-size: 48px;
    color: var(--rj-success);
    margin-bottom: 15px;
}

.rj-success-message h3 {
    color: var(--rj-success);
    margin-bottom: 10px;
}

.rj-success-message p {
    color: var(--rj-text-light);
}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInScale {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

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

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes pulseGold {
    0%, 100% { box-shadow: 0 0 0 0 rgba(200, 168, 78, 0.4); }
    50% { box-shadow: 0 0 0 15px rgba(200, 168, 78, 0); }
}

/* Animations d'entrée sur les éléments */
.rj-hero-text {
    animation: fadeInLeft 1s ease;
}

.rj-hero-stats {
    animation: fadeInRight 1s ease 0.3s both;
}

.rj-hero-badge {
    animation: fadeInUp 0.6s ease both;
}

.rj-hero-badge:nth-child(2) {
    animation-delay: 0.15s;
}

.rj-hero-buttons .rj-btn {
    animation: fadeInUp 0.6s ease 0.4s both;
}

.rj-hero-buttons .rj-btn:nth-child(2) {
    animation-delay: 0.55s;
}

.rj-header {
    animation: slideDown 0.5s ease;
}

.rj-section-title {
    animation: fadeInUp 0.6s ease both;
}

.rj-service-card {
    opacity: 0;
    animation: fadeInUp 0.6s ease both;
}

.rj-service-card:nth-child(1) { animation-delay: 0.1s; }
.rj-service-card:nth-child(2) { animation-delay: 0.2s; }
.rj-service-card:nth-child(3) { animation-delay: 0.3s; }
.rj-service-card:nth-child(4) { animation-delay: 0.4s; }
.rj-service-card:nth-child(5) { animation-delay: 0.5s; }
.rj-service-card:nth-child(6) { animation-delay: 0.6s; }

.rj-stat-card {
    animation: fadeInScale 0.5s ease both;
}

.rj-stat-card:nth-child(1) { animation-delay: 0.1s; }
.rj-stat-card:nth-child(2) { animation-delay: 0.2s; }
.rj-stat-card:nth-child(3) { animation-delay: 0.3s; }
.rj-stat-card:nth-child(4) { animation-delay: 0.4s; }

.rj-testimonial-card {
    animation: fadeInUp 0.6s ease both;
}

.rj-testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.rj-testimonial-card:nth-child(2) { animation-delay: 0.25s; }
.rj-testimonial-card:nth-child(3) { animation-delay: 0.4s; }

/* Hover animations améliorées */
.rj-service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--rj-shadow-lg);
}

.rj-service-card:hover .rj-service-icon {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.rj-btn:hover {
    transform: translateY(-2px);
}

.rj-btn-primary:hover {
    box-shadow: 0 8px 25px rgba(200, 168, 78, 0.35);
}

.rj-nav-cta {
    animation: pulseGold 2.5s infinite;
}

/* Float animation sur le hero image */
.rj-about-image-main {
    animation: float 6s ease-in-out infinite;
}

.rj-about-image-badge {
    animation: fadeInScale 0.6s ease 0.5s both;
}

/* Page hero animations */
.rj-page-hero h1 {
    animation: fadeInUp 0.6s ease;
}

.rj-page-hero p {
    animation: fadeInUp 0.6s ease 0.15s both;
}

.rj-breadcrumb {
    animation: fadeInUp 0.6s ease 0.3s both;
}

/* CTA shimmer effect */
.rj-cta .rj-btn-dark {
    position: relative;
    overflow: hidden;
}

.rj-cta .rj-btn-dark::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    animation: shimmer 3s infinite;
}

/* RDV type cards animation */
.rj-rdv-type {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.rj-rdv-type:hover {
    transform: translateY(-5px);
}

/* FAQ details animation */
details {
    transition: all 0.3s ease;
}

details[open] {
    box-shadow: var(--rj-shadow);
}

details summary {
    transition: color 0.3s ease;
}

details[open] summary {
    color: var(--rj-gold-dark);
}

/* =============================================
   RESPONSIVE
   ============================================= */

/* TABLETTE PAYSAGE */
@media (max-width: 1024px) {
    .rj-container {
        padding: 0 20px;
    }

    .rj-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .rj-hero-badges {
        justify-content: center;
    }

    .rj-hero-buttons {
        justify-content: center;
    }

    .rj-hero-stats {
        max-width: 500px;
        margin: 0 auto;
    }

    .rj-about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .rj-about-image {
        order: -1;
    }

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

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

    .rj-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .rj-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--rj-white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--rj-shadow);
        z-index: 1000;
    }

    .rj-nav.active {
        display: flex;
    }

    .rj-nav a {
        padding: 12px 20px;
        text-align: center;
        border-bottom: 1px solid var(--rj-gray-light);
    }

    .rj-nav a:last-child {
        border-bottom: none;
    }

    .rj-menu-toggle {
        display: block;
    }

    .rj-services-grid,
    .rj-grid-3,
    .rj-grid-2 {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .rj-testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* TABLETTE PORTRAIT */
@media (max-width: 768px) {
    .rj-section {
        padding: 50px 0;
    }

    .rj-section-title h2 {
        font-size: 26px;
    }

    .rj-section-title p {
        font-size: 15px;
    }

    .rj-hero {
        min-height: auto;
        padding: 60px 0;
    }

    .rj-hero-text {
        text-align: center;
    }

    .rj-hero-text h1 {
        font-size: 24px;
    }

    .rj-hero-text .rj-hero-subtitle {
        font-size: 14px;
        text-align: justify;
        text-align-last: center;
    }

    .rj-hero-badges {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .rj-hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .rj-hero-buttons .rj-btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }

    .rj-hero-stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

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

    .rj-stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .rj-stats-item .rj-stat-number {
        font-size: 32px;
    }

    .rj-stats-item .rj-stat-label {
        font-size: 11px;
    }

    .rj-footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .rj-footer-social {
        justify-content: center;
    }

    .rj-rdv-types {
        grid-template-columns: 1fr;
    }

    .rj-services-grid,
    .rj-grid-3,
    .rj-grid-2 {
        grid-template-columns: 1fr !important;
    }

    .rj-map-section {
        height: 300px;
    }

    .rj-founder-title {
        font-size: 15px;
    }

    .rj-about-text h2 {
        font-size: 26px;
    }

    .rj-about-image-main {
        height: 280px !important;
    }

    .rj-about-image-badge {
        position: relative;
        bottom: auto;
        right: auto;
        display: inline-block;
        margin-top: 15px;
    }

    .rj-whatsapp-btn span {
        display: none;
    }

    .rj-whatsapp-btn {
        padding: 14px;
        border-radius: 50%;
        width: 56px;
        height: 56px;
        justify-content: center;
    }

    .rj-whatsapp-btn i {
        font-size: 24px;
    }

    .rj-page-hero {
        padding: 60px 0 40px;
    }

    .rj-page-hero h1 {
        font-size: 28px;
    }

    .rj-page-hero p {
        font-size: 15px;
        padding: 0 20px;
    }

    .rj-cta h2 {
        font-size: 24px;
    }

    .rj-cta p {
        font-size: 15px;
        padding: 0 15px;
    }

    .rj-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .rj-cta-buttons .rj-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .rj-sim-card {
        padding: 25px 18px;
    }

    .rj-rdv-form {
        padding: 25px 18px;
    }

    .rj-contact-form {
        padding: 25px 18px;
    }

    .rj-testimonial-card {
        padding: 25px 20px;
    }

    .rj-logo-name {
        font-size: 18px;
    }

    .rj-logo-tagline {
        font-size: 9px;
    }

    .rj-logo-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    /* Disable float animation on mobile for performance */
    .rj-about-image-main {
        animation: none;
    }
}

/* MOBILE PETIT */
@media (max-width: 480px) {
    .rj-container {
        padding: 0 15px;
    }

    .rj-section {
        padding: 40px 0;
    }

    .rj-hero {
        padding: 40px 0;
    }

    .rj-hero-text h1 {
        font-size: 22px;
    }

    .rj-hero-text .rj-hero-subtitle {
        font-size: 13px;
        text-align: justify;
        text-align-last: center;
    }

    .rj-hero-stats {
        padding: 20px 15px;
    }

    .rj-hero-stats-grid {
        gap: 10px;
    }

    .rj-stat-card {
        padding: 15px 10px;
    }

    .rj-stat-number {
        font-size: 24px;
    }

    .rj-stat-label {
        font-size: 10px;
    }

    .rj-section-title h2 {
        font-size: 22px;
    }

    .rj-section-title p {
        font-size: 14px;
    }

    .rj-service-card {
        padding: 25px 20px;
    }

    .rj-service-icon {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }

    .rj-service-card h3 {
        font-size: 17px;
    }

    .rj-btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    .rj-btn-lg {
        padding: 14px 28px;
        font-size: 15px;
    }

    .rj-about-features li {
        font-size: 13px;
    }

    .rj-about-text h2 {
        font-size: 22px;
    }

    .rj-about-text p {
        font-size: 14px;
    }

    .rj-about-image-main {
        height: 250px !important;
    }

    .rj-page-hero h1 {
        font-size: 24px;
    }

    .rj-page-hero p {
        font-size: 14px;
    }

    .rj-stats-section {
        padding: 40px 0;
    }

    .rj-map-section {
        height: 250px;
    }

    .rj-founder-title {
        font-size: 14px;
    }

    .rj-sim-tab {
        padding: 10px 18px;
        font-size: 12px;
    }

    .rj-results-grid {
        grid-template-columns: 1fr 1fr;
    }

    .rj-result-value {
        font-size: 18px;
    }

    .rj-calendar-day {
        padding: 6px;
        font-size: 12px;
    }

    .rj-time-slots {
        grid-template-columns: repeat(3, 1fr);
    }

    .rj-whatsapp-float {
        bottom: 15px;
        right: 15px;
    }

    .rj-contact-info-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .rj-footer {
        padding: 40px 0 0;
    }

    details {
        padding: 15px !important;
    }

    details summary {
        font-size: 13px !important;
    }
}

/* MOBILE TRÈS PETIT */
@media (max-width: 360px) {
    .rj-hero-text h1 {
        font-size: 20px;
    }

    .rj-hero-stats-grid {
        grid-template-columns: 1fr;
    }

    .rj-stats-grid {
        grid-template-columns: 1fr;
    }

    .rj-time-slots {
        grid-template-columns: repeat(2, 1fr);
    }

    .rj-results-grid {
        grid-template-columns: 1fr;
    }

    .rj-map-section {
        height: 200px;
    }

    .rj-about-image-main {
        height: 220px !important;
    }

    .rj-hero-badge {
        font-size: 11px;
        padding: 6px 12px;
    }
}
