/* ===== VARIABLES ===== */
:root {
    --color-primary: #3b2a1a;
    --color-primary-light: #5a4230;
    --color-gold: #c9a24a;
    --color-gold-light: #d4b36a;
    --color-beige: #f5f1e8;
    --color-beige-dark: #e8e0d0;
    --color-white: #ffffff;
    --color-dark: #1a1a1a;
    --color-gray: #6c757d;
    --color-light-gray: #f8f9fa;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 5px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 50px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);
    
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    --border-radius-sm: 8px;
    --border-radius-md: 15px;
    --border-radius-lg: 25px;
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    line-height: 1.7;
    color: var(--color-dark);
    overflow-x: hidden;
    background-color: var(--color-white);
}

/* ===== LOADER ===== */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-wrapper.hidden {
    opacity: 0;
    visibility: hidden;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--color-gold);
    border-top: 3px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loader p {
    color: var(--color-gold);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    text-align: center;
}

/* ===== NAVIGATION ===== */
.navbar {
    background: rgba(59, 42, 26, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 15px 0;
    transition: var(--transition-smooth);
    border-bottom: 1px solid rgba(201, 162, 74, 0.2);
}

.navbar.scrolled {
    padding: 10px 0;
    background: rgba(59, 42, 26, 0.98);
    box-shadow: var(--shadow-lg);
}

.navbar-brand {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-gold) !important;
    letter-spacing: 2px;
    transition: var(--transition-smooth);
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.nav-link {
    color: var(--color-beige) !important;
    font-weight: 500;
    margin: 0 10px;
    position: relative;
    transition: var(--transition-smooth);
}

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

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

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

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.navbar-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 50%;
    border: 2px solid var(--color-gold);
    transition: var(--transition-smooth);
}

.navbar-brand:hover .navbar-logo {
    transform: rotate(10deg) scale(1.1);
    border-color: var(--color-white);
}

.brand-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-gold);
    letter-spacing: 2px;
}

/* Responsive */
@media (max-width: 576px) {
    .navbar-logo {
        width: 40px;
        height: 40px;
    }
    
    .brand-text {
        font-size: 1.2rem;
    }
}

.btn-appointment {
    background: var(--color-gold);
    color: var(--color-primary) !important;
    padding: 10px 25px !important;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition-smooth);
    margin-left: 15px;
}

.btn-appointment:hover {
    background: var(--color-gold-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(201, 162, 74, 0.4);
}

.navbar-toggler {
    border-color: var(--color-gold);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(201, 162, 74, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1a0f08 0%, #3b2a1a 50%, #1a0f08 100%);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 50%, rgba(201, 162, 74, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(201, 162, 74, 0.05) 0%, transparent 50%);
}

.hero-logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 25px;
    border-radius: 50%;
    border: 3px solid var(--color-gold);
    box-shadow: 0 0 30px rgba(201, 162, 74, 0.4);
    animation: float 3s ease-in-out infinite;
}

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

@media (max-width: 768px) {
    .hero-logo {
        width: 90px;
        height: 90px;
    }
}
#particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 15px;
    font-weight: 500;
    animation: fadeInDown 1s ease;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 20px;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-tagline {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: var(--color-gold);
    font-style: italic;
    margin-bottom: 20px;
    font-family: var(--font-heading);
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.8s both;
}

.hero-buttons .btn {
    padding: 15px 35px;
    font-weight: 600;
    border-radius: 50px;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
    text-transform: uppercase;
    font-size: 0.9rem;
}

.hero-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.scroll-indicator span {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid var(--color-gold);
    border-radius: 15px;
    position: relative;
}

.scroll-indicator span::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    width: 4px;
    height: 10px;
    background: var(--color-gold);
    border-radius: 2px;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { opacity: 1; top: 10px; }
    100% { opacity: 0; top: 30px; }
}

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

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
/* ===== HERO SLIDER ===== */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1.1);
    transition: opacity 1.5s ease-in-out, transform 1.5s ease-in-out;
}

