/* ===== RESET & VARIABLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Couleurs douces et chaudes */
    --primary-warmth: #C19A6B;
    --secondary-warmth: #D4A574;
    --terracotta: #CE8B68;
    --soft-cream: #FAF6F1;
    --warm-white: #FFFCF7;
    --sand: #E8DDD0;
    --clay: #B89078;
    --wood-dark: #8B6F47;
    --dark-text: #4A3F35;
    --light-text: #7A6F65;
    --subtle-grey: #E5DDD5;
    
    /* Polices */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Lora', serif;
    
    /* Espacements */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Transitions OPTIMISÉES */
    --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--dark-text);
    line-height: 1.7;
    background-color: var(--soft-cream);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(250, 246, 241, 0.97);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 15px rgba(139, 111, 71, 0.08);
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(193, 154, 107, 0.1);
}

.nav-container {
    height: 130px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.3rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 170px;
    width: auto;
    transition: var(--transition);
}

.logo-img:hover {
    transform: scale(1.05);
}

/* Backup si vous voulez garder le logo texte */
.logo-text {
    font-family: var(--font-secondary);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--wood-dark);
    letter-spacing: 0.5px;
    position: relative;
}

.logo-text::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 40%;
    height: 2px;
    background: var(--terracotta);
    border-radius: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--dark-text);
    font-weight: 400;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    letter-spacing: 0.3px;
}

.nav-link:hover {
    color: var(--terracotta);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--terracotta);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.cta-btn {
    background: linear-gradient(135deg, var(--terracotta), var(--clay));
    color: var(--warm-white) !important;
    padding: 0.7rem 1.8rem;
    border-radius: 30px;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(206, 139, 104, 0.2);
}

.cta-btn::after {
    display: none;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(206, 139, 104, 0.3);
}

/* Bouton de changement de langue */
.lang-btn {
    background: transparent;
    border: 2px solid var(--terracotta);
    color: var(--dark-text);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    font-family: var(--font-primary);
}

.lang-btn:hover {
    background: var(--terracotta);
    color: var(--warm-white);
    transform: translateY(-2px);
}

.lang-flag {
    font-size: 1.2rem;
}

.lang-text {
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--wood-dark);
    border-radius: 2px;
    transition: var(--transition);
}

/* ===== SECTION HERO ===== */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, rgba(250, 246, 241, 0.7) 0%, rgba(232, 221, 208, 0.7) 50%, rgba(212, 196, 180, 0.7) 100%), 
                url('../images/section_hero.png') center/cover no-repeat;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(206, 139, 104, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(193, 154, 107, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* Effet texture bois subtil */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(139, 111, 71, 0.02) 2px,
            rgba(139, 111, 71, 0.02) 4px
        );
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, rgba(250, 246, 241, 0.2) 30%, rgba(250, 246, 241, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    animation: fadeInUp 1.2s ease;
}

.hero-title {
    font-family: var(--font-secondary);
    font-size: 4.5rem;
    font-weight: 600;
    color: var(--wood-dark);
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    text-shadow: 2px 2px 8px rgba(139, 111, 71, 0.1);
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--light-text);
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, var(--terracotta), var(--clay));
    color: var(--warm-white);
    padding: 1.1rem 3rem;
    border-radius: 35px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.05rem;
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(206, 139, 104, 0.25);
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(206, 139, 104, 0.35);
}

/* ===== SECTION TECHNIQUES ===== */
.techniques {
    padding: var(--spacing-xl) 0;
    background: var(--soft-cream);
    position: relative;
}

.techniques::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-warmth), transparent);
    opacity: 0.3;
}

.section-title {
    font-family: var(--font-secondary);
    font-size: 2.8rem;
    text-align: center;
    color: var(--wood-dark);
    margin-bottom: 1rem;
    letter-spacing: 1px;
    position: relative;
    display: block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--terracotta);
    border-radius: 2px;
}

/* Centrage du trait en RTL */
[dir="rtl"] .section-title::after {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
}

.section-intro {
    text-align: center;
    color: var(--light-text);
    font-size: 1.1rem;
    margin-bottom: var(--spacing-lg);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 2rem;
    font-weight: 300;
}

