/* ========================================
   STYLES DE BASE
======================================== */

body {
    background-image: url(../img/fond_presta.png);
    background-size: 225% auto;
    background-repeat: no-repeat;
    background-position: top center;
    margin: 0;
    padding: 10px;
}

@media (max-width: 768px) {
    body {
        background-size: cover;
        background-position: center top;
        background-attachment: fixed;
    }
}

.main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ========================================
   HEADER & NAVIGATION
======================================== */

.header {
    padding: 0.3rem 2rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 1rem;
}

.logo {
    font-size: 2.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 220px;
    width: auto;
    display: block;
    margin-top: -0.5rem;
}

.navigation {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-btn {
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    font-family: 'Work Sans', sans-serif;
}

.nav-btn:hover, 
.nav-btn.active {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    filter: brightness(1.1);
}

/* ========================================
   CARTE PRESTATION PRINCIPALE
======================================== */

.presta-card {
    max-width: 900px;
    margin-left: 140px;
    margin-bottom: 2rem;
    margin-top: 0.1px;
    padding: 1.5rem 0.8rem;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(0, 162, 255, 0.4), rgba(242, 9, 149, 0.4));
    color: white;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.presta-header p {
    font-size: 1.2rem;
    line-height: 1.7;
    white-space: pre-line;
    text-align: justify;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    margin: 0 0 1rem;
    font-family: 'Work Sans', sans-serif;
}

.presta-header .center-text1,
.presta-header .center-text3 {
    text-align: center;
    display: block;
    line-height: 1;
    font-family: 'Work Sans', sans-serif;
    letter-spacing: 2px;
    font-size: 1.2rem;
}

.presta-header .center-text3 {
    letter-spacing: 1px;
}

.presta-header .center-text2,
.presta-header .center-text4 {
    text-align: center;
    color: yellow;
    display: block;
    line-height: 1;
    font-family: 'Work Sans', sans-serif;
    letter-spacing: 2px;
    font-size: 1.2rem;
}

.presta-header .center-text4 {
    margin-bottom: 0;
}

/* ========================================
   ANIMATION ÉTOILES AU CHARGEMENT
======================================== */

.stars-animation-pro {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    animation: fadeOutContainer 4s ease-out forwards;
}

@keyframes fadeOutContainer {
    0%, 80% { opacity: 1; }
    100% { opacity: 0; display: none; }
}

.star-pro {
    position: absolute;
    font-size: 35px;
    opacity: 0;
    color: #ffffff;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8)) 
            drop-shadow(0 0 20px rgba(0, 162, 255, 0.6))
            drop-shadow(0 0 30px rgba(78, 205, 196, 0.4));
    animation: starZoomPro 3s ease-out forwards;
}

@keyframes starZoomPro {
    0% {
        opacity: 0;
        transform: scale(0) rotate(0deg);
        filter: drop-shadow(0 0 0 transparent);
    }
    30% {
        opacity: 1;
        transform: scale(1.8) rotate(180deg);
        filter: drop-shadow(0 0 15px rgba(255, 255, 255, 1)) 
                drop-shadow(0 0 30px rgba(0, 162, 255, 0.8))
                drop-shadow(0 0 45px rgba(78, 205, 196, 0.6));
    }
    60% {
        opacity: 1;
        transform: scale(1) rotate(360deg);
        filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8)) 
                drop-shadow(0 0 20px rgba(0, 162, 255, 0.6));
    }
    100% {
        opacity: 0;
        transform: scale(0.2) rotate(540deg);
        filter: drop-shadow(0 0 0 transparent);
    }
}

