/* Font Face - Police Milkshake */
@font-face {
    font-family: 'Milkshake';
    src: url('Milkshake%20400.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* Variables CSS */
:root {
    --primary-blue: #1a2a4a;
    --secondary-blue: #2c3e50;
    --light-blue: #3498db;
    --gold: #d4af37;
    --light-gold: #f4e4bc;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --gray: #6c757d;
    --dark-gray: #343a40;
    --text-dark: #2c3e50;
    
    --font-primary: 'Playfair Display', serif;
    --font-secondary: 'Open Sans', sans-serif;
    
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 6px 25px rgba(0, 0, 0, 0.15);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

/* CORRECTION GLOBALE LIENS FOOTER - Empêche le violet ET le soulignement (sauf bouton) */
.footer-bottom a:not(.footer-booking-btn),
.footer-bottom a:not(.footer-booking-btn):link,
.footer-bottom a:not(.footer-booking-btn):visited,
.footer-bottom a:not(.footer-booking-btn):active {
    color: #ffffff !important;
    text-decoration: none !important;
    text-decoration-line: none !important;
    text-decoration-style: none !important;
    text-decoration-color: transparent !important;
    border-bottom: none !important;
    outline: none !important;
}

/* Styles spéciaux pour les liens légaux */
.footer-legal-links a,
.footer-legal-links a:link,
.footer-legal-links a:visited,
.footer-legal-links a:active {
    color: #888888 !important;
    text-decoration: none !important;
    text-decoration-line: none !important;
    text-decoration-style: none !important;
    text-decoration-color: transparent !important;
    border-bottom: none !important;
    outline: none !important;
}

/* Hover doré mais sans soulignement (sauf bouton) */
.footer-bottom a:not(.footer-booking-btn):hover {
    color: #d4af37 !important;
    text-decoration: none !important;
    text-decoration-line: none !important;
    text-decoration-style: none !important;
    text-decoration-color: transparent !important;
    border-bottom: none !important;
}

/* Hover gris clair pour les liens légaux */
.footer-legal-links a:hover {
    color: #aaaaaa !important;
    text-decoration: none !important;
    text-decoration-line: none !important;
    text-decoration-style: none !important;
    text-decoration-color: transparent !important;
    border-bottom: none !important;
}

/* Reset et base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Fix overflow pour mobile */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

/* Assurer la visibilité des images */
img {
    opacity: 1;
    transition: opacity 0.5s ease;
}

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

/* Typographie */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    margin-bottom: 1rem;
}

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

h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
}

h3 {
    font-size: 1.8rem;
    color: var(--primary-blue);
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Header et Navigation */
.header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
}

.navbar {
    padding: 1rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-image {
    height: 40px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

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

.logo-circle {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.logo-circle::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, var(--gold), var(--light-gold));
    border-radius: 50%;
    z-index: -1;
}

.logo-letter {
    color: var(--gold);
    font-size: 1.8rem;
    font-weight: 700;
    font-family: var(--font-primary);
}

.logo-text {
    font-family: 'Milkshake', var(--font-primary);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-blue);
}

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

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
    z-index: 1001;
}

.hamburger:hover {
    background: rgba(212, 175, 55, 0.1);
}

.bar {
    width: 28px;
    height: 3px;
    background: var(--primary-blue);
    margin: 4px 0;
    transition: all 0.3s ease-in-out;
    border-radius: 2px;
}

/* Animation du hamburger vers X */
.hamburger.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-6px, 6px);
    background: var(--gold);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-6px, -6px);
    background: var(--gold);
}

/* Hero Section */
.hero {
    padding: 120px 0 100px;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: -200px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

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

.hero-welcome {
    margin-bottom: 1.5rem;
}

.hero-greeting {
    font-size: 1.1rem;
    color: var(--gray);
    font-weight: 400;
    display: block;
    margin-bottom: 0.5rem;
    font-style: italic;
}

.hero-text h1 {
    font-family: 'Milkshake', var(--font-primary);
    color: var(--primary-blue);
    margin-bottom: 0;
    font-size: 3.2rem;
    padding-top: 0.9rem;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 1.5rem;
    font-family: var(--font-primary);
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    color: var(--primary-blue);
    font-weight: 500;
    font-size: 0.95rem;
}

.hero-feature i {
    color: var(--gold);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.hero-buttons {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Carrousel Hero */
.hero-carousel {
    width: 450px;
    height: 380px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(26, 42, 74, 0.15);
    animation: gentle-float 6s ease-in-out infinite;
    background: var(--white);
}

/* Carousel mobile - cachée par défaut */
.hero-carousel-mobile {
    display: none;
}

.hero-carousel::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    background: linear-gradient(135deg, var(--gold), var(--light-gold));
    border-radius: 28px;
    z-index: -1;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 15px;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.hero-image-main {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 15px;
    cursor: pointer;
}

/* Indicateurs de carrousel discrets */
.carousel-indicators {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.indicator.active {
    background: var(--gold);
    transform: scale(1.3);
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.4);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.1);
}

/* Planity Rating - Style simple avec coche verte */
.planity-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: var(--gray);
    justify-content: center;
    width: 250px;
}

.planity-rating i {
    color: #28a745;
    font-size: 0.9rem;
}

.planity-rating span {
    font-weight: 400;
    color: var(--gray);
}



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



/* Boutons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid;
    cursor: pointer;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background: transparent;
    color: var(--gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-blue);
    border-color: var(--primary-blue);
}

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

/* Sections communes */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-divider {
    width: 80px;
    height: 3px;
    background: var(--gold);
    margin: 0 auto 2rem;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* À Propos - Version moderne */
.about {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 20%;
    right: -150px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.about-content {
    position: relative;
    z-index: 2;
}

/* Section intro avec portrait */
.about-intro {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.about-text-main {
    padding-right: 2rem;
}

.about-story h3 {
    color: var(--primary-blue);
    margin-bottom: 2rem;
    font-size: 1.8rem;
    font-family: 'Milkshake', var(--font-primary);
}

.about-story p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

.about-story strong {
    color: var(--gold);
    font-weight: 600;
}

/* Portrait d'Audrey */
.about-portrait {
    display: flex;
    justify-content: center;
    align-items: center;
}

.portrait-container {
    position: relative;
    width: 300px;
    height: 350px;
}

.audrey-portrait {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(26, 42, 74, 0.1);
}


  
  /* Image */
  .portrait img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: inherit;   /* même arrondi que le conteneur */
    position: relative;
    z-index: 1;
  }
  
  /* Cadre doré */
  .portrait-decoration {
    position: absolute;
    inset: 0;                 /* colle au conteneur */
    border: 2px solid var(--gold);
    border-radius: 20px;
    opacity: 0.2;
    transform: scale(1.12);   /* crée un espace régulier autour */
    transform-origin: center;
    z-index: 0;
  }
  
  /* Ajustement mobile (cadre moins large si trop serré) */
  @media (max-width: 480px) {
    .portrait-decoration {
      transform: scale(1.06);
    }
  }
  


/* Section combinée approche + atouts - Pleine largeur */
.about-combined-section {
    margin: 4rem 0 3rem 0;
    padding: 3rem 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.03), rgba(212, 175, 55, 0.06));
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.philosophy-content-light {
    max-width: 900px;
    text-align: center;
    padding: 0;
    margin: 0 auto;
    background: transparent;
    border: none;
    box-shadow: none;
}

.philosophy-content-light h4 {
    color: var(--primary-blue);
    margin-bottom: 1.2rem;
    font-size: 1.3rem;
    font-family: 'Milkshake', var(--font-primary);
}

.philosophy-content-light p {
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 1rem;
    margin: 0 0 1.5rem 0;
    font-style: italic;
    opacity: 0.9;
}

/* Atouts intégrés dans la section */
.expertise-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    transition: var(--transition);
}

.highlight-item:hover {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-1px);
}

