/* Variables */
:root {
    --marron-logo: #c09984;
    --marron-pro: #ad9a87;
    --orange-sophro: #fa8d6f;
    --orange-fleur: #eb7e60;
    --beige-fleur: #d4af88;
    --blanc: #ffffff;
    --noir: #333333;
    --gris-clair: #f8f8f8;
    --gris-texte: #666666;
    --texte-fonce: #444444;
    --transition: all 0.3s ease-in-out;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.12);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--noir);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--blanc);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

/* Effet de défilement du header */
header.scrolled {
    padding: 5px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

header.scrolled .logo img {
    max-height: 45px;
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
}

.logo {
    display: block;
}

.logo img {
    max-height: 90px;
    transition: var(--transition);
}

/* Navigation Desktop */
.navbar {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-item {
    position: relative;
}

.nav-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    padding: 5px 0;
    position: relative;
    transition: var(--transition);
}

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

.nav-link:hover, .nav-link.active {
    color: var(--orange-sophro);
}

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

/* Hamburger (Mobile) */
.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: var(--transition);
    background-color: var(--marron-logo);
}

/* Menu Mobile */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: var(--blanc);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    transition: var(--transition);
    padding: 20px;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    position: absolute;
    top: 20px;
    right: 20px;
}

.close-menu {
    font-size: 1.5rem;
    color: var(--marron-logo);
    cursor: pointer;
    transition: var(--transition);
}

.close-menu:hover {
    color: var(--orange-sophro);
    transform: rotate(90deg);
}

.mobile-nav-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    margin-bottom: 40px;
}

.mobile-nav-link {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 500;
    position: relative;
    transition: var(--transition);
}

.mobile-nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--orange-sophro);
    transition: var(--transition);
}

.mobile-nav-link:hover, .mobile-nav-link.active {
    color: var(--orange-sophro);
}

.mobile-nav-link:hover:after, .mobile-nav-link.active:after {
    width: 70%;
}

/* Social Media */
.social-media {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.social-media a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--beige-fleur);
    color: var(--blanc);
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-media a:hover {
    background-color: var(--orange-sophro);
    transform: translateY(-3px);
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .navbar {
        display: none;
    }
    
    .hamburger {
        display: block;
    }
    
    .logo img {
        max-height: 50px;
    }
    
    /* Animation du burger quand actif */
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 650px;
    display: flex;
    align-items: center;
    background-image: url('./images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--blanc);
    padding-top: 80px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(173, 154, 135, 0.85) 0%, rgba(192, 153, 132, 0.85) 50%, rgba(235, 126, 96, 0.75) 100%);
    z-index: 1;
}

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

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    animation: fadeIn 1.2s ease-in-out;
}

.hero-welcome {
    margin-bottom: 20px;
}

.welcome-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 8px 15px;
    border: 1px solid var(--blanc);
    display: inline-block;
    opacity: 0.9;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 25px;
    position: relative;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background-color: var(--beige-fleur);
}

.hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-align: center;
    text-transform: uppercase;
    border-radius: 3px;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background-color: var(--orange-sophro);
    color: var(--blanc);
    border: 2px solid var(--orange-sophro);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    background-color: var(--orange-fleur);
    border-color: var(--orange-fleur);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

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

.btn-outline:hover {
    background-color: var(--blanc);
    color: var(--marron-logo);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background-color: var(--marron-logo);
    color: var(--blanc);
    border: 2px solid var(--marron-logo);
    box-shadow: var(--shadow);
}

.btn-secondary:hover {
    background-color: var(--marron-pro);
    border-color: var(--marron-pro);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--blanc);
    cursor: pointer;
    opacity: 0.8;
    transition: var(--transition);
    z-index: 2;
}

.scroll-down span {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.scroll-down i {
    font-size: 1.2rem;
    animation: bounce 2s infinite;
}

.scroll-down:hover {
    opacity: 1;
    transform: translateX(-50%) translateY(5px);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

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

/* Responsive Styles for Hero and About */
@media screen and (max-width: 992px) {
    .hero-title {
        font-size: 2.8rem;
    }
}

@media screen and (max-width: 768px) {
    .hero {
        min-height: 550px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .welcome-text {
        font-size: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 15px;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media screen and (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}

/* Section À Propos */
.about {
    padding: 120px 0;
    background-color: var(--blanc);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 5% 25%, rgba(250, 141, 111, 0.05) 0%, rgba(250, 141, 111, 0) 40%),
                radial-gradient(circle at 95% 85%, rgba(192, 153, 132, 0.05) 0%, rgba(192, 153, 132, 0) 40%);
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
}

.section-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--orange-sophro);
    margin-bottom: 15px;
    display: block;
    position: relative;
}

.section-subtitle::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 1px;
    background-color: var(--orange-sophro);
    left: 50%;
    bottom: -7px;
    transform: translateX(-50%);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--texte-fonce);
    margin-bottom: 0;
    position: relative;
}

.about-wrapper {
    display: flex;
    gap: 80px;
    align-items: center;
    justify-content: space-between;
}

.about-image-container {
    flex: 0 0 40%;
    position: relative;
}

.about-image {
    position: relative;
    z-index: 2;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.about-image:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.about-image:hover img {
    transform: scale(1.03);
}

.image-decoration {
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 2px solid var(--beige-fleur);
    border-radius: 10px;
    z-index: 1;
}

.about-content {
    flex: 0 0 50%;
}

.intro-text {
    font-size: 1.3rem;
    font-family: 'Playfair Display', serif;
    color: var(--marron-logo);
    margin-bottom: 25px;
    font-weight: 500;
}

.tagline {
    margin-bottom: 30px;
    position: relative;
}

.tagline p {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 500;
    font-style: italic;
    color: var(--orange-sophro);
    line-height: 1.4;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.tagline p::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, var(--orange-sophro), transparent);
}

.about-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--gris-texte);
    margin-bottom: 25px;
}

.mission {
    background-color: var(--gris-clair);
    padding: 30px;
    border-radius: 10px;
    margin: 40px 0 30px;
    position: relative;
    box-shadow: var(--shadow);
}

.mission::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--orange-sophro), var(--orange-fleur));
    border-radius: 5px 0 0 5px;
}

.mission p {
    margin-bottom: 0;
    font-style: italic;
}

.highlight {
    color: var(--marron-logo);
    font-weight: 600;
}

.cta-container {
    margin-top: 40px;
}

/* Animations au défilement */
.about-image, .about-content, .mission {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.about-image.animate {
    opacity: 1;
    transform: translateY(0);
}

.about-content.animate {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.mission.animate {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

/* Responsive styles for about section */
@media screen and (max-width: 992px) {
    .about-wrapper {
        flex-direction: column;
        gap: 60px;
    }
    
    .about-image-container {
        flex: 0 0 100%;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .about-content {
        flex: 0 0 100%;
    }
    
    .section-title {
        font-size: 2.4rem;
    }
}

@media screen and (max-width: 768px) {
    .about {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .intro-text {
        font-size: 1.2rem;
    }
    
    .about-content p {
        font-size: 1rem;
    }
    
    .mission {
        padding: 25px;
    }
}

@media screen and (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
    
    .mission {
        padding: 20px;
    }
}

/* Section Mes Valeurs */
.values-section {
    padding: 100px 0;
    background-color: var(--gris-clair);
    position: relative;
    overflow: hidden;
}

.values-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 10%, rgba(250, 141, 111, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 90% 90%, rgba(192, 153, 132, 0.05) 0%, rgba(192, 153, 132, 0) 40%);
    pointer-events: none;
}

.values-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.value-card {
    background-color: var(--blanc);
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    z-index: 1;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards;
}

.value-card:nth-child(2) {
    animation-delay: 0.3s;
}

.value-card:nth-child(3) {
    animation-delay: 0.6s;
}

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

.value-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--beige-fleur);
    color: var(--blanc);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.value-card:nth-child(1) .value-icon {
    background-color: var(--marron-logo);
}

.value-card:nth-child(2) .value-icon {
    background-color: var(--orange-sophro);
}

.value-card:nth-child(3) .value-icon {
    background-color: var(--orange-fleur);
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(10deg);
}

.value-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--texte-fonce);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.value-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--orange-sophro);
}

