/* ===================================
   FAÇADE & CO - VERSION 2.4 CSS
   Système Avant/Arès Simplifié
   =================================== */

/* ===== CSS VARIABLES ===== */
:root {
    --primary: #E65100;
    --primary-dark: #bf4300;
    --secondary: #1F2937;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --font-main: 'Poppins', Arial, sans-serif;
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* TrustIndex Variables */
    --ti-bg: #ffffff;
    --ti-border: #e5e7eb;
    --ti-text: #374151;
    --ti-text-light: #6b7280;
    --ti-star: #fbbf24;
    --ti-google: #4285f4;
    --ti-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --ti-radius: 12px;
}

/* ===== FONT AWESOME - FONT-DISPLAY: SWAP ===== */
/* Optimisation: Force font-display: swap pour les icônes FontAwesome */
@font-face {
    font-family: "Font Awesome 6 Free";
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/webfonts/fa-solid-900.woff2") format("woff2");
}

@font-face {
    font-family: "Font Awesome 6 Free";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/webfonts/fa-regular-400.woff2") format("woff2");
}

@font-face {
    font-family: "Font Awesome 6 Brands";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/webfonts/fa-brands-400.woff2") format("woff2");
}

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

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

body {
    font-family: var(--font-main);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--white);
    overflow-x: hidden;
}

/* Skip Link for Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary);
    color: var(--white);
    padding: var(--space-sm) var(--space-md);
    z-index: 10000;
    transition: top 0.3s ease;
    font-weight: 600;
    border-radius: 0 0 var(--radius-md) 0;
}

.skip-link:focus {
    top: 0;
    outline: 3px solid var(--white);
    outline-offset: 2px;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all var(--transition-base);
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

input,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
}

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

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

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

.loader-logo {
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto var(--space-md);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.loader-text {
    font-size: 1.25rem;
    font-weight: 500;
}

/* ===== CONTAINER ===== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* ===== TOP BAR ===== */
.top-bar {
    background: var(--secondary);
    color: var(--white);
    padding: var(--space-sm) 0;
    font-size: 0.875rem;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.top-bar-item,
.top-bar-badge {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.top-bar-item i,
.top-bar-badge i {
    color: var(--primary);
}

.top-bar-badge i {
    color: #fbbf24;
}

/* ===== NAVBAR ===== */
.navbar {
    background: var(--white);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo .logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
}

.logo-icon {
    background: var(--primary);
    color: var(--white);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    font-weight: 700;
}

.logo-accent {
    color: var(--primary);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.nav-link {
    color: var(--gray-700);
    font-weight: 500;
    position: relative;
    padding: var(--space-sm) 0;
}

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

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

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

.nav-cta {
    background: var(--primary);
    color: var(--white);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: all var(--transition-base);
}

.nav-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: var(--space-sm);
}

.hamburger {
    width: 25px;
    height: 2px;
    background: var(--secondary);
    transition: all var(--transition-base);
}

.hamburger::before,
.hamburger::after {
    content: '';
    width: 25px;
    height: 2px;
    background: var(--secondary);
    transition: all var(--transition-base);
}

.hamburger::before {
    transform: translateY(-8px);
}

.hamburger::after {
    transform: translateY(6px);
}

.nav-toggle.active .hamburger {
    background: transparent;
}

.nav-toggle.active .hamburger::before {
    transform: rotate(45deg);
}

.nav-toggle.active .hamburger::after {
    transform: rotate(-45deg);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: var(--space-4xl) 0;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -2;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(31, 41, 55, 0.95) 0%, rgba(31, 41, 55, 0.7) 100%);
}

/* Hero Picture Styling */
.hero-picture {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -3;
    width: 100%;
    height: 100%;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* L'overlay n'a plus besoin de background-image car c'est géré par picture */
    z-index: -2;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(rgba(230, 81, 0, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: -1;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: var(--space-3xl);
    align-items: center;
}

.hero-badge-wrapper {
    margin-bottom: var(--space-lg);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: rgba(230, 81, 0, 0.2);
    color: var(--primary);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-full);
    font-weight: 500;
    font-size: 0.875rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: var(--space-lg);
}

.hero-highlight {
    color: var(--primary);
    display: block;
}

.hero-accent {
    color: var(--primary);
    display: block;
    font-weight: 700;
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-xl);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.hero-trust {
    display: flex;
    gap: var(--space-xl);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.trust-item i {
    color: var(--primary);
}

.hero-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-2xl);
    overflow: hidden;
	min-height: 500px;
}

.hero-card-header {
    background: var(--primary);
    color: var(--white);
    padding: var(--space-lg);
    text-align: center;
}

.hero-card-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--space-xs);
}

