/* ============================================
   TABLE DES MATIÈRES
   ============================================
   1. Variables CSS Globales
   2. Reset Global
   3. Top Bar
   4. Header & Navigation
   5. Hero Section
   6. Section Headers
   7. Cards Communes
   8. Boutons Personnalisés
   9. Service Cards
   10. Why Us Section
   11. Testimonial Cards
   12. Section À Propos
   13. Section Horaires & Localisation
   14. Responsive Design
   15. Performance & Accessibilité
   16. Print & Utilitaires
   ============================================ */

/* ============================================
   1. VARIABLES CSS GLOBALES
   ============================================ */
:root {
    /* Palette de couleurs principale */
    --color-primary: #c85b7c;
    --color-primary-light: #e09bb0;
    --color-primary-dark: #a04661;
    --color-primary-darker: #7a3348;

    --color-secondary: #ff4757;
    --color-secondary-light: #ff6b7a;

    --color-accent: #ffa07a;
    --color-accent-warm: #ffb894;
    --color-accent-gold: #d4af37;

    --color-success: #7fa877;
    --color-success-light: #9bc194;

    --color-info: #7b9eb8;
    --color-info-light: #95b2c9;

    --color-teal: #5a9b8e;
    --color-blue: #6b8cae;

    /* Arrière-plans */
    --bg-primary: #fff5f7;
    --bg-secondary: #fff0f3;
    --bg-dark: #2c1f24;
    --bg-light: #f8e8ec;
    --bg-white: #ffffff;

    /* Textes */
    --text-primary: #2c1f24;
    --text-secondary: #6b5b5f;
    --text-muted: #998a8e;
    --text-light: #756569;
    --text-white: #ffffff;

    /* Polices */
    --font-heading: "League Spartan", Sans-serif;
    --font-body: "Poppins", Sans-serif;

    /* Espacements */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
    --radius-full: 50%;

    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(200, 91, 124, 0.08);
    --shadow-md: 0 5px 20px rgba(200, 91, 124, 0.12);
    --shadow-lg: 0 10px 40px rgba(200, 91, 124, 0.15);
    --shadow-xl: 0 20px 60px rgba(200, 91, 124, 0.18);
    --shadow-primary: 0 4px 15px rgba(200, 91, 124, 0.25);
    --shadow-primary-lg: 0 8px 25px rgba(200, 91, 124, 0.3);

    /* Transitions */
    --transition-base: all 0.3s ease;
    --transition-fast: all 0.2s ease;
    --transition-slow: all 0.4s ease;
    --transition-cubic: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);

    --color-gray-50: #f9fafb;
    --color-gray-100: #f3f4f6;
    --color-gray-200: #e5e7eb;
    --color-gray-300: #d1d5db;
    --color-gray-400: #9ca3af;
    --color-gray-500: #6b7280;
    --color-gray-600: #4b5563;
    --color-gray-700: #374151;
    --color-gray-800: #1f2937;
    --color-gray-900: #111827;
}

/* ============================================
   2. RESET GLOBAL
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
}

img {
    max-width: 100%;
    height: auto;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

a {
    transition: var(--transition-base);
}

html {
    scroll-behavior: smooth;
}

/* ============================================
   3. TOP BAR
   ============================================ */
.top-bar {
    background: var(--color-primary);
    color: white;
    font-size: 13px;
    position: relative;
}

.top-bar::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(
        135deg,
        var(--color-primary) 0%,
        var(--color-primary-light) 100%
    );
}

.top-bar a {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    transition: var(--transition-base);
}

.top-bar i {
    color: var(--bg-light);
}

/* ============================================
   4. HEADER & NAVIGATION
   ============================================ */
.header-area {
    background: white;
    box-shadow: 0 2px 8px rgba(255, 167, 38, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    height: 55px;
    width: auto;
}

.navbar-nav .nav-link {
    color: var(--text-primary);
    font-weight: 500;
    position: relative;
    transition: var(--transition-base);
}

.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    bottom: 5px;
    left: 18px;
    right: 18px;
    height: 2px;
    background: var(--color-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--color-primary);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}

/* ============================================
   5. HERO SECTION
   ============================================ */