.value-card:nth-child(1) .value-title::after {
    background-color: var(--marron-logo);
}

.value-card:nth-child(2) .value-title::after {
    background-color: var(--orange-sophro);
}

.value-card:nth-child(3) .value-title::after {
    background-color: var(--orange-fleur);
}

.value-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--gris-texte);
    margin-bottom: 0;
}

.accent {
    font-weight: 600;
}

.value-card:nth-child(1) .accent {
    color: var(--marron-logo);
}

.value-card:nth-child(2) .accent {
    color: var(--orange-sophro);
}

.value-card:nth-child(3) .accent {
    color: var(--orange-fleur);
}

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

/* Responsive styles for values section */
@media screen and (max-width: 768px) {
    .values-section {
        padding: 80px 0;
    }
    
    .values-container {
        gap: 30px;
    }
    
    .value-card {
        padding: 30px 25px;
    }
    
    .value-icon {
        width: 70px;
        height: 70px;
        font-size: 1.7rem;
    }
    
    .value-title {
        font-size: 1.6rem;
    }
    
    .value-content p {
        font-size: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .value-card {
        padding: 25px 20px;
    }
    
    .value-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .value-title {
        font-size: 1.4rem;
    }
}

/* Section Mon Chemin */
.journey-section {
    padding: 120px 0;
    background-color: var(--blanc);
    position: relative;
    overflow: hidden;
}

.journey-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, rgba(212, 175, 136, 0.08) 0%, rgba(212, 175, 136, 0) 50%),
        linear-gradient(45deg, rgba(235, 126, 96, 0.05) 0%, rgba(235, 126, 96, 0) 60%);
}

.journey-container {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: center;
    position: relative;
}

.journey-image {
    flex: 0 0 40%;
    position: relative;
}

.journey-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: var(--shadow);
    position: relative;
    z-index: 2;
    transition: var(--transition);
}

.journey-image:hover img {
    transform: scale(1.02);
}

.journey-decoration {
    position: absolute;
    top: 20px;
    right: -20px;
    width: 70%;
    height: 85%;
    border: 3px solid var(--marron-logo);
    border-radius: 15px;
    z-index: 1;
    opacity: 0.5;
}

.journey-content {
    flex: 0 0 calc(60% - 60px);
}

.journey-text {
    position: relative;
    opacity: 0;
    transform: translateX(30px);
    animation: fadeInRight 0.8s forwards;
    animation-delay: 0.3s;
}

.journey-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--gris-texte);
    margin-bottom: 25px;
}

.accent-text {
    color: var(--orange-sophro);
    font-weight: 600;
}

.quote-box {
    background-color: var(--gris-clair);
    border-radius: 15px;
    padding: 30px;
    margin: 30px 0;
    position: relative;
    box-shadow: var(--shadow);
    border-left: 5px solid var(--marron-logo);
}

.quote-box::before {
    content: '\201C';
    font-family: 'Playfair Display', serif;
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 6rem;
    color: rgba(192, 153, 132, 0.1);
    line-height: 1;
}

.quote-box p {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

.journey-cta {
    margin-top: 35px;
}

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

/* Responsive styles for journey section */
@media screen and (max-width: 992px) {
    .journey-container {
        flex-direction: column;
        gap: 50px;
    }
    
    .journey-image, .journey-content {
        flex: 0 0 100%;
    }
    
    .journey-image {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media screen and (max-width: 768px) {
    .journey-section {
        padding: 80px 0;
    }
    
    .quote-box {
        padding: 25px;
    }
    
    .quote-box::before {
        font-size: 4rem;
        top: -15px;
    }
    
    .journey-text p, .quote-box p {
        font-size: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .journey-decoration {
        display: none;
    }
    
    .quote-box {
        padding: 20px;
    }
}

/* Section Témoignages */
.testimonials-section {
    padding: 120px 0;
    background-color: var(--gris-clair);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 5% 20%, rgba(250, 141, 111, 0.08) 0%, rgba(250, 141, 111, 0) 50%),
                radial-gradient(circle at 95% 80%, rgba(192, 153, 132, 0.08) 0%, rgba(192, 153, 132, 0) 50%);
    pointer-events: none;
}

.testimonials-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    position: relative;
}

.stars-container {
    margin-bottom: 20px;
}

.stars-container i {
    color: #FFCA28;
    font-size: 2rem;
    margin: 0 5px;
}

.testimonials-heading {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--texte-fonce);
    margin-bottom: 25px;
}

.google-review-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 25px;
    background-color: var(--blanc);
    color: var(--texte-fonce);
    border-radius: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    gap: 12px;
}

.google-review-btn span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

.google-review-btn i {
    font-size: 1.25rem;
    color: #eb7e60;
}

.google-review-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
    margin: 0 auto;
    padding: 20px 5px;
    width: 100%;
}

.testimonial-card {
    background-color: var(--blanc);
    border-radius: 15px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards;
}

.testimonial-card:nth-child(1) {
    animation-delay: 0.1s;
}

.testimonial-card:nth-child(2) {
    animation-delay: 0.3s;
}

.testimonial-card:nth-child(3) {
    animation-delay: 0.5s;
}

.testimonial-card:nth-child(4) {
    animation-delay: 0.7s;
}

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

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.client-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--marron-logo);
    margin-bottom: 0;
}

.testimonial-rating {
    display: flex;
    align-items: center;
    gap: 10px;
}

.testimonial-rating span {
    font-weight: 600;
    color: var(--texte-fonce);
}

.stars {
    display: flex;
    gap: 2px;
}

.stars i {
    color: #FFCA28;
    font-size: 0.9rem;
}

.testimonial-content {
    flex: 1;
}

.testimonial-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gris-texte);
    margin-bottom: 15px;
}

.testimonial-content p:last-child {
    margin-bottom: 0;
}

/* Responsive styles pour les témoignages */
@media screen and (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media screen and (max-width: 768px) {
    .testimonials-section {
        padding: 80px 0;
    }
    
    .stars-container i {
        font-size: 1.6rem;
    }
    
    .testimonials-heading {
        font-size: 1.5rem;
    }
    
    .testimonial-card {
        padding: 25px;
    }
    
    .client-name {
        font-size: 1.2rem;
    }
    
    .testimonial-content p {
        font-size: 0.95rem;
    }
}

@media screen and (max-width: 480px) {
    .testimonial-card {
        padding: 20px;
    }
    
    .testimonial-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .testimonial-rating {
        margin-left: 0;
    }
}

/* Section Mes Services */
.services-section {
    padding: 120px 0;
    background-color: var(--blanc);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 5% 15%, rgba(212, 175, 136, 0.05) 0%, rgba(212, 175, 136, 0) 50%),
        radial-gradient(circle at 95% 85%, rgba(250, 141, 111, 0.05) 0%, rgba(250, 141, 111, 0) 50%);
}