.techniques-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: var(--spacing-md);
}

@media (max-width: 1024px) {
    .techniques-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.technique-card {
    background: var(--warm-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(139, 111, 71, 0.08);
    transition: var(--transition);
    border: 1px solid rgba(193, 154, 107, 0.1);
}

.technique-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(139, 111, 71, 0.15);
    border-color: rgba(206, 139, 104, 0.2);
}

.technique-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.technique-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(250, 246, 241, 0.3) 0%, rgba(232, 221, 208, 0.3) 100%);
    pointer-events: none;
    transition: var(--transition);
}

.technique-card:hover .technique-image::after {
    background: linear-gradient(135deg, rgba(250, 246, 241, 0.2) 0%, rgba(232, 221, 208, 0.2) 100%);
}

.technique-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.technique-card:hover .technique-img {
    transform: scale(1.05);
}

.technique-content {
    padding: 2rem;
}

.technique-content h3 {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    color: var(--wood-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.technique-content p {
    color: var(--light-text);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* ===== SECTION SOINS ===== */
.soins {
    padding: var(--spacing-xl) 0;
    background: var(--warm-white);
    position: relative;
}

.soins::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 15% 20%, rgba(193, 154, 107, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 85% 80%, rgba(206, 139, 104, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

/* Introduction Huiles Essentielles */
.huiles-intro {
    max-width: 900px;
    margin: 0 auto var(--spacing-lg);
    padding: 2rem 2.5rem;
    background: linear-gradient(135deg, var(--soft-cream) 0%, var(--sand) 100%);
    border-radius: 12px;
    border-left: 4px solid var(--terracotta);
    box-shadow: 0 4px 20px rgba(139, 111, 71, 0.08);
    position: relative;
}

.huiles-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(139, 111, 71, 0.01) 10px,
            rgba(139, 111, 71, 0.01) 20px
        );
    pointer-events: none;
    border-radius: 12px;
}

.huiles-text {
    color: var(--light-text);
    font-size: 1.05rem;
    line-height: 1.8;
    margin: 0 0 1.5rem 0;
    position: relative;
}

.huiles-text strong {
    color: var(--terracotta);
    font-weight: 600;
    font-family: var(--font-secondary);
}

.huiles-infos {
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(193, 154, 107, 0.2);
}

.info-item {
    flex: 1;
    color: var(--dark-text);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    padding-left: 1.5rem;
    position: relative;
}

.info-item::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--terracotta);
    font-size: 1.5rem;
    line-height: 1;
}

.soins-category {
    margin-bottom: var(--spacing-lg);
    position: relative;
}

.category-title {
    font-family: var(--font-secondary);
    font-size: 1.9rem;
    color: var(--clay);
    margin-bottom: var(--spacing-md);
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
    font-weight: 600;
    width: 100%;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--terracotta);
    border-radius: 2px;
}

/* Centrage en RTL */
[dir="rtl"] .category-title::after {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
}

.soins-grid {
    align-items: stretch;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.soin-card {
    background: var(--soft-cream);
    padding: 2.2rem;
    border-radius: 12px;
    box-shadow: 0 6px 25px rgba(139, 111, 71, 0.08);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(193, 154, 107, 0.1);
    position: relative;
    overflow: hidden;
}

/* Effet grain subtil sur les cartes */
.soin-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(139, 111, 71, 0.01) 10px,
            rgba(139, 111, 71, 0.01) 20px
        );
    pointer-events: none;
}

.soin-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(139, 111, 71, 0.15);
    border-color: rgba(206, 139, 104, 0.2);
}

.soin-card h4 {
    font-family: var(--font-secondary);
    font-size: 1.4rem;
    color: var(--wood-dark);
    margin-bottom: 1rem;
    font-weight: 600;
    position: relative;
}

.soin-description {
    color: var(--light-text);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    padding-bottom: 3rem;
    flex-grow: 1;
    font-size: 0.95rem;
    position: relative;
}

.soin-details {
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-top: auto;            /* pousse tout le bloc vers le bas */
    padding: 1.2rem;             /* padding normal */
    padding-top: 2rem;           /* ajoute un léger espace visuel */

    background: var(--warm-white);
    border-radius: 8px;
    border: 1px solid rgba(193, 154, 107, 0.15);
}

