/* ==========================================================================
   KARAN SANKOUMBA - LANDING PAGE CSS
   Version: 1.0
   Mobile First Design
   ========================================================================== */

/* ==========================================================================
   1. VARIABLES CSS & PALETTE MYSTIQUE
   ========================================================================== */

:root {
    /* Couleurs principales */
    --or-mystique: #D4AF37;
    --or-clair: #F4D03F;
    --or-fonce: #B8860B;
    
    --violet-profond: #4A148C;
    --violet-moyen: #6A1B9A;
    --violet-clair: #8E24AA;
    
    --bordeaux: #8B0000;
    --bordeaux-clair: #C41E3A;
    
    --noir-profond: #0A0A0A;
    --noir-doux: #1A1A1A;
    --noir-medium: #2A2A2A;
    
    --creme: #FFF8DC;
    --creme-fonce: #F5E6D3;
    
    --blanc: #FFFFFF;
    
    /* Typographie */
    --font-display: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Espacements */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    --spacing-2xl: 6rem;
    
    /* Border radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    
    /* Ombres */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
    --shadow-glow-gold: 0 0 30px rgba(212, 175, 55, 0.4);
    --shadow-glow-purple: 0 0 30px rgba(106, 27, 154, 0.4);
    --shadow-glow-burgundy: 0 0 30px rgba(139, 0, 0, 0.4);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.4s ease;
    --transition-slow: 0.6s ease;
}

/* ==========================================================================
   2. RESET & BASE
   ========================================================================== */

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

html {
    scroll-behavior: smooth;
    font-size: 18px;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--noir-doux);
    background-color: var(--blanc);
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

button {
    font-family: inherit;
    border: none;
    background: none;
    cursor: pointer;
}

ul, ol {
    list-style-position: inside;
}

strong {
    font-weight: 700;
    color: var(--or-mystique);
}

/* ==========================================================================
   3. TYPOGRAPHIE
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
    color: var(--noir-profond);
}

h1 {
    font-size: 2.5rem;
    font-weight: 900;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: var(--spacing-sm);
}

.text-intro {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--violet-profond);
}

.text-highlight {
    padding: var(--spacing-sm);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(106, 27, 154, 0.1));
    border-left: 4px solid var(--or-mystique);
    border-radius: var(--radius-sm);
    font-weight: 600;
}

.text-special {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--bordeaux);
    text-align: center;
    margin: var(--spacing-md) 0;
}

.text-small {
    font-size: 0.875rem;
    color: var(--noir-medium);
}

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

/* ==========================================================================
   4. CONTAINER & GRID
   ========================================================================== */

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
    overflow-x: hidden;
}

@media (min-width: 480px) {
    .container {
        padding: 0 var(--spacing-md);
    }
}

/* ==========================================================================
   5. BOUTONS (CTA)
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-sm) var(--spacing-md);
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
    cursor: pointer;
    text-align: center;
    justify-content: center;
    min-height: 48px;
}

.btn i {
    width: 20px;
    height: 20px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--or-mystique), var(--or-fonce));
    color: var(--blanc);
    box-shadow: var(--shadow-glow-gold);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--or-clair), var(--or-mystique));
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.5);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--violet-profond), var(--violet-moyen));
    color: var(--blanc);
    box-shadow: var(--shadow-glow-purple);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--violet-moyen), var(--violet-clair));
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(106, 27, 154, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--or-mystique);
    border: 2px solid var(--or-mystique);
}

.btn-outline:hover {
    background: var(--or-mystique);
    color: var(--blanc);
}

.btn-outline-light {
    background: transparent;
    color: var(--creme);
    border: 2px solid var(--creme);
}

.btn-outline-light:hover {
    background: var(--creme);
    color: var(--violet-profond);
}

.btn-large {
    padding: var(--spacing-md) var(--spacing-lg);
    font-size: 1.125rem;
}

.btn-giant {
    padding: var(--spacing-lg) var(--spacing-xl);
    font-size: 1.25rem;
    font-weight: 700;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.btn-giant i {
    width: 32px;
    height: 32px;
}

/* ==========================================================================
   6. HEADER / NAVIGATION
   ========================================================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-sm) 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--or-mystique);
}

.logo-icon {
    font-size: 1.5rem;
}

/* Menu mobile burger */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 28px;
    height: 24px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--or-mystique);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: linear-gradient(180deg, var(--violet-profond), var(--noir-profond));
    display: flex;
    flex-direction: column;
    padding: var(--spacing-2xl) var(--spacing-md);
    gap: var(--spacing-sm);
    transition: right var(--transition-normal);
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.5);
}

.nav.active {
    right: 0;
}

.nav-link {
    padding: var(--spacing-sm);
    color: var(--creme);
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.nav-link:hover {
    background: rgba(212, 175, 55, 0.2);
    color: var(--or-mystique);
    transform: translateX(4px);
}

.nav-link-cta {
    background: var(--or-mystique);
    color: var(--noir-profond);
    text-align: center;
    margin-top: var(--spacing-md);
}

.nav-link-cta:hover {
    background: var(--or-clair);
    transform: scale(1.05);
}

/* ==========================================================================
   7. SECTIONS COMMUNES
   ========================================================================== */

.section {
    position: relative;
    padding: var(--spacing-xl) 0;
    overflow: hidden;
}

@media (min-width: 480px) {
    .section {
        padding: var(--spacing-2xl) 0;
    }
}

.section-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.05;
}

.section-header {
    margin-bottom: var(--spacing-xl);
}