.hero-card-header p {
    opacity: 0.9;
    font-size: 0.875rem;
}

.hero-form {
    padding: var(--space-xl);
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-group label {
    display: block;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: var(--space-xs);
    font-size: 0.875rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: var(--space-md);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
}

.hero-card-footer {
    background: var(--gray-50);
    padding: var(--space-md);
    text-align: center;
    font-size: 0.75rem;
    color: var(--gray-500);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scroll-mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--white);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        top: 8px;
        opacity: 1;
    }

    100% {
        top: 20px;
        opacity: 0;
    }
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition-base);
    cursor: pointer;
    border: none;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

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

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

.btn-outline-dark:hover {
    background: var(--secondary);
    color: var(--white);
}

.btn-full {
    width: 100%;
}

/* ===== SECTION HEADERS ===== */
.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-subtitle {
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.875rem;
    margin-bottom: var(--space-sm);
    display: block;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-md);
}

.section-description {
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== STATS SECTION ===== */
.stats-section {
    background: var(--secondary);
    padding: var(--space-3xl) 0;
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
}

.stat-item {
    text-align: center;
    color: var(--white);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: rgba(230, 81, 0, 0.2);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
}

.stat-icon i {
    font-size: 1.5rem;
    color: var(--primary);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-xs);
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* ===== SERVICES SECTION ===== */
.services-section {
    padding: var(--space-4xl) 0;
    background: var(--gray-50);
}

.services-showcase {
    display: flex;
    flex-direction: column;
    gap: var(--space-3xl);
}

.service-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.service-feature-reverse {
    direction: rtl;
}

.service-feature-reverse>* {
    direction: ltr;
}

.service-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary);
    opacity: 0.3;
    margin-bottom: var(--space-md);
}

.service-feature-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-md);
}

.service-feature-content p {
    color: var(--gray-600);
    margin-bottom: var(--space-lg);
}

.service-list {
    margin-bottom: var(--space-xl);
}

.service-list li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
    color: var(--gray-700);
}

.service-list li i {
    color: var(--primary);
    font-size: 0.875rem;
}

.service-btn {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    padding-bottom: 2px;
    border-bottom: 2px solid var(--primary);
}

.service-feature-image {
    position: relative;
}

.service-feature-image img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.service-feature-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 3px solid var(--primary);
    border-radius: var(--radius-xl);
    z-index: -1;
}

.services-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, var(--primary) 0%, #FF8C00 100%);
    padding: var(--space-xl) var(--space-2xl);
    border-radius: var(--radius-xl);
    margin-top: var(--space-3xl);
    box-shadow: var(--shadow-xl);
    color: var(--white);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    position: relative;
    overflow: hidden;
}

.services-cta:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-2xl);
}

.services-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.cta-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-xs);
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.services-cta .btn-primary {
    background: var(--white);
    color: var(--primary);
    padding: var(--space-md) var(--space-2xl);
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.services-cta .btn-primary:hover {
    background: var(--gray-100);
    transform: scale(1.05);
}

/* ===== TESTIMONIALS SECTION ===== */
/* ===== TRUSTINDEX WIDGET STYLES ===== */
.testimonials-section {
    padding: var(--space-4xl) 0;
    background: var(--white);
}

/* TrustIndex Main Widget Container */
.ti-widget {
    max-width: 900px;
    margin: 0 auto;
    background: var(--ti-bg);
    border: 1px solid var(--ti-border);
    border-radius: var(--ti-radius);
    box-shadow: var(--ti-shadow);
    overflow: hidden;
    font-family: var(--font-main);
}

/* TrustIndex Header */
.ti-widget-header {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: var(--space-xl) var(--space-2xl);
    border-bottom: 1px solid var(--ti-border);
}

.ti-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-lg);
}