.hero-slider .slide.active {
    opacity: 1;
    transform: scale(1);
}

/* Effet Ken Burns subtil sur l'image active */
.hero-slider .slide.active {
    animation: kenBurns 20s ease-in-out infinite alternate;
}

@keyframes kenBurns {
    0% {
        transform: scale(1) translate(0, 0);
    }
    100% {
        transform: scale(1.1) translate(-1%, -1%);
    }
}

/* Overlay amélioré pour meilleure lisibilité */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, 
            rgba(26, 15, 8, 0.85) 0%, 
            rgba(59, 42, 26, 0.7) 50%, 
            rgba(26, 15, 8, 0.85) 100%);
    z-index: 1;
}

/* Contenu au-dessus du slider */
.hero-content {
    position: relative;
    z-index: 2;
}

/* Indicateurs de slides (points) */
.slide-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
    position: relative;
    z-index: 2;
}

.slide-indicators .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.slide-indicators .dot:hover {
    background: rgba(201, 162, 74, 0.6);
    transform: scale(1.2);
}

.slide-indicators .dot.active {
    background: var(--color-gold);
    border-color: var(--color-white);
    transform: scale(1.3);
    box-shadow: 0 0 15px rgba(201, 162, 74, 0.6);
}

/* Flèches de navigation */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    background: rgba(201, 162, 74, 0.2);
    border: 2px solid rgba(201, 162, 74, 0.5);
    color: var(--color-gold);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-arrow:hover {
    background: var(--color-gold);
    color: var(--color-primary);
    border-color: var(--color-gold);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 5px 25px rgba(201, 162, 74, 0.4);
}

.slider-arrow.prev {
    left: 30px;
}

.slider-arrow.next {
    right: 30px;
}

/* Animation de fondu entre les slides */
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(1.05);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-slider .slide.active {
    animation: fadeInScale 1.5s ease-out, kenBurns 20s ease-in-out infinite alternate;
}

/* Responsive */
@media (max-width: 768px) {
    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .slider-arrow.prev {
        left: 15px;
    }
    
    .slider-arrow.next {
        right: 15px;
    }
    
    .slide-indicators .dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 576px) {
    .slider-arrow {
        display: none; /* Cacher les flèches sur très petit écran */
    }
}
/* ===== SECTION STYLES ===== */
.section-padding {
    padding: 100px 0;
}

.section-subtitle {
    display: inline-block;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 15px;
    position: relative;
    padding-left: 40px;
}

.section-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 30px;
    height: 2px;
    background: var(--color-gold);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 2.8rem);
    color: var(--color-primary);
    margin-bottom: 20px;
    line-height: 1.3;
}

.bg-light {
    background-color: var(--color-beige) !important;
}

/* ===== ABOUT SECTION ===== */


/* ===== ABOUT SECTION - IMAGE STYLES ===== */
.about-image-wrapper {
    position: relative;
}

.about-image {
    width: 100%;
    height: 500px;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}

/* Style pour l'image */
.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.5s ease;
}

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

/* Bordure décorative */
.about-image::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border: 2px solid rgba(201, 162, 74, 0.4);
    border-radius: calc(var(--border-radius-md) - 5px);
    z-index: 1;
    pointer-events: none;
    transition: all 0.3s ease;
}

.about-image:hover::before {
    border-color: var(--color-gold);
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
}

/* Badge d'expérience */
.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -20px;
    background: linear-gradient(135deg, var(--color-gold), #b8941f);
    color: var(--color-primary);
    padding: 25px;
    border-radius: 50%;
    width: 130px;
    height: 130px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 10px 30px rgba(201, 162, 74, 0.4);
    z-index: 2;
    animation: float 3s ease-in-out infinite;
    border: 3px solid var(--color-white);
}

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

.experience-badge .years {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    line-height: 1;
    font-family: var(--font-heading);
}