.section-subtitle {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--or-mystique);
    margin-bottom: var(--spacing-xs);
}

.section-title {
    font-size: 2rem;
    background: linear-gradient(135deg, var(--violet-profond), var(--bordeaux));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-intro {
    font-size: 1.125rem;
    color: var(--noir-medium);
    margin-top: var(--spacing-sm);
    max-width: 800px;
}

.section-header.text-center .section-intro {
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================================================
   8. HERO SECTION
   ========================================================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--violet-profond) 0%, var(--noir-profond) 100%);
    padding-top: 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    z-index: 0;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-xs) var(--spacing-md);
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid var(--or-mystique);
    border-radius: var(--radius-lg);
    color: var(--or-mystique);
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: var(--spacing-md);
    animation: fadeInDown 0.8s ease;
}

.badge-icon {
    font-size: 1.125rem;
}

.hero-title {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.hero-title-main {
    font-size: 2.25rem;
    font-weight: 900;
    color: var(--or-mystique);
    text-shadow: 0 4px 16px rgba(212, 175, 55, 0.5);
    animation: fadeInUp 1s ease 0.2s both;
}

@media (min-width: 480px) {
    .hero-title-main {
        font-size: 3rem;
    }
}

.hero-title-sub {
    font-size: 1.25rem;
    color: var(--creme);
    font-weight: 400;
    animation: fadeInUp 1s ease 0.4s both;
}

@media (min-width: 480px) {
    .hero-title-sub {
        font-size: 1.5rem;
    }
}

.hero-title-highlight {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--blanc);
    background: linear-gradient(135deg, var(--bordeaux), var(--bordeaux-clair));
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-md);
    display: inline-block;
    margin-top: var(--spacing-sm);
    animation: fadeInUp 1s ease 0.6s both;
}

@media (min-width: 480px) {
    .hero-title-highlight {
        font-size: 1.25rem;
    }
}

.hero-description {
    font-size: 1.125rem;
    color: var(--creme);
    margin-bottom: var(--spacing-xl);
    opacity: 0.9;
    animation: fadeIn 1s ease 0.8s both;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
    animation: fadeInUp 1s ease 1s both;
}

.hero-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-sm);
    animation: fadeIn 1s ease 1.2s both;
}

.hero-link {
    padding: var(--spacing-xs) var(--spacing-sm);
    color: var(--or-clair);
    font-size: 0.875rem;
    border-bottom: 1px solid transparent;
    transition: all var(--transition-fast);
}

.hero-link:hover {
    color: var(--or-mystique);
    border-bottom-color: var(--or-mystique);
}

/* ==========================================================================
   9. SECTION RENCONTRE
   ========================================================================== */

.section-rencontre {
    background: var(--creme);
}

.rencontre-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

.rencontre-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.image-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, var(--or-mystique) 0%, transparent 70%);
    opacity: 0;
    transition: opacity var(--transition-slow);
    pointer-events: none;
}

.image-wrapper:hover .image-glow {
    opacity: 0.2;
}

.rencontre-text p {
    margin-bottom: var(--spacing-md);
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-sm);
    margin: var(--spacing-lg) 0;
}

@media (min-width: 480px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }
}

.stat-item {
    text-align: center;
    padding: var(--spacing-md);
    background: var(--blanc);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    color: var(--or-mystique);
    line-height: 1;
    margin-bottom: var(--spacing-xs);
}

@media (min-width: 480px) {
    .stat-number {
        font-size: 2.5rem;
    }
}

.stat-label {
    font-size: 0.875rem;
    color: var(--noir-medium);
    font-weight: 600;
}

/* ==========================================================================
   10. SECTION OBJETS SACRÉS
   ========================================================================== */

.section-objets-sacres {
    background: linear-gradient(180deg, var(--noir-profond) 0%, var(--violet-profond) 100%);
    color: var(--creme);
}

.section-objets-sacres .section-title {
    -webkit-text-fill-color: var(--or-mystique);
    background: none;
    color: var(--or-mystique);
}

.objets-intro {
    font-size: 1.125rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto var(--spacing-2xl) auto;
    opacity: 0.9;
}

.objet-card {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-2xl);
    padding: var(--spacing-xl);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(10px);
}

.objet-image .image-glow {
    opacity: 0.1;
}

.glow-purple {
    background: radial-gradient(circle at center, var(--violet-moyen) 0%, transparent 70%);
}

.glow-gold {
    background: radial-gradient(circle at center, var(--or-mystique) 0%, transparent 70%);
}

.glow-burgundy {
    background: radial-gradient(circle at center, var(--bordeaux) 0%, transparent 70%);
}

.objet-image:hover .image-glow {
    opacity: 0.3;
}

.objet-content {
    position: relative;
}

.objet-number {
    position: absolute;
    top: -20px;
    left: 0;
    font-family: var(--font-display);
    font-size: 6rem;
    font-weight: 900;
    color: rgba(212, 175, 55, 0.1);
    line-height: 1;
    z-index: 0;
}

.objet-title {
    position: relative;
    font-size: 1.75rem;
    color: var(--or-mystique);
    margin-bottom: var(--spacing-xs);
    z-index: 1;
}

.objet-subtitle {
    font-size: 1.125rem;
    color: var(--or-clair);
    font-weight: 600;
    margin-bottom: var(--spacing-md);
}

.objet-powers {
    margin: var(--spacing-lg) 0;
}

.objet-powers h4 {
    color: var(--or-mystique);
    margin-bottom: var(--spacing-md);
}