.star-pro:nth-child(1) { top: 20%; left: 15%; animation-delay: 0s; font-size: 40px; color: #ffd700; }
.star-pro:nth-child(2) { top: 30%; left: 85%; animation-delay: 0.2s; font-size: 32px; color: #4ecdc4; }
.star-pro:nth-child(3) { top: 50%; left: 50%; animation-delay: 0.4s; font-size: 50px; color: #ffffff; }
.star-pro:nth-child(4) { top: 70%; left: 20%; animation-delay: 0.6s; font-size: 35px; color: #ff69b4; }
.star-pro:nth-child(5) { top: 15%; left: 70%; animation-delay: 0.8s; font-size: 38px; color: #ffd700; }
.star-pro:nth-child(6) { top: 80%; left: 80%; animation-delay: 1s; font-size: 33px; color: #ffd700; }
.star-pro:nth-child(7) { top: 40%; left: 10%; animation-delay: 1.2s; font-size: 30px; color: #4ecdc4; }
.star-pro:nth-child(8) { top: 60%; left: 90%; animation-delay: 1.4s; font-size: 36px; color: #e74c3c; }
.star-pro:nth-child(9) { top: 25%; left: 40%; animation-delay: 1.6s; font-size: 34px; color: #9b59b6; }
.star-pro:nth-child(10) { top: 75%; left: 60%; animation-delay: 1.8s; font-size: 37px; color: #ffffff; }

/* ========================================
   SECTION SERVICES
======================================== */

.services-section {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 2rem;
}

.section-title {
    font-size: 2rem;
    color: #333;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 700;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 3px;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.service-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image {
    transform: scale(1.05);
    filter: brightness(0.7);
}

.service-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 1rem 0.8rem 0.8rem;
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    letter-spacing: 1px;
    transition: opacity 0.3s ease;
    font-family: 'Bebas Neue', sans-serif;
}

.service-description {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 1.2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.service-card:hover .service-description {
    opacity: 1;
}

.service-card:hover .service-label {
    opacity: 0;
}

.service-description h4 {
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    color: #fff200;
    font-weight: 600;
    line-height: 1.3;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1px;
}

.service-description p {
    font-size: 0.72rem;
    line-height: 1.6;
    text-align: left;
    padding: 0 0.7rem;
    font-family: 'Work Sans', sans-serif;
}

/* ========================================
   ANIMATIONS PAR CARTE
======================================== */

.animation-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.service-card:hover .animation-overlay,
.service-card.active .animation-overlay {
    opacity: 1;
}

.petales, .ballons, .confettis, .bulles, .particules {
    position: absolute;
    font-size: 24px;
    opacity: 0;
    pointer-events: none;
}

/* Mariages - Pétales */
.service-card.mariages:hover .petales,
.service-card.mariages.active .petales { animation: petales-tombent 3s ease-in-out forwards; }
.service-card.mariages .petales:nth-child(1) { left: 10%; animation-delay: 0s; font-size: 20px; }
.service-card.mariages .petales:nth-child(2) { left: 25%; animation-delay: 0.3s; font-size: 24px; }
.service-card.mariages .petales:nth-child(3) { left: 40%; animation-delay: 0.6s; font-size: 18px; }
.service-card.mariages .petales:nth-child(4) { left: 60%; animation-delay: 0.9s; font-size: 22px; }
.service-card.mariages .petales:nth-child(5) { left: 75%; animation-delay: 1.2s; font-size: 20px; }
.service-card.mariages .petales:nth-child(6) { left: 90%; animation-delay: 1.5s; font-size: 26px; }

@keyframes petales-tombent {
    0% { top: -10%; opacity: 1; transform: rotate(0deg); }
    50% { opacity: 1; transform: rotate(180deg); }
    100% { top: 110%; opacity: 0; transform: rotate(360deg); }
}

/* Anniversaires - Ballons */
.service-card.anniversaires:hover .ballons,
.service-card.anniversaires.active .ballons { animation: ballons-montent 3s ease-out forwards; }
.service-card.anniversaires .ballons:nth-child(1) { left: 15%; animation-delay: 0s; font-size: 24px; }
.service-card.anniversaires .ballons:nth-child(2) { left: 30%; animation-delay: 0.3s; font-size: 20px; }
.service-card.anniversaires .ballons:nth-child(3) { left: 45%; animation-delay: 0.6s; font-size: 26px; }
.service-card.anniversaires .ballons:nth-child(4) { left: 60%; animation-delay: 0.9s; font-size: 22px; }
.service-card.anniversaires .ballons:nth-child(5) { left: 75%; animation-delay: 1.2s; font-size: 24px; }
.service-card.anniversaires .ballons:nth-child(6) { left: 90%; animation-delay: 1.5s; font-size: 20px; }

@keyframes ballons-montent {
    0% { bottom: -10%; opacity: 1; transform: scale(1) rotate(0deg); }
    50% { opacity: 1; transform: scale(1.1) rotate(10deg); }
    100% { bottom: 110%; opacity: 0; transform: scale(0.8) rotate(-10deg); }
}

/* Familiaux - Confettis */
.service-card.familiaux:hover .confettis,
.service-card.familiaux.active .confettis { animation: confettis-tourbillon 3s ease-in-out forwards; }
.service-card.familiaux .confettis:nth-child(1) { left: 20%; top: 20%; animation-delay: 0s; }
.service-card.familiaux .confettis:nth-child(2) { left: 60%; top: 30%; animation-delay: 0.4s; }
.service-card.familiaux .confettis:nth-child(3) { left: 30%; top: 60%; animation-delay: 0.8s; }
.service-card.familiaux .confettis:nth-child(4) { left: 80%; top: 70%; animation-delay: 1.2s; }
.service-card.familiaux .confettis:nth-child(5) { left: 10%; top: 50%; animation-delay: 1.6s; }
.service-card.familiaux .confettis:nth-child(6) { left: 70%; top: 10%; animation-delay: 2s; }
.confettis { font-size: 18px; color: gold; }

@keyframes confettis-tourbillon {
    0% { opacity: 1; transform: rotate(0deg) scale(1); }
    30% { transform: rotate(120deg) scale(1.2) translateX(20px); }
    60% { transform: rotate(240deg) scale(0.9) translateX(-20px); }
    100% { opacity: 0; transform: rotate(360deg) scale(1); }
}

/* Entreprises - Bulles */
.service-card.entreprises:hover .bulles,
.service-card.entreprises.active .bulles { animation: bulles-remontent 3s ease-out forwards; }
.service-card.entreprises .bulles:nth-child(1) { left: 20%; animation-delay: 0s; }
.service-card.entreprises .bulles:nth-child(2) { left: 35%; animation-delay: 0.3s; }
.service-card.entreprises .bulles:nth-child(3) { left: 50%; animation-delay: 0.6s; }
.service-card.entreprises .bulles:nth-child(4) { left: 65%; animation-delay: 0.9s; }
.service-card.entreprises .bulles:nth-child(5) { left: 80%; animation-delay: 1.2s; }
.service-card.entreprises .bulles:nth-child(6) { left: 90%; animation-delay: 1.5s; }
.bulles { font-size: 18px; }

@keyframes bulles-remontent {
    0% { bottom: -5%; opacity: 1; transform: scale(0.5); }
    25% { opacity: 1; transform: scale(1) translateX(10px); }
    50% { transform: scale(1.1) translateX(-5px); }
    75% { transform: scale(0.9) translateX(8px); }
    100% { bottom: 105%; opacity: 0; transform: scale(0.3) translateX(-10px); }
}

/* Jeunesse - Particules */
.service-card.jeunesse:hover .particules,
.service-card.jeunesse.active .particules { animation: particules-energie 2.5s ease-out forwards; }
.service-card.jeunesse .particules:nth-child(1) { left: 50%; top: 50%; animation-delay: 0s; }
.service-card.jeunesse .particules:nth-child(2) { left: 50%; top: 50%; animation-delay: 0.15s; }
.service-card.jeunesse .particules:nth-child(3) { left: 50%; top: 50%; animation-delay: 0.3s; }
.service-card.jeunesse .particules:nth-child(4) { left: 50%; top: 50%; animation-delay: 0.45s; }
.service-card.jeunesse .particules:nth-child(5) { left: 50%; top: 50%; animation-delay: 0.6s; }
.service-card.jeunesse .particules:nth-child(6) { left: 50%; top: 50%; animation-delay: 0.75s; }

@keyframes particules-energie {
    0% { opacity: 1; transform: scale(0.5) rotate(0deg) translate(0, 0); }
    40% { opacity: 1; transform: scale(1.3) rotate(180deg) translate(60px, -40px); }
    70% { opacity: 1; transform: scale(1) rotate(360deg) translate(-50px, 50px); }
    100% { opacity: 0; transform: scale(0.3) rotate(540deg) translate(80px, -70px); }
}

/* ========================================
   SECTION AVIS CLIENTS
======================================== */

.avis-section {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.75));
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 1rem;
    overflow: hidden;
}

.avis-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.avis-section-header .section-title {
    margin-bottom: 0;
    flex: 0 0 auto;
    text-align: left;
}

.btn-avis {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #333;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
    transition: all 0.3s ease;
    font-family: 'Work Sans', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-avis:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 215, 0, 0.6);
    background: linear-gradient(135deg, #FFA500, #FFD700);
}

.avis-container {
    height: 350px;
    overflow: hidden;
    position: relative;
    border-radius: 15px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(240, 248, 255, 0.9));
    padding: 1rem;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.1);
}

.avis-scroll {
    animation: scroll-avis 80s linear infinite;
}

@keyframes scroll-avis {
    0% { transform: translateY(0); }
    100% { transform: translateY(-100%); }
}

.avis-container:hover .avis-scroll {
    animation-play-state: paused;
}

.avis-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 255, 0.9));
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #4ecdc4;
    transition: transform 0.3s ease;
}

.avis-item:hover {
    transform: translateX(5px);
}

.avis-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.8rem;
}

.avis-name {
    font-weight: 600;
    color: #333;
    font-size: 1rem;
    font-family: 'Work Sans', sans-serif;
}

.avis-stars {
    color: #ffd700;
    font-size: 1.1rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.avis-text {
    color: #666;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    font-family: 'Work Sans', sans-serif;
}

/* ========================================
   MODAL POUR AJOUTER UN AVIS
======================================== */

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: linear-gradient(135deg, #ffffff, #f8f9ff);
    border-radius: 20px;
    padding: 2.5rem;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: slideUp 0.4s ease;
    max-height: 90vh;
    overflow-y: auto;
}

@keyframes slideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.2);
    transform: rotate(90deg);
}

.modal-title {
    font-size: 2rem;
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: 700;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 2px;
    text-align: center;
}

.modal-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label,
.rating-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Work Sans', sans-serif;
    transition: all 0.3s ease;
    background: white;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4ecdc4;
    box-shadow: 0 0 0 3px rgba(78, 205, 196, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.rating-group {
    margin-bottom: 1.5rem;
}

.rating-group label {
    margin-bottom: 0.8rem;
}

.stars-rating {
    display: flex;
    gap: 10px;
    justify-content: center;
    font-size: 2.5rem;
}

.star-input {
    cursor: pointer;
    color: #ddd;
    transition: all 0.2s ease;
    user-select: none;
}

.star-input:hover,
.star-input.active {
    color: #FFD700;
    transform: scale(1.1);
}

.form-submit {
    background: linear-gradient(135deg, #4ecdc4, #00a2ff);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    font-family: 'Work Sans', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 20px rgba(78, 205, 196, 0.3);
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(78, 205, 196, 0.4);
}

.form-submit:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

.success-message {
    background: linear-gradient(135deg, #4ecdc4, #00a2ff);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    text-align: center;
    margin: 1rem auto 0;
    display: none;
    max-width: 400px;
}

.success-message.active {
    display: block;
    animation: slideUp 0.4s ease;
}

.success-message h3 {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.error-message {
    background: linear-gradient(135deg, #ff6b6b, #ff5252);
    color: white;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    margin-top: 1rem;
    display: none;
}

.error-message.active {
    display: block;
    animation: slideUp 0.2s ease;
}

.presta-header .center-text1 {
    text-align: center;
    display: block;
    line-height: 1;
    font-family: 'Work Sans', sans-serif;
    letter-spacing: 2px;
    font-size: 1.2rem;
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */

@media (max-width: 1024px) {
    .navigation {
        gap: 12px;
    }
    
    .nav-btn {
        padding: 0.9rem 1.8rem;
        font-size: 1rem;
    }
    
    .logo-img {
        height: 80px;
    }
}

@media (max-width: 768px) {
    .main-container {
        padding: 0 10px;
    }
    
    .header {
        flex-direction: column;
        gap: 0.4rem;
        padding: 0.3rem 0.5rem 0.4rem;
        align-items: flex-start;
    }
    
    .logo {
        align-self: flex-start;
    }
    
    .logo-img {
        height: 110px;
        margin-top: 0;
    }
    
    .navigation {
        width: 100%;
        justify-content: center;
        gap: 8px;
        flex-wrap: nowrap;
    }
    
    .nav-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
        font-weight: bold;
    }
    
    .presta-card {
        padding: 1.1rem 1rem;
        margin-bottom: 1rem;
        margin-left: 0;
        margin-top: 0.3rem;
    }
    
    .presta-header p {
        font-size: 1.15rem;
        line-height: 1.45;
        margin-bottom: 0.2rem;
    }
    
    .presta-header .center-text1 {
        text-align: center;
        line-height: 1.35;
        letter-spacing: 0.3px;
        margin-bottom: 0.1rem;
        font-size: 1.15rem;
    }
    
    .presta-header .center-text2 {
        text-align: center;
        line-height: 1.35;
        letter-spacing: 0.3px;
        margin-bottom: -0.75rem;
        font-size: 1.15rem;
    }
    
    .presta-header .center-text3 {
        text-align: center;
        line-height: 1.35;
        letter-spacing: 0.3px;
        margin-bottom: -1.5rem;
        font-size: 1.15rem;
    }

    .presta-header .center-text4 {
        text-align: center;
        line-height: 1.35;
        letter-spacing: 0.3px;
        margin-top: -1.5rem;
        font-size: 1.15rem;
    }
    
    .avis-section {
        padding: 1.5rem;
    }
    
    .avis-section-header {
        flex-direction: column;
        align-items: stretch;
    }
    
    .avis-section-header .section-title {
        text-align: center;
    }
    
    .btn-avis {
        width: 100%;
        justify-content: center;
    }
    
    .avis-container {
        height: 200px;
        padding: 0.8rem;
    }
    
    .avis-item {
        padding: 1.2rem;
    }
    
    .services-section {
        padding: 1.5rem;
    }
    
    .service-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .service-card:hover .animation-overlay {
        opacity: 0;
    }
    
    .service-card.active .animation-overlay {
        opacity: 1;
    }
    
    .petales, .ballons, .confettis, .bulles, .particules {
        font-size: 16px;
    }
    
    .star-pro {
        font-size: 25px !important;
    }
    
    .star-pro:nth-child(3) {
        font-size: 35px !important;
    }
    
    .modal-content {
        padding: 2rem 1.5rem;
    }

    .modal-title {
        font-size: 1.6rem;
    }

    .stars-rating {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    body {
        padding: 5px;
    }
    
    .logo-img {
        height: 100px;
    }
    
    .nav-btn {
        padding: 0.75rem 1.4rem;
        font-size: 0.92rem;
        font-weight: bold;
    }
    
    .presta-card {
        padding: 1rem 0.9rem;
        margin-top: 0.3rem;
    }
    
    .presta-header p {
        font-size: 1.05rem;
        line-height: 1.35;
        margin-bottom: 0.2rem;
    }
    
    .presta-header .center-text1 {
        font-size: 1.05rem;
        line-height: 1.3;
    }
    
    .presta-header .center-text2 {
        font-size: 1.05rem;
        line-height: 1.3;
        margin-top: -0.75rem;
    }
    
    .presta-header .center-text3 {
        font-size: 1.05rem;
        line-height: 1.3;
        margin-top: -1.5rem;
    }
    
    .presta-header .center-text4 {
        font-size: 1.05rem;
        line-height: 1.3;
    }
    
    .avis-section, .services-section {
        padding: 1rem;
    }
    
    .avis-container {
        height: 180px;
        padding: 0.5rem;
    }
    
    .avis-item {
        padding: 1rem;
    }
    
    .avis-text {
        font-size: 0.85rem;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .service-description h4 {
        font-size: 0.8rem;
    }
    
    .service-description p {
        font-size: 0.7rem;
    }
    
    .modal-content {
        padding: 1.5rem 1rem;
    }

    .stars-rating {
        font-size: 1.8rem;
        gap: 5px;
    }
}

/* ========================================
   ACCESSIBILITÉ
======================================== */

@media (prefers-reduced-motion: reduce) {
    .avis-scroll {
        animation: none;
    }
    
    .service-card, .nav-btn, .btn-avis {
        transition: none;
    }
    
    .petales, .ballons, .confettis, .bulles, .particules {
        animation: none !important;
    }
    
    .stars-animation-pro {
        display: none;
    }
    
    .modal-overlay, .modal-content {
        animation: none;
    }
.br-desktop {
    display: inline;
}

@media (max-width: 768px) {
    .br-desktop {
        display: none;
    }
    }
}