.duration {
    color: var(--light-text);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
}

.duration::before {
    content: '•';
    margin-right: 0.5rem;
    color: var(--terracotta);
}

.price {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--terracotta);
    font-family: var(--font-secondary);
}

.btn-secondary {
    display: block;
    text-align: center;
    background: linear-gradient(135deg, var(--terracotta), var(--clay));
    color: var(--warm-white);
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(206, 139, 104, 0.2);
    letter-spacing: 0.3px;
    position: relative;
    margin-top: 1.5rem;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(206, 139, 104, 0.3);
}

/* ===== SECTION À PROPOS ===== */
.apropos {
    padding: var(--spacing-xl) 0;
    background: var(--soft-cream);
    position: relative;
}

.apropos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-warmth), transparent);
    opacity: 0.3;
}

.apropos-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.apropos-image {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.apropos-img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 10px 40px rgba(139, 111, 71, 0.2);
    border: 5px solid var(--warm-white);
    transition: var(--transition);
}

.apropos-img:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 50px rgba(139, 111, 71, 0.25);
}

.apropos-text .section-title {
    text-align: left;
    margin-bottom: 2rem;
}

.apropos-text .section-title::after {
    left: 0;
    transform: none;
}

/* En RTL, aligner à droite */
[dir="rtl"] .apropos-text .section-title {
    text-align: right;
}

[dir="rtl"] .apropos-text .section-title::after {
    left: auto;
    right: 0;
}

.text-content p {
    color: var(--light-text);
    line-height: 1.9;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.text-content .highlight {
    color: var(--terracotta);
    font-weight: 500;
    font-style: italic;
    font-size: 1.15rem;
    display: block;
    margin-top: 2rem;
    padding-left: 1.5rem;
    border-left: 3px solid var(--terracotta);
}

/* ===== SECTION AVIS ===== */
.avis {
    padding: var(--spacing-xl) 0;
    background: var(--warm-white);
    position: relative;
}

.avis::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(193, 154, 107, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(206, 139, 104, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.avis-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: var(--spacing-lg);
}

.avis-card {
    background: var(--soft-cream);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(139, 111, 71, 0.08);
    transition: var(--transition);
    border: 1px solid rgba(193, 154, 107, 0.1);
    position: relative;
    overflow: hidden;
}

/* Effet grain subtil */
.avis-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(139, 111, 71, 0.01) 10px,
            rgba(139, 111, 71, 0.01) 20px
        );
    pointer-events: none;
}

.avis-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(139, 111, 71, 0.15);
    border-color: rgba(206, 139, 104, 0.2);
}

.avis-stars {
    color: var(--terracotta);
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    letter-spacing: 3px;
}

.avis-text {
    color: var(--light-text);
    font-size: 1.05rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
}

.avis-author {
    color: var(--wood-dark);
    font-weight: 600;
    font-size: 1.1rem;
    font-family: var(--font-secondary);
    text-align: right;
}

[dir="rtl"] .avis-author {
    text-align: left;
}

/* ===== SECTION AVIS / TÉMOIGNAGES ===== */
.avis {
    padding: var(--spacing-xl) 0;
    background: var(--warm-white);
    position: relative;
}

.avis::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-warmth), transparent);
    opacity: 0.3;
}

.avis::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 10% 30%, rgba(206, 139, 104, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 90% 70%, rgba(193, 154, 107, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.avis-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: var(--spacing-lg);
    position: relative;
}

.avis-card {
    background: var(--soft-cream);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(139, 111, 71, 0.1);
    transition: var(--transition);
    border: 1px solid rgba(193, 154, 107, 0.15);
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Texture grain subtile */
.avis-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(139, 111, 71, 0.01) 10px,
            rgba(139, 111, 71, 0.01) 20px
        );
    pointer-events: none;
}

.avis-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(139, 111, 71, 0.15);
    border-color: rgba(206, 139, 104, 0.25);
}

.avis-stars {
    color: var(--terracotta);
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    letter-spacing: 3px;
    position: relative;
}