.powers-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.powers-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm);
    background: rgba(212, 175, 55, 0.1);
    border-left: 3px solid var(--or-mystique);
    border-radius: var(--radius-sm);
}

.powers-list i {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: var(--or-mystique);
    margin-top: 2px;
}

.success-rate {
    text-align: center;
    padding: var(--spacing-lg);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(139, 0, 0, 0.2));
    border-radius: var(--radius-md);
    margin: var(--spacing-lg) 0;
}

.rate-number {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 900;
    color: var(--or-mystique);
    line-height: 1;
    margin-bottom: var(--spacing-xs);
}

.rate-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--creme);
}

/* ==========================================================================
   11. SECTION SERVICES
   ========================================================================== */

.section-services {
    background: var(--blanc);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.service-card {
    position: relative;
    padding: var(--spacing-md);
    background: var(--creme);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

@media (min-width: 768px) {
    .service-card {
        padding: var(--spacing-lg);
    }
}

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

.service-featured {
    background: linear-gradient(135deg, var(--violet-profond), var(--bordeaux));
    color: var(--blanc);
}

.service-featured .service-title,
.service-featured .service-subtitle {
    color: var(--or-mystique);
}

.service-featured p {
    margin-bottom: var(--spacing-sm);
}

.service-featured .service-list {
    margin: var(--spacing-md) 0;
}

.service-featured .service-stats {
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-md);
}

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--or-mystique), var(--or-fonce));
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-sm);
    box-shadow: var(--shadow-glow-gold);
}

@media (min-width: 768px) {
    .service-icon {
        width: 64px;
        height: 64px;
        margin-bottom: var(--spacing-md);
    }
}

.service-icon i {
    width: 32px;
    height: 32px;
    color: var(--blanc);
}

.service-image {
    margin: var(--spacing-md) 0;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.service-title {
    font-size: 1.25rem;
    color: var(--violet-profond);
    margin-bottom: var(--spacing-xs);
    line-height: 1.3;
}

@media (min-width: 768px) {
    .service-title {
        font-size: 1.5rem;
    }
}

.service-subtitle {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--bordeaux);
    margin-bottom: var(--spacing-sm);
}

@media (min-width: 768px) {
    .service-subtitle {
        font-size: 1rem;
        margin-bottom: var(--spacing-md);
    }
}

.service-list {
    list-style: none;
    margin: var(--spacing-sm) 0;
}

@media (min-width: 768px) {
    .service-list {
        margin: var(--spacing-md) 0;
    }
}

.service-list li {
    padding: var(--spacing-xs) 0;
    padding-left: var(--spacing-md);
    position: relative;
}

.service-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--or-mystique);
    font-weight: 700;
}

.service-featured .service-list li::before {
    color: var(--or-clair);
}

.service-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.stat {
    text-align: center;
}

.stat strong {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--or-clair);
    margin-bottom: var(--spacing-xs);
}

.stat span {
    font-size: 0.875rem;
    opacity: 0.9;
}

.services-cta {
    text-align: center;
    padding: var(--spacing-xl);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(106, 27, 154, 0.1));
    border-radius: var(--radius-xl);
}

.services-cta p {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
}

/* ==========================================================================
   12. SECTION TÉMOIGNAGES
   ========================================================================== */

.section-temoignages {
    background: var(--creme-fonce);
}

.temoignages-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.temoignage-card {
    padding: var(--spacing-lg);
    background: var(--blanc);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border-top: 4px solid var(--or-mystique);
}

.temoignage-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.temoignage-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--or-mystique), var(--or-fonce));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--blanc);
    flex-shrink: 0;
}

.temoignage-name {
    font-size: 1.25rem;
    color: var(--violet-profond);
    margin-bottom: var(--spacing-xs);
}

.temoignage-meta {
    font-size: 0.875rem;
    color: var(--noir-medium);
}

.temoignage-type {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-xs) var(--spacing-md);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(139, 0, 0, 0.1));
    border-radius: var(--radius-md);
    font-weight: 600;
    color: var(--bordeaux);
    font-size: 0.875rem;
    margin-bottom: var(--spacing-md);
}

.temoignage-type i {
    width: 16px;
    height: 16px;
}

.temoignage-situation {
    font-weight: 600;
    color: var(--violet-profond);
    margin-bottom: var(--spacing-md);
    padding: var(--spacing-sm);
    background: rgba(106, 27, 154, 0.05);
    border-radius: var(--radius-sm);
}

.temoignage-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--noir-doux);
    font-style: italic;
    padding-left: var(--spacing-md);
    border-left: 3px solid var(--or-mystique);
    margin-bottom: var(--spacing-md);
}

.temoignage-result {
    text-align: center;
    padding: var(--spacing-md);
    background: linear-gradient(135deg, var(--or-mystique), var(--or-fonce));
    color: var(--blanc);
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 1.125rem;
}

.temoignages-cta {
    text-align: center;
}

/* ==========================================================================
   13. SECTION PROCESSUS
   ========================================================================== */

.section-processus {
    background: var(--blanc);
}

.processus-image {
    margin: var(--spacing-xl) 0;
    text-align: center;
}

.processus-image img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    margin: 0 auto;
}

.processus-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.step-card {
    position: relative;
    padding: var(--spacing-lg);
    background: var(--creme);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.step-number {
    position: absolute;
    top: -20px;
    left: var(--spacing-md);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--or-mystique), var(--or-fonce));
    color: var(--blanc);
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 900;
    border-radius: 50%;
    box-shadow: var(--shadow-glow-gold);
}