.ti-rating-summary {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.ti-rating-stars {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

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

.ti-star {
    color: var(--ti-star);
    font-size: 1.25rem;
}

.ti-rating {
    font-size: 2rem;
    font-weight: 700;
    color: var(--ti-text);
    line-height: 1;
}

.ti-rating-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.ti-total-reviews {
    font-size: 0.875rem;
    color: var(--ti-text-light);
    font-weight: 500;
}

.ti-verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #10b981;
    color: white;
    padding: 2px 8px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
}

.ti-verified-icon {
    font-size: 0.625rem;
}

.ti-header-actions {
    display: flex;
    align-items: center;
}

.ti-write-review-btn {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    background: var(--ti-google);
    color: white;
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: var(--transition-base);
}

.ti-write-review-btn:hover {
    background: #3367d6;
    transform: translateY(-1px);
}

.ti-google-icon {
    font-size: 1rem;
}

/* TrustIndex Container */
.ti-widget-container {
    padding: var(--space-2xl);
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
}

/* TrustIndex Review Items */
.ti-review-item {
    display: none;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.ti-review-item.active {
    display: block;
    opacity: 1;
    transform: translateX(0);
}

.ti-inner {
    background: var(--ti-bg);
    border: 1px solid var(--ti-border);
    border-radius: var(--ti-radius);
    padding: var(--space-xl);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: var(--transition-base);
}

.ti-inner:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.ti-review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-lg);
}

.ti-review-stars {
    display: flex;
    gap: 2px;
}

.ti-review-stars .ti-star {
    font-size: 1rem;
}

.ti-review-date {
    font-size: 0.875rem;
    color: var(--ti-text-light);
}

.ti-review-content {
    margin-bottom: var(--space-lg);
}

.ti-review-text {
    font-size: 1rem;
    color: var(--ti-text);
    line-height: 1.6;
    font-style: normal;
}

.ti-review-footer {
    padding-top: var(--space-md);
    border-top: 1px solid var(--ti-border);
}

.ti-reviewer {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.ti-reviewer-avatar {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    object-fit: cover;
    border: 2px solid var(--ti-border);
}

.ti-reviewer-details {
    flex: 1;
}

.ti-reviewer-name {
    font-weight: 600;
    color: var(--ti-text);
    margin-bottom: 2px;
}

.ti-reviewer-source {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.875rem;
    color: var(--ti-text-light);
}

.ti-source-icon {
    color: var(--ti-google);
}

/* TrustIndex Navigation */
.ti-widget-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    padding: var(--space-xl) var(--space-2xl);
    background: #f8fafc;
    border-top: 1px solid var(--ti-border);
}

.ti-nav-btn {
    width: 40px;
    height: 40px;
    border: 2px solid var(--ti-border);
    border-radius: var(--radius-full);
    background: var(--ti-bg);
    color: var(--ti-text);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-base);
}

.ti-nav-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.ti-dots {
    display: flex;
    gap: var(--space-sm);
}

.ti-dot {
    width: 8px;
    height: 8px;
    border-radius: var(--radius-full);
    background: var(--ti-border);
    border: none;
    cursor: pointer;
    transition: var(--transition-base);
}

.ti-dot.active {
    background: var(--primary);
    width: 24px;
    border-radius: var(--radius-sm);
}

.ti-dot:hover {
    background: var(--gray-400);
}

/* Responsive Design */
@media (max-width: 768px) {
    .ti-header-content {
        flex-direction: column;
        text-align: center;
    }

    .ti-rating-summary {
        flex-direction: column;
        text-align: center;
    }

    .ti-widget-container {
        padding: var(--space-lg);
    }

    .ti-inner {
        padding: var(--space-lg);
    }

    .ti-widget-nav {
        padding: var(--space-lg);
    }
}

@media (max-width: 480px) {
    .ti-rating {
        font-size: 1.5rem;
    }

    .ti-write-review-btn {
        padding: var(--space-sm) var(--space-md);
        font-size: 0.8rem;
    }

    .ti-reviewer-avatar {
        width: 40px;
        height: 40px;
    }

    .ti-review-text {
        font-size: 0.9rem;
    }
}

/* Legacy testimonial styles (kept for compatibility) */
.testimonial-slide {
    display: none;
    animation: fadeIn 0.5s ease;
}

