/* ============================================
   RESET & BASE STYLES
   ============================================ */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #ffffff;
    overflow-x: hidden;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

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

h2 {
    font-size: 2.2rem;
    font-weight: 600;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    color: #4a4a4a;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* ============================================
   CONTAINER
   ============================================ */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    transition: opacity 0.3s ease;
}

.logo-link:hover {
    opacity: 0.8;
}

.logo {
    height: 70px;
    width: auto;
    max-width: 300px;
    object-fit: contain;
}

.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.burger-line {
    width: 100%;
    height: 3px;
    background-color: #1a1a1a;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.burger-menu:hover .burger-line {
    background-color: #d4af8c;
}

.burger-active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.burger-active .burger-line:nth-child(2) {
    opacity: 0;
}

.burger-active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.menu-overlay {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: rgba(255, 255, 255, 0.95);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(5px);
}

.overlay-active {
    display: block;
    opacity: 1;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: #4a4a4a;
    position: relative;
    padding: 0.3rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #d4af8c, #e8c4a8);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #1a1a1a;
}

.nav-link:hover::after {
    width: 100%;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    margin-top: 80px;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #faf9f7 0%, #ffffff 50%, #fefcfb 100%);
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(232, 196, 168, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    max-width: 900px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #6a6a6a;
    margin-bottom: 2.5rem;
    font-weight: 300;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: 'Montserrat', sans-serif;
}

.btn-primary {
    background: linear-gradient(135deg, #d4af8c 0%, #e8c4a8 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(212, 175, 140, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 140, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: #1a1a1a;
    border: 2px solid #d4af8c;
}

.btn-secondary:hover {
    background-color: #d4af8c;
    color: #ffffff;
    transform: translateY(-2px);
}

/* ============================================
   SECTIONS
   ============================================ */

section {
    padding: 6rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 1.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #d4af8c, #e8c4a8);
    border-radius: 2px;
}

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    color: #6a6a6a;
    line-height: 1.8;
}

/* ============================================
   PRESTATIONS SECTION
   ============================================ */

.prestations {
    background-color: #ffffff;
}

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

/* Écrans moyens (desktop réduit) */
@media (max-width: 1200px) {
    .prestations-grid {
        gap: 1.5rem;
    }
    
    .prestation-card {
        padding: 2rem 1.5rem;
    }
    
    .prestation-image {
        height: 180px;
    }
}

.prestation-card {
    background-color: #faf9f7;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 140, 0.1);
}

.prestation-link {
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
}

.prestation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-color: rgba(212, 175, 140, 0.3);
}

.prestation-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    background-color: #faf9f7;
}

.prestation-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.prestation-card:hover .prestation-img {
    transform: scale(1.05);
}

.prestation-title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.prestation-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #5a5a5a;
}

/* ============================================
   FORMATIONS SECTION
   ============================================ */

.formations {
    background: linear-gradient(180deg, #ffffff 0%, #faf9f7 100%);
}

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

.formation-card {
    background-color: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 140, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.formation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(212, 175, 140, 0.4);
}

.formation-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    line-height: 1.4;
}

.formation-audience {
    font-size: 0.9rem;
    color: #6a6a6a;
    font-style: italic;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(212, 175, 140, 0.2);
}

.formation-details {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background-color: #faf9f7;
    border-radius: 8px;
    flex-wrap: wrap;
}

.formation-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.formation-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a1a1a;
}

.formation-value {
    font-size: 1rem;
    font-weight: 500;
    color: #d4af8c;
}

.formation-content {
    margin: 1.5rem 0;
}

.formation-content-title {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
}

.formation-list {
    list-style: none;
    margin: 1.5rem 0;
    padding-left: 0;
}

.formation-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #4a4a4a;
}

.formation-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #d4af8c;
    font-weight: bold;
}

.formation-certificate {
    font-size: 0.85rem;
    color: #8a8a8a;
    font-style: italic;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(212, 175, 140, 0.2);
}