.step-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--violet-profond), var(--violet-moyen));
    border-radius: var(--radius-md);
    margin: var(--spacing-lg) 0 var(--spacing-md) 0;
}

.step-icon i {
    width: 32px;
    height: 32px;
    color: var(--or-mystique);
}

.step-title {
    font-size: 1.5rem;
    color: var(--violet-profond);
    margin-bottom: var(--spacing-xs);
}

.step-subtitle {
    font-size: 1rem;
    font-weight: 600;
    color: var(--bordeaux);
    margin-bottom: var(--spacing-md);
}

.step-list {
    list-style: none;
    margin: var(--spacing-md) 0;
}

.step-list li {
    padding: var(--spacing-xs) 0 var(--spacing-xs) var(--spacing-md);
    position: relative;
}

.step-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--or-mystique);
    font-weight: 700;
}

.step-cta {
    margin-top: var(--spacing-md);
}

.guarantee-box {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(139, 0, 0, 0.1));
    border-left: 4px solid var(--bordeaux);
    border-radius: var(--radius-sm);
    margin: var(--spacing-md) 0;
}

.guarantee-box i {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    color: var(--bordeaux);
}

.guarantee-box p {
    margin: 0;
}

.processus-cta {
    text-align: center;
}

/* ==========================================================================
   14. SECTION ZONES D'INTERVENTION
   ========================================================================== */

.section-zones {
    background: var(--creme);
}

.zones-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.zone-card {
    padding: var(--spacing-lg);
    background: var(--blanc);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.zone-principale {
    border-top: 4px solid var(--or-mystique);
}

.zone-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-md);
    border-bottom: 2px solid var(--creme);
}

.zone-header i {
    width: 32px;
    height: 32px;
    color: var(--or-mystique);
}

.zone-title {
    font-size: 1.25rem;
    color: var(--violet-profond);
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

@media (min-width: 480px) {
    .zone-title {
        font-size: 1.5rem;
    }
}

.zone-subtitle {
    font-size: 0.875rem;
    color: var(--bordeaux);
    font-weight: 600;
}

.zone-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.zone-item {
    padding: var(--spacing-md);
    background: var(--creme);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--or-mystique);
}

.zone-item strong {
    display: block;
    color: var(--violet-profond);
    margin-bottom: var(--spacing-xs);
}

.zone-item span {
    font-size: 0.875rem;
    color: var(--noir-medium);
}

.zone-note {
    margin-top: var(--spacing-md);
    padding: var(--spacing-md);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(106, 27, 154, 0.1));
    border-radius: var(--radius-sm);
    font-weight: 600;
    text-align: center;
}

.cabinet-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: linear-gradient(135deg, var(--violet-profond), var(--noir-profond));
    color: var(--creme);
    border-radius: var(--radius-xl);
    margin-top: var(--spacing-xl);
}

@media (min-width: 480px) {
    .cabinet-info {
        padding: var(--spacing-xl);
        gap: var(--spacing-lg);
    }
}

.cabinet-info h3 {
    color: var(--or-mystique);
    font-size: 1.125rem;
    margin-bottom: var(--spacing-md);
}

@media (min-width: 480px) {
    .cabinet-info h3 {
        font-size: 1.25rem;
    }
}

.cabinet-info p {
    margin-bottom: var(--spacing-sm);
    line-height: 1.7;
    word-wrap: break-word;
    overflow-wrap: break-word;
    font-size: 0.875rem;
}

@media (min-width: 480px) {
    .cabinet-info p {
        font-size: 1rem;
    }
}

.cabinet-info a {
    color: var(--or-clair);
    text-decoration: underline;
    word-break: break-all;
    font-size: 0.875rem;
    display: inline-block;
    max-width: 100%;
}

.cabinet-info a,
.info-item a {
    font-size: 0.75rem !important; /* Force 12px sur mobile */
    word-break: break-word !important; /* Coupe aux mots */
    hyphens: auto !important;
    line-height: 1.4 !important;
    padding: 0 !important;
}

@media (min-width: 480px) {
    .cabinet-info a {
        font-size: 1rem;
    }
}

.cabinet-info a:hover {
    color: var(--or-mystique);
}

/* ==========================================================================
   15. SECTION FAQ
   ========================================================================== */

.section-faq {
    background: var(--blanc);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.faq-item {
    background: var(--creme);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    text-align: left;
    font-weight: 600;
    font-size: 1rem;
    color: var(--violet-profond);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.faq-question:hover {
    background: rgba(106, 27, 154, 0.05);
}

.faq-question i {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: var(--or-mystique);
    transition: transform var(--transition-fast);
}

.faq-question[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.faq-item.active .faq-answer {
    max-height: 2000px;
}

.faq-answer > div {
    padding: 0 var(--spacing-md) var(--spacing-md) var(--spacing-md);
}

.faq-answer p {
    margin-bottom: var(--spacing-sm);
}

.faq-answer ul,
.faq-answer ol {
    margin: var(--spacing-sm) 0;
    padding-left: var(--spacing-md);
}

.faq-answer li {
    margin-bottom: var(--spacing-xs);
}

.faq-answer a {
    color: var(--or-mystique);
    text-decoration: underline;
}

.faq-answer a:hover {
    color: var(--bordeaux);
}

/* ==========================================================================
   16. SECTION GARANTIES
   ========================================================================== */

.section-garanties {
    background: var(--creme-fonce);
}

.garanties-intro {
    text-align: center;
    font-size: 1.125rem;
    max-width: 800px;
    margin: 0 auto var(--spacing-xl) auto;
}

.garanties-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.garantie-card {
    padding: var(--spacing-lg);
    background: var(--blanc);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    text-align: center;
}

.garantie-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--or-mystique), var(--or-fonce));
    border-radius: 50%;
    margin: 0 auto var(--spacing-md) auto;
    box-shadow: var(--shadow-glow-gold);
}

