/* =============================================
   SOPHROKARE - Styles CSS Complets Optimisés
   Version: 3.2 - Badge Disponibilité Dynamique
   ============================================= */

/* ===== VARIABLES CSS ===== */
:root {
    /* Couleurs principales */
    --primary-dark: #3d4556;
    --primary-purple: #7d6fa3;
    --secondary-purple: #9d8cb5;
    --primary-pink: #d4a8c9;
    --light-purple: #e8dcf5;
    --very-light-purple: #f3ecfc;
    --soft-purple: #b8a7cc;
    --icon-purple: #9d8cb5;
    --hover-purple: #6a5c8a;
    
    /* Couleurs Appel Gratuit (Violet) */
    --call-color: #9d8cb5;
    --call-color-dark: #7d6fa3;
    --call-color-light: #b8a7cc;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-pink) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--secondary-purple) 0%, var(--light-purple) 100%);
    --gradient-call: linear-gradient(135deg, var(--call-color) 0%, var(--call-color-dark) 100%);
    --gradient-background: linear-gradient(135deg, #f3ecfc 0%, #e8dcf5 25%, #ddd0f0 50%, #e8dcf5 75%, #f3ecfc 100%);
    
    /* Espacements */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 5rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.6s ease;
    
    /* Ombres */
    --shadow-sm: 0 2px 8px rgba(125, 111, 163, 0.1);
    --shadow-md: 0 5px 20px rgba(125, 111, 163, 0.2);
    --shadow-lg: 0 10px 40px rgba(125, 111, 163, 0.3);
    --shadow-call: 0 4px 15px rgba(157, 140, 181, 0.4);
    
    /* Border radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 50px;
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--primary-dark);
    overflow-x: hidden;
}

/* ===== NAVBAR ===== */
.navbar {
    transition: all var(--transition-normal);
    backdrop-filter: blur(10px);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
    background: rgba(255, 255, 255, 0.98) !important;
}

.navbar-brand {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.nav-link {
    color: var(--primary-dark) !important;
    font-weight: 500;
    transition: color var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: all var(--transition-normal);
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link:focus::after {
    width: 80%;
}

.nav-link:hover,
.nav-link:focus {
    color: var(--primary-purple) !important;
}

.btn-appointment {
    background: var(--gradient-primary);
    color: white;
    border: none;
    font-weight: 600;
    transition: all var(--transition-normal);
    padding: 0.5rem 1.5rem;
    font-size: 0.95rem;
}

.btn-appointment:hover,
.btn-appointment:focus {
    background: linear-gradient(135deg, var(--hover-purple) 0%, #d89dc4 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(125, 111, 163, 0.4);
}

/* ===== HERO SECTION OPTIMISÉE ===== */
.hero-section {
    background: var(--gradient-background);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    margin-top: 76px;
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 76px);
    display: flex;
    align-items: center;
    padding: 3rem 0;
}

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

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 600px;
    padding-right: 2rem;
}

.hero-content h1 {
    font-size: 2.5rem;
    line-height: 1.2;
}

.hero-content .lead {
    font-size: 1.1rem;
    line-height: 1.7;
}

.hero-content .btn-primary-custom {
    font-size: 1rem;
    padding: 0.75rem 2rem;
    box-shadow: 0 4px 15px rgba(125, 111, 163, 0.25);
}

.hero-image-container {
    width: 100%;
    padding-left: 2rem;
    position: relative;
}

/* Info profil sous la photo */
.profile-info {
    text-align: center;
    margin-top: 1.5rem;
}

.profile-info h2 {
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--primary-purple);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.profile-subtitle {
    font-size: 1.05rem;
    color: #6b7280;
    font-weight: 500;
    margin-bottom: 0.8rem;
    line-height: 1.4;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: linear-gradient(135deg, rgba(125, 111, 163, 0.1) 0%, rgba(212, 168, 201, 0.1) 100%);
    border: 2px solid var(--primary-purple);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    color: var(--primary-purple);
    font-weight: 600;
}

.profile-subtitle i {
    font-size: 1rem;
    color: var(--primary-purple);
}

.profile-badges {
    margin-top: 0.8rem;
}

/* ===== BADGE DE DISPONIBILITÉ DYNAMIQUE ===== */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

/* État: Disponible (vert) - Lun-Ven 9h-19h */
.status-badge.status-online {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    color: #065f46;
    border: 1px solid #6ee7b7;
}

.status-dot.online {
    background-color: #10b981;
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
    }
}

/* État: Réponse sous 24h (orange) - Soir/Week-end */
.status-badge.status-away {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: #92400e;
    border: 1px solid #fcd34d;
}

.status-dot.away {
    background-color: #f59e0b;
    animation: pulse-orange 2s infinite;
}

@keyframes pulse-orange {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(245, 158, 11, 0);
    }
}

/* Badge certifié inline simplifié */
.certification-badge-inline {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--primary-purple);
    font-weight: 600;
    font-size: 1rem;
}