.services-quote {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
    position: relative;
}

.services-quote blockquote {
    position: relative;
    padding: 0 40px;
}

.services-quote blockquote::before,
.services-quote blockquote::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23fa8d6f"><path d="M14.017 21v-7.391c0-5.704 3.731-9.57 8.983-10.609l.995 2.151c-2.432.917-3.995 3.638-3.995 5.849h4v10h-9.983zm-14.017 0v-7.391c0-5.704 3.748-9.57 9-10.609l.996 2.151c-2.433.917-3.996 3.638-3.996 5.849h3.983v10h-9.983z"/></svg>');
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.4;
}

.services-quote blockquote::before {
    top: -20px;
    left: 0;
    transform: rotate(180deg);
}

.services-quote blockquote::after {
    bottom: -20px;
    right: 0;
}

.services-quote p {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-style: italic;
    color: var(--texte-fonce);
    line-height: 1.6;
}

.services-expertise {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-bottom: 60px;
}

.expertise-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 25px;
    background-color: var(--gris-clair);
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.expertise-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.expertise-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange-sophro), var(--orange-fleur));
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--blanc);
    font-size: 1.4rem;
}

.expertise-text {
    flex: 1;
}

.expertise-text p {
    margin: 0;
    font-size: 1.1rem;
    color: var(--texte-fonce);
}

.services-tabs {
    margin-top: 70px;
}

.tabs-header {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.tab-btn {
    padding: 15px 30px;
    border: none;
    background-color: var(--gris-clair);
    color: var(--texte-fonce);
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.tab-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(45deg, var(--orange-sophro), var(--orange-fleur));
    transition: var(--transition);
    z-index: -1;
}

.tab-btn:hover::before,
.tab-btn.active::before {
    width: 100%;
}

.tab-btn:hover,
.tab-btn.active {
    color: var(--blanc);
}

.tabs-content {
    position: relative;
    min-height: 400px;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.5s ease forwards;
    text-align: center;
}

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

.service-icon-large {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--marron-logo), var(--beige-fleur));
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--blanc);
    font-size: 2.5rem;
    margin: 0 auto 20px;
}

.tab-pane h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--texte-fonce);
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

.tab-pane h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 10%;
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--orange-sophro), transparent);
}

/* BtoC Content */
.btoc-content, .btob-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.audience-groups {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin: 0 auto;
}

.audience-item {
    flex: 0 0 150px;
    text-align: center;
    transition: var(--transition);
}

.audience-item:hover {
    transform: translateY(-10px);
}

.audience-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--beige-fleur), var(--orange-sophro));
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--blanc);
    font-size: 2.2rem;
    margin: 0 auto 15px;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.audience-item:hover .audience-icon {
    transform: scale(1.05);
    box-shadow: var(--shadow-hover);
}

.audience-item p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 1.1rem;
    color: var(--texte-fonce);
    margin: 0;
}

.audience-item p span {
    font-size: 0.9rem;
    color: var(--gris-texte);
    font-weight: normal;
}

/* BtoB Content */
.company-services {
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 800px;
    margin: 0 auto;
}

.company-service-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    text-align: left;
    padding: 25px;
    background-color: var(--gris-clair);
    border-radius: 15px;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.company-service-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-hover);
}

.company-service-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--marron-logo), var(--marron-pro));
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--blanc);
    font-size: 1.5rem;
}

.company-service-details {
    flex: 1;
}

.company-service-details h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--marron-logo);
    margin-bottom: 10px;
}

.company-service-details p {
    font-size: 1rem;
    color: var(--gris-texte);
    margin: 0;
}

.service-description {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.service-description p {
    color: var(--gris-texte);
    line-height: 1.7;
    font-size: 1.05rem;
    margin-bottom: 25px;
}

.btob-additional-info {
    background-color: rgba(250, 141, 111, 0.08);
    border-radius: 10px;
    padding: 15px 20px;
    margin-bottom: 25px;
    border-left: 3px solid var(--orange-sophro);
}

.btob-additional-info p {
    margin-bottom: 0;
    font-size: 1rem;
    display: flex;
    align-items: flex-start;
}

.btob-additional-info i {
    color: var(--orange-sophro);
    margin-right: 10px;
    font-size: 1.15rem;
    margin-top: 3px;
    flex-shrink: 0;
}

/* Responsive styles */
@media screen and (max-width: 992px) {
    .services-quote p {
        font-size: 1.3rem;
    }

    .expertise-item {
        width: 100%;
        max-width: 450px;
    }
}

@media screen and (max-width: 768px) {
    .services-section {
        padding: 80px 0;
    }

    .services-quote blockquote {
        padding: 0 30px;
    }

    .services-quote p {
        font-size: 1.2rem;
    }

    .tabs-header {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .tab-btn {
        width: 100%;
        max-width: 300px;
    }

    .tab-pane h3 {
        font-size: 1.8rem;
    }

    .audience-item {
        flex: 0 0 130px;
    }

    .audience-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }

    .audience-item p {
        font-size: 1rem;
    }

    .company-service-item {
        padding: 20px;
    }

    .company-service-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .company-service-details h4 {
        font-size: 1.2rem;
    }

    .service-description p {
        font-size: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .expertise-item {
        flex-direction: column;
        text-align: center;
        padding: 20px 15px;
    }

    .audience-groups {
        gap: 20px;
    }

    .audience-item {
        flex: 0 0 110px;
    }

    .audience-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .company-service-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* Section CTA */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--marron-logo) 0%, var(--orange-sophro) 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
    color: var(--blanc);
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('./images/img2.jpg');
    background-size: cover;
    opacity: 0.3;
    background-position: center;
    pointer-events: none;
}

.cta-section2::before {
    background-image: url('./images/cta-bg2.jpg');
}

.cta-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-quote {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    font-style: italic;
    line-height: 1.4;
    margin-bottom: 35px;
    position: relative;
    display: inline-block;
}

.cta-quote::before,
.cta-quote::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.6;
}

.cta-quote::before {
    top: -20px;
    left: -40px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23ffffff"><path d="M14.017 21v-7.391c0-5.704 3.731-9.57 8.983-10.609l.995 2.151c-2.432.917-3.995 3.638-3.995 5.849h4v10h-9.983zm-14.017 0v-7.391c0-5.704 3.748-9.57 9-10.609l.996 2.151c-2.433.917-3.996 3.638-3.996 5.849h3.983v10h-9.983z"/></svg>');
    transform: rotate(180deg);
}

.cta-quote::after {
    bottom: -20px;
    right: -40px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23ffffff"><path d="M14.017 21v-7.391c0-5.704 3.731-9.57 8.983-10.609l.995 2.151c-2.432.917-3.995 3.638-3.995 5.849h4v10h-9.983zm-14.017 0v-7.391c0-5.704 3.748-9.57 9-10.609l.996 2.151c-2.433.917-3.996 3.638-3.996 5.849h3.983v10h-9.983z"/></svg>');
}