.highlight-item i {
    color: var(--gold);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.highlight-item span {
    color: var(--text-dark);
    font-size: 0.9rem;
    font-style: normal;
    opacity: 1;
}

.highlight-item strong {
    color: var(--gold);
    font-weight: 600;
}


/* CTA de la section About */
.about-cta {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.about-cta .btn {
    padding: 14px 30px;
    font-size: 1rem;
    border-radius: 8px;
    text-decoration: none;
    transition: var(--transition);
}

/* Avis Clients */
.reviews {
    background: var(--white);
    padding: 80px 0;
    position: relative;
}

.reviews::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

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

.review-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.15);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 280px;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--gold);
    font-family: serif;
    opacity: 0.3;
}

.review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border-color: var(--gold);
}

.review-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 1.5rem;
}

.review-stars i {
    color: var(--gold);
    font-size: 1rem;
}

.review-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.review-author {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    text-align: left;
    margin-top: auto;
}

.review-author strong {
    color: var(--primary-blue);
    font-size: 1rem;
    font-family: 'Milkshake', var(--font-primary);
}

.review-author span {
    color: var(--gray);
    font-size: 0.9rem;
    opacity: 0.8;
}

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

.reviews-planity {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--gray);
    font-size: 0.95rem;
    padding: 1rem 1.5rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 25px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
}

.reviews-planity:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--gold);
    transform: translateY(-1px);
}

.reviews-planity i {
    color: var(--gold);
    font-size: 0.9rem;
}

/* Services */
.services {
    background: var(--light-gray);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 20%;
    right: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 2;
    margin-top: 3rem;
    align-items: stretch;
    padding-top: 0.5rem;
}

/* Services prioritaires - mise en avant */
.service-card.featured {
    position: relative;
    border: 2px solid var(--gold);
    background: linear-gradient(135deg, #fefdfb, #fcf9f0);
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.2);
}

.service-card.featured::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--gold), #e6c760, var(--gold));
    border-radius: 12px;
    z-index: -1;
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

.featured-badge {
    position: absolute;
    top: 8px;
    right: 15px;
    background: var(--gold);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.4);
    z-index: 15;
    white-space: nowrap;
}

.featured-badge i {
    font-size: 0.65rem;
}

.service-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: visible;
    border: 1px solid rgba(212, 175, 55, 0.1);
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--light-gold));
    transform: scaleX(0);
    transition: var(--transition);
}


.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(26, 42, 74, 0.15);
    border-color: var(--gold);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, var(--gold), var(--light-gold));
    border-radius: 50%;
    z-index: -1;
}

.service-icon i {
    color: var(--gold);
    font-size: 2rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

/* Conteneur pour le contenu principal de la carte */
.service-card > *:not(.service-pricing) {
    flex-shrink: 0;
}

.service-card p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    min-height: 60px;
    display: flex;
    align-items: flex-start;
}

.service-card ul {
    list-style: none;
    text-align: left;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin: 1.5rem 0;
    min-height: 120px;
}

.service-card li {
    padding: 0.5rem 0;
    color: var(--gray);
    position: relative;
    padding-left: 1.5rem;
}

.service-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

/* Tarifs des services */
.service-pricing {
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    min-height: 60px;
}

.price-range {
    font-weight: 600;
    color: var(--primary-blue);
    font-size: 1.1rem;
}

.price-link {
    color: var(--gold);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border: 1px solid var(--gold);
    border-radius: 20px;
    transition: var(--transition);
}

.price-link:hover {
    background: var(--gold);
    color: white;
    transform: translateY(-1px);
}

/* Tarifs */
.pricing {
    background: var(--white);
}

.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-button {
    padding: 12px 24px;
    background: transparent;
    border: 2px solid var(--primary-blue);
    border-radius: var(--border-radius);
    color: var(--primary-blue);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.tab-button.active,
.tab-button:hover {
    background: var(--primary-blue);
    color: var(--white);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.pricing-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--gold);
}