.garantie-icon i {
    width: 32px;
    height: 32px;
    color: var(--blanc);
}

.garantie-title {
    font-size: 1.25rem;
    color: var(--violet-profond);
    margin-bottom: var(--spacing-md);
}

.garanties-restrictions {
    padding: var(--spacing-xl);
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.1), rgba(106, 27, 154, 0.1));
    border-radius: var(--radius-xl);
    margin-bottom: var(--spacing-xl);
}

.garanties-restrictions h3 {
    font-size: 1.5rem;
    color: var(--bordeaux);
    margin-bottom: var(--spacing-md);
    text-align: center;
}

.garanties-restrictions ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.garanties-restrictions li {
    padding: var(--spacing-sm) var(--spacing-md);
    background: var(--blanc);
    border-radius: var(--radius-sm);
    font-weight: 600;
}

.garanties-conclusion {
    text-align: center;
    font-size: 1.125rem;
    font-weight: 600;
    max-width: 800px;
    margin: 0 auto;
}

/* ==========================================================================
   17. SECTION CONTACT FINAL
   ========================================================================== */

.section-contact {
    position: relative;
    background: linear-gradient(135deg, var(--violet-profond) 0%, var(--noir-profond) 100%);
    color: var(--creme);
}

.section-contact .section-background {
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    opacity: 1;
}

.contact-content {
    position: relative;
    z-index: 1;
}

.contact-text {
    margin-bottom: var(--spacing-xl);
}

.contact-text .section-subtitle {
    color: var(--or-clair);
}

.contact-text .section-title {
    -webkit-text-fill-color: var(--or-mystique);
    background: none;
    color: var(--or-mystique);
}

.contact-intro {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-md);
}

.contact-question {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--or-mystique);
    margin-bottom: var(--spacing-lg);
}

.contact-pain-points {
    padding: var(--spacing-lg);
    background: rgba(139, 0, 0, 0.2);
    border-left: 4px solid var(--bordeaux);
    border-radius: var(--radius-md);
    margin: var(--spacing-lg) 0;
}

.contact-pain-points p {
    font-weight: 700;
    color: var(--or-clair);
    margin-bottom: var(--spacing-md);
}

.contact-pain-points ul {
    list-style: none;
}

.contact-pain-points li {
    padding: var(--spacing-xs) 0 var(--spacing-xs) var(--spacing-md);
    position: relative;
}

.contact-pain-points li::before {
    content: "✗";
    position: absolute;
    left: 0;
    color: var(--bordeaux-clair);
    font-weight: 700;
}

.contact-stop {
    font-size: 1.5rem;
    font-weight: 900;
    text-align: center;
    color: var(--or-mystique);
    margin: var(--spacing-lg) 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-urgency {
    font-size: 1.25rem;
    text-align: center;
    padding: var(--spacing-lg);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(139, 0, 0, 0.2));
    border-radius: var(--radius-md);
    margin: var(--spacing-lg) 0;
}

.contact-cta {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.contact-cta a {
    font-size: 0.75rem !important; /* Force 12px sur mobile */
    word-break: break-word !important; /* Coupe aux mots */
    hyphens: auto !important;
    line-height: 1.4 !important;
    padding: 0 !important;
}

.contact-info-final {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    padding: var(--spacing-xl);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(10px);
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
}

.info-item i {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: var(--or-mystique);
    margin-top: 2px;
}

@media (min-width: 480px) {
    .info-item i {
        width: 32px;
        height: 32px;
    }
}

.info-item strong {
    display: block;
    color: var(--or-clair);
    margin-bottom: var(--spacing-xs);
    font-size: 0.875rem;
}

@media (min-width: 480px) {
    .info-item strong {
        font-size: 1rem;
    }
}

.info-item p {
    font-size: 0.875rem;
}

@media (min-width: 480px) {
    .info-item p {
        font-size: 1rem;
    }
}

.info-item a {
    color: var(--or-clair);
    text-decoration: underline;
    word-break: break-all;
    overflow-wrap: break-word;
    font-size: 0.875rem;
    display: inline-block;
    max-width: 100%;
}

@media (min-width: 480px) {
    .info-item a {
        font-size: 1rem;
    }
}

.info-item a:hover {
    color: var(--or-mystique);
}

/* ==========================================================================
   18. FOOTER
   ========================================================================== */

.footer {
    background: var(--noir-profond);
    color: var(--creme);
    padding: var(--spacing-2xl) 0 var(--spacing-md) 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
    padding-bottom: var(--spacing-xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-title {
    font-size: 1.25rem;
    color: var(--or-mystique);
    margin-bottom: var(--spacing-md);
}

.footer-about p {
    margin-bottom: var(--spacing-sm);
    opacity: 0.8;
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-xs);
    margin-top: var(--spacing-md);
}

.badge {
    padding: var(--spacing-xs) var(--spacing-sm);
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid var(--or-mystique);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
}

.footer-links ul,
.footer-services ul {
    list-style: none;
}

.footer-links li,
.footer-services li {
    margin-bottom: var(--spacing-xs);
}

.footer-links a {
    opacity: 0.8;
    transition: all var(--transition-fast);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--or-mystique);
    transform: translateX(4px);
}

.footer-contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
}