.cta-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 18px 40px;
    background-color: var(--blanc);
    color: var(--marron-logo);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 5px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    background-color: var(--beige-fleur);
    color: var(--blanc);
    animation: none;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }
    70% {
        transform: scale(1.02);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

/* Responsive styles for CTA section */
@media screen and (max-width: 992px) {
    .cta-quote {
        font-size: 2.2rem;
    }
}

@media screen and (max-width: 768px) {
    .cta-section {
        padding: 80px 0;
    }
    
    .cta-quote {
        font-size: 1.8rem;
    }
    
    .cta-quote::before,
    .cta-quote::after {
        width: 30px;
        height: 30px;
    }
    
    .cta-quote::before {
        left: -30px;
    }
    
    .cta-quote::after {
        right: -30px;
    }
    
    .cta-btn {
        padding: 15px 30px;
        font-size: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .cta-quote {
        font-size: 1.5rem;
    }
    
    .cta-quote::before,
    .cta-quote::after {
        width: 25px;
        height: 25px;
    }
    
    .cta-btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}

/* Footer */
footer {
    background-color: var(--blanc);
    padding: 70px 0 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 50px;
}

.footer-logo {
    flex: 0 0 300px;
}

.footer-logo img {
    max-width: 120px;
    margin-bottom: 20px;
}

.footer-logo p {
    font-size: 0.95rem;
    color: var(--gris-texte);
    line-height: 1.7;
    margin-bottom: 25px;
}

.footer-nav {
    flex: 0 0 300px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.footer-nav h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--texte-fonce);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-nav h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 2px;
    background-color: var(--orange-sophro);
}

.footer-nav ul {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.footer-nav-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: var(--gris-texte);
    transition: var(--transition);
    position: relative;
}

.footer-nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -3px;
    right: 0;
    background-color: var(--orange-sophro);
    transition: var(--transition);
}

.footer-nav-link:hover {
    color: var(--orange-sophro);
}

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

.footer-bottom {
    padding-top: 25px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}

.footer-social a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--gris-clair);
    color: var(--marron-logo);
    font-size: 1.1rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background-color: var(--orange-sophro);
    color: var(--blanc);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.css-logo {
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.css-logo:hover {
    opacity: 1;
}

.css-logo img {
    max-height: 50px;
    margin-right: 10px;
}

.css-logo span {
    font-size: 0.8rem;
    color: var(--gris-texte);
    font-style: italic;
}

.copyright {
    font-size: 0.9rem;
    color: var(--gris-texte);
    margin-bottom: 10px;
    text-align: center;
}

.mentions-link {
    font-size: 0.85rem;
    color: var(--gris-texte);
    text-decoration: underline;
    transition: var(--transition);
}

.mentions-link:hover {
    color: var(--orange-sophro);
}

/* Responsive styles for footer */
@media screen and (max-width: 992px) {
    .footer-container {
        flex-direction: column;
        gap: 40px;
        align-items: center;
        text-align: center;
    }
    
    .footer-logo, .footer-nav {
        flex: 0 0 100%;
    }
    
    .footer-nav {
        align-items: center;
    }
    
    .footer-nav h3 {
        text-align: center;
    }
    
    .footer-nav h3::after {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
    }
    
    .footer-nav ul {
        align-items: center;
    }
    
    .footer-nav-link::after {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
    }
}

@media screen and (max-width: 480px) {
    footer {
        padding: 50px 0 20px;
    }

    .scroll-down {
        display: none;
    }

    .form-group i {
        display: none;
    }
    
    .footer-logo img {
        max-width: 160px;
        margin: auto;
    }
    
    .footer-nav h3 {
        font-size: 1.2rem;
    }
    
    .footer-nav-link {
        font-size: 0.95rem;
    }
    
    .footer-social a {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

/* Hero Section pour les pages secondaires */
.hero-2 {
    position: relative;
    height: 60vh;
    min-height: 300px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--marron-pro) 0%, var(--orange-fleur) 100%);
    color: var(--blanc);
    padding-top: 80px;
    overflow: hidden;
}

.hero-2 .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("./images/cta-bg.jpg");
    background-size: cover;
    opacity: 0.3;
    pointer-events: none;
}

.hero3 .hero-overlay {
    background: url("./images/hero3.jpg");
    background-size: cover;
    background-position: center;
}

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

.hero-2 .hero-title {
    font-size: 3rem;
    margin-bottom: 25px;
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-2 .hero-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: var(--blanc);
}

.hero-2 .hero-description {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.2);
}

.breadcrumb {
    position: absolute;
    top: 100px;
    left: 0;
    width: 100%;
    z-index: 5;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 10px;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: var(--blanc);
    opacity: 0.8;
}

.breadcrumb-item:not(:last-child):after {
    content: '/';
    margin-left: 10px;
}

.breadcrumb-link {
    transition: var(--transition);
}

.breadcrumb-link:hover {
    color: var(--blanc);
    opacity: 1;
}

.breadcrumb-item.active {
    font-weight: 600;
    opacity: 1;
}

/* Responsive styles for hero-2 */
@media screen and (max-width: 992px) {
    .hero-2 .hero-title {
        font-size: 2.5rem;
    }
}

@media screen and (max-width: 768px) {
    .hero-2 {
        min-height: 250px;
    }
    
    .hero-2 .hero-title {
        font-size: 2rem;
    }
    
    .hero-2 .hero-description {
        font-size: 1.1rem;
    }
    
    .breadcrumb {
        top: 80px;
    }
}

@media screen and (max-width: 480px) {
    .hero-2 {
        min-height: 220px;
    }
    
    .hero-2 .hero-title {
        font-size: 1.7rem;
    }
    
    .hero-2 .hero-description {
        font-size: 1rem;
    }
}

/* Section Prestations */
.prestations-section {
    padding: 120px 0;
    background-color: var(--blanc);
    position: relative;
    overflow: hidden;
}

.prestations-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 5% 20%, rgba(212, 175, 136, 0.05) 0%, rgba(212, 175, 136, 0) 50%),
        radial-gradient(circle at 95% 80%, rgba(250, 141, 111, 0.05) 0%, rgba(250, 141, 111, 0) 50%);
}

.prestations-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.prestations-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gris-texte);
}

.prestations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.prestation-card {
    background-color: var(--blanc);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards;
}

.prestation-card:nth-child(2) {
    animation-delay: 0.2s;
}

.prestation-card:nth-child(3) {
    animation-delay: 0.4s;
}

.prestation-card:nth-child(4) {
    animation-delay: 0.6s;
}

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

.prestation-header {
    position: relative;
    padding: 40px 30px;
    text-align: center;
    color: var(--blanc);
}

.prestation-card:nth-child(1) .prestation-header {
    background: linear-gradient(135deg, var(--orange-sophro), var(--orange-fleur));
}

.prestation-card:nth-child(2) .prestation-header {
    background: linear-gradient(135deg, var(--marron-logo), var(--marron-pro));
}

.prestation-card:nth-child(3) .prestation-header {
    background: linear-gradient(135deg, var(--beige-fleur), var(--orange-sophro));
}

.prestation-card:nth-child(4) .prestation-header {
    background: linear-gradient(135deg, var(--orange-fleur), var(--marron-logo));
}

.prestation-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.15);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    font-size: 2.5rem;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.prestation-card:hover .prestation-icon {
    transform: rotateY(180deg);
    background-color: rgba(255, 255, 255, 0.25);
}