.experience-badge .text {
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1.2;
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Supprimer l'ancien style placeholder */
.image-placeholder {
    display: none;
}

/* Responsive */
@media (max-width: 991px) {
    .about-image {
        height: 400px;
        margin-bottom: 50px;
    }
    
    .experience-badge {
        width: 110px;
        height: 110px;
        padding: 20px;
        bottom: -25px;
        right: -10px;
    }
    
    .experience-badge .years {
        font-size: 2rem;
    }
    
    .experience-badge .text {
        font-size: 0.7rem;
    }
}

@media (max-width: 768px) {
    .about-image {
        height: 350px;
    }
    
    .about-image::before {
        top: 10px;
        left: 10px;
        right: 10px;
        bottom: 10px;
    }
}

@media (max-width: 576px) {
    .about-image {
        height: 300px;
    }
    
    .experience-badge {
        width: 90px;
        height: 90px;
        padding: 15px;
        bottom: -20px;
        right: -5px;
    }
    
    .experience-badge .years {
        font-size: 1.8rem;
    }
    
    .experience-badge .text {
        font-size: 0.65rem;
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -20px;
    background: var(--color-gold);
    color: var(--color-primary);
    padding: 30px;
    border-radius: 50%;
    width: 130px;
    height: 130px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: var(--shadow-lg);
    animation: pulse 2s infinite;
}

.experience-badge .years {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.8rem;
    font-weight: 500;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.about-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-gray);
    margin-bottom: 30px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.feature-item i {
    color: var(--color-gold);
    font-size: 1.3rem;
}

/* ===== WHY US SECTION ===== */
.why-card {
    background: var(--color-white);
    padding: 40px 30px;
    border-radius: var(--border-radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-gold);
}

.why-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: var(--transition-smooth);
}

.why-card:hover .why-icon {
    background: var(--color-gold);
    transform: rotateY(360deg);
}

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

.why-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--color-primary);
}

.why-card p {
    color: var(--color-gray);
    line-height: 1.6;
}

/* ===== SERVICES SECTION ===== */
.service-category {
    margin-bottom: 60px;
}

.category-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-primary);
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--color-gold);
    display: flex;
    align-items: center;
    gap: 15px;
}

.category-title i {
    color: var(--color-gold);
}

.service-card {
    background: var(--color-white);
    border-radius: var(--border-radius-md);
    padding: 30px 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--color-gold);
    transform: scaleX(0);
    transition: var(--transition-smooth);
    transform-origin: left;
}

.service-card:hover::before {
    transform: scaleX(1);
}

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

.service-card.featured {
    border: 2px solid var(--color-gold);
    background: linear-gradient(to bottom, var(--color-white), var(--color-beige));
}

.service-price {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: 15px;
}

.service-card h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--color-primary);
}

.service-card p {
    color: var(--color-gray);
    font-size: 0.9rem;
}

.service-card .badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--color-gold);
    color: var(--color-primary);
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
}

/* ===== PARTNERSHIP BANNER ===== */
.partnership-banner {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    padding: 50px 40px;
    border-radius: var(--border-radius-lg);
    color: var(--color-white);
    margin-top: 40px;
}

.partnership-banner h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.partnership-banner p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.partnership-banner .btn {
    background: var(--color-gold);
    color: var(--color-primary);
    font-weight: 600;
    padding: 15px 30px;
    border-radius: 50px;
    transition: var(--transition-smooth);
}