.formations-cta {
    text-align: center;
    margin-top: 3rem;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   FONDATRICE SECTION
   ============================================ */

.fondatrice-section {
    background: linear-gradient(180deg, #ffffff 0%, #faf9f7 100%);
    padding: 6rem 0;
}

.fondatrice-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.fondatrice-image-container {
    text-align: center;
}

.fondatrice-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 15px;
    filter: grayscale(100%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    aspect-ratio: 3/4;
}

.fondatrice-text {
    padding: 2rem 0;
}

.fondatrice-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.fondatrice-role {
    font-size: 1.2rem;
    color: #d4af8c;
    font-weight: 500;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.fondatrice-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a4a4a;
    text-align: justify;
}

/* ============================================
   FORMATIONS SECTION
   ============================================ */

.formations-section {
    background: linear-gradient(180deg, #ffffff 0%, #faf9f7 100%);
    padding: 6rem 0;
}

.formations-tarifs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.formation-tarif-card {
    background-color: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 140, 0.2);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
}

.formation-tarif-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(212, 175, 140, 0.4);
}

.formation-tarif-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    line-height: 1.4;
    font-weight: 600;
}

.formation-tarif-price {
    font-size: 2rem;
    font-weight: 700;
    color: #d4af8c;
    font-family: 'Playfair Display', serif;
}

.formations-cta {
    text-align: center;
    margin-top: 3rem;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   AVIS GOOGLE SECTION
   ============================================ */

.avis-section {
    background-color: #ffffff;
}

.avis-container {
    margin-top: 3rem;
}

.google-rating {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #faf9f7 0%, #fefcfb 100%);
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 140, 0.2);
}

.rating-stars {
    display: flex;
    justify-content: center;
    gap: 0.3rem;
    margin-bottom: 1rem;
}

.rating-stars .star {
    font-size: 2rem;
    color: #fbbc04;
}

.rating-score {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
    font-family: 'Playfair Display', serif;
    margin-bottom: 0.5rem;
}

.rating-count {
    font-size: 1rem;
    color: #6a6a6a;
}

.avis-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.avis-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 140, 0.2);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.avis-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(212, 175, 140, 0.4);
}

.avis-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.avis-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.avis-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d4af8c 0%, #e8c4a8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 600;
    font-size: 1.2rem;
}

.avis-info {
    display: flex;
    flex-direction: column;
}

.avis-name {
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.3rem;
}

.avis-date {
    font-size: 0.85rem;
    color: #8a8a8a;
}

.avis-stars {
    color: #fbbc04;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.avis-text {
    color: #4a4a4a;
    line-height: 1.7;
    font-style: italic;
    margin: 0;
}

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

/* ============================================
   À PROPOS SECTION
   ============================================ */

.apropos {
    background-color: #ffffff;
}

.apropos-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
    align-items: start;
}

.apropos-text {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #4a4a4a;
}

.apropos-text p {
    margin-bottom: 1.5rem;
}

.apropos-why {
    background: linear-gradient(135deg, #faf9f7 0%, #fefcfb 100%);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 140, 0.2);
}

.why-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.why-list {
    list-style: none;
    padding-left: 0;
}

.why-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: #4a4a4a;
    line-height: 1.6;
}