.prestation-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0;
}

.prestation-body {
    padding: 30px;
    background-color: var(--blanc);
}

.prestation-description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--gris-texte);
    margin-bottom: 25px;
}

.prestation-features {
    margin-top: 20px;
}

.prestation-feature {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1rem;
    color: var(--texte-fonce);
}

.prestation-feature i {
    color: var(--orange-sophro);
    margin-right: 10px;
    font-size: 1.1rem;
}

.prestation-card:nth-child(2) .prestation-feature i {
    color: var(--marron-logo);
}

.prestation-card:nth-child(3) .prestation-feature i {
    color: var(--beige-fleur);
}

.prestation-card:nth-child(4) .prestation-feature i {
    color: var(--orange-fleur);
}

.prestation-footer {
    padding: 0 30px 30px;
    text-align: center;
}

.btn-details {
    display: inline-block;
    padding: 12px 25px;
    background-color: var(--gris-clair);
    color: var(--texte-fonce);
    border-radius: 30px;
    font-weight: 500;
    transition: var(--transition);
}

.btn-details:hover {
    background-color: var(--orange-sophro);
    color: var(--blanc);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.prestation-card:nth-child(2) .btn-details:hover {
    background-color: var(--marron-logo);
}

.prestation-card:nth-child(3) .btn-details:hover {
    background-color: var(--beige-fleur);
}

.prestation-card:nth-child(4) .btn-details:hover {
    background-color: var(--orange-fleur);
}

/* Responsive styles for prestations */
@media screen and (max-width: 992px) {
    .prestations-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media screen and (max-width: 768px) {
    .prestations-section {
        padding: 80px 0;
    }
    
    .prestation-icon {
        width: 80px;
        height: 80px;
        font-size: 2.2rem;
    }
    
    .prestation-title {
        font-size: 1.6rem;
    }
    
    .prestation-description {
        font-size: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .prestations-grid {
        grid-template-columns: 1fr;
    }
    
    .prestation-header {
        padding: 30px 20px;
    }
    
    .prestation-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    
    .prestation-body, .prestation-footer {
        padding: 20px;
    }
}

/* Applications Section */
.applications-header {
    margin-top: 100px;
}

.applications-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.application-item {
    background-color: var(--blanc);
    border-radius: 15px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    padding: 30px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.application-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--orange-sophro), var(--marron-logo));
    z-index: 1;
}

.application-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.application-icon {
    width: 70px;
    height: 70px;
    background-color: var(--gris-clair);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    color: var(--orange-sophro);
    transition: var(--transition);
}

.application-item:hover .application-icon {
    background-color: var(--orange-sophro);
    color: var(--blanc);
    transform: rotateY(360deg);
}

.application-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--texte-fonce);
    margin-bottom: 15px;
}

.application-content p {
    font-size: 1rem;
    color: var(--gris-texte);
    line-height: 1.6;
}

/* Therapy Note */
.therapy-note {
    margin-top: 80px;
    position: relative;
}

.therapy-note-inner {
    background: linear-gradient(135deg, var(--beige-fleur) 0%, var(--orange-fleur) 100%);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 30px;
    color: var(--blanc);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.therapy-note-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.1"/></svg>');
    background-size: 20px 20px;
    opacity: 0.1;
}

.therapy-note-icon {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5rem;
}

.therapy-note-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 15px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.therapy-note-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}

/* Responsive styles for applications and therapy note */
@media screen and (max-width: 992px) {
    .applications-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .therapy-note-inner {
        padding: 30px;
    }
    
    .therapy-note-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .therapy-note-content h3 {
        font-size: 1.6rem;
    }
}

@media screen and (max-width: 768px) {
    .applications-header {
        margin-top: 70px;
    }
    
    .therapy-note {
        margin-top: 60px;
    }
    
    .therapy-note-inner {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    
    .application-content h3 {
        font-size: 1.3rem;
    }
}

@media screen and (max-width: 576px) {
    .applications-container {
        grid-template-columns: 1fr;
    }
    
    .application-item {
        padding: 25px 20px;
    }
    
    .therapy-note-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    
    .therapy-note-content h3 {
        font-size: 1.5rem;
    }
}

/* Section Tarifs et Éthique */
.pricing-section {
    padding: 120px 0;
    background-color: var(--gris-clair);
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 15% 15%, rgba(192, 153, 132, 0.07) 0%, rgba(192, 153, 132, 0) 50%),
        radial-gradient(circle at 85% 85%, rgba(235, 126, 96, 0.07) 0%, rgba(235, 126, 96, 0) 50%);
    pointer-events: none;
}

.pricing-wrapper {
    display: flex;
    gap: 60px;
    margin-top: 60px;
}

.pricing-col {
    flex: 1;
    position: relative;
}

.pricing-box {
    background-color: var(--blanc);
    border-radius: 20px;
    box-shadow: var(--shadow);
    padding: 40px;
    height: 100%;
    position: relative;
    transition: var(--transition);
}

.pricing-box:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.pricing-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--marron-logo);
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--gris-clair);
    position: relative;
}

.pricing-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 80px;
    height: 2px;
    background-color: var(--orange-sophro);
}

.price-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

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

.service-name {
    font-weight: 500;
    color: var(--texte-fonce);
    flex: 1;
}

.service-type {
    font-size: 0.9rem;
    color: var(--gris-texte);
    font-style: italic;
}

.price-value {
    font-weight: 600;
    color: var(--orange-sophro);
    margin-left: 0;
}

.payment-info {
    margin-top: 40px;
    background-color: var(--gris-clair);
    padding: 25px;
    border-radius: 10px;
}

.payment-info h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--texte-fonce);
}

.payment-methods {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.payment-method {
    display: flex;
    align-items: center;
    padding: 8px 15px;
    background-color: var(--blanc);
    border-radius: 30px;
    font-size: 0.9rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.payment-method i {
    margin-right: 8px;
    color: var(--orange-sophro);
}

.pricing-note {
    margin-top: 30px;
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--gris-texte);
    font-style: italic;
}

.mutuelle-note {
    margin-top: 25px;
    padding: 15px;
    background-color: var(--blanc);
    border-left: 3px solid var(--orange-sophro);
    border-radius: 0 5px 5px 0;
    font-size: 0.95rem;
}

.ethics-box {
    background-color: var(--blanc);
    border-radius: 20px;
    box-shadow: var(--shadow);
    padding: 40px;
    height: 100%;
    transition: var(--transition);
}

.ethics-box:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.ethics-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--marron-logo);
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--gris-clair);
    position: relative;
}

.ethics-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 80px;
    height: 2px;
    background-color: var(--orange-sophro);
}

.ethics-list {
    margin-top: 30px;
}

.ethics-item {
    position: relative;
    padding-left: 30px;
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gris-texte);
}

.ethics-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--orange-sophro);
}

.ethics-note {
    margin-top: 35px;
    padding: 25px;
    background-color: var(--gris-clair);
    border-radius: 10px;
}

.ethics-note h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--texte-fonce);
}

.ethics-note p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gris-texte);
    margin-bottom: 15px;
}

.ethics-note p:last-child {
    margin-bottom: 0;
}

/* Responsive styles for pricing section */
@media screen and (max-width: 992px) {
    .pricing-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .pricing-box, .ethics-box {
        height: auto;
    }
}