.certification-badge-inline i {
    font-size: 1.1rem;
}

/* ===== PHOTO DE PROFIL HERO AMÉLIORÉE ===== */
.profile-photo-enhanced {
    width: 320px;
    height: 320px;
    position: relative;
    border-radius: 50%;
    overflow: visible;
    animation: floatAnimation 6s ease-in-out infinite;
}

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

/* Cercle décoratif en arrière-plan */
.profile-photo-enhanced::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(125, 111, 163, 0.2) 0%, rgba(212, 168, 201, 0.2) 100%);
    animation: pulse 3s ease-in-out infinite;
    z-index: -1;
}

@keyframes pulse {
    0%, 100% { 
        transform: scale(1); 
        opacity: 0.5; 
    }
    50% { 
        transform: scale(1.1); 
        opacity: 0.8; 
    }
}

/* Container de l'image avec bordure dégradée */
.photo-wrapper {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    padding: 8px;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-pink), var(--secondary-purple));
    box-shadow: 
        0 20px 60px rgba(125, 111, 163, 0.4),
        0 30px 90px rgba(125, 111, 163, 0.2),
        inset 0 0 0 8px rgba(255, 255, 255, 0.3);
    position: relative;
    transition: all 0.4s ease;
}

.profile-photo-enhanced:hover .photo-wrapper {
    transform: scale(1.03);
    box-shadow: 
        0 25px 70px rgba(125, 111, 163, 0.5),
        0 35px 100px rgba(125, 111, 163, 0.3),
        inset 0 0 0 8px rgba(255, 255, 255, 0.5);
}

.photo-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    background: white;
    position: relative;
}

.photo-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    transition: transform 0.5s ease;
}

.profile-photo-enhanced:hover .photo-inner img {
    transform: scale(1.08);
}

.text-primary-custom {
    color: var(--secondary-purple);
    font-weight: 400;
}

/* Animations d'entrée */
.hero-section h1,
.hero-section p,
.hero-section .btn {
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
}

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

/* Badge certifié amélioré */
.certification-label {
    background: linear-gradient(135deg, rgba(125, 111, 163, 0.1) 0%, rgba(212, 168, 201, 0.15) 100%);
    border: 2.5px solid var(--primary-purple);
    color: var(--primary-purple);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    animation: fadeInUp 0.8s ease-out 0.6s both;
    box-shadow: 0 4px 15px rgba(125, 111, 163, 0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.certification-label::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.certification-label:hover::before {
    left: 100%;
}

.certification-label:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(125, 111, 163, 0.25);
    border-color: var(--secondary-purple);
}

.certification-label i {
    font-size: 1.2rem;
    color: var(--primary-purple);
}

/* ===== BANDEAU RÉASSURANCE DISCRET ===== */
.reassurance-section {
    padding: 2rem 0;
    background: linear-gradient(135deg, rgba(232, 220, 245, 0.3) 0%, rgba(248, 245, 252, 0.5) 100%);
    border-bottom: 1px solid rgba(125, 111, 163, 0.1);
}

.reassurance-banner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.reassurance-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #495057;
    font-weight: 500;
}

.reassurance-item i {
    font-size: 1.3rem;
    color: var(--primary-purple);
}

/* ===== BOUTONS ===== */
.btn-primary-custom {
    background: var(--gradient-primary);
    color: white;
    border: none;
    font-weight: 600;
    transition: all var(--transition-normal);
    padding: 0.5rem 1.5rem;
    font-size: 0.95rem;
}

.btn-primary-custom:hover,
.btn-primary-custom:focus {
    background: linear-gradient(135deg, var(--hover-purple) 0%, #d89dc4 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(125, 111, 163, 0.4);
}

.btn-outline-secondary {
    border: 2px solid var(--primary-purple);
    color: var(--primary-purple);
    font-weight: 600;
    transition: all var(--transition-normal);
    padding: 0.5rem 1.5rem;
    font-size: 0.95rem;
}

.btn-outline-secondary:hover,
.btn-outline-secondary:focus {
    background: var(--gradient-primary);
    border-color: var(--primary-purple);
    color: white;
    transform: translateY(-2px);
}

/* ===== SECTION À PROPOS ===== */
.bg-light-custom {
    background: var(--very-light-purple);
}

.apropos-card-horizontal {
    background: white;
    border-radius: var(--radius-lg);
    overflow: visible;
    box-shadow: var(--shadow-md);
    display: flex;
    transition: all 0.4s ease;
    position: relative;
    padding: 3rem;
    align-items: center;
    gap: 3rem;
}

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

.apropos-photo {
    flex: 0 0 340px;
    width: 600px;
    height: 600px;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(125, 111, 163, 0.2);
    transform: rotate(-3deg);
    transition: all 0.4s ease;
}

.apropos-card-horizontal:hover .apropos-photo {
    transform: rotate(0deg) scale(1.02);
}

.apropos-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
}