.partnership-banner .btn:hover {
    background: var(--color-gold-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* ===== PRICING TABLE ===== */
.pricing-table {
    background: var(--color-white);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.pricing-table .table {
    margin-bottom: 0;
}

.pricing-table thead th {
    background: var(--color-primary);
    color: var(--color-gold);
    padding: 20px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    border: none;
}

.pricing-table tbody td {
    padding: 18px 20px;
    vertical-align: middle;
    border-color: rgba(0, 0, 0, 0.05);
}

.pricing-table tbody tr:hover {
    background-color: var(--color-beige);
}

.table-highlight {
    background-color: rgba(201, 162, 74, 0.1);
    font-weight: 600;
}

.pricing-table .btn {
    border-radius: 20px;
    font-size: 0.85rem;
    padding: 8px 20px;
}

.pricing-table .btn-outline-primary {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

.pricing-table .btn-outline-primary:hover {
    background: var(--color-gold);
    color: var(--color-primary);
}

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

.pricing-table .btn-primary:hover {
    background: var(--color-gold-light);
    border-color: var(--color-gold-light);
}

/* ===== APPOINTMENT FORM ===== */
.appointment-form {
    background: var(--color-white);
    padding: 40px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.appointment-form .form-floating {
    margin-bottom: 20px;
}

.appointment-form .form-control,
.appointment-form .form-select {
    border: 2px solid var(--color-beige-dark);
    border-radius: var(--border-radius-sm);
    padding: 15px;
    transition: var(--transition-smooth);
}

.appointment-form .form-control:focus,
.appointment-form .form-select:focus {
    border-color: var(--color-gold);
    box-shadow: 0 0 0 0.2rem rgba(201, 162, 74, 0.25);
}

.appointment-form label {
    color: var(--color-gray);
}

.appointment-form .btn {
    background: var(--color-gold);
    color: var(--color-primary);
    font-weight: 600;
    padding: 15px;
    border-radius: 50px;
    transition: var(--transition-smooth);
    margin-top: 10px;
}

.appointment-form .btn:hover {
    background: var(--color-gold-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.contact-info-cards {
    margin-top: 40px;
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: var(--color-beige);
    border-radius: var(--border-radius-sm);
    transition: var(--transition-smooth);
}

.info-card:hover {
    background: var(--color-white);
    box-shadow: var(--shadow-md);
}

.info-card i {
    font-size: 1.5rem;
    color: var(--color-gold);
    margin-top: 5px;
}

.info-card h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.info-card p {
    color: var(--color-gray);
    margin: 0;
    line-height: 1.6;
}

/* ===== MAP ===== */
.map-wrapper {
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-wrapper iframe {
    display: block;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--color-primary);
    color: var(--color-beige);
    padding: 80px 0 30px;
}

.footer h3 {
    font-family: var(--font-heading);
    color: var(--color-gold);
    margin-bottom: 20px;
}

.footer h4 {
    font-family: var(--font-heading);
    color: var(--color-gold);
    margin-bottom: 20px;
}

.footer p {
    opacity: 0.8;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(201, 162, 74, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    transition: var(--transition-smooth);
    font-size: 1.2rem;
    text-decoration: none;
}

.social-links a:hover {
    background: var(--color-gold);
    color: var(--color-primary);
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--color-beige);
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--color-gold);
    padding-left: 5px;
}

.opening-hours {
    list-style: none;
    padding: 0;
}

.opening-hours li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
}

.footer-bottom {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    opacity: 0.7;
}

/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    z-index: 1000;
    box-shadow: 0 5px 30px rgba(37, 211, 102, 0.4);
    transition: var(--transition-bounce);
    text-decoration: none;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.15);
    color: white;
    box-shadow: 0 8px 40px rgba(37, 211, 102, 0.6);
}

/* ===== ANIMATIONS ===== */
[data-aos] {
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .navbar-collapse {
        background: var(--color-primary);
        padding: 20px;
        border-radius: var(--border-radius-sm);
        margin-top: 15px;
    }
    
    .btn-appointment {
        margin: 10px 0 0 0;
        text-align: center;
        display: block;
    }
    
    .about-image {
        height: 400px;
        margin-bottom: 60px;
    }
    
    .experience-badge {
        width: 100px;
        height: 100px;
        padding: 20px;
        right: 0;
        bottom: -20px;
    }
    
    .experience-badge .years {
        font-size: 2rem;
    }
    
    .hero-buttons .btn {
        padding: 12px 25px;
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .appointment-form {
        padding: 25px;
    }
    
    .service-card {
        margin-bottom: 15px;
    }
    
    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-tagline {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .pricing-table {
        font-size: 0.9rem;
    }
}

/* ===== GALERIE SECTION ===== */
.section-description {
    color: var(--color-gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    background: var(--color-white);
    border: 2px solid var(--color-beige-dark);
    border-radius: 50px;
    color: var(--color-primary);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-family: var(--font-body);
}

.filter-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.gallery-item {
    transition: all 0.4s ease;
}

.gallery-item.hidden {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
    position: absolute;
}

.gallery-card {
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    aspect-ratio: 4/3;
}

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

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-card:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 30px 20px 20px;
    opacity: 0;
    transition: all 0.4s ease;
    transform: translateY(20px);
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
    transform: translateY(0);
}

.overlay-content {
    color: var(--color-white);
    text-align: center;
}

.overlay-content i {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--color-gold);
}

.overlay-content h4 {
    font-family: var(--font-heading);
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.overlay-content p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

.lightbox.active {
    display: flex;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: var(--color-white);
    font-size: 3rem;
    cursor: pointer;
    z-index: 1;
    transition: var(--transition-fast);
}

.lightbox-close:hover {
    color: var(--color-gold);
    transform: rotate(90deg);
}

.lightbox-content {
    position: relative;
    max-width: 80%;
    max-height: 80vh;
    text-align: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 70vh;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-xl);
}

.lightbox-caption {
    color: var(--color-white);
    margin-top: 20px;
}

.lightbox-caption h4 {
    font-family: var(--font-heading);
    color: var(--color-gold);
    margin-bottom: 5px;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(201,162,74,0.3);
    border: none;
    color: var(--color-white);
    font-size: 2rem;
    padding: 15px 20px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border-radius: 10px;
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--color-gold);
    color: var(--color-primary);
}

/* ===== TÉMOIGNAGES SECTION ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.testimonial-card {
    background: var(--color-white);
    border-radius: var(--border-radius-md);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-gold);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    position: relative;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--color-gold);
    flex-shrink: 0;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info h4 {
    font-family: var(--font-heading);
    margin-bottom: 5px;
    color: var(--color-primary);
}

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

.stars i {
    margin-right: 2px;
}

.quote-icon {
    position: absolute;
    right: 0;
    top: 0;
    font-size: 2rem;
    color: var(--color-gold);
    opacity: 0.3;
}

.testimonial-text {
    color: var(--color-gray);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial-date {
    font-size: 0.85rem;
    color: var(--color-gray);
    opacity: 0.7;
}

/* Rating Summary */
.rating-summary {
    text-align: center;
    margin-top: 50px;
}

.rating-card {
    background: var(--color-white);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    display: inline-block;
    min-width: 300px;
}

.rating-score {
    margin-bottom: 25px;
}

.score-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--color-gold);
    font-family: var(--font-heading);
    display: block;
    line-height: 1;
    margin-bottom: 10px;
}

.review-count {
    display: block;
    color: var(--color-gray);
    margin-top: 10px;
    font-size: 0.9rem;
}

/* Slider Témoignages Mobile */
.testimonials-slider {
    display: none;
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-md);
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonials-track .testimonial-card {
    min-width: 100%;
    margin: 0;
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.testimonial-prev,
.testimonial-next {
    background: var(--color-gold);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--color-white);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background: var(--color-primary);
    transform: scale(1.1);
}

.testimonial-dots {
    display: flex;
    gap: 8px;
}

.testimonial-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-beige-dark);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.testimonial-dots .dot.active {
    background: var(--color-gold);
    transform: scale(1.3);
}

/* Responsive */
@media (max-width: 991px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .testimonials-grid {
        display: none;
    }
    
    .testimonials-slider {
        display: block;
    }
    
    .rating-card {
        min-width: auto;
        width: 100%;
    }
    
    .lightbox-content {
        max-width: 95%;
    }
    
    .lightbox-prev,
    .lightbox-next {
        padding: 10px 15px;
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .gallery-filters {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 8px 18px;
        font-size: 0.85rem;
    }
    
    .score-number {
        font-size: 3rem;
    }
}

/* Style pour les étoiles en texte */
.stars {
    color: #FFD700;
    font-size: 1rem;
    letter-spacing: 2px;
}