@media screen and (max-width: 768px) {
    .pricing-section {
        padding: 80px 0;
    }

    .pricing-title, .ethics-title {
        font-size: 1.6rem;
    }

    .payment-methods {
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 480px) {
    .pricing-box, .ethics-box {
        padding: 30px 20px;
    }

    .pricing-title, .ethics-title {
        font-size: 1.4rem;
    }

    .price-item {
        flex-direction: column;
        gap: 5px;
    }

    .price-value {
        margin-left: 0;
    }
}

/* Section Chiffres Clés */
.stats-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffecd9 0%, var(--gris-clair) 100%);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><circle cx="12" cy="12" r="1" fill="%23ffffff" opacity="0.2"/></svg>');
    background-size: 30px 30px;
    opacity: 0.2;
    pointer-events: none;
}

.stats-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    margin-top: 50px;
}

.stat-col {
    flex: 1;
    text-align: center;
    position: relative;
}

.stat-col:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 20%;
    right: -20px;
    height: 60%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, var(--marron-logo), transparent);
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    color: var(--marron-logo);
    margin-bottom: 10px;
    line-height: 1;
    position: relative;
    display: inline-block;
}

.stat-number::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background-color: var(--orange-sophro);
    border-radius: 10px;
}

.stat-text {
    font-size: 1.1rem;
    color: var(--texte-fonce);
    line-height: 1.5;
    max-width: 250px;
    margin: 0 auto;
    margin-top: 20px;
}

.stat-text span {
    display: block;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--orange-sophro);
    margin-bottom: 5px;
}

.stats-note {
    text-align: center;
    margin-top: 60px;
    font-style: italic;
    color: var(--texte-fonce);
    font-size: 1.1rem;
    position: relative;
    padding: 0 20px;
}

.stats-note::before,
.stats-note::after {
    content: '';
    display: inline-block;
    width: 40px;
    height: 1px;
    background-color: var(--orange-sophro);
    vertical-align: middle;
    margin: 0 15px;
}

/* Responsive styles for stats section */
@media screen and (max-width: 992px) {
    .stats-container {
        flex-wrap: wrap;
        gap: 50px 20px;
    }
    
    .stat-col {
        flex: 0 0 45%;
    }
    
    .stat-col:not(:last-child)::after {
        display: none;
    }
    
    .stat-number {
        font-size: 3.5rem;
    }
}

@media screen and (max-width: 768px) {
    .stats-section {
        padding: 80px 0;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .stat-text {
        font-size: 1rem;
    }
}

@media screen and (max-width: 576px) {
    .stats-container {
        flex-direction: column;
        gap: 60px;
    }
    
    .stat-number {
        font-size: 3.2rem;
    }
    
    .stats-note {
        font-size: 1rem;
    }
    
    .stats-note::before,
    .stats-note::after {
        width: 20px;
    }
}

/* Section Contact */
.contact-section {
    padding: 120px 0;
    background-color: var(--blanc);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 5% 20%, rgba(212, 175, 136, 0.04) 0%, rgba(212, 175, 136, 0) 40%),
        radial-gradient(circle at 95% 80%, rgba(250, 141, 111, 0.04) 0%, rgba(250, 141, 111, 0) 40%);
    pointer-events: none;
}

.contact-container {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    background-color: var(--blanc);
    border-radius: 15px;
    padding: 30px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

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

.contact-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-icon-container {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--gris-clair);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--orange-sophro);
}

.contact-title {
    font-family: 'Playfair Display', serif;
    color: var(--marron-logo);
    font-size: 1.5rem;
    margin: 0;
}

.contact-content {
    padding-left: 80px;
}

.contact-content p {
    margin: 0;
    line-height: 1.7;
    color: var(--gris-texte);
    font-size: 1.05rem;
}

.contact-content p.location {
    margin-bottom: 10px;
}

.contact-content a {
    color: var(--texte-fonce);
    transition: var(--transition);
}

.contact-content a:hover {
    color: var(--orange-sophro);
}

/* Hours styles */
.hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

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

.day {
    font-weight: 500;
    color: var(--texte-fonce);
}

.hour {
    color: var(--gris-texte);
}

/* Social media styles */
.contact-social {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 15px;
    background-color: var(--gris-clair);
    border-radius: 30px;
    transition: var(--transition);
    flex-grow: 1;
    text-align: center;
    justify-content: center;
}

.social-link:hover {
    background-color: var(--orange-sophro);
    color: var(--blanc) !important;
    transform: translateY(-3px);
}

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

.social-link:hover i {
    color: var(--blanc);
}

/* Contact form styles */
.contact-form-container {
    flex: 1;
    background: linear-gradient(135deg, var(--marron-pro) 0%, var(--orange-fleur) 100%);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    transform: translateZ(0);
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="30" height="30" viewBox="0 0 30 30"><circle cx="15" cy="15" r="1" fill="%23ffffff" opacity="0.2"/></svg>');
    background-size: 30px 30px;
    opacity: 0.1;
    pointer-events: none;
}

.contact-form-container::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

.form-header {
    text-align: center;
    margin-bottom: 35px;
    position: relative;
}

.form-header::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 2px;
}

.form-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--blanc);
    margin-bottom: 12px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.form-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
}

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

.form-group {
    position: relative;
    margin-bottom: 25px;
}

.form-control {
    width: 100%;
    padding: 12px 15px 12px 45px;
    border: 1px solid var(--gris-clair);
    border-radius: 8px;
    font-size: 1rem;
    color: var(--gris-texte);
    background-color: var(--blanc);
    transition: var(--transition);
}

.form-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gris-texte);
    font-size: 1.1rem;
    transition: var(--transition);
}

.form-group:nth-child(4) .form-icon {
    top: 20px;
    transform: none;
}

.form-group:hover .form-icon {
    color: var(--orange-sophro);
}

.form-control:focus {
    border-color: var(--orange-sophro);
    box-shadow: 0 0 0 2px rgba(255, 102, 0, 0.1);
    outline: none;
}

.form-control::placeholder {
    color: var(--gris-texte);
    opacity: 0.7;
}

.form-control:focus::placeholder {
    opacity: 0.5;
}

textarea.form-control {
    min-height: 150px;
    padding: 15px 15px 15px 45px;
    resize: vertical;
}

@media screen and (max-width: 576px) {
    .form-control {
        padding: 12px 15px 12px 40px;
        font-size: 0.95rem;
    }

    .form-icon {
        left: 12px;
        font-size: 1rem;
    }

    textarea.form-control {
        padding: 15px 15px 15px 40px;
    }
}

.submit-btn {
    width: 100%;
    padding: 16px;
    border: 2px solid var(--blanc);
    border-radius: 12px;
    background-color: var(--blanc);
    color: var(--marron-logo);
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

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

.submit-btn i {
    transition: all 0.3s ease;
    transform: translateX(-5px);
    opacity: 0;
}

.submit-btn:hover {
    background-color: transparent;
    color: var(--blanc);
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.15);
}

.submit-btn:hover i {
    transform: translateX(5px);
    opacity: 1;
}