.hero-slide {
    min-height: 85vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    background-color: #f0f0f0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    animation: fadeInUp 1s ease-out;
}

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

.hero-ornament {
    color: var(--color-primary-light);
    font-size: 32px;
    filter: drop-shadow(0 0 12px rgba(255, 167, 38, 0.6));
}

.hero-subtitle {
    color: var(--color-primary-light);
    font-size: 14px;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 600;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(36px, 8vw, 68px);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 700;
    letter-spacing: 2px;
}

.hero-divider {
    width: 80px;
    height: 3px;
    background: var(--color-primary);
}

/* Carousel Indicators */
.carousel-indicators-custom {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.carousel-indicators-custom button {
    width: 10px;
    height: 10px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    transition: var(--transition-base);
    cursor: pointer;
    padding: 0;
}

.carousel-indicators-custom button.active {
    background: var(--color-primary);
    width: 32px;
    border-radius: var(--radius-md);
}

/* ============================================
   6. SECTION HEADERS
   ============================================ */
.section-header {
    text-align: center;
    position: relative;
}

.section-label {
    color: var(--color-primary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: inline-block;
    position: relative;
    padding: 0 30px;
}

.section-label::before,
.section-label::after {
    content: "✦";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-accent-gold);
    font-size: 10px;
}

.section-label::before {
    left: 0;
}

.section-label::after {
    right: 0;
}

.section-heading {
    font-size: clamp(32px, 5vw, 42px);
    font-weight: 700;
    color: var(--text-primary);
}

/* Divider Decoration */
.heading-divider-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 0 auto;
}

.divider-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--color-primary),
        transparent
    );
}

.divider-icon {
    font-size: 24px;
    color: var(--color-primary);
    animation: float 3s ease-in-out infinite;
}

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

/* ============================================
   7. CARDS COMMUNES
   ============================================ */
.custom-card {
    background: var(--color-primary-darker);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-base);
    height: 100%;
    box-shadow: var(--shadow-sm);
}

.custom-card-localisation {
    background: #fff !important;
    box-shadow: none !important;
}

.custom-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.custom-card-localisation:hover {
    box-shadow: none !important;
}

.custom-card-img {
    height: 240px;
    overflow: hidden;
    position: relative;
    background-color: #f0f0f0;
}

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

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

.custom-card-body {
    text-align: center;
}

.custom-card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--bg-light);
}

.custom-card-text {
    font-size: 13px;
    color: var(--bg-secondary);
}

/* ============================================
   8. BOUTONS PERSONNALISÉS
   ============================================ */
.btn-custom-primary {
    background: linear-gradient(
        135deg,
        var(--color-primary) 0%,
        var(--color-primary-dark) 100%
    );
    color: white;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    border-radius: var(--radius-md);
    transition: var(--transition-base);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-custom-primary:hover {
    color: white;
}

.btn-custom-outline {
    background: transparent;
    color: var(--color-primary);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid var(--color-primary);
    border-radius: var(--radius-md);
    transition: var(--transition-base);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-custom-outline:hover {
    background: var(--color-primary);
    color: white;
}

/* ============================================
   9. SERVICE CARDS
   ============================================ */
.service-card-modern {
    position: relative;
    height: 100%;
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: var(--transition-slow);
    border: none;
}

.service-card-modern:hover {
    transform: translateY(-5px);
}

/* Card Type 1 - Glass Effect */
.service-card-glass {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.95),
        rgba(255, 255, 255, 0.85)
    );
    backdrop-filter: blur(10px);
    border: 2px solid var(--color-primary);
}

.service-card-glass::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--color-primary);
}

/* Card Type 2 - Gradient Bold */
.service-card-gradient {
    background: linear-gradient(
        135deg,
        var(--color-primary-dark) 0%,
        var(--color-primary-light) 90%
    );
    color: white;
    position: relative;
    overflow: hidden;
}

.service-card-gradient::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.1) 0%,
        transparent 70%
    );
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

/* Card Type 3 - Dark Mode */
.service-card-dark {
    background: linear-gradient(135deg, #4a3942 0%, var(--bg-dark) 100%);
    color: white;
    position: relative;
}

.service-card-dark::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(
        circle,
        rgba(200, 91, 124, 0.2) 0%,
        transparent 70%
    );
    border-radius: var(--radius-full);
}