.footer-contact-list i {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--or-mystique);
    margin-top: 2px;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
}

.footer-legal,
.footer-keywords,
.footer-disclaimer {
    font-size: 0.875rem;
    opacity: 0.7;
    margin-bottom: var(--spacing-xs);
}

.footer-keywords {
    color: var(--or-clair);
}

/* ==========================================================================
   19. BOUTONS FLOTTANTS & BACK TO TOP
   ========================================================================== */

.floating-actions {
    position: fixed;
    bottom: var(--spacing-md);
    right: var(--spacing-md);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    z-index: 999;
}

.floating-btn {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
    animation: pulse 2s infinite;
}

.floating-btn i {
    width: 28px;
    height: 28px;
    color: var(--blanc);
}

.floating-phone {
    background: linear-gradient(135deg, var(--or-mystique), var(--or-fonce));
}

.floating-phone:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.6);
}

.floating-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.6);
}

.back-to-top {
    position: fixed;
    bottom: calc(var(--spacing-md) + 120px);
    right: var(--spacing-md);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--violet-profond);
    color: var(--or-mystique);
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    z-index: 998;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--violet-moyen);
    transform: translateY(-4px);
}

.back-to-top i {
    width: 24px;
    height: 24px;
}

/* ==========================================================================
   20. ANIMATIONS
   ========================================================================== */

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* ==========================================================================
   21. RESPONSIVE - TABLET (768px+)
   ========================================================================== */

@media (min-width: 768px) {
    
    /* Typographie */
    h1 {
        font-size: 3.5rem;
    }
    
    h2 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    /* Hero */
    .hero-title-main {
        font-size: 4rem;
    }
    
    .hero-title-sub {
        font-size: 2rem;
    }
    
    .hero-cta {
        flex-direction: row;
        justify-content: center;
    }
    
    /* Navigation desktop */
    .mobile-menu-toggle {
        display: none;
    }
    
    .nav {
        position: static;
        width: auto;
        max-width: none;
        height: auto;
        background: transparent;
        flex-direction: row;
        padding: 0;
        gap: var(--spacing-md);
        box-shadow: none;
    }
    
    .nav-link {
        color: var(--creme);
    }
    
    .nav-link-cta {
        margin-top: 0;
    }
    
    /* Rencontre */
    .rencontre-content {
        flex-direction: row;
        align-items: center;
    }
    
    .rencontre-image,
    .rencontre-text {
        flex: 1;
    }
    
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    /* Objets sacrés */
    .objet-card-left,
    .objet-card-right {
        flex-direction: row;
        align-items: center;
    }
    
    .objet-card-right {
        flex-direction: row-reverse;
    }
    
    .objet-image,
    .objet-content {
        flex: 1;
    }
    
    /* Services */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    

    /* SERVICE IMAGES - Styles améliorés */
    .service-image {
        margin: 1.5rem 0;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 20px rgba(212, 175, 55, 0.2);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .service-image:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 30px rgba(212, 175, 55, 0.3);
    }

    .service-image img {
        width: 100%;
        height: auto;
        display: block;
        transition: transform 0.3s ease;
    }

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

    /* Image secondaire (talismans) - Plus petite */
    .service-image-secondary {
        max-width: 300px;
        margin: 1.5rem auto;
    }

    /* Image rituel (poupée) - Avec badge */
    .service-image-ritual {
        position: relative;
    }

    .ritual-badge {
        position: absolute;
        top: 1rem;
        right: 1rem;
        background: rgba(139, 0, 0, 0.95);
        color: #FFF8DC;
        padding: 0.5rem 1rem;
        border-radius: 50px;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.9rem;
        font-weight: 600;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
        animation: pulseGlow 2s ease-in-out infinite;
    }

    .ritual-badge i {
        width: 18px;
        height: 18px;
    }

    @keyframes pulseGlow {
        0%, 100% {
            box-shadow: 0 4px 15px rgba(139, 0, 0, 0.5);
        }
        50% {
            box-shadow: 0 4px 25px rgba(139, 0, 0, 0.8);
        }
    }

        
    /* DIVIDER MYSTIQUE */
    .divider-mystique {
        padding: 0;
        margin: 0;
        position: relative;
        overflow: hidden;
    }

    .divider-image-wrapper {
        position: relative;
        width: 100%;
        max-height: 400px;
        overflow: hidden;
    }

    .divider-image {
        width: 100%;
        height: auto;
        display: block;
        object-fit: cover;
        filter: brightness(0.7);
        transition: filter 0.3s ease;
    }

    .divider-image-wrapper:hover .divider-image {
        filter: brightness(0.85);
    }

    .divider-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(10, 10, 10, 0.4);
        backdrop-filter: blur(2px);
    }

    .divider-text {
        font-family: 'Playfair Display', serif;
        font-size: 1.8rem;
        font-weight: 700;
        color: #D4AF37;
        text-align: center;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
        padding: 0 2rem;
        max-width: 800px;
        animation: fadeInUp 0.8s ease;
    }

    
    /* Témoignages */
    .temoignages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Processus */
    .processus-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Zones */
    .zones-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cabinet-info {
        grid-template-columns: 1fr;
    }
    
    /* Garanties */
    .garanties-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Contact */
    .contact-info-final {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ==========================================================================
   SECTION DANGERS DE L'AMOUR - CSS
   ========================================================================== */

/* ==========================================================================
   1. SECTION PRINCIPALE
   ========================================================================== */

.section-dangers-amour {
    background: linear-gradient(135deg, var(--noir-profond) 0%, var(--noir-doux) 50%, var(--violet-profond) 100%);
    padding: var(--spacing-xl) 0;
    position: relative;
    overflow: hidden;
}

/* Effet de glow ambient */
.section-dangers-amour::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    animation: pulseGlow 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

/* ==========================================================================
   2. IMAGE HERO
   ========================================================================== */

.dangers-hero-image {
    position: relative;
    width: 100%;
    max-height: 400px;
    overflow: hidden;
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-lg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.dangers-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.7);
    transition: filter var(--transition-slow), transform var(--transition-slow);
}