.submit-btn:hover::before {
    animation: shine 1.5s ease;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

@media screen and (max-width: 768px) {
    .form-title {
        font-size: 1.8rem;
    }
    
    .form-subtitle {
        font-size: 1rem;
    }
    
    .form-control {
        padding: 14px 18px;
    }
    
    .submit-btn {
        padding: 14px;
        font-size: 1rem;
    }
}

@media screen and (max-width: 576px) {
    .contact-form-container {
        padding: 35px 25px;
    }
    
    .form-control {
        padding: 12px 16px;
    }
    
    .submit-btn {
        padding: 12px;
        font-size: 0.95rem;
    }
}

/* Map styles */
.map-container {
    margin-top: 40px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-container iframe {
    width: 100%;
    height: 300px;
    border: none;
    display: block;
}

/* Responsive styles */
@media screen and (max-width: 992px) {
    .contact-container {
        flex-direction: column;
        gap: 40px;
    }

    .contact-info, .contact-form-container {
        width:100%;
        margin: auto;
    }
    
    .contact-content {
        padding-left: 0;
        margin-top: 20px;
    }
    
    .contact-card-header {
        justify-content: center;
    }
    
    .contact-title {
        text-align: center;
    }
    
    .contact-content p {
        text-align: center;
    }
    
    .hours-list {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media screen and (max-width: 768px) {
    .contact-section {
        padding: 80px 0;
    }
    
    .contact-title {
        font-size: 1.3rem;
    }
    
    .contact-content p {
        font-size: 1rem;
    }
    
    .form-title {
        font-size: 1.8rem;
    }
    
    .form-subtitle {
        font-size: 1rem;
    }
}

@media screen and (max-width: 576px) {
    .contact-icon-container {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .contact-card {
        padding: 25px 20px;
    }
    
    .social-link {
        flex-basis: calc(50% - 8px);
    }
    
    .contact-form-container {
        padding: 30px 20px;
    }
    
    .form-control {
        padding: 12px;
    }
    
    .submit-btn {
        padding: 12px;
        font-size: 1rem;
    }
}

/* Process Section Styles */
.process-section {
    padding: 90px 0;
    background-color: var(--gris-clair);
    position: relative;
    overflow: hidden;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 15% 25%, rgba(212, 175, 136, 0.08) 0%, rgba(212, 175, 136, 0) 50%),
        radial-gradient(circle at 85% 85%, rgba(250, 141, 111, 0.08) 0%, rgba(250, 141, 111, 0) 50%);
    pointer-events: none;
}

.process-container {
    margin-top: 50px;
    position: relative;
}

.process-container::after {
    content: '';
    position: absolute;
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--marron-pro), transparent);
    bottom: -40px;
    left: 10%;
    opacity: 0.3;
}

.process-quote {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 70px;
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-style: italic;
    color: var(--marron-logo);
    position: relative;
    padding: 0 40px;
    line-height: 1.5;
}

.process-quote::before {
    content: '\201C';
    position: absolute;
    top: -30px;
    left: 0;
    font-size: 80px;
    color: var(--orange-sophro);
    opacity: 0.2;
    font-family: 'Playfair Display', serif;
}

.process-quote::after {
    content: '\201D';
    position: absolute;
    bottom: -60px;
    right: 0;
    font-size: 80px;
    color: var(--orange-sophro);
    opacity: 0.2;
    font-family: 'Playfair Display', serif;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 70px;
    left: 10%;
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--marron-pro) 10%, 
        var(--orange-fleur) 50%,
        var(--marron-pro) 90%,
        transparent 100%);
    z-index: 1;
    opacity: 0.7;
}

.process-step {
    flex: 1;
    min-width: 240px;
    max-width: 280px;
    position: relative;
    z-index: 2;
    background-color: var(--blanc);
    border-radius: 15px;
    box-shadow: var(--shadow);
    padding: 30px 25px;
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    overflow: hidden;
}

.process-step::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--marron-pro), var(--orange-fleur));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.process-step:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--marron-pro) 0%, var(--orange-fleur) 100%);
    color: var(--blanc);
    border-radius: 50%;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 3;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-number::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--marron-pro) 0%, var(--orange-fleur) 100%);
    opacity: 0.2;
    z-index: -1;
    transform: scale(0);
    transition: transform 0.4s ease;
}

.process-step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.process-step:hover .step-number::before {
    transform: scale(1.2);
}

.step-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--marron-logo);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.step-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--marron-pro), var(--orange-fleur));
    margin: 10px auto 0;
    transition: width 0.4s ease;
}

.process-step:hover .step-title::after {
    width: 80px;
}

.step-description p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gris-texte);
    transition: color 0.3s ease;
}

.process-step:hover .step-description p {
    color: var(--texte-fonce);
}

.process-note {
    max-width: 850px;
    margin: 80px auto 0;
    padding: 40px;
    background-color: var(--blanc);
    border-radius: 15px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.process-note::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--marron-pro), var(--orange-fleur));
}

.process-note::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--marron-pro) 0%, var(--orange-fleur) 100%);
    opacity: 0.05;
    border-radius: 0 0 0 100%;
    pointer-events: none;
}

.process-note h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--marron-logo);
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.process-note h3::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--marron-pro), var(--orange-fleur));
    margin-top: 10px;
}

.process-note p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--gris-texte);
    margin-bottom: 15px;
    position: relative;
    padding-left: 20px;
}

.process-note p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--orange-sophro);
    opacity: 0.7;
}

.process-note p:last-child {
    margin-bottom: 0;
}

.highlight-text {
    color: var(--orange-sophro);
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--orange-sophro);
    opacity: 0.2;
}

@media (max-width: 992px) {
    .process-steps::before {
        display: none;
    }
    
    .process-step {
        max-width: 45%;
        min-width: 45%;
    }
    
    .process-quote {
        font-size: 1.4rem;
        padding: 0 30px;
    }
    
    .process-quote::before {
        font-size: 60px;
    }
    
    .process-quote::after {
        font-size: 60px;
    }
}

@media (max-width: 768px) {
    .process-section {
        padding: 70px 0;
    }
    
    .process-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .process-step {
        max-width: 100%;
        min-width: 100%;
        margin-bottom: 30px;
    }
    
    .process-quote {
        font-size: 1.3rem;
        padding: 0 20px;
        margin-bottom: 50px;
    }
    
    .process-note {
        padding: 30px;
    }
    
    .process-note h3 {
        font-size: 1.4rem;
    }
    
    .process-note p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .process-quote {
        font-size: 1.2rem;
    }
    
    .process-quote::before, 
    .process-quote::after {
        font-size: 50px;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
    }
    
    .step-title {
        font-size: 1.3rem;
    }
    
    .process-note {
        padding: 25px 20px;
    }
    
    .process-note p {
        padding-left: 15px;
    }
}

/* Section Mentions Légales */
.legal-section {
    padding: 80px 0;
    background-color: var(--blanc);
    position: relative;
}

.legal-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 10%, rgba(192, 153, 132, 0.03) 0%, rgba(192, 153, 132, 0) 50%),
        radial-gradient(circle at 90% 90%, rgba(235, 126, 96, 0.03) 0%, rgba(235, 126, 96, 0) 50%);
    pointer-events: none;
}

.legal-container {
    position: relative;
}

.legal-card {
    background-color: var(--blanc);
    border-radius: 15px;
    padding: 40px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.legal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--marron-pro), var(--orange-fleur));
}

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

.legal-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--marron-logo);
    margin-bottom: 25px;
    padding-bottom: 15px;
    position: relative;
}

.legal-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, var(--marron-pro), var(--orange-fleur));
}

