/* RESET & BASE */
:root {
    --primary-blue: #0f172a; /* Bleu nuit profond */
    --accent-orange: #ea580c; /* Orange brique/feu */
    --light-gray: #f3f4f6;
    --white: #ffffff;
    --text-dark: #333333;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--light-gray);
    overflow-x: hidden; /* Empêche le scroll horizontal */
}

h1, h2, h3 { font-family: 'Montserrat', sans-serif; font-weight: 700; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* ANIMATIONS AU SCROLL */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Effet cascade pour les cartes services */
.service-card:nth-child(1) {
    transition-delay: 0s;
}

.service-card:nth-child(2) {
    transition-delay: 0.2s;
}

.service-card:nth-child(3) {
    transition-delay: 0.4s;
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* NAVIGATION */
nav {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    z-index: 1000;
    top: 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo { height: 60px; } /* Ajuster la taille du logo ici */

.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-weight: 600; color: var(--primary-blue); transition: 0.3s; }
.nav-links a:hover { color: var(--accent-orange); }

.btn-nav {
    background: var(--accent-orange);
    color: white !important;
    padding: 10px 20px;
    border-radius: 5px;
}

/* MENU BURGER */
.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-blue);
    transition: 0.3s;
    border-radius: 3px;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* HERO SECTION */
.hero {
    height: 100vh;
    background-image: linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.6)), url('images/fond-princ.jpg'); 
    /* NOTE: Si vous préférez le fond sombre avec tuyaux, changez l'image ci-dessus */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
    padding-top: 80px; /* Pour la nav fixe */
}

.hero-content h1 { font-size: 3rem; margin-bottom: 20px; line-height: 1.2; }
.text-highlight { color: var(--accent-orange); }
.slogan { font-size: 1.3rem; margin-bottom: 40px; font-style: italic; opacity: 0.9; }

.hero-buttons { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }

.btn {
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: 0.3s;
}

.btn-primary { background-color: var(--accent-orange); color: white; }
.btn-primary:hover { background-color: #c2410c; }

.btn-secondary { background-color: transparent; border: 2px solid var(--white); color: white; }
.btn-secondary:hover { background-color: var(--white); color: var(--primary-blue); }

/* SERVICES */
.section-padding { padding: 80px 0; }
.section-title { text-align: center; font-size: 2.5rem; margin-bottom: 50px; color: var(--primary-blue); }

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: 0.3s;
    border-bottom: 4px solid transparent;
}

.service-card:hover { transform: translateY(-5px); border-bottom-color: var(--accent-orange); }

.icon-service { font-size: 3rem; color: var(--accent-orange); margin-bottom: 20px; }

/* À PROPOS */
.about-section { background-color: var(--white); padding: 80px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }

.about-image img { width: 100%; border-radius: 10px; box-shadow: 0 10px 30px rgba(0,0,0,0.15); }

.section-title-left { font-size: 2.2rem; margin-bottom: 20px; color: var(--primary-blue); }
.text-orange { color: var(--accent-orange); }

.patron-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    padding: 15px;
    border-radius: 8px;
    margin-top: 30px;
}
.patron-badge i { color: #16a34a; font-size: 2rem; }

/* SECTION CONTACT */
.contact-section { background-color: var(--light-gray); }
.contact-subtitle { text-align: center; color: #64748b; margin-bottom: 50px; font-size: 1.1rem; }

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    align-items: start;
}

/* FORMULAIRE */
.contact-form-container { background: var(--white); padding: 40px; border-radius: 10px; box-shadow: 0 5px 20px rgba(0,0,0,0.08); }

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-blue);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e5e7eb;
    border-radius: 5px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    transition: 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-orange);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-form {
    width: 100%;
    margin-top: 10px;
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 5px;
    display: none;
    font-weight: 600;
}

.form-message.success {
    display: block;
    background-color: #d1fae5;
    color: #065f46;
    border: 1px solid #6ee7b7;
}