.testimonial-slide.active {
    display: block;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial-content {
    background: var(--gray-50);
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    margin-bottom: var(--space-xl);
    position: relative;
}

.testimonial-quote {
    position: absolute;
    top: -15px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
}

.testimonial-text {
    font-size: 1.125rem;
    color: var(--gray-700);
    font-style: italic;
    line-height: 1.8;
}

.testimonial-rating {
    margin-top: var(--space-md);
    color: #fbbf24;
    font-size: 0.875rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding-left: var(--space-md);
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    object-fit: cover;
    border: 3px solid var(--primary);
}

.author-name {
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 2px;
}

.author-location {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.testimonials-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.testimonial-nav {
    width: 40px;
    height: 40px;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    transition: all var(--transition-base);
}

.testimonial-nav:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.testimonial-dots {
    display: flex;
    gap: var(--space-sm);
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: var(--radius-full);
    background: var(--gray-300);
    cursor: pointer;
    transition: all var(--transition-base);
}

.dot.active {
    background: var(--primary);
    width: 30px;
}

/* ==========================================
   AVANT / APRÈS - VERSION 2.4 SIMPLIFIÉ
   ========================================== */

.realisations-section {
    padding: var(--space-4xl) 0;
    background: var(--gray-50);
}

.before-after-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.ba-block {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.ba-block:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.ba-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: var(--gray-200);
}

.ba-image-wrapper {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.ba-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.ba-block:hover .ba-image-wrapper img {
    transform: scale(1.05);
}

.ba-label {
    position: absolute;
    bottom: 8px;
    padding: 4px 12px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-sm);
    z-index: 5;
}

.before-label {
    left: 8px;
    background: rgba(31, 41, 55, 0.9);
    color: var(--gray-400);
}

.after-label {
    right: 8px;
    background: var(--primary);
    color: var(--white);
}

.ba-info {
    padding: var(--space-lg);
    text-align: center;
}

.ba-info h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: var(--space-xs);
}

.ba-info p {
    font-size: 0.85rem;
    color: var(--gray-500);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
}

.ba-info p i {
    color: var(--primary);
}

.realisations-more {
    text-align: center;
    margin-top: var(--space-2xl);
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: var(--space-4xl) 0;
    background: var(--white);
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-img-main img {
    width: 100%;
}

.about-img-secondary {
    position: absolute;
    bottom: -30px;
    right: 30px;
    width: 200px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--white);
}

.about-experience {
    position: absolute;
    top: 30px;
    left: -30px;
    background: var(--primary);
    color: var(--white);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-xl);
}

.experience-number {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
}

.experience-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content .section-subtitle {
    text-align: left;
}

.about-content .section-title {
    text-align: left;
    margin-bottom: var(--space-lg);
}

.about-text {
    color: var(--gray-600);
    margin-bottom: var(--space-xl);
    line-height: 1.8;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.about-feature {
    display: flex;
    gap: var(--space-md);
}

.about-feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(230, 81, 0, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-feature-icon i {
    color: var(--primary);
    font-size: 1.25rem;
}

.about-feature-text h4 {
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 2px;
}

.about-feature-text p {
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: var(--space-4xl) 0;
    background: var(--gray-50);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-2xl);
}

.contact-info-card {
    background: var(--secondary);
    color: var(--white);
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
}

.contact-info-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
}