.legal-content {
    color: var(--gris-texte);
}

.legal-content p {
    margin-bottom: 15px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.legal-content strong {
    color: var(--texte-fonce);
    font-weight: 600;
}

.legal-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.legal-item {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--gris-texte);
}

.legal-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--orange-sophro);
    opacity: 0.7;
}

.legal-divider {
    height: 1px;
    width: 100%;
    background: linear-gradient(90deg, transparent, var(--gris-clair), transparent);
    margin: 30px 0;
}

.legal-subsection {
    margin-top: 30px;
}

.legal-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--marron-logo);
    margin-bottom: 15px;
}

.legal-info {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.legal-info-item {
    flex: 1;
    min-width: 250px;
    margin-bottom: 20px;
}

.legal-info-title {
    font-weight: 600;
    color: var(--texte-fonce);
    margin-bottom: 5px;
}

.legal-info-content {
    color: var(--gris-texte);
    line-height: 1.6;
}

.privacy-notice p {
    position: relative;
    padding-left: 20px;
    margin-bottom: 15px;
}

.privacy-notice p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--orange-sophro);
    opacity: 0.7;
}

.privacy-important {
    background-color: rgba(235, 126, 96, 0.05);
    border-radius: 10px;
    padding: 20px 25px;
    margin: 25px 0;
    border-left: 3px solid var(--orange-sophro);
}

.privacy-important p {
    padding-left: 0;
}

.privacy-important p::before {
    display: none;
}

@media screen and (max-width: 768px) {
    .legal-section {
        padding: 60px 0;
    }
    
    .legal-card {
        padding: 30px;
    }
    
    .legal-title {
        font-size: 1.4rem;
    }
    
    .legal-subtitle {
        font-size: 1.2rem;
    }
    
    .legal-content p, .legal-item {
        font-size: 1rem;
    }
    
    .legal-info-item {
        min-width: 100%;
    }
}

@media screen and (max-width: 480px) {
    .legal-section {
        padding: 50px 0;
    }
    
    .legal-card {
        padding: 25px 20px;
    }
    
    .legal-title {
        font-size: 1.3rem;
    }
    
    .legal-subtitle {
        font-size: 1.1rem;
    }
}

.therapy-note-content p {
    line-height: 1.7;
    margin-bottom: 0;
}

/* Formats de séances */
.formats-section {
    padding: 90px 0;
    background-color: var(--blanc);
    position: relative;
    overflow: hidden;
}

.formats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(192, 153, 132, 0.05) 0%, rgba(192, 153, 132, 0) 50%),
        radial-gradient(circle at 80% 70%, rgba(250, 141, 111, 0.05) 0%, rgba(250, 141, 111, 0) 50%);
    pointer-events: none;
}

.formats-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
    position: relative;
}

.formats-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gris-clair), transparent);
    z-index: 0;
}

.format-col {
    flex: 1;
    max-width: 500px;
    position: relative;
    z-index: 1;
}

.format-card {
    background-color: var(--blanc);
    border-radius: 15px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.format-header {
    background: linear-gradient(135deg, var(--marron-pro) 0%, var(--orange-fleur) 100%);
    padding: 30px;
    position: relative;
    overflow: hidden;
}

.format-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 40 40"><circle cx="20" cy="20" r="1" fill="%23ffffff" opacity="0.3"/></svg>');
    background-size: 40px 40px;
    opacity: 0.1;
    pointer-events: none;
}

.format-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--blanc);
    transition: all 0.3s ease;
    position: relative;
}

.format-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    z-index: -1;
    transform: scale(0);
    transition: transform 0.3s ease;
}

.format-card:hover .format-icon {
    transform: scale(1.1);
}

.format-card:hover .format-icon::before {
    transform: scale(1.5);
}

.format-title {
    color: var(--blanc);
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    text-align: center;
    margin: 0 0 10px;
}

.format-subtitle {
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    font-size: 1.1rem;
    font-weight: 300;
}

.format-body {
    padding: 35px 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.format-description {
    color: var(--gris-texte);
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.7;
}

.format-features {
    margin-top: auto;
}

.format-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.format-feature:last-child {
    margin-bottom: 0;
}

.feature-icon {
    min-width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--marron-pro) 0%, var(--orange-fleur) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blanc);
    font-size: 1rem;
    margin-right: 15px;
}

.feature-content {
    flex: 1;
}

.feature-title {
    color: var(--texte-fonce);
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.feature-text {
    color: var(--gris-texte);
    line-height: 1.6;
    font-size: 0.95rem;
}

.formats-note {
    text-align: center;
    margin-top: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 30px;
    position: relative;
    border-radius: 15px;
    background-color: rgba(250, 141, 111, 0.03);
}

.formats-note::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--orange-sophro), transparent);
    border-radius: 3px 3px 0 0;
}

.formats-note p {
    color: var(--gris-texte);
    line-height: 1.7;
    font-size: 1.05rem;
    margin: 0;
}

.formats-note strong {
    color: var(--orange-sophro);
    font-weight: 600;
}

@media screen and (max-width: 992px) {
    .formats-container {
        flex-direction: column;
        align-items: center;
        gap: 50px;
    }
    
    .formats-container::before {
        display: none;
    }
    
    .format-col {
        max-width: 600px;
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .formats-section {
        padding: 70px 0;
    }
    
    .format-header {
        padding: 25px;
    }
    
    .format-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .format-title {
        font-size: 1.6rem;
    }
    
    .format-body {
        padding: 30px 25px;
    }
    
    .formats-note {
        padding: 25px 20px;
    }
}

@media screen and (max-width: 480px) {
    .format-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .format-title {
        font-size: 1.4rem;
    }
    
    .format-subtitle {
        font-size: 1rem;
    }
    
    .format-feature {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .feature-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

/* Styles pour la section des tarifs dans les mentions légales */
.legal-pricing {
    margin-top: 25px;
}

.legal-price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.legal-price-item:last-child {
    border-bottom: none;
    margin-bottom: 15px;
}

.legal-service-name {
    color: var(--texte-fonce);
    font-weight: 500;
    line-height: 1.4;
}

.legal-service-type {
    font-size: 0.9rem;
    color: var(--gris-texte);
    font-weight: normal;
}

.legal-price-value {
    font-weight: 600;
    color: var(--orange-sophro);
    font-size: 1.1rem;
}

.legal-mutuelle-note {
    background-color: rgba(235, 126, 96, 0.05);
    border-radius: 8px;
    padding: 15px;
    margin: 20px 0;
    position: relative;
    padding-left: 40px;
}

.legal-mutuelle-note i {
    position: absolute;
    left: 15px;
    top: 15px;
    color: var(--orange-sophro);
    font-size: 1.1rem;
}

.legal-payment-info {
    margin-top: 25px;
}

.legal-payment-info h4 {
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--texte-fonce);
    font-size: 1.1rem;
}

.legal-payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}

.legal-payment-method {
    background-color: rgba(235, 126, 96, 0.05);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
}

.legal-payment-method i {
    margin-right: 8px;
    color: var(--orange-sophro);
}

.legal-pricing-note {
    font-size: 0.95rem;
    color: var(--gris-texte);
    font-style: italic;
}

@media screen and (max-width: 480px) {
    .legal-subtitle {
        font-size: 1.1rem;
    }

    .form-group textarea {
        padding-left: 15px;
    }
}