.form-message.error {
    display: block;
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

/* INFO CONTACT */
.contact-info-box {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.contact-info-box h3 {
    color: var(--primary-blue);
    margin-bottom: 25px;
    font-size: 1.3rem;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.contact-item i {
    color: var(--accent-orange);
    font-size: 1.5rem;
    min-width: 30px;
}

.contact-item strong {
    display: block;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.contact-item a {
    color: var(--accent-orange);
    transition: 0.3s;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-item p {
    margin: 0;
    color: var(--text-dark);
}

/* SECTION TÉMOIGNAGES */
.testimonials-section {
    background-color: var(--white);
}

.testimonials-subtitle {
    text-align: center;
    color: #64748b;
    margin-top: -30px;
    margin-bottom: 50px;
    font-size: 1.1rem;
}

.testimonials-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.testimonials-wrapper {
    overflow: hidden;
    position: relative;
}

.testimonial-card {
    background: var(--light-gray);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.testimonial-card.active {
    display: block;
    opacity: 1;
}

.testimonial-stars {
    margin-bottom: 25px;
}

.testimonial-stars i {
    color: #fbbf24;
    font-size: 1.3rem;
    margin: 0 3px;
}

.testimonial-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--accent-orange);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.author-info {
    text-align: left;
}

.author-info strong {
    display: block;
    color: var(--primary-blue);
    font-size: 1.1rem;
    margin-bottom: 3px;
}

.author-info span {
    color: #64748b;
    font-size: 0.95rem;
}

/* Navigation témoignages */
.testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    border: 2px solid var(--accent-orange);
    color: var(--accent-orange);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 10;
}

@media (max-width: 768px) {
    .testimonial-nav {
        display: none !important; /* Force le masquage sur mobile */
    }
}

.testimonial-nav:hover {
    background: var(--accent-orange);
    color: white;
}

.testimonial-nav.prev {
    left: -60px;
}

.testimonial-nav.next {
    right: -60px;
}

/* Points de navigation */
.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition: 0.3s;
}

.dot.active {
    background: var(--accent-orange);
    transform: scale(1.3);
}

.dot:hover {
    background: var(--accent-orange);
}

/* BOUTON RETOUR EN HAUT */

/* GALERIE & FOOTER */
.bg-dark { background-color: var(--primary-blue); }
.text-white { color: var(--white); }

.gallery-subtitle {
    text-align: center;
    color: #94a3b8;
    margin-top: -30px;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

/* FILTRES GALERIE */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    border: 2px solid var(--accent-orange);
    background: transparent;
    color: var(--white);
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
    font-size: 1rem;
}

.filter-btn:hover {
    background-color: var(--accent-orange);
}

.filter-btn.active {
    background-color: var(--accent-orange);
}

/* GALERIE */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    height: 250px;
    transition: 0.3s;
}

.gallery-item.hide {
    display: none;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(234, 88, 12, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.3s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 3rem;
    color: white;
}

/* LIGHTBOX */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 5px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 3rem;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.lightbox-close:hover {
    color: var(--accent-orange);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
    color: white;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    cursor: pointer;
    padding: 20px;
    transition: 0.3s;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(234, 88, 12, 0.8);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-caption {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1.1rem;
    text-align: center;
}

.brands-bar { background: #e2e8f0; padding: 20px 0; text-align: center; font-weight: 600; color: #64748b; }

footer { background: #0b1120; color: #94a3b8; padding-top: 60px; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; padding-bottom: 40px; }
.footer-info h3 { color: var(--white); margin-bottom: 20px; font-size: 1.5rem; }
.footer-info p { margin-bottom: 10px; }
.footer-info i { width: 25px; color: var(--accent-orange); }
.tva { margin-top: 20px; font-size: 0.9rem; opacity: 0.7; }

/* Réseaux sociaux footer */
.footer-social {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(148, 163, 184, 0.2);
}

.footer-social p {
    color: #94a3b8;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.social-icons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-icon {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(234, 88, 12, 0.1);
    border: 2px solid var(--accent-orange);
    border-radius: 5px;
    color: var(--accent-orange);
    transition: all 0.3s ease;
    font-size: 0.95rem;
    text-decoration: none;
}

.social-icon:hover {
    background: var(--accent-orange);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(234, 88, 12, 0.4);
}

.social-icon i {
    font-size: 1.2rem;
    width: auto;
}

.social-text {
    font-weight: 600;
}

.copyright { background: #020617; padding: 20px 0; text-align: center; font-size: 0.85rem; }
.creator { margin-top: 5px; color: var(--accent-orange); font-weight: 600; }

/* BOUTON RETOUR EN HAUT */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--accent-orange);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: #c2410c;
    transform: translateY(-3px);
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    /* Fix overflow global */
    html, body {
        overflow-x: hidden;
        width: 100%;
        position: relative;
    }
    
    /* Navigation mobile */
    .burger-menu { display: flex; }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        padding: 30px 20px;
        gap: 0;
        transition: left 0.3s ease;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        z-index: 999;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        width: 100%;
        text-align: center;
        padding: 15px 0;
        border-bottom: 1px solid #e5e7eb;
    }
    
    .btn-nav {
        margin-top: 20px;
        display: block;
    }
    
    /* Container mobile */
    .container {
        padding: 0 15px;
        max-width: 100%;
    }
    
    /* Hero mobile */
    .hero-content h1 { font-size: 2rem; }
    .slogan { font-size: 1.1rem; }
    .hero-buttons { 
        flex-direction: column; 
        padding: 0 20px;
    }
    
    /* Services mobile */
    .services-grid { 
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        margin: 0 10px;
    }
    
    /* About mobile */
    .about-grid { 
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .about-image { 
        order: -1;
        padding: 0 10px;
    }
    .about-text {
        padding: 0 10px;
    }
    
    /* Galerie mobile */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .gallery-item {
        margin: 0 10px;
    }
    
    .gallery-filters {
        padding: 0 15px;
    }
    
    /* Témoignages mobile */
    .testimonials-container {
        padding: 0 15px;
        max-width: 100%;
    }
    
    .testimonial-nav {
        display: none !important;
    }
    
    .testimonial-card {
        padding: 25px 20px;
        margin: 0;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    /* Contact mobile */
    .contact-grid { 
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-form-container {
        padding: 25px 20px;
        margin: 0;
    }
    
    .contact-info-box {
        padding: 25px 20px;
        margin: 0;
    }
    
    /* Footer mobile */
    .footer-grid { 
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-info,
    .footer-map {
        padding: 0 10px;
    }
    
    /* Logo mobile */
    .nav-logo { height: 45px; }
    
    /* Bouton retour en haut mobile */
    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
        font-size: 1rem;
    }
}

/* ========================================
   BANNIÈRE RGPD / COOKIES
   ======================================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(20, 30, 48, 0.98);
    color: #fff;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    display: none;
    animation: slideUp 0.5s ease;
}

.cookie-banner.show {
    display: block;
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-banner p {
    margin: 0;
    flex: 1;
    min-width: 300px;
}

.cookie-banner a {
    color: #FF6B35;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background: #FF6B35;
    color: white;
}

.cookie-btn.accept:hover {
    background: #e55a2b;
}

.cookie-btn.refuse {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cookie-btn.refuse:hover {
    background: rgba(255, 255, 255, 0.1);
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}

/* ========================================
   PAGES LÉGALES
   ======================================== */
.legal-page {
    min-height: 100vh;
    padding-top: 100px;
    background: #f8f9fa;
}

.legal-page h1 {
    color: var(--primary-color);
    margin-bottom: 40px;
    font-size: 2.5rem;
}

.legal-page h2 {
    color: var(--dark-color);
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.legal-page p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #555;
}

.legal-page ul {
    margin: 15px 0 15px 30px;
    line-height: 1.8;
}

.legal-page ul li {
    margin-bottom: 8px;
    color: #555;
}

.legal-page a {
    color: var(--primary-color);
    text-decoration: underline;
}

.legal-page a:hover {
    color: #e55a2b;
}

/* ========================================
   BOUTON VOIR TOUS NOS AVIS
   ======================================== */

.view-all-reviews-container {
    text-align: center;
    margin-top: 50px;
}

.btn-view-reviews {
    font-size: 1.2rem;
    padding: 18px 45px;
    border: 2px solid var(--accent-orange);
    border-radius: 5px;
    box-shadow: 0 4px 15px rgba(234, 88, 12, 0.3);
    transition: all 0.3s ease;
    font-weight: 700;
    display: inline-block;
}

.btn-view-reviews:hover {
    background-color: #c2410c;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(234, 88, 12, 0.4);
}

/* ========================================
   POPUP MODALE AVIS
   ======================================== */

.reviews-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
}

.reviews-modal.active {
    display: block;
}

.reviews-modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 0;
    width: 90%;
    max-width: 900px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
}

.reviews-modal-content h2 {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    color: white;
    padding: 25px 30px;
    margin: 0;
    border-radius: 12px 12px 0 0;
    font-size: 1.8rem;
}

.reviews-modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 35px;
    font-weight: bold;
    color: white;
    cursor: pointer;
    z-index: 1;
    transition: transform 0.3s;
}

.reviews-modal-close:hover {
    transform: scale(1.2);
}

.reviews-modal-body {
    padding: 30px;
}

.reviews-section {
    margin-bottom: 30px;
}

.reviews-section h3 {
    color: #333;
    font-size: 1.4rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #FF6B35;
}

.review-card {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 15px;
    border-left: 4px solid #FF6B35;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.review-stars {
    font-size: 1.2rem;
}

.review-author {
    font-weight: bold;
    color: #333;
}

.review-service {
    color: #FF6B35;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.review-text {
    color: #555;
    line-height: 1.6;
    margin-bottom: 10px;
}

.review-date {
    color: #999;
    font-size: 0.85rem;
}

.reviews-cta {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    color: white;
    padding: 25px;
    text-align: center;
    border-radius: 8px;
    margin-top: 30px;
}

.reviews-cta p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.reviews-cta .btn-primary {
    background: white;
    color: var(--accent-orange);
    font-size: 1.2rem;
    padding: 15px 40px;
    border: 2px solid white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    display: inline-block;
    font-weight: 700;
}

.reviews-cta .btn-primary:hover {
    background: var(--accent-orange);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* ========================================
   PAGE SATISFACTION (FORMULAIRE AVIS)
   ======================================== */

.satisfaction-page {
    background: #f9f9f9;
    min-height: calc(100vh - 200px);
}

.satisfaction-page h1 {
    text-align: center;
    color: #333;
    margin-bottom: 20px;
}

.satisfaction-intro {
    text-align: center;
    color: #666;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.satisfaction-form {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 700px;
    margin: 0 auto;
}

.star-rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    gap: 10px;
    font-size: 2.5rem;
}

.star-rating input {
    display: none;
}

.star-rating label {
    cursor: pointer;
    color: #ddd;
    transition: all 0.3s ease;
}

/* Étoile vide par défaut */
.star-rating label::before {
    content: '☆';
}

/* Étoiles pleines au survol */
.star-rating label:hover::before,
.star-rating label:hover ~ label::before {
    content: '★';
    color: #FFD700;
}

/* Étoiles pleines quand sélectionnées */
.star-rating input:checked ~ label::before {
    content: '★';
    color: #FFD700;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.radio-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.radio-group input[type="radio"] {
    width: auto;
    margin-right: 8px;
}

.radio-group label {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.btn-submit {
    width: 100%;
    font-size: 1.2rem;
    padding: 15px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
}

.btn-secondary {
    background: #6c757d;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 8px;
    display: inline-block;
    transition: background 0.3s;
}

.btn-secondary:hover {
    background: #5a6268;
}

/* ========================================
   ICÔNES RÉSEAUX SOCIAUX FOOTER
   ======================================== */

.footer-social {
    margin-top: 20px;
    text-align: center;
}

.footer-social p {
    color: #ccc;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.social-icon:hover {
    color: #FF6B35;
}

.social-icon.disabled {
    color: #666;
    cursor: not-allowed;
}

.social-icon.disabled:hover {
    color: #666;
}

.social-icon-text {
    font-size: 0.85rem;
}

/* ========================================
   RESPONSIVE MODAL
   ======================================== */

@media (max-width: 768px) {
    .reviews-modal-content {
        width: 95%;
        margin: 10% auto;
        max-height: 80vh;
    }
    
    .reviews-modal-content h2 {
        font-size: 1.4rem;
        padding: 20px 15px;
    }
    
    .reviews-modal-body {
        padding: 20px 15px;
    }
    
    .satisfaction-form {
        padding: 25px 20px;
    }
}