.apropos-card-horizontal:hover .apropos-photo img {
    transform: scale(1.08);
}

.apropos-photo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(125, 111, 163, 0.1) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

.apropos-content {
    flex: 1;
    padding-right: 1rem;
}

.apropos-content h3 {
    color: var(--primary-purple);
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.apropos-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.apropos-content p {
    color: #495057;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.apropos-signature {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--light-purple);
}

.signature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50%;
    background: var(--gradient-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    box-shadow: 0 3px 10px rgba(125, 111, 163, 0.3);
}

/* ===== SECTION SERVICES ===== */
.service-image {
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.card {
    transition: all var(--transition-normal);
    border: 1px solid rgba(139, 125, 168, 0.1);
}

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

.card:hover .service-image {
    transform: scale(1.05);
}

.card-title {
    color: var(--primary-dark);
    font-size: 1.1rem;
}

/* ===== SECTION FAQ ===== */
.accordion-item {
    background: white;
    border: 2px solid var(--light-purple);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 1rem;
}

.accordion-button {
    background: linear-gradient(135deg, var(--very-light-purple) 0%, #ffffff 100%);
    color: var(--primary-purple);
    font-weight: 700;
    font-size: 1.05rem;
    padding: 1.25rem 1.5rem;
}

.accordion-button:not(.collapsed) {
    background: var(--gradient-secondary);
    color: white;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--primary-purple);
}

.accordion-body {
    padding: 1.5rem;
    color: #495057;
    line-height: 1.8;
}

#faq .bi-question-circle-fill {
    animation: pulse 2s infinite;
}

/* ===== INFO APPEL GRATUIT ===== */
.info-appel-card {
    background: white;
    border: 2px solid var(--call-color);
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.info-appel-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.info-appel-card h3 {
    color: var(--call-color-dark);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.info-appel-card p {
    color: #495057;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.info-appel-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-call);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 12px rgba(157, 140, 181, 0.3);
}

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

.avantages-list li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
    color: #495057;
    font-weight: 500;
}

.avantages-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--call-color-dark);
    font-weight: bold;
    font-size: 1.3rem;
}

/* ===== TÉMOIGNAGES ENRICHIS ===== */
.testimonial-card-enriched {
    background: linear-gradient(135deg, #fdfbff 0%, #f8f5fc 100%);
    border: 2px solid var(--light-purple);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 12px rgba(125, 111, 163, 0.08);
}

.testimonial-card-enriched:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(125, 111, 163, 0.2);
    border-color: var(--secondary-purple);
}

.testimonial-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.avatar-circle {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--light-purple) 0%, var(--very-light-purple) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-purple);
    font-size: 2.5rem;
    box-shadow: 0 4px 12px rgba(125, 111, 163, 0.15);
}

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-purple);
    margin-bottom: 0.2rem;
}

.testimonial-meta {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 0.1rem;
    font-weight: 500;
}

.testimonial-date {
    font-size: 0.8rem;
    color: #9ca3af;
    margin: 0;
    font-style: italic;
}

.testimonial-context {
    background: rgba(125, 111, 163, 0.08);
    padding: 0.75rem 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    border-left: 3px solid var(--primary-purple);
}

.context-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-purple);
    display: block;
    margin-bottom: 0.25rem;
}

.testimonial-context p {
    margin: 0;
    font-size: 0.9rem;
    color: #495057;
    font-weight: 500;
}

.stars {
    display: flex;
    gap: 0.2rem;
}

.stars i {
    font-size: 1.1rem;
    color: #fbbf24;
}

.testimonial-text {
    color: #495057;
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0;
    flex-grow: 1;
}

/* ===== SECTION TARIFS OPTIMISÉE ===== */
.section-header-tarif {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header-tarif h2 {
    color: var(--primary-purple);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.timeline-grid-optimized {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 3rem;
    margin-bottom: 2rem;
}

.timeline-card-optimized {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(125, 111, 163, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.5rem;
    min-height: 220px;
    position: relative;
    border: 2px solid transparent;
}

.timeline-card-optimized:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(125, 111, 163, 0.2);
    border-color: var(--light-purple);
}

.badge-popular {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-pink) 100%);
    color: white;
    padding: 0.35rem 0.9rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(125, 111, 163, 0.3);
}