.avis-quote-icon {
    font-family: var(--font-secondary);
    font-size: 5rem;
    color: rgba(206, 139, 104, 0.15);
    position: absolute;
    top: 15px;
    left: 15px;
    line-height: 1;
    pointer-events: none;
}

.avis-text {
    color: var(--light-text);
    line-height: 1.9;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.avis-author {
    color: var(--wood-dark);
    font-weight: 600;
    font-size: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(193, 154, 107, 0.2);
    font-family: var(--font-secondary);
    position: relative;
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(135deg, #4A3F35 0%, #5C4F42 100%);
    color: var(--warm-white);
    padding: var(--spacing-lg) 0 var(--spacing-md);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 3px,
            rgba(255, 252, 247, 0.02) 3px,
            rgba(255, 252, 247, 0.02) 6px
        );
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
    position: relative;
}

.footer-logo {
    font-family: var(--font-secondary);
    font-size: 1.7rem;
    color: var(--primary-warmth);
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-col h4 {
    color: var(--primary-warmth);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 500;
}

.footer-col p {
    margin-bottom: 0.7rem;
    color: rgba(255, 252, 247, 0.8);
    font-size: 0.95rem;
}

.footer-col a {
    color: rgba(255, 252, 247, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--primary-warmth);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 252, 247, 0.1);
    color: rgba(255, 252, 247, 0.6);
    position: relative;
}

/* ===== BOUTON WHATSAPP FLOTTANT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #25D366, #1ebe57);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .nav-container {
        padding: 0.4rem 1.5rem;
    }
    
    .logo-img {
        height: 120px;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(250, 246, 241, 0.98);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: 0 10px 30px rgba(139, 111, 71, 0.15);
        padding: 2rem 0;
        gap: 1.5rem;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .techniques-grid,
    .soins-grid {
        grid-template-columns: 1fr;
    }
    
    .apropos-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .avis-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .avis-card {
        padding: 2rem;
    }
    
    .huiles-intro {
        padding: 1.5rem 1.8rem;
        margin-bottom: 3rem;
    }
    
    .huiles-text {
        font-size: 1rem;
    }
    
    .huiles-infos {
        flex-direction: column;
        gap: 1rem;
    }
    
    .info-item {
        font-size: 0.9rem;
    }
    
    .apropos-img {
        width: 180px;
        height: 180px;
    }
    
    .avis-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .avis-card {
        padding: 2rem 1.8rem;
    }
    
    .avis-quote-icon {
        font-size: 4rem;
        top: 10px;
        left: 10px;
    }
    
    .apropos-text .section-title {
        text-align: center;
    }
    
    .apropos-text .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    [dir="rtl"] .apropos-text .section-title {
        text-align: center;
    }
    
    [dir="rtl"] .apropos-text .section-title::after {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
    
    .container {
        padding: 0 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .btn-primary {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }
    
    .technique-card,
    .soin-card {
        padding: 1.8rem;
    }
    
    .price {
        font-size: 1.4rem;
    }
}

/* ===== SUPPORT RTL (HÉBREU) ===== */
[dir="rtl"] {
    text-align: right;
}

[dir="rtl"] .nav-menu {
    flex-direction: row-reverse;
}

[dir="rtl"] .info-item {
    padding-left: 0;
    padding-right: 1.5rem;
}

[dir="rtl"] .info-item::before {
    left: auto;
    right: 0;
}

[dir="rtl"] .duration::before {
    margin-right: 0;
    margin-left: 0.5rem;
}

[dir="rtl"] .text-content .highlight {
    padding-left: 0;
    padding-right: 1.5rem;
    border-left: none;
    border-right: 3px solid var(--terracotta);
}

[dir="rtl"] .huiles-intro {
    border-left: none;
    border-right: 4px solid var(--terracotta);
}

[dir="rtl"] .footer-content {
    text-align: right;
}

/* Inversion des grilles en RTL si nécessaire */
[dir="rtl"] .techniques-grid,
[dir="rtl"] .soins-grid {
    direction: rtl;
}

/* Support mobile RTL */
@media (max-width: 768px) {
    [dir="rtl"] .nav-menu {
        flex-direction: column;
    }
    
    [dir="rtl"] .apropos-text .section-title::after {
        left: auto;
        right: 50%;
        transform: translateX(50%);
    }
}