.contact-info-card>p {
    color: var(--gray-400);
    margin-bottom: var(--space-xl);
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.contact-info-item {
    display: flex;
    gap: var(--space-md);
}

.contact-info-icon {
    width: 45px;
    height: 45px;
    background: rgba(230, 81, 0, 0.2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon i {
    color: var(--primary);
}

.contact-label {
    display: block;
    font-size: 0.75rem;
    color: var(--gray-400);
    text-transform: uppercase;
    margin-bottom: 2px;
}

.contact-info-content a,
.contact-info-content span {
    color: var(--white);
    font-weight: 500;
}

.contact-social-links {
    display: flex;
    gap: var(--space-md);
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all var(--transition-base);
}

.social-link:hover {
    background: var(--primary);
}

.contact-form-section {
    background: var(--white);
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.form-group-2 {
    display: flex;
    flex-direction: column;
}

.form-group-2 label {
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: var(--space-xs);
    font-size: 0.875rem;
}

.form-group-2 input,
.form-group-2 select,
.form-group-2 textarea {
    padding: var(--space-md);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.form-group-2 input:focus,
.form-group-2 select:focus,
.form-group-2 textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group-2 textarea {
    resize: vertical;
    min-height: 100px;
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    font-size: 0.875rem;
    color: var(--gray-600);
    cursor: pointer;
}

.checkbox-label input {
    margin-top: 3px;
}

/* ===== ZONE SECTION ===== */
.zone-section {
    background: var(--primary);
    color: var(--white);
    padding: var(--space-2xl) 0;
}

.zone-content {
    text-align: center;
}

.zone-content h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
}

.zone-content p {
    opacity: 0.9;
    margin-bottom: var(--space-lg);
}

.zone-cities {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-md);
}

.zone-city {
    background: rgba(255, 255, 255, 0.15);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.zone-city i {
    color: rgba(255, 255, 255, 0.7);
}

/* Glassmorphism for Stats */
.glass-stats {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

.glass-stats .stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.glass-stats .stat-number {
    color: var(--white);
    font-weight: 800;
}

.glass-stats .stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== FOOTER ===== */
.main-footer {
    background: var(--gray-900);
    color: var(--gray-400);
    padding: var(--space-3xl) 0 var(--space-xl);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-md);
}

.footer-tagline {
    margin-bottom: var(--space-lg);
    font-size: 0.9rem;
}

.footer-badges-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-badge-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.875rem;
}

.footer-badge-item i {
    color: var(--primary);
}

.footer-links-col h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: var(--space-lg);
}

.footer-links-col ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-links-col a {
    font-size: 0.9rem;
    transition: color var(--transition-base);
}

.footer-links-col a:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid var(--gray-800);
    padding-top: var(--space-xl);
    text-align: center;
    font-size: 0.875rem;
}

/* ===== HERO IMAGE OPTIMIZATIONS ===== */
/* Optimisation du chargement de l'image hero */
@media (max-width: 800px) {
    .hero-img {
        object-position: top; /* Ajuster le focus sur mobile si nécessaire */
    }
}

@media (max-width: 480px) {
    .hero-img {
        min-height: 100vh; /* Assurer une couverture complète sur mobile */
    }
}

/* Préchargement critique pour l'image hero */
.hero-picture {
    will-change: transform; /* Optimisation GPU */
}

/* ===== CALL BUTTON PHONE TOGGLE ===== */
.call-btn {
    transition: opacity 0.3s ease;
}

.call-btn.show-phone {
    /* No extra styles needed, only transition opacity */
}

/* ===== RESPONSIVE DESIGN ===== */

/* ===== SERVICES PAGE SPECIFIC ===== */
.services-hero .hero-main {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero .breadcrumb ul {
    display: flex;
    justify-content: center;
    gap: 10px;
    list-style: none;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

.breadcrumb-current {
    color: var(--white);
    font-weight: 500;
}

.services-main {
    padding: 80px 0;
}

.faq-section {
    padding: 80px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.faq-item h4 {
    color: var(--primary);
    margin-bottom: 15px;
}

.cta-full-section {
    padding: 60px 0;
    text-align: center;
    background: var(--primary);
    color: white;
}

.cta-full-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-full-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-white {
    background: white;
    color: var(--primary);
    padding: 15px 30px;
}

.btn-outline-white {
    border: 2px solid white;
    color: white;
    padding: 15px 30px;
}

/* Tablet */
@media (max-width: 1024px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
    }

    .hero-card {
        max-width: 500px;
        margin: 0 auto;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-feature,
    .service-feature-reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .about-wrapper {
        grid-template-columns: 1fr;
    }

    .about-images {
        max-width: 500px;
        margin: 0 auto;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }

    .before-after-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: var(--space-xl);
        gap: var(--space-md);
        box-shadow: var(--shadow-xl);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-base);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-cta {
        width: 100%;
        text-align: center;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        min-height: auto;
        padding: var(--space-3xl) 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-trust {
        flex-wrap: wrap;
        gap: var(--space-md);
    }

    .section-title {
        font-size: 2rem;
    }

    .stats-section {
        margin-top: 0;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
    }

    .before-after-container {
        grid-template-columns: 1fr;
    }

    .form-row-2 {
        grid-template-columns: 1fr;
    }

    .services-cta {
        flex-direction: column;
        gap: var(--space-lg);
        text-align: center;
        padding: var(--space-xl);
    }

    .cta-full-section {
        flex-direction: column;
        gap: var(--space-lg);
        text-align: center;
    }

    .zone-cities {
        flex-direction: column;
        align-items: center;
    }

    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-badges-list {
        align-items: center;
    }

    /* Services page specifics for mobile */
    .services-main,
    .faq-section {
        padding: 40px 0;
    }

    .service-feature-content {
        padding: 0 var(--space-sm);
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-lg);
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

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

    /* Small mobile adjustments */
    .cta-full-section {
        padding: 30px 0;
    }

    .faq-grid {
        gap: 20px;
    }

    .services-hero .hero-main .hero-stats {
        gap: 20px !important;
        margin-top: 30px !important;
    }

    .hero-description {
        font-size: 1.1rem;
    }
}

/* ===== FLOATING CTA (Mobile Only) ===== */
.floating-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    gap: 10px;
    z-index: 999;
}

.fab-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #E65100;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    animation: fab-pulse 2s infinite;
    transition: transform 0.3s ease;
}

.fab-btn:hover {
    transform: scale(1.1);
}

@keyframes fab-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(230, 81, 0, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(230, 81, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(230, 81, 0, 0);
    }
}

@media (max-width: 768px) {
    .floating-cta {
        display: flex;
    }
}