.card-content-compact h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-purple);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.card-icon-inline {
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary-purple) 0%, var(--light-purple) 100%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.85rem;
    box-shadow: 0 2px 6px rgba(125, 111, 163, 0.25);
}

.card-content-compact .duration {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.card-content-compact .features {
    font-size: 0.85rem;
    color: #495057;
    margin: 0;
    line-height: 1.6;
}

.card-content-compact .features i {
    color: var(--primary-purple);
    font-size: 0.75rem;
}

.price-action-zone {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(125, 111, 163, 0.1);
}

.price-compact {
    font-size: 2.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-reserve-subtle {
    background: transparent;
    border: 2px solid var(--primary-purple);
    color: var(--primary-purple);
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.btn-reserve-subtle:hover {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-pink) 100%);
    color: white;
    border-color: transparent;
    transform: translateX(3px);
    box-shadow: 0 4px 15px rgba(125, 111, 163, 0.3);
}

.btn-reserve-subtle i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.btn-reserve-subtle:hover i {
    transform: translateX(3px);
}

.timeline-card-optimized.info-card {
    border: 2px dashed var(--light-purple);
    background: linear-gradient(135deg, rgba(232, 220, 245, 0.2) 0%, rgba(248, 245, 252, 0.3) 100%);
}

.timeline-card-optimized.info-card:hover {
    transform: none;
    border-color: var(--secondary-purple);
}

/* ===== FORMULAIRE CONTACT ÉLÉGANT ===== */
.contact-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary-purple) 0%, var(--light-purple) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 5px 20px rgba(125, 111, 163, 0.3);
}

.contact-form-wrapper {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(125, 111, 163, 0.1);
    border: 2px solid var(--light-purple);
}

.contact-form-elegant .form-label {
    font-weight: 600;
    color: var(--primary-purple);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-control-elegant,
.form-control-elegant:focus {
    border: 2px solid var(--light-purple);
    padding: 0.75rem 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.form-control-elegant:focus {
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 0.2rem rgba(125, 111, 163, 0.15);
    outline: none;
}

.form-control-elegant::placeholder {
    color: #cbd5e1;
    font-style: italic;
}

.form-check-input {
    border: 2px solid var(--light-purple);
    border-radius: 4px;
    width: 1.2rem;
    height: 1.2rem;
}

.form-check-input:checked {
    background-color: var(--primary-purple);
    border-color: var(--primary-purple);
}

.form-check-input:focus {
    box-shadow: 0 0 0 0.2rem rgba(125, 111, 163, 0.15);
}

.form-check-label {
    font-size: 0.9rem;
    color: #495057;
}

.form-check-label a {
    color: var(--primary-purple);
    font-weight: 600;
}

.btn-submit-elegant {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-pink) 100%);
    color: white;
    border: none;
    padding: 0.9rem 3rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(125, 111, 163, 0.3);
}

.btn-submit-elegant:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(125, 111, 163, 0.4);
    color: white;
}

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

.alert-success {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%);
    border: 2px solid #10b981;
    border-radius: 12px;
    color: #065f46;
    padding: 1rem 1.5rem;
    font-weight: 500;
}

.contact-info-item {
    padding: 1.5rem;
}

.contact-info-item i {
    font-size: 2rem;
    color: var(--primary-purple);
    margin-bottom: 1rem;
}

.contact-info-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.contact-info-item a {
    color: var(--primary-purple);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-info-item a:hover {
    color: var(--secondary-purple);
}

.contact-info-item p {
    margin: 0;
    color: #6c757d;
}

/* ===== SECTION CTA ===== */
.bg-cta {
    background: linear-gradient(135deg, var(--very-light-purple) 0%, #f8f5fc 100%);
}

/* ===== FOOTER ===== */
footer {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-purple) 100%) !important;
}

footer a:hover,
footer a:focus {
    color: var(--primary-pink) !important;
    transition: color var(--transition-fast);
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    padding: 1.5rem 0;
    z-index: 9999;
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 250px;
}

.cookie-buttons {
    display: flex;
    gap: 0.75rem;
}

/* ===== MODAL CAL.COM ===== */
.bg-modal-header {
    background: linear-gradient(135deg, var(--light-purple) 0%, var(--very-light-purple) 100%);
}

.btn-back {
    font-size: 0.85rem;
    color: var(--primary-purple) !important;
    transition: color var(--transition-fast);
}