/* Icon Containers */
.icon-container-outline {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(
        135deg,
        rgba(200, 91, 124, 0.1),
        rgba(255, 160, 122, 0.1)
    );
    border: 3px solid var(--color-primary);
    transition: var(--transition-base);
}

.service-card-modern:hover .icon-container-outline {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.35);
}

.icon-container-filled {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    transition: var(--transition-base);
}

.service-card-modern:hover .icon-container-filled {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.35);
}

.icon-container-dark {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    transition: var(--transition-base);
    position: relative;
    z-index: 1;
}

.service-card-modern:hover .icon-container-dark {
    transform: translateY(-5px);
}

/* Service Typography */
.service-title {
    font-weight: 700;
}

.service-description {
    line-height: 1.6;
    opacity: 0.9;
}

/* Service Buttons */
.btn-service-outline,
.btn-service-white,
.btn-service-light {
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    border: 2px solid;
}

.btn-service-outline {
    border-color: var(--color-primary);
    color: var(--color-primary);
    background: transparent;
}

.btn-service-outline:hover {
    background: var(--color-primary);
    color: white;
    transform: translateX(5px);
}

.btn-service-white {
    border-color: white;
    color: white;
    background: transparent;
}

.btn-service-white:hover {
    background: white;
    color: var(--color-primary);
    transform: translateX(5px);
}

.btn-service-light {
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}

.btn-service-light:hover {
    background: white;
    color: var(--color-primary-darker);
    border-color: white;
    transform: translateX(5px);
}

/* Badge */
.badge-new-animated {
    display: inline-block;
    background: var(--color-success);
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    margin-left: 6px;
    position: relative;
    animation: pulse-glow 2s ease-in-out infinite;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-new-animated i {
    font-size: 10px;
    margin-right: 3px;
    animation: rotate-star 3s linear infinite;
}

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

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

.badge-new-animated::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    animation: shine 3s infinite;
    border-radius: 20px;
}

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

.nav-link:hover .badge-new-animated {
    animation: pulse-glow 1s ease-in-out infinite;
}

/* Card Decoration */
.card-decoration {
    position: absolute;
    opacity: 0.1;
    font-size: 150px;
    color: var(--color-primary);
    bottom: -30px;
    right: -30px;
    pointer-events: none;
}

/* ============================================
   10. WHY US SECTION
   ============================================ */
.why-us-section {
    background: var(--bg-primary);
}

.why-us-header {
    background: linear-gradient(
        135deg,
        var(--color-primary-darker) 0%,
        var(--color-primary) 100%
    );
    color: white;
}

.why-number-circle {
    width: 90px;
    height: 90px;
    border-radius: var(--radius-full);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: 700;
    border: 6px solid white;
    box-shadow: 0 8px 32px rgba(255, 167, 38, 0.16);
    flex-shrink: 0;
}

.why-number-1 {
    background: var(--color-primary-dark);
}

.why-number-2 {
    background: var(--color-primary);
}

.why-number-3 {
    background: var(--color-primary-light);
}

/* ============================================
   11. TESTIMONIAL CARDS
   ============================================ */
.testimonial-card-pro {
    background: white;
    border-radius: var(--radius-xl);
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: var(--transition-cubic);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.testimonial-card-pro::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(
        90deg,
        var(--color-primary),
        var(--color-primary-darker)
    );
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

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

/* Featured Card */
.testimonial-card-featured {
    background: linear-gradient(
        135deg,
        var(--color-primary) 0%,
        var(--color-primary-light) 100%
    );
    color: white;
}

.testimonial-card-featured::before {
    background: white;
}

.testimonial-card-featured .author-name {
    color: white;
}

/* Quote Icon */
.quote-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-lg);
    background: linear-gradient(
        135deg,
        rgba(200, 91, 124, 0.1),
        rgba(255, 160, 122, 0.1)
    );
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-card-featured .quote-icon {
    background: rgba(255, 255, 255, 0.2);
}