.pricing-item h4 {
    color: var(--primary-blue);
    margin: 0;
}

.price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold);
}

/* Réservation */
.booking {
    background: var(--light-gray);
}

.booking-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* Nouveau bouton principal de réservation - Style harmonisé */
.booking-cta-main {
    display: flex;
    justify-content: center;
    align-items: start;
    padding-top: 4.8rem; /* Align parfaitement avec le début de la carte .hours */
}

.booking-main-button {
    text-align: center;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    width: 100%;
    max-width: 450px;
}

.booking-main-button h3 {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
    font-family: 'Milkshake', var(--font-primary);
    font-weight: 400;
}

.booking-main-button p {
    color: var(--gray);
    margin-bottom: 2rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.btn-large {
    padding: 1rem 2rem !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    min-width: 220px;
    margin-bottom: 1.5rem;
    border-radius: 25px !important;
}

.booking-main-button small {
    color: var(--gray);
    display: block;
    margin-top: 0;
    font-size: 0.85rem;
    opacity: 0.9;
}

.booking-main-button small i {
    color: var(--gold);
    margin-right: 0.5rem;
}

.booking-info {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.booking-info h3 {
    margin-bottom: 2rem;
    color: var(--primary-blue);
}

.hours {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--light-gray);
}

.hours-item:last-child {
    border-bottom: none;
}

.hours-note {
    margin-top: 1rem;
    padding: 0.8rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 6px;
    border-left: 3px solid var(--gold);
}

.hours-note p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--gray);
    font-style: italic;
}

.booking-methods h4 {
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

/* Style pour la nouvelle section de réservation */
.booking-cta {
    margin-top: 1rem;
}

.booking-highlight {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(212, 175, 55, 0.12));
    border-radius: 12px;
    border: 2px solid rgba(212, 175, 55, 0.2);
    transition: var(--transition);
}

.booking-highlight:hover {
    border-color: var(--gold);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.15);
}

.booking-highlight i {
    color: var(--gold);
    font-size: 2rem;
    flex-shrink: 0;
}

.booking-highlight h4 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    font-family: 'Milkshake', var(--font-primary);
    font-size: 1.1rem;
}

.booking-highlight p {
    color: var(--gray);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.booking-notes {
    margin-top: 1rem;
    padding-top: 0.8rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.booking-notes p {
    color: var(--gray);
    margin: 0.2rem 0;
    font-size: 0.85rem;
    opacity: 0.9;
}

.booking-calendar {
    display: flex;
    justify-content: center;
}

.calendar-placeholder {
    width: 100%;
    min-height: 400px;
    background: var(--white);
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    text-align: center;
    border: 2px dashed var(--gold);
    padding: 2rem;
}

.calendar-placeholder i {
    font-size: 4rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.integration-note {
    background: var(--light-gold);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-top: 2rem;
}

/* Style pour l'iframe Planity - Version moderne et clean */
.planity-iframe-container {
    width: 100%;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(26, 42, 74, 0.12);
    overflow: hidden;
    border: 2px solid rgba(212, 175, 55, 0.15);
    position: relative;
    transition: var(--transition);
}

.planity-iframe-container:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(26, 42, 74, 0.15);
    border-color: var(--gold);
}

.planity-iframe-container h4 {
    color: var(--primary-blue);
    text-align: center;
    padding: 1.5rem 1rem;
    margin: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(212, 175, 55, 0.12));
    border-bottom: 2px solid rgba(212, 175, 55, 0.2);
    font-family: 'Milkshake', var(--font-primary);
    font-size: 1.2rem;
    position: relative;
}

.planity-iframe-container h4::before {
    content: '\f073';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--gold);
    margin-right: 0.5rem;
    font-size: 1rem;
}

.planity-iframe-container iframe {
    display: block;
    border: none;
    min-height: 600px;
    width: 100%;
    background: var(--white);
}

.planity-iframe-container p {
    text-align: center;
    padding: 0.8rem 1rem 1.2rem;
    margin: 0;
    color: var(--gray);
    font-size: 0.85rem;
    background: linear-gradient(135deg, var(--light-gray), rgba(248, 249, 250, 0.8));
    font-style: italic;
    position: relative;
}

.planity-iframe-container p::before {
    content: '\f023';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--gold);
    margin-right: 0.4rem;
    font-size: 0.75rem;
}

/* Contact - Version moderne et épurée */
.contact {
    background: var(--light-gray);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    position: relative;
    z-index: 2;
    align-items: start;
}

/* Nouvelles cartes de contact */
.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.contact-card {
    background: transparent;
    padding: 1.5rem 0;
    border-radius: 0;
    box-shadow: none;
    border: none;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    display: flex;
    align-items: center;
    gap: 1.2rem;
    transition: var(--transition);
    position: relative;
}

.contact-card:last-child {
    border-bottom: none;
}

.contact-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: var(--transition);
}

.contact-card:hover {
    padding-left: 0.5rem;
}

.contact-card:hover::before {
    width: 100%;
}

.contact-card-icon {
    width: 40px;
    height: 40px;
    background: transparent;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.contact-card:hover .contact-card-icon {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
}

.contact-card-icon i {
    color: var(--gold);
    font-size: 1.1rem;
}

.contact-card-content {
    flex: 1;
}

.contact-card-content h4 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    font-family: 'Milkshake', var(--font-primary);
    font-size: 1.1rem;
}

.contact-card-content p {
    color: var(--text-dark);
    margin: 0 0 0.5rem 0;
    font-weight: 500;
    font-size: 1rem;
}

.contact-note {
    color: var(--gray);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    opacity: 0.8;
    margin: 0;
}

.contact-note i {
    color: var(--gold);
    font-size: 0.8rem;
}

/* Styles pour les liens de contact cliquables - Version moderne */
.contact-link {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
    position: relative;
}

.contact-link:hover {
    color: var(--gold);
}