.modal-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border: 4px solid var(--light-purple);
    border-top-color: var(--primary-purple);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 10;
}

@keyframes spin {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* ===== BOUTON RETOUR EN HAUT ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    z-index: 1000;
    opacity: 0;
    transform: translateY(100px);
}

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

/* ===== BOUTON APPEL FLOTTANT (MOBILE) ===== */
.btn-call-floating {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-call);
    color: white;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow-call);
    z-index: 1040;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: pulse-call 2s infinite;
    opacity: 0;
    transform: scale(0);
}

.btn-call-floating:hover {
    transform: scale(1.1) !important;
    box-shadow: 0 6px 20px rgba(157, 140, 181, 0.6);
    color: white;
}

@keyframes pulse-call {
    0%, 100% {
        box-shadow: var(--shadow-call);
    }
    50% {
        box-shadow: 0 4px 25px rgba(157, 140, 181, 0.7);
    }
}

/* ===== ANIMATIONS SCROLL ===== */
.fade-in-element {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-element.animated {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .hero-section {
        min-height: auto;
        padding: 4rem 0 3rem 0;
    }
    
    .hero-content {
        padding-right: 0;
        text-align: center;
        max-width: 100%;
        margin-bottom: 0;
        order: 2;
    }
    
    .hero-content .d-flex {
        align-items: center;
        justify-content: center;
    }
    
    .hero-image-container {
        padding-left: 0;
        order: 1;
        margin-bottom: 2.5rem;
    }
    
    .profile-photo-enhanced {
        width: 280px;
        height: 280px;
        margin-bottom: 3rem;
    }
    
    .profile-info h2 {
        font-size: 1.6rem;
    }
    
    .profile-subtitle {
        font-size: 0.95rem;
    }
    
    .status-badge {
        font-size: 0.85rem;
    }
    
    /* Force l'ordre sur mobile */
    .hero-section .row {
        display: flex;
        flex-direction: column;
    }
    
    .hero-section .col-lg-6:first-child {
        order: 2;
    }
    
    .hero-section .col-lg-6:last-child {
        order: 1;
    }
    
    .timeline-grid-optimized {
        grid-template-columns: 1fr;
    }
    
    .apropos-card-horizontal {
        flex-direction: column;
        padding: 2rem;
        gap: 2rem;
    }
    
    .apropos-photo {
        width: 250px;
        height: 250px;
        transform: rotate(0);
        margin: 0 auto;
    }
    
    .apropos-content {
        padding: 0;
        text-align: center;
    }
    
    .apropos-content h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 3rem 0 2rem 0;
    }
    
    .profile-photo-enhanced {
        width: 240px;
        height: 240px;
        margin-bottom: 2.5rem;
    }
    
    .availability-badge {
        font-size: 0.8rem;
    }
    
    .availability-badge::before {
        width: 6px;
        height: 6px;
    }
    
    .hero-section h1 {
        font-size: 1.6rem;
    }
    
    .hero-section .lead {
        font-size: 1rem;
    }
    
    .hero-content {
        margin-bottom: 0;
    }
    
    .hero-image-container {
        margin-bottom: 2rem;
    }
    
    .profile-info h2 {
        font-size: 1.4rem;
        margin-bottom: 0.5rem;
    }
    
    .profile-subtitle {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }
    
    .timeline-card-optimized {
        padding: 1.5rem;
        min-height: auto;
    }
    
    .price-action-zone {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .price-compact {
        text-align: center;
        font-size: 2rem;
    }
    
    .btn-reserve-subtle {
        width: 100%;
        justify-content: center;
    }
    
    .badge-popular {
        top: -10px;
        right: 15px;
        font-size: 0.75rem;
        padding: 0.3rem 0.8rem;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .btn-call-floating {
        display: flex !important;
        bottom: 80px;
        right: 15px;
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }
    
    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .btn-submit-elegant {
        width: 100%;
        padding: 1rem;
    }
    
    .contact-icon-wrapper {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .testimonial-card-enriched {
        padding: 1.5rem;
    }
    
    .avatar-circle {
        width: 50px;
        height: 50px;
        min-width: 50px;
        font-size: 2rem;
    }
    
    .testimonial-name {
        font-size: 1.05rem;
    }
    
    .testimonial-meta {
        font-size: 0.85rem;
    }
    
    .reassurance-banner {
        gap: 1.5rem;
    }
    
    .reassurance-item {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .reassurance-banner {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (min-width: 769px) {
    .d-md-none {
        display: none !important;
    }
}

.reassurance-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: rgba(125, 111, 163, 0.08);
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #495057;
}

.badge-item i {
    color: var(--primary-purple);
    font-size: 1.2rem;
}