.quote-icon i {
    font-size: 24px;
    color: var(--color-primary);
}

.testimonial-card-featured .quote-icon i {
    color: white;
}

/* Testimonial Content */
.testimonial-text,
.testimonial-text-light {
    line-height: 1.8;
    color: var(--text-light);
    font-style: italic;
}

.testimonial-text-light {
    color: var(--bg-light);
}

/* Author Section */
.author-section {
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 2px solid rgba(0, 0, 0, 0.05);
    margin-left: -1.5rem;
    margin-right: -1.5rem;
    padding: 1rem 0;
    margin-bottom: -1.5rem;
}

.testimonial-card-featured .author-section {
    border-top-color: rgba(255, 255, 255, 0.2);
}

.author-avatar-pro {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    background: linear-gradient(
        90deg,
        var(--color-primary-dark),
        var(--color-primary)
    );
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.testimonial-card-featured .author-avatar-pro {
    background: white;
    color: var(--color-primary);
}

.author-info {
    text-align: center;
}

.author-name {
    font-weight: 700;
    color: var(--text-primary);
}

/* Rating Stars */
.rating-stars {
    display: flex;
    justify-content: center;
    gap: 4px;
}

.star-pro {
    color: var(--color-accent-gold);
    font-size: 18px;
    transition: var(--transition-fast);
}

.testimonial-card-featured .star-pro {
    color: #fff;
}

.testimonial-card-pro:hover .star-pro {
    transform: scale(1.1);
}

/* Verified Badge */
.verified-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #28a745;
    color: white;
    border-radius: var(--radius-xl);
    font-weight: 600;
    display: flex;
    gap: 10px;
    align-items: center;
}

.testimonial-card-featured .verified-badge {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
}

/* Decorative Elements */
.decoration-circle {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: var(--radius-full);
    background: radial-gradient(
        circle,
        rgba(200, 91, 124, 0.05) 0%,
        transparent 70%
    );
    bottom: -100px;
    right: -100px;
    pointer-events: none;
}

.testimonial-card-featured .decoration-circle {
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.1) 0%,
        transparent 70%
    );
}

/* ============================================
   12. SECTION À PROPOS
   ============================================ */
.bg-section {
    padding: 90px 0px;
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}
.bg-light-section {
    padding: 90px 0px;
}

.bg-section::before {
    content: "";
    position: absolute;
    top: 0;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(
        circle,
        rgba(200, 91, 124, 0.05) 0%,
        transparent 70%
    );
    border-radius: var(--radius-full);
    pointer-events: none;
}

/* Image Wrapper */
.image-wrapper {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.image-wrapper::before {
    content: "";
    position: absolute;
    top: 20px;
    left: 20px;
    right: 0;
    bottom: 0;
    border: 3px solid var(--color-primary);
    border-radius: var(--radius-lg);
    z-index: 0;
}

.image-wrapper img {
    border-radius: var(--radius-lg);
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

.lead {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-primary);
    font-weight: 500;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.feature-card {
    background: white;
    border-radius: var(--radius-lg);
    border: 2px solid transparent;
    transition: var(--transition-base);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
}

.feature-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(200, 91, 124, 0.15);
}

.feature-card .icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(
        135deg,
        var(--color-primary-light) 0%,
        var(--color-primary) 100%
    );
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: white;
    box-shadow: 0 5px 15px rgba(200, 91, 124, 0.3);
    flex-shrink: 0;
}

.feature-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
}