.contact-phone {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

@keyframes linkUnderline {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

.contact-form {
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    border: none;
    position: relative;
}

.contact-form h3 {
    margin-bottom: 2rem;
    color: var(--primary-blue);
    font-family: 'Milkshake', var(--font-primary);
    font-size: 1.3rem;
    text-align: left;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

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

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

.form input,
.form textarea {
    padding: 1.2rem 0;
    border: none;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 0;
    font-size: 1rem;
    transition: var(--transition);
    background: transparent;
    font-family: var(--font-secondary);
    color: var(--text-dark);
}

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

.form input:focus,
.form textarea:focus {
    outline: none;
    border-bottom-color: var(--gold);
    border-bottom-width: 2px;
}

.form input::placeholder,
.form textarea::placeholder {
    color: var(--gray);
    opacity: 0.6;
    font-style: italic;
}

.form .btn {
    margin-top: 1rem;
    padding: 1.2rem 2.5rem;
    font-size: 1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
    align-self: flex-start;
    border: 2px solid var(--gold);
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Footer */
.footer {
    background: var(--primary-blue);
    color: var(--white);
    padding: 2rem 0 1rem;
}

/* Réseaux sociaux */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    justify-content: flex-start;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    width: 35px;
    height: 35px;
    background: none;
    border: none;
    transition: var(--transition);
}

.social-link:hover {
    color: var(--gold);
    transform: translateY(-2px);
}

.social-link i {
    font-size: 1.2rem;
}

.social-link span {
    display: none;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.footer-section h4 {
    color: var(--gold);
    margin-bottom: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1rem;
}

.footer-logo .logo-circle {
    width: 40px;
    height: 40px;
}

.footer-logo .logo-letter {
    font-size: 1.5rem;
}

.footer-logo .logo-text {
    font-family: 'Milkshake', var(--font-primary);
    color: var(--white);
    font-size: 1.2rem;
}

/* Styles pour les liens de contact dans le footer */
.footer-contact-link {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact-link:hover {
    color: var(--gold);
}

/* Styles pour les horaires du footer */
.footer-hours {
    margin-bottom: 1rem;
}

.footer-hours p {
    margin: 0.3rem 0;
    font-size: 0.85rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-hours strong {
    color: var(--gold);
    font-weight: 600;
    min-width: 90px;
}

/* Styles pour la section contact du footer - Comme les horaires */
.footer-contact {
    margin-bottom: 1rem;
}

.footer-contact p {
    margin: 0.4rem 0;
    font-size: 0.85rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    line-height: 1.4;
}

.footer-contact strong {
    color: var(--gold);
    font-weight: 600;
    min-width: 90px;
    flex-shrink: 0;
}

.footer-contact .footer-contact-link {
    text-align: left;
    flex: 1;
}

/* Styles pour la section about du footer */
.footer-about {
    margin-bottom: 1rem;
}

.footer-about p {
    margin: 0.3rem 0;
    font-size: 0.8rem;
    line-height: 1.4;
}

.footer-about strong {
    color: var(--gold);
    font-weight: 600;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--secondary-blue);
    color: var(--gray);
}

/* CTA Footer */
.footer-cta {
    margin-bottom: 1.5rem;
}

.footer-booking-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--white);
    color: var(--primary-blue);
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
    border: 2px solid var(--gold);
}

.footer-booking-btn:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.footer-booking-btn i {
    font-size: 1.1rem;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.8rem;
    opacity: 0.8;
}

/* Responsive Design */

/* Pour tablettes et petits écrans */
@media (max-width: 992px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content {
        gap: 3rem;
    }
    
    .hero-text h1 {
        font-size: 2.8rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .about-content,
    .booking-content,
    .contact-content {
        gap: 3rem;
    }
    
    .hero-main-image {
        width: 380px;
        height: 320px;
    }
    
    /* Section About pour tablettes */
    .about-intro {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .about-text-main {
        padding-right: 0;
    }
    
    .portrait-container {
        width: 280px;
        height: 320px;
        margin: 0 auto;
    }
    
    .expertise-cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        max-width: 500px;
    }
}

/* Pour mobiles */
@media (max-width: 768px) {
    /* Correction overflow horizontal */
    html, body {
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    /* Masquer les éléments décoratifs qui causent le débordement */
    .hero::before,
    .about::before,
    .services::before {
        display: none;
    }
    
    /* Forcer tous les conteneurs à respecter la largeur d'écran */
    *, *::before, *::after {
        max-width: 100vw;
        box-sizing: border-box;
    }
    
    .container,
    .nav-container,
    .hero-content {
        max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 280px;
        flex-direction: column;
        background: linear-gradient(135deg, var(--primary-blue) 0%, #1a365c 100%);
        text-align: left;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
        padding: 5rem 0 2rem 0;
        z-index: 1000;
        backdrop-filter: blur(20px);
        overflow-y: auto;
        justify-content: flex-start;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        margin: 0;
        opacity: 0;
        transform: translateX(50px);
        animation: none;
        width: 100%;
    }
    
    .nav-menu.active li {
        opacity: 1;
        transform: translateX(0);
        animation: slideInFromRight 0.6s ease-out forwards;
    }
    
    .nav-menu.active li:nth-child(1) { animation-delay: 0.1s; }
    .nav-menu.active li:nth-child(2) { animation-delay: 0.2s; }
    .nav-menu.active li:nth-child(3) { animation-delay: 0.3s; }
    .nav-menu.active li:nth-child(4) { animation-delay: 0.4s; }
    .nav-menu.active li:nth-child(5) { animation-delay: 0.5s; }
    
    @keyframes slideInFromRight {
        from {
            opacity: 0;
            transform: translateX(50px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    .nav-menu .nav-link {
        color: var(--white);
        font-size: 1.1rem;
        font-weight: 500;
        padding: 1.5rem 2rem;
        display: block;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
        position: relative;
        text-decoration: none;
        width: 100%;
        box-sizing: border-box;
    }
    
    .nav-menu .nav-link::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 0;
        height: 2px;
        background: var(--gold);
        transition: width 0.3s ease;
    }
    
    .nav-menu .nav-link:hover {
        color: var(--gold);
        background: rgba(255, 255, 255, 0.05);
        padding-left: 2.5rem;
    }
    
    .nav-menu .nav-link:hover::before {
        width: 4px;
    }
    
    .nav-menu .nav-link::after {
        display: none;
    }
    
    /* Overlay pour fermer le menu */
    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.6);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
        backdrop-filter: blur(3px);
    }
    
    .nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    .hero {
        padding: 100px 0 60px;
        min-height: 70vh;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
        padding: 0 1rem;
        position: relative;
    }
    
    .hero-text {
        position: relative;
    }
    
    .hero-description::after {
        display: none; /* Désactiver l'image statique pour laisser place à la carousel */
    }
    
    /* Réorganiser l'ordre sur mobile : description -> carousel -> boutons */
    .hero-content {
        flex-direction: column;
    }
    
    .hero-text {
        order: 1;
        width: 100%;
    }
    
    .hero-description {
        order: 1;
    }
    
    /* Afficher la carousel mobile */
    .hero-carousel-mobile {
        display: block;
        width: 320px;
        height: 250px;
        position: relative;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 8px 25px rgba(26, 42, 74, 0.15);
        background: var(--white);
        margin: 1.5rem auto;
        order: 2;
    }
    
    .hero-carousel-mobile::before {
        content: '';
        position: absolute;
        top: -8px;
        left: -8px;
        right: -8px;
        bottom: -8px;
        background: linear-gradient(135deg, var(--gold), var(--light-gold));
        border-radius: 28px;
        z-index: -1;
    }
    
    .hero-image {
        display: none; /* Cacher la carousel desktop */
    }
    
    .hero-buttons {
        order: 3;
    }
    
    .planity-rating {
        order: 4;
    }
    
    .hero-features {
        display: none; /* Cacher les features sur mobile */
    }
    
    .hero-greeting {
        display: none;
    }
    
    .hero-text h1 {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
        max-width: 100%;
    }
    
    .hero-features {
        display: none;
    }
    
    .hero-feature {
        display: none;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .hero-features {
        justify-content: center;
        gap: 1.5rem;
    }
    
    .hero-feature {
        font-size: 0.9rem;
    }
    
    .hero-main-image {
        width: 300px;
        height: 320px;
        margin: 1.5rem auto 0 auto;
    }
    
    .hero-image {
        display: block;
        margin-top: 1rem;
    }
    
    .hero-carousel {
        width: 320px;
        height: 250px;
    }
    
    /* Assurer que les indicateurs sont visibles sur mobile */
    .carousel-indicators {
        display: flex !important;
        bottom: 10px;
    }
    
    .indicator {
        width: 7px;
        height:7px;
    }
    
    .hero-visual {
        justify-content: center;
        align-items: center;
        display: flex;
        width: 100%;
    }
    
    /* Planity rating pour mobile */
    .planity-rating {
        font-size: 0.75rem;
        margin-top: 0.4rem;
        justify-content: center;
        width: 250px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .planity-rating i {
        font-size: 0.8rem;
    }
    
    /* Section About responsive */
    .about-intro {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
        margin-bottom: 3rem;
    }
    
    .about-text-main {
        padding-right: 0;
        order: 2;
    }
    
    .about-portrait {
        order: 1;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .portrait-container {
        width: 250px;
        height: 300px;
        margin: 0 auto;
    }
    
    /* Section À Propos optimisée pour mobile */
    .about-combined-section {
        padding: 2rem 1rem;
        margin: 2rem 0;
    }
    
    .philosophy-content-light {
        padding: 0;
    }
    
    .philosophy-content-light h4 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .philosophy-content-light p {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    
    /* Texte histoire d'Audrey - padding mobile */
    .about-story p {
        padding: 0 1rem;
    }
    
    .expertise-highlights {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 1.5rem;
        padding-top: 1.5rem;
        max-width: 100%;
    }
    
    .highlight-item {
        padding: 1rem;
        gap: 0.8rem;
        background: rgba(255, 255, 255, 0.8);
        border-radius: 10px;
    }
    
    .highlight-item i {
        font-size: 1rem;
    }
    
    .highlight-item span {
        font-size: 0.85rem;
    }
    
    .about-cta {
        margin-top: 2rem;
    }
    
    .about-cta .btn {
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
    }
    
    .about-cta {
        margin-top: 1.5rem;
    }
    
    /* Section Contact optimisée pour mobile */
    .booking-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .contact-cards {
        margin-bottom: 2rem;
    }
    
    .contact-card {
        padding: 1.2rem 0;
        gap: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .contact-card-icon {
        width: 40px;
        height: 40px;
    }
    
    .contact-card-icon i {
        font-size: 1rem;
    }
    
    .contact-card-content h4 {
        font-size: 0.95rem;
        margin-bottom: 0.3rem;
    }
    
    .contact-card-content p {
        font-size: 0.85rem;
        margin-bottom: 0.3rem;
        line-height: 1.4;
    }
    
    .contact-note {
        font-size: 0.75rem;
        margin-top: 0.5rem;
        padding: 0.8rem;
        border-radius: 8px;
    }
    
    /* Formulaire de contact mobile */
    .contact-form {
        padding: 1.5rem;
        border-radius: 12px;
    }
    
    .contact-form h3 {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
    }
    
    .form input,
    .form textarea {
        padding: 1rem 0;
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .form textarea {
        min-height: 120px;
        resize: vertical;
    }
    
    .form .btn {
        width: 100%;
        padding: 1.2rem;
        font-size: 0.95rem;
        margin-top: 0.5rem;
    }
    
    .contact-note {
        font-size: 0.8rem;
    }
    
    .contact-form h3 {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
    }
    
    .form {
        gap: 1.5rem;
    }
    
    .form input,
    .form textarea {
        padding: 1rem 0;
        font-size: 0.95rem;
    }
    
    .form .btn {
        align-self: stretch;
        text-align: center;
        padding: 1rem 2rem;
        margin-top: 0.5rem;
    }
    
    /* Iframe Planity responsive */
    .planity-iframe-container {
        border-radius: 12px;
        margin: 0 auto;
        max-width: 100%;
    }
    
    .planity-iframe-container h4 {
        padding: 1.2rem 0.8rem;
        font-size: 1.1rem;
    }
    
    .planity-iframe-container iframe {
        height: 500px;
        min-height: 500px;
    }
    
    .planity-iframe-container p {
        padding: 0.6rem 0.8rem 1rem;
        font-size: 0.8rem;
    }
    
    /* Style responsive pour la section booking highlight */
    .booking-highlight {
        flex-direction: column;
        text-align: center;
        padding: 1.2rem;
        gap: 1rem;
    }
    
    .booking-highlight i {
        font-size: 1.8rem;
    }
    
    .booking-highlight h4 {
        font-size: 1rem;
    }
    
    .booking-highlight p {
        font-size: 0.9rem;
    }
    
    .booking-notes {
        margin-top: 0.8rem;
        padding-top: 0.6rem;
    }
    
    .booking-notes p {
        font-size: 0.8rem;
        margin: 0.1rem 0;
    }
    
    /* Section Avis responsive */
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .review-card {
        padding: 1.5rem;
    }
    
    .review-card::before {
        font-size: 3rem;
        top: -5px;
        left: 15px;
    }
    
    .reviews-planity {
        padding: 1rem 2rem;
        font-size: 0.9rem;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        justify-content: center;
        text-align: center;
        white-space: nowrap;
    }
    
    .reviews-cta {
        display: flex;
        justify-content: center;
        margin-top: 2rem;
        padding: 0 1rem;
    }


    
    /* Services optimisés pour mobile */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
        margin-top: 2rem;
    }
    
    .service-card {
        padding: 1.5rem 1.2rem;
        margin: 0;
        min-height: auto;
    }
    
    .service-card.featured {
        transform: translateY(0);
        margin-bottom: 0.5rem;
    }
    
    .featured-badge {
        top: 10px;
        right: 10px;
        padding: 0.3rem 0.7rem;
        font-size: 0.65rem;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }
    
    .service-card p {
        font-size: 0.9rem;
        line-height: 1.5;
        min-height: 50px;
    }
    
    .service-card ul {
        margin: 1rem 0;
        min-height: 100px;
    }
    
    .service-card li {
        padding: 0.4rem 0;
        font-size: 0.85rem;
        padding-left: 1.2rem;
        position: relative;
    }
    
    .service-card li::before {
        content: '✓';
        position: absolute;
        left: 0;
        top: 0.4rem;
        color: var(--gold);
        font-weight: bold;
        font-size: 0.8rem;
    }
    
    .service-pricing {
        flex-direction: column;
        gap: 0.8rem;
        text-align: center;
        padding-top: 1rem;
        margin-top: 1rem;
        min-height: auto;
    }
    
    .price-range {
        font-size: 1rem;
    }
    
    .price-link {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
        margin: 0;
    }
    
    .pricing-tabs {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .tab-button {
        width: 200px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    
    /* Section Rendez-vous mobile - bouton en premier */
    .booking-content {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
    
    .booking-cta-main {
        order: 1;
        padding-top: 0;
        margin-bottom: 2rem;
    }
    
    .booking-main-button {
        padding: 2rem 1.5rem;
        margin: 0;
        max-width: none;
    }
    
    .booking-main-button h3 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }
    
    .booking-main-button p {
        margin-bottom: 1.5rem;
        font-size: 0.9rem;
    }
    
    .btn-large {
        padding: 0.9rem 1.8rem !important;
        font-size: 0.95rem !important;
        min-width: 200px;
        margin-bottom: 1rem;
    }
    
    .booking-info {
        order: 2;
    }
    
    .planity-iframe-container {
        margin: 0;
        border-radius: 0;
        overflow: hidden;
        background: transparent;
        padding: 0;
        box-shadow: none;
    }
    
    .planity-iframe-container h4 {
        font-size: 1.2rem;
        color: var(--primary-blue);
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .planity-iframe-container iframe {
        min-height: 500px;
        border-radius: 0;
    }
    
    .booking-highlight {
        padding: 1.5rem;
        margin: 1.5rem 0 0 0;
        border-radius: 12px;
        font-size: 0.9rem;
    }
    
    .booking-highlight h4 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    /* Centrage parfait du texte Planity sur mobile */
    .planity-rating {
        align-self: center;
        margin-left: auto;
        margin-right: auto;
        font-size: 0.85rem;
        padding: 0.8rem 1.2rem;
    }
    
    /* Sections générales */
    .section-header {
        padding: 0 1rem;
        margin-bottom: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .section-header p {
        font-size: 0.95rem;
        max-width: 100%;
    }
    
    .btn {
        width: 100%;
        max-width: 250px;
        text-align: center;
        margin: 0 auto;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 1.1rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
        min-height: 75vh;
    }
    
    section {
        padding: 60px 0;
    }
    
    /* Correction pour les logos et textes avec Milkshake */
    .logo-text {
        font-size: 1.2rem;
    }
    
    .logo-image {
        height: 35px;
    }
    
    .logo {
        gap: 10px;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    /* Amélioration des boutons sur mobile */
    .hero-buttons {
        gap: 0.8rem;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        padding: 14px 20px;
        font-size: 0.95rem;
    }
    
    /* Correction des cartes de services */
    .service-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1rem;
    }
    
    .service-icon i {
        font-size: 1.8rem;
    }
    
    /* Amélioration de la navigation mobile */
    .nav-menu {
        top: 80px;
        padding: 1.5rem 0;
    }
    
    .nav-menu li {
        margin: 0.5rem 0;
    }
    
    .nav-link {
        font-size: 1.1rem;
        padding: 0.8rem 0;
        display: block;
    }
}

/* Pour très petits mobiles */
@media (max-width: 480px) {
    /* Correction supplémentaire pour débordement */
    html, body {
        max-width: 100vw;
        overflow-x: hidden;
        position: relative;
    }
    
    .container {
        padding: 0 10px;
        max-width: 100%;
        margin: 0 auto;
    }
    
    /* S'assurer qu'aucun élément ne dépasse */
    * {
        max-width: 100%;
    }
    
    .hero {
        padding: 90px 0 50px;
        min-height: 70vh;
    }
    
    .hero-greeting {
        display: none;
    }
    
    .hero-text h1 {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .hero-feature {
        font-size: 0.85rem;
        justify-content: center;
    }
    
    .hero-main-image {
        width: 260px;
        height: 280px;
        margin: 1rem auto 0 auto;
    }
    
    .hero-image {
        display: none; /* Cacher la carousel desktop */
    }
    
    /* Afficher la carousel mobile */
    .hero-carousel-mobile {
        display: block;
        width: 310px;
        height: 220px;
        margin: 2.2rem auto;
    }
    
    .hero-description::after {
        display: none; /* Désactiver l'image statique pour laisser place à la carousel */
    }
    
    /* Planity rating pour très petits écrans */
    .planity-rating {
        font-size: 0.7rem;
        margin-top: 0.3rem;
        justify-content: center;
        width: 220px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .planity-rating i {
        font-size: 0.75rem;
    }
    
    /* Section About pour très petits écrans */
    .about-intro {
        margin-bottom: 2rem;
        gap: 2rem;
    }
    
    /* Texte histoire d'Audrey - padding pour très petits écrans */
    .about-story p {
        padding: 0 1.2rem;
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .portrait-container {
        width: 200px;
        height: 240px;
        margin: 0 auto;
    }
    
    .about-portrait {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .about-story h3 {
        font-size: 1.5rem;
    }
    
    .about-story p {
        font-size: 1rem;
    }
    
    .philosophy-content-light {
        padding: 1.2rem 0.8rem;
        margin: 0 0.5rem;
    }
    
    .philosophy-content-light h4 {
        font-size: 1.1rem;
    }
    
    .philosophy-content-light p {
        font-size: 0.9rem;
    }
    
    .expertise-cards {
        margin-bottom: 1.5rem;
        max-width: 280px;
    }
    
    .expertise-card {
        padding: 1rem 0.6rem;
    }
    
    .card-icon {
        width: 35px;
        height: 35px;
        margin-bottom: 0.6rem;
    }
    
    .card-icon i {
        font-size: 0.9rem;
    }
    
    .expertise-card h5 {
        font-size: 0.85rem;
    }
    
    .expertise-card p {
        font-size: 0.75rem;
    }
    
    .about-cta {
        margin-top: 1rem;
    }
    
    .about-cta .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    /* Section Avis pour très petits écrans */
    .reviews {
        padding: 60px 0;
    }
    
    .review-card {
        padding: 1.2rem;
    }
    
    .review-text {
        font-size: 0.95rem;
    }
    
    .review-card::before {
        font-size: 2.5rem;
        top: -3px;
        left: 10px;
    }
    
    .reviews-planity {
        padding: 0.9rem 1.5rem;
        font-size: 0.85rem;
        width: 100%;
        max-width: 260px;
        margin: 0 auto;
        justify-content: center;
        text-align: center;
        white-space: nowrap;
        flex-direction: row;
        gap: 0.6rem;
    }
    
    .logo-text {
        font-size: 1rem;
    }
    
    .logo-image {
        height: 30px;
    }
    
    .logo {
        gap: 8px;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    h3 {
        font-size: 1.4rem;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
    
    .section-header p {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    section {
        padding: 50px 0;
    }
    
    .btn {
        max-width: 100%;
        padding: 12px 16px;
        font-size: 0.9rem;
    }
    
    /* Cartes de service plus compactes */
    .service-card {
        padding: 1.2rem;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
    }
    
    .service-card p {
        font-size: 0.95rem;
    }
    
    /* Amélioration du formulaire */
    .form input,
    .form textarea {
        padding: 0.8rem;
        font-size: 0.95rem;
    }
    
    /* Tarifs plus compacts */
    .pricing-item {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .pricing-item h4 {
        font-size: 1rem;
        margin-bottom: 0.3rem;
    }
    
    .price {
        font-size: 1.2rem;
    }
    
    /* Footer responsive compact */
    .footer {
        padding: 1.2rem 0 0.8rem;
    }

    .footer-content {
        gap: 1rem;
        text-align: left;
    }
    
    /* Footer mobile optimisé - Aligné gauche et compact - PRIORITÉ */
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-content {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        padding: 0 20px;
        text-align: left;
    }
    
    /* Section principale */
    .footer-section:first-child {
        order: 1;
        text-align: left;
        padding-bottom: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .footer-section:first-child h4 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
        text-align: left;
    }
    
    .footer-about p {
        font-size: 0.8rem;
        margin-bottom: 0.2rem;
        text-align: left;
    }
    
    /* Réseaux sociaux simplifiés */
    .social-links {
        justify-content: flex-start;
        gap: 1rem;
        margin-top: 0.8rem;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
        background: none;
        border: none;
        color: var(--white);
        font-size: 1.2rem;
        transition: color 0.3s ease;
    }
    
    .social-link:hover {
        color: var(--gold);
        background: none;
        transform: none;
    }
    
    /* Contact et horaires groupés */
    .footer-section:nth-child(2) {
        order: 2;
    }
    
    .footer-section:nth-child(3) {
        order: 3;
    }
    
    .footer-section h4 {
        font-size: 1rem;
        margin-bottom: 0.8rem;
        text-align: left;
        color: var(--gold);
        font-weight: 600;
    }
    
    .footer-contact,
    .footer-hours {
        text-align: left;
    }
    
    /* Contact cliquable optimisé */
    .footer-contact p {
        font-size: 0.85rem;
        margin: 0.4rem 0;
        line-height: 1.4;
    }
    
    .footer-contact strong {
        display: inline-block;
        width: 70px;
        font-size: 0.8rem;
        color: var(--gold);
    }
    
    .footer-contact-link {
        font-size: 0.85rem;
        color: var(--white);
        text-decoration: none;
        transition: color 0.3s ease;
    }
    
    .footer-contact-link:hover {
        color: var(--gold);
    }
    
    /* Horaires compacts et lisibles */
    .footer-hours {
        text-align: left !important;
    }
    
    .footer-hours p {
        font-size: 0.8rem;
        margin: 0.3rem 0;
        line-height: 1.3;
        text-align: left !important;
    }
    
    .footer-hours strong {
        display: inline-block;
        width: 60px;
        font-size: 0.8rem;
        color: var(--gold);
        text-align: left !important;
    }
    
    /* Parking info */
    .footer-contact small {
        font-size: 0.75rem;
        margin-top: 0.6rem;
        display: block;
        opacity: 0.8;
    }
    
    /* CTA Button */
    .footer-cta {
        text-align: center;
        margin: 1rem 0;
    }
    
    .footer-booking-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.85rem;
        max-width: 250px;
        margin: 0 auto;
        display: inline-block;
        background: var(--white) !important;
        color: var(--primary-blue) !important;
        border: none !important;
        text-decoration: none !important;
    }
    
    .footer-booking-btn span {
        color: var(--primary-blue) !important;
    }
    
    /* Correction bouton mobile spécifique */
    .footer-booking-btn,
    .footer-booking-btn:link,
    .footer-booking-btn:visited,
    .footer-booking-btn:active {
        background: var(--white) !important;
        color: var(--primary-blue) !important;
        border: 2px solid var(--gold) !important;
        text-decoration: none !important;
    }
    
    .footer-booking-btn i,
    .footer-booking-btn span {
        color: var(--primary-blue) !important;
    }
    
    /* Styles spécifiques desktop pour le footer */
@media (min-width: 992px) {
    .footer-legal-links {
        justify-content: center !important;
        text-align: center !important;
        width: 100%;
        margin: 0 auto;
        gap: 2rem !important;
    }
    
    .footer-legal-links a {
        display: inline-block;
        text-align: center;
        margin: 0 1rem;
    }
    
    .legal-separator {
        color: #888888;
        font-size: 1rem;
        opacity: 0.7;
        margin: 0 0.5rem;
    }
    
    .footer-bottom {
        text-align: center !important;
    }
}

/* Pages légales */
.legal-page {
    padding: 12rem 0 4rem;
    background: var(--light-gray);
    min-height: 100vh;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.legal-content h1 {
    color: var(--primary-blue);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.legal-content h2 {
    color: var(--primary-blue);
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--gold);
    padding-bottom: 0.5rem;
}

.legal-content h3 {
    color: var(--secondary-blue);
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.legal-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: var(--dark-gray);
}

.legal-content ul {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
    color: var(--dark-gray);
}

.legal-content a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
}

.legal-content a:hover {
    color: var(--primary-blue);
    text-decoration: underline;
}

.legal-back {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--light-gray);
}

.legal-back .btn {
    background: var(--primary-blue) !important;
    color: var(--white) !important;
    border: none !important;
    text-decoration: none !important;
    padding: 1rem 2rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.legal-back .btn:hover {
    background: var(--gold) !important;
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.legal-back .btn i {
    color: var(--white) !important;
    font-size: 1rem;
}

/* Footer bottom avec mentions légales */
    .footer-bottom {
        padding-top: 1rem;
        margin-top: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        text-align: center;
    }
    
    /* Force seulement les liens non-légaux à rester blancs */
    .footer-bottom a:not(.footer-legal-links a),
    .footer-bottom a:not(.footer-legal-links a):link,
    .footer-bottom a:not(.footer-legal-links a):visited,
    .footer-bottom a:not(.footer-legal-links a):active {
        color: #ffffff !important;
        text-decoration: none !important;
        border-bottom: none !important;
        text-decoration-line: none !important;
        text-decoration-style: none !important;
        text-decoration-color: transparent !important;
    }
    
    .footer-legal {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .footer-legal-links {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
        margin-bottom: 0.5rem;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    
    .footer-legal-links a,
    .footer-legal-links a:link,
    .footer-legal-links a:visited,
    .footer-legal-links a:active {
        font-size: 0.75rem;
        color: #888888 !important;
        text-decoration: none !important;
        opacity: 0.7;
        transition: opacity 0.3s ease;
        border: none !important;
        outline: none !important;
    }
    
    .footer-legal-links a:hover {
        opacity: 1;
        color: #aaaaaa !important;
        text-decoration: none !important;
    }
    
    /* Séparateur entre les liens légaux */
    .legal-separator {
        color: #888888;
        font-size: 0.9rem;
        opacity: 0.7;
        margin: 0 0.5rem;
        display: inline-block;
    }
    
    .footer-bottom p {
        font-size: 0.7rem;
        margin: 0;
        opacity: 0.7;
        text-align: center;
    }
    
    /* CORRECTION FINALE - Forcer l'alignement gauche des horaires */
    .footer-hours,
    .footer-hours p,
    .footer-hours strong,
    .footer-contact,
    .footer-contact p,
    .footer-contact strong {
        text-align: left !important;
    }
    
    /* Pages légales responsive */
    .legal-page {
        padding: 8rem 0 2rem;
    }
    
    .legal-content {
        padding: 2rem 1rem;
        margin: 0 1rem;
    }
    
    .legal-content h1 {
        font-size: 2rem;
    }
    
    .legal-content h2 {
        font-size: 1.5rem;
    }
    
    .legal-content h3 {
        font-size: 1.2rem;
    }
}