.dangers-hero-image:hover .dangers-hero-img {
    filter: brightness(0.85);
    transform: scale(1.05);
}

/* Overlay avec titre */
.dangers-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.4), rgba(74, 20, 140, 0.3));
    backdrop-filter: blur(2px);
}

.dangers-hero-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--or-mystique);
    text-align: center;
    text-shadow: 
        0 0 20px rgba(212, 175, 55, 0.8),
        0 4px 10px rgba(0, 0, 0, 0.9);
    padding: 0 2rem;
    animation: fadeInUp 1s ease;
}

/* ==========================================================================
   3. CONTENU PRINCIPAL (3 COLONNES)
   ========================================================================== */

.dangers-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    position: relative;
    z-index: 1;
}

/* Image gauche (bougies) */
.dangers-image-left {
    display: none;
}

/* Texte central */
.dangers-text {
    color: var(--creme);
    line-height: 1.8;
}

.dangers-text p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

/* Paragraphe d'introduction */
.dangers-intro {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--or-clair);
    line-height: 1.8;
}

/* Paragraphe mis en avant */
.dangers-highlight {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(106, 27, 154, 0.15));
    border-left: 4px solid var(--or-mystique);
    padding: var(--spacing-md);
    border-radius: var(--radius-sm);
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

/* Paragraphe final */
.dangers-final {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--or-mystique);
    text-align: center;
    padding: var(--spacing-md);
    background: rgba(212, 175, 55, 0.1);
    border-radius: var(--radius-sm);
}

/* Mots en strong = or */
.dangers-text strong {
    color: var(--or-mystique);
    font-weight: 700;
}

/* Image droite (objets rituels) */
.dangers-image-right {
    margin-top: var(--spacing-md);
}

.dangers-img-rituels,
.dangers-img-bougies {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-md);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.3);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.dangers-img-rituels:hover,
.dangers-img-bougies:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.5);
}

/* ==========================================================================
   4. BADGES (4 COLONNES)
   ========================================================================== */

.dangers-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.dangers-badge {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9), rgba(74, 20, 140, 0.2));
    border: 2px solid var(--or-mystique);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    text-align: center;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
    position: relative;
    overflow: hidden;
}

/* Effet de glow au hover */
.dangers-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.1), transparent);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.dangers-badge:hover::before {
    opacity: 1;
}

.dangers-badge:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    border-color: var(--or-clair);
}

/* Icône du badge */
.badge-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--spacing-sm);
    background: linear-gradient(135deg, var(--or-mystique), var(--or-clair));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    transition: transform var(--transition-normal);
}

.dangers-badge:hover .badge-icon {
    transform: scale(1.1) rotate(5deg);
}

.badge-icon i {
    width: 32px;
    height: 32px;
    color: var(--noir-profond);
}

/* Titre du badge */
.badge-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--or-mystique);
    margin-bottom: var(--spacing-xs);
}

/* Texte du badge */
.badge-text {
    font-size: 0.95rem;
    color: var(--creme-fonce);
    line-height: 1.6;
}

/* ==========================================================================
   5. CTA FINAL
   ========================================================================== */

.dangers-cta {
    text-align: center;
    padding: var(--spacing-lg) 0;
    position: relative;
    z-index: 1;
}

.dangers-cta-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--creme);
    margin-bottom: var(--spacing-md);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.dangers-cta .btn {
    font-size: 1.25rem;
    padding: 1rem 2.5rem;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.dangers-cta .btn:hover {
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.6);
    transform: translateY(-3px);
}

/* ==========================================================================
   6. RESPONSIVE - TABLET (768px+)
   ========================================================================== */

@media (min-width: 768px) {
    /* Hero image plus grande */
    .dangers-hero-image {
        max-height: 500px;
    }
    
    .dangers-hero-title {
        font-size: 3.5rem;
    }
    
    /* Contenu en 2 colonnes */
    .dangers-content {
        grid-template-columns: 2fr 1fr;
        gap: var(--spacing-lg);
    }
    
    /* Texte à gauche */
    .dangers-text {
        grid-column: 1;
    }
    
    /* Image objets à droite */
    .dangers-image-right {
        grid-column: 2;
        margin-top: 0;
    }
    
    /* Badges en 4 colonnes */
    .dangers-badges {
        grid-template-columns: repeat(4, 1fr);
    }
    
    /* Texte des badges plus petit sur 4 colonnes */
    .badge-title {
        font-size: 1.125rem;
    }
    
    .badge-text {
        font-size: 0.875rem;
    }
}

/* ==========================================================================
   7. RESPONSIVE - DESKTOP (1024px+)
   ========================================================================== */