.feature-card p {
    font-size: 12px;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

/* ============================================
   13. SECTION HORAIRES & LOCALISATION
   ============================================ */

/* Horaires - Day Schedule */
.day-schedule {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.day-schedule:last-child {
    border-bottom: none;
}

.day-schedule:hover {
    background: rgba(200, 91, 124, 0.03);
    padding-left: 8px;
    padding-right: 8px;
    border-radius: 8px;
}

.day-name {
    font-weight: 600;
    color: var(--text-primary);
}

.schedule-times {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.time-badge {
    background: linear-gradient(
        135deg,
        rgba(200, 91, 124, 0.1),
        rgba(255, 160, 122, 0.1)
    );
    color: var(--color-primary);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

.time-badge.closed {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

/* Contact Items */
.contact-item {
    display: flex;
    align-items: center;
    padding: 12px;
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(200, 91, 124, 0.05);
    transform: translateX(5px);
}

.contact-item i {
    color: var(--color-primary);
    font-size: 20px;
    margin-right: 12px;
    min-width: 30px;
}

.contact-item a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--color-primary);
}

/* Map Container */
.map-container {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 100%;
    min-height: 500px;
}

/* Section Divider */
.section-divider {
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--color-primary),
        transparent
    );
    margin: 24px 0;
}
/* ============================================
   13. Footer
   ============================================ */
/* Footer Principal */
.footer-modern {
    background: linear-gradient(
        135deg,
        var(--color-primary-darker) 0%,
        #4a3942 100%
    );
    color: white;
    position: relative;
    overflow: hidden;
}

.footer-modern::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(
        90deg,
        var(--color-primary),
        var(--color-accent-gold)
    );
}

.footer-modern::after {
    content: "";
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(
        circle,
        rgba(255, 160, 122, 0.1) 0%,
        transparent 70%
    );
    border-radius: 50%;
    pointer-events: none;
}

/* Logo Footer */
.footer-logo {
    max-height: 80px;
    width: auto;
    margin-bottom: 20px;
    filter: brightness(1.1);
}

/* Section Titles */
.footer-section-title {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.footer-section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(
        90deg,
        var(--color-primary),
        var(--color-accent-gold)
    );
    border-radius: 2px;
}

/* Description */
.footer-description {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 24px;
    font-size: 14px;
}

/* Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-link {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-link:hover {
    color: white;
    transform: translateX(5px);
}

.footer-link i {
    font-size: 16px;
    color: var(--color-accent-gold);
}

/* Contact Info */
.contact-info-footer {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    line-height: 1.6;
}

.contact-info-footer i {
    color: var(--color-accent-gold);
    font-size: 18px;
    margin-top: 2px;
}

.contact-info-footer a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-footer a:hover {
    color: white;
}

/* Bottom Bar */
.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 0;
}

.footer-bottom-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    margin: 0;
}