.why-list li::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: #d4af8c;
    font-size: 0.8rem;
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact {
    background: linear-gradient(180deg, #faf9f7 0%, #ffffff 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-subtitle {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.address-block,
.agenda-block {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 140, 0.2);
}

.address {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 1rem;
}

.contact-note {
    font-size: 0.9rem;
    color: #8a8a8a;
    font-style: italic;
    margin-top: 1rem;
}

.agenda-text {
    color: #4a4a4a;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.contact-form-container {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 140, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.95rem;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem 1.2rem;
    border: 1px solid rgba(212, 175, 140, 0.3);
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: #1a1a1a;
    background-color: #faf9f7;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4af8c;
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(212, 175, 140, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ============================================
   DEVIS PAGE
   ============================================ */

.devis-section {
    margin-top: 80px;
    padding: 4rem 0;
    min-height: calc(100vh - 80px);
    background: linear-gradient(180deg, #faf9f7 0%, #ffffff 100%);
}

.devis-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.devis-header {
    text-align: center;
    margin-bottom: 3rem;
}

.devis-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.devis-subtitle {
    font-size: 1.1rem;
    color: #6a6a6a;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

.devis-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.checkbox-group {
    margin-top: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: #4a4a4a;
    line-height: 1.6;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.2rem;
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #d4af8c;
    flex-shrink: 0;
}

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.form-actions .btn {
    flex: 1;
    min-width: 200px;
}

/* ============================================
   TARIFS PAGE
   ============================================ */

.tarifs-section {
    margin-top: 80px;
    padding: 4rem 0;
    min-height: calc(100vh - 80px);
    background: linear-gradient(180deg, #faf9f7 0%, #ffffff 100%);
}

.tarifs-main-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.tarifs-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #6a6a6a;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.tarif-category {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 15px;
    margin-bottom: 2.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(212, 175, 140, 0.2);
    scroll-margin-top: 100px;
}

.tarif-category-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(212, 175, 140, 0.3);
}

.tarif-subsection {
    margin-bottom: 2.5rem;
}

.tarif-subsection:last-child {
    margin-bottom: 0;
}

.tarif-subsection-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-weight: 600;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid rgba(212, 175, 140, 0.2);
}

.service-name {
    display: block;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.service-desc {
    display: block;
    font-size: 0.85rem;
    color: #6a6a6a;
    font-style: italic;
    line-height: 1.5;
}

.tarif-table {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tarif-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 1.5rem;
    background-color: #faf9f7;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.tarif-row:hover {
    background-color: #f5f3f0;
    transform: translateX(5px);
}

.tarif-service {
    font-size: 1rem;
    color: #4a4a4a;
    font-weight: 500;
}

.tarif-price {
    font-size: 1.3rem;
    font-weight: 600;
    color: #d4af8c;
    font-family: 'Playfair Display', serif;
}

.tarifs-cta {
    text-align: center;
    margin-top: 3rem;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background-color: #1a1a1a;
    color: #e0e0e0;
    padding: 3rem 0 2rem;
}

.footer-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #ffffff;
    font-weight: 600;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-link {
    color: #d4af8c;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #e8c4a8;
}

.footer-copyright {
    font-size: 0.85rem;
    color: #8a8a8a;
    margin-top: 1rem;
}

.mentions-legales {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mentions-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 2rem;
    text-align: center;
}

.mentions-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.mentions-section {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 8px;
}

.mentions-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: #d4af8c;
    margin-bottom: 1rem;
    font-weight: 600;
}

.mentions-section p {
    font-size: 0.9rem;
    color: #c0c0c0;
    line-height: 1.7;
    margin-bottom: 0.8rem;
}

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

.mentions-link {
    color: #d4af8c;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.mentions-link:hover {
    color: #e8c4a8;
}

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

/* Tablette */
@media (max-width: 968px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .burger-menu {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        max-width: 400px;
        height: calc(100vh - 80px);
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        gap: 0;
        padding: 2rem 0;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
        z-index: 1000;
    }
    
    .nav-menu-active {
        transform: translateX(0);
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(212, 175, 140, 0.1);
    }
    
    .nav-link {
        display: block;
        padding: 1.2rem 2rem;
        width: 100%;
        text-align: left;
        font-size: 1rem;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .nav-link:hover {
        background-color: rgba(212, 175, 140, 0.1);
        color: #1a1a1a;
    }
    
    .apropos-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .fondatrice-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .fondatrice-image {
        max-width: 300px;
    }
    
    .fondatrice-title {
        font-size: 2rem;
    }
    
    .fondatrice-description {
        text-align: left;
    }
    
    .prestations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .formations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .tarif-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .tarif-price {
        align-self: flex-end;
    }
    
    .avis-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .devis-container {
        padding: 2rem 1.5rem;
    }
    
    .devis-title {
        font-size: 2rem;
    }
    
    .devis-subtitle {
        font-size: 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .form-actions .btn {
        width: 100%;
    }
    
    .tarif-category {
        padding: 2rem 1.5rem;
    }
    
    .tarif-category-title {
        font-size: 1.5rem;
    }
    
    .tarifs-main-title {
        font-size: 2rem;
    }
    
    .tarifs-cta {
        flex-direction: column;
    }
    
    .tarifs-cta .btn {
        width: 100%;
    }
    .nav-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 2rem;
    }
    
    .burger-menu {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        gap: 0;
        padding: 2rem 0;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
        z-index: 1000;
    }
    
    .nav-menu-active {
        transform: translateX(0);
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(212, 175, 140, 0.1);
    }
    
    .nav-link {
        display: block;
        padding: 1.2rem 2rem;
        width: 100%;
        text-align: left;
        font-size: 1.1rem;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .nav-link:hover {
        background-color: rgba(212, 175, 140, 0.1);
        color: #1a1a1a;
    }
    
    .hero {
        margin-top: 120px;
        min-height: 70vh;
        padding: 2rem 1.5rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    section {
        padding: 4rem 0;
    }
    
    .container {
        padding: 0 1.5rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-intro {
        font-size: 1rem;
    }
    
    .prestations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .formations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .prestation-card,
    .formation-card {
        padding: 2rem 1.5rem;
    }
    
    .prestation-image {
        height: 180px;
    }
    
    .prestation-title {
        font-size: 1.2rem;
    }
    
    .prestation-description {
        font-size: 0.9rem;
    }
    
    .tarif-category {
        padding: 1.5rem 1rem;
    }
    
    .tarif-category-title {
        font-size: 1.3rem;
    }
    
    .tarif-service {
        font-size: 0.95rem;
    }
    
    .tarif-price {
        font-size: 1.1rem;
    }
    
    .tarif-row {
        padding: 1rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .tarif-price {
        align-self: flex-end;
    }
    
    .tarif-subsection {
        margin-bottom: 2rem;
    }
    
    .tarif-subsection-title {
        font-size: 1.1rem;
    }
    
    .service-name {
        font-size: 0.95rem;
    }
    
    .service-desc {
        font-size: 0.8rem;
    }
    
    .apropos-why {
        padding: 2rem 1.5rem;
    }
    
    .contact-form-container {
        padding: 2rem 1.5rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .mentions-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .mentions-section {
        padding: 1.2rem;
    }
    
    .mentions-title {
        font-size: 1.3rem;
    }
    
    .mentions-subtitle {
        font-size: 1rem;
    }
}

/* Petit mobile */
@media (max-width: 480px) {
    .logo {
        height: 55px;
        max-width: 220px;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.2rem;
    }
    
    .devis-container {
        padding: 1.5rem 1rem;
    }
    
    .devis-title {
        font-size: 1.8rem;
    }
    
    .prestations-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .formations-grid {
        grid-template-columns: 1fr;
    }
    
    .formations-tarifs-grid {
        grid-template-columns: 1fr;
    }
    
    .formation-tarif-card {
        padding: 2rem 1.5rem;
    }
    
    .formation-tarif-title {
        font-size: 1.1rem;
    }
    
    .formation-tarif-price {
        font-size: 1.6rem;
    }
    
    .prestation-card {
        padding: 1.5rem 1rem;
    }
    
    .prestation-image {
        height: 160px;
    }
    
    .prestation-title {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .prestation-description {
        font-size: 0.85rem;
        line-height: 1.6;
    }
    
    .formations-tarifs-grid {
        grid-template-columns: 1fr;
    }
    
    .formation-tarif-card {
        padding: 2rem 1.5rem;
    }
    
    .formation-tarif-title {
        font-size: 1.1rem;
    }
    
    .formation-tarif-price {
        font-size: 1.6rem;
    }
    
    .fondatrice-section {
        padding: 4rem 0;
    }
    
    .fondatrice-content {
        gap: 2rem;
    }
    
    .fondatrice-image {
        max-width: 250px;
    }
    
    .fondatrice-title {
        font-size: 1.8rem;
    }
    
    .fondatrice-role {
        font-size: 1rem;
    }
    
    .fondatrice-description {
        font-size: 1rem;
    }
    
    .tarifs-main-title {
        font-size: 1.8rem;
    }
    
    .tarifs-intro {
        font-size: 0.95rem;
        padding: 0 1rem;
    }
    
    .tarif-category {
        padding: 1.5rem 1rem;
        margin-bottom: 2rem;
    }
    
    .tarif-category-title {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }
    
    .tarif-table {
        gap: 0.8rem;
    }
    
    .tarif-row {
        padding: 0.9rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .tarif-service {
        font-size: 0.9rem;
        width: 100%;
    }
    
    .tarif-price {
        font-size: 1.1rem;
        align-self: flex-end;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .section-intro {
        font-size: 0.95rem;
        padding: 0 0.5rem;
    }
    
    .google-rating {
        padding: 1.5rem;
    }
    
    .rating-score {
        font-size: 2.5rem;
    }
    
    .avis-card {
        padding: 1.5rem;
    }
}