@media (min-width: 1024px) {
    /* Section avec plus d'espace */
    .section-dangers-amour {
        padding: var(--spacing-2xl) 0;
    }
    
    .dangers-hero-image {
        max-height: 600px;
        border-radius: var(--radius-lg);
    }
    
    .dangers-hero-title {
        font-size: 4rem;
    }
    
    .dangers-content {
        grid-template-columns: 1fr 2fr 1fr;
        gap: var(--spacing-xl);
    }
    
    /* Image bougies à gauche (VISIBLE) */
    .dangers-image-left {
        display: block;
        grid-column: 1;
        align-self: center;
    }
    
    /* Texte au centre */
    .dangers-text {
        grid-column: 2;
    }
    
    /* Image objets à droite */
    .dangers-image-right {
        grid-column: 3;
        align-self: start;
    }
    
    /* Images plus grandes */
    .dangers-img-bougies {
        max-width: 100%;
    }
    
    .dangers-img-rituels {
        max-width: 100%;
    }
    
    /* Texte paragraphes plus grands */
    .dangers-text p {
        font-size: 1.25rem;
    }
    
    .dangers-intro {
        font-size: 1.375rem;
    }
    
    .dangers-final {
        font-size: 1.375rem;
    }
    
    /* Badges plus espacés */
    .dangers-badges {
        gap: var(--spacing-lg);
    }
    
    .badge-icon {
        width: 70px;
        height: 70px;
    }
    
    .badge-icon i {
        width: 36px;
        height: 36px;
    }
    
    .badge-title {
        font-size: 1.375rem;
    }
    
    .badge-text {
        font-size: 1rem;
    }
}

/* ==========================================================================
   8. RESPONSIVE - LARGE DESKTOP (1440px+)
   ========================================================================== */

@media (min-width: 1440px) {
    .dangers-hero-image {
        max-height: 700px;
    }
    
    .dangers-hero-title {
        font-size: 5rem;
    }
    
    .dangers-text p {
        font-size: 1.375rem;
    }
    
    .dangers-intro {
        font-size: 1.5rem;
    }
}

/* ==========================================================================
   9. ANIMATIONS
   ========================================================================== */

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

/* Animation au scroll */
.dangers-content,
.dangers-badges,
.dangers-cta {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.dangers-content {
    animation-delay: 0.2s;
}

.dangers-badges {
    animation-delay: 0.4s;
}

.dangers-cta {
    animation-delay: 0.6s;
}

/* ==========================================================================
   10. RESPONSIVE MOBILE - PETITS ÉCRANS (< 480px)
   ========================================================================== */

@media (max-width: 480px) {
    .dangers-hero-title {
        font-size: 2rem;
    }
    
    .dangers-text p {
        font-size: 1rem;
    }
    
    .dangers-intro,
    .dangers-final {
        font-size: 1.125rem;
    }
    
    .dangers-badges {
        gap: var(--spacing-sm);
    }
    
    .badge-icon {
        width: 50px;
        height: 50px;
    }
    
    .badge-icon i {
        width: 24px;
        height: 24px;
    }
    
    .badge-title {
        font-size: 1rem;
    }
    
    .badge-text {
        font-size: 0.875rem;
    }
    
    .dangers-cta-text {
        font-size: 1.125rem;
    }
    
    .dangers-cta .btn {
        font-size: 1.125rem;
        padding: 0.875rem 1.5rem;
    }
}


/* ==========================================================================
   22. RESPONSIVE - DESKTOP (1024px+)
   ========================================================================== */

@media (min-width: 1024px) {
    
    /* Typographie */
    h1 {
        font-size: 4rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
    
    /* Hero */
    .hero-title-main {
        font-size: 5rem;
    }
    
    .hero-title-sub {
        font-size: 2.5rem;
    }
    
    /* Services */
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .service-featured {
        grid-column: span 3;
    }
    
    /* Témoignages */
    .temoignages-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* Cabinet info 3 colonnes */
    .cabinet-info {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* Garanties */
    .garanties-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
}


.footer-logo {
    margin-bottom: 1.5rem;
    text-align: center;
}

.footer-logo-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
    transition: transform var(--transition-normal);
}

.footer-logo-image:hover {
    transform: scale(1.05) rotate(5deg);
}

@media (max-width: 768px) {
    .footer-logo-image {
        width: 60px;
        height: 60px;
    }
}

/* ==========================================================================
   23. RESPONSIVE - LARGE DESKTOP (1440px+)
   ========================================================================== */

@media (min-width: 1440px) {
    
    .container {
        max-width: 1400px;
    }
    
    .hero-title-main {
        font-size: 6rem;
    }
    
    .section-title {
        font-size: 3.5rem;
    }
}

/* ==========================================================================

   ========================================================================== */
@media (max-width: 768px) {
    .divider-image-wrapper {
        max-height: 300px;
    }
    
    .divider-text {
        font-size: 1.3rem;
        padding: 0 1rem;
    }
    
    .service-image-secondary {
        max-width: 250px;
    }
    
    .ritual-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}

/* ==========================================================================

   ========================================================================== */

@media (max-width: 480px) {
    .divider-image-wrapper {
        max-height: 250px;
    }
    
    .divider-text {
        font-size: 1.1rem;
    }
    
    .service-image-secondary {
        max-width: 200px;
    }
}

/* ==========================================================================
   24. UTILITAIRES
   ========================================================================== */

.hidden {
    display: none !important;
}

.visible {
    display: block !important;
}

/* Smooth scroll pour iOS */
@supports (-webkit-overflow-scrolling: touch) {
    html {
        -webkit-overflow-scrolling: touch;
    }
}

.cabinet-info a,
.info-item a {
    font-size: 0.75rem !important; /* Force 12px sur mobile */
    word-break: break-word !important; /* Coupe aux mots */
    hyphens: auto !important;
    line-height: 1.4 !important;
    padding: 0 !important;
}