/* Social Icons dans Bottom Bar */
.social-icons-bottom {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.social-icon-bottom {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
}

.social-icon-bottom:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(200, 91, 124, 0.4);
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.footer-bottom-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.footer-bottom-link:hover {
    color: white;
}
/* ============================================
   14. RESPONSIVE DESIGN
   ============================================ */

/* Tablettes (992px et moins) */
@media (max-width: 991px) {
    .section-heading {
        font-size: 32px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .why-number-circle {
        width: 70px;
        height: 70px;
        font-size: 36px;
    }

    .image-wrapper::before {
        top: 15px;
        left: 15px;
    }

    .testimonial-card-featured {
        transform: scale(1);
    }

    .testimonial-card-featured:hover {
        transform: translateY(-10px) scale(1);
    }
}

/* Tablettes et mobiles (768px et moins) */
@media (max-width: 768px) {
    .hero-slide {
        min-height: 65vh;
    }

    .hero-title {
        font-size: 36px;
    }

    .section-heading {
        font-size: 28px;
    }

    .why-us-header h2 {
        font-size: 32px;
    }

    .custom-card-img {
        height: 200px;
    }

    .top-bar {
        font-size: 12px;
    }

    .schedule-times {
        flex-direction: column;
        align-items: flex-end;
        gap: 6px;
    }

    .map-container {
        min-height: 400px;
    }
}

/* Mobiles (576px et moins) */
@media (max-width: 576px) {
    .hero-slide {
        min-height: 50vh;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 12px;
        letter-spacing: 2px;
    }

    .section-heading {
        font-size: 24px;
    }

    .section-label {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .btn-custom-primary,
    .btn-custom-outline {
        width: 100%;
        justify-content: center;
        font-size: 13px;
    }

    .features-grid {
        gap: 10px;
    }

    .feature-card .icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .feature-card h4 {
        font-size: 14px;
    }

    .why-number-circle {
        width: 60px;
        height: 60px;
        font-size: 28px;
        border-width: 4px;
    }

    .author-avatar-pro {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .author-name {
        font-size: 1rem;
    }

    .icon-container-outline,
    .icon-container-filled,
    .icon-container-dark {
        width: 60px;
        height: 60px;
    }

    .icon-container-outline i,
    .icon-container-filled i,
    .icon-container-dark i {
        font-size: 28px;
    }

    .carousel-indicators-custom {
        bottom: 20px;
        gap: 8px;
    }

    .carousel-indicators-custom button {
        width: 8px;
        height: 8px;
    }

    .carousel-indicators-custom button.active {
        width: 24px;
    }

    .top-bar .row > div {
        font-size: 11px;
    }

    .logo {
        height: 45px;
    }

    .day-name {
        min-width: 80px;
        font-size: 14px;
    }

    .time-badge {
        font-size: 12px;
        padding: 4px 10px;
    }

    .contact-item {
        padding: 10px 0;
    }

    .contact-item i {
        font-size: 18px;
    }

    .map-container {
        min-height: 300px;
    }
}

/* Très petits écrans (400px et moins) */
@media (max-width: 400px) {
    .hero-title {
        font-size: 24px;
    }

    .section-heading {
        font-size: 22px;
    }

    .lead {
        font-size: 15px;
    }

    .testimonial-text,
    .testimonial-text-light {
        font-size: 0.9rem;
    }

    .btn-service-outline,
    .btn-service-white,
    .btn-service-light {
        font-size: 0.85rem;
    }

    .day-schedule {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .schedule-times {
        width: 100%;
        justify-content: flex-start;
    }
}

/* Footer */
@media (max-width: 768px) {
    .footer-bottom-links {
        justify-content: center;
    }

    .social-icons-bottom {
        margin: 10px 0;
    }
}

/* ============================================
   15. PERFORMANCE & ACCESSIBILITÉ
   ============================================ */

/* Hardware acceleration pour les animations */
.custom-card,
.service-card-modern,
.testimonial-card-pro,
.feature-card,
.btn-custom-primary,
.btn-custom-outline,
.day-schedule,
.contact-item {
    will-change: transform;
}

/* Suppression de tous les focus visuels par défaut */

a:focus,
button:focus,
.day-schedule:focus,
.contact-item:focus,
input:focus,
textarea:focus,
select:focus {
    outline: none;
    box-shadow: none;
}

/* Pour être sûr de bien tout nettoyer */
*:focus {
    outline: none;
    box-shadow: none;
}

/* Alternative : avec focus-visible pour une meilleure pratique */
a:focus-visible,
button:focus-visible,
.day-schedule:focus-visible,
.contact-item:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: none;
    box-shadow: none;
}

/* Réduction des mouvements pour l'accessibilité */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Fix pour Safari et iOS */
input,
textarea,
button,
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* Fix pour les transitions sur mobile (pas de hover) */
@media (hover: none) {
    .custom-card:hover,
    .service-card-modern:hover,
    .testimonial-card-pro:hover,
    .day-schedule:hover,
    .contact-item:hover {
        transform: none;
    }
}

/* ============================================
   16. PRINT & UTILITAIRES
   ============================================ */

/* Print Styles */
@media print {
    .top-bar,
    .header-area,
    .btn-custom-primary,
    .btn-custom-outline,
    .carousel-indicators-custom {
        display: none;
    }

    body {
        font-size: 12pt;
        line-height: 1.5;
        color: #000;
    }

    .hero-overlay {
        background: rgba(0, 0, 0, 0.3);
    }

    .custom-card,
    .testimonial-card-pro,
    .service-card-modern {
        page-break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }
}

/* Loading States */
.loading {
    pointer-events: none;
    opacity: 0.6;
}

.loading::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    margin: -15px 0 0 -15px;
    border: 3px solid var(--color-primary);
    border-top-color: transparent;
    border-radius: var(--radius-full);
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Scrollbar Styling (Webkit) */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary-dark);
}

/* Selection Styling */
::selection {
    background: var(--color-primary);
    color: white;
}

::-moz-selection {
    background: var(--color-primary);
    color: white;
}

/* ============================================
   FIN DU FICHIER CSS
   ============================================ */
