/* ========================================
   AXEL SEGURA - Construction & Rénovation
   Modern One-Page Website Styles
   ======================================== */

/* CSS Variables */
:root {
    --color-anthracite: #2d3436;
    --color-anthracite-dark: #1e2224;
    --color-anthracite-light: #4a5568;
    --color-white: #ffffff;
    --color-off-white: #f8f9fa;
    --color-cream: #fdfcfb;
    --color-accent: #7FB3B3;
    --color-accent-dark: #5a9999;
    --color-accent-light: #a3c9c9;
    --color-blue: #2c3e50;
    --color-blue-light: #34495e;
    --color-gray: #636e72;
    --color-gray-light: #b2bec3;
    --color-border: #dfe6e9;
    --color-success: #27ae60;
    
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Poppins', sans-serif;
    
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.15);
    
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

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

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

ul {
    list-style: none;
}

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

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-anthracite-dark);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(127, 179, 179, 0.4);
    font-weight: 700;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(127, 179, 179, 0.6);
    background: linear-gradient(135deg, var(--color-accent-light), var(--color-accent));
}

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

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

.btn-full {
    width: 100%;
}

.btn-call {
    background: var(--color-success);
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
}

.btn-call:hover {
    background: #219a52;
}

.btn-call svg {
    width: 20px;
    height: 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 5px 0;
    background: #DBECEB;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-base);
}

.navbar.scrolled {
    background: rgba(219, 236, 235, 0.98);
    backdrop-filter: blur(10px);
    padding: 5px 0;
    box-shadow: var(--shadow-md);
}

.nav-container {
    width: 100%;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 100px;
    width: auto;
    transition: transform var(--transition-base);
}

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

.navbar.scrolled .logo-image {
    height: 70px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-cta-phone {
    background: var(--color-anthracite-dark);
    color: var(--color-white);
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: all var(--transition-base);
    display: flex;
    align-items: center;
}

.nav-cta-phone:hover {
    background: var(--color-anthracite);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-anthracite);
    position: relative;
    padding: 8px 0;
}

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

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

.nav-link.nav-cta {
    background: var(--color-anthracite-dark);
    color: var(--color-white);
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    margin-left: auto;
}

.nav-link.nav-cta::after {
    display: none;
}

.nav-link.nav-cta:hover {
    background: var(--color-anthracite);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-anthracite);
    transition: all var(--transition-base);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Hero Section */
.hero {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 0 60px;
    background-image: url('freepik__je-veux-que-cette-image-soit-en-format-169-fais-en__8376.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(45, 52, 54, 0.95) 0%, rgba(45, 52, 54, 0.9) 40%, rgba(44, 62, 80, 0.4) 70%, transparent 100%);
    z-index: 0;
}

.hero-container {
    width: 100%;
    padding: 0 5%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 700px;
    text-align: center;
    padding: 0 20px;
}

.hero-glass-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    padding: 48px 40px;
    margin-top: 40px;
}

.hero-badge {
    display: inline-block;
    padding: 10px 20px;
    background: rgba(127, 179, 179, 0.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(127, 179, 179, 0.4);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 50px;
    margin-bottom: 28px;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--color-white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 1.15rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 32px;
    line-height: 1.7;
    text-transform: none;
    letter-spacing: 0;
}

.hero-buttons {
    display: flex;
    flex-direction: row;
    gap: 16px;
    flex-wrap: nowrap;
    justify-content: center;
}

.google-reviews-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.google-reviews-badge .google-logo {
    flex-shrink: 0;
}

.google-reviews-badge .google-stars {
    display: flex;
    align-items: center;
    gap: 2px;
}

.google-reviews-badge .google-rating {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: var(--color-white);
}

.google-reviews-badge .google-reviews-count {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

.btn-glass-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background: rgba(127, 179, 179, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(127, 179, 179, 0.5);
    border-radius: 10px;
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(127, 179, 179, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
    white-space: nowrap;
}

.btn-glass-primary:hover {
    background: rgba(127, 179, 179, 0.6);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(127, 179, 179, 0.4);
}

.btn-glass-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    white-space: nowrap;
    cursor: pointer;
}

.btn-glass-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
    border-color: rgba(255, 255, 255, 0.35);
}

.hero-image {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.hero-image-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: var(--color-accent);
    border-radius: var(--radius-md);
    z-index: -1;
}

.hero-image-real {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.hero-image-placeholder {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--color-anthracite-light), var(--color-anthracite));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: var(--color-white);
}

.hero-image-placeholder svg {
    width: 80px;
    height: 80px;
    opacity: 0.5;
}

.hero-image-placeholder span {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
}

.hero-stats {
    display: flex;
    gap: 40px;
    justify-content: flex-start;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px 40px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-stat {
    text-align: center;
}

.hero-stat .stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 4px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-stat .stat-label {
    display: block;
    font-size: 0.85rem;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.hero-scroll span {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-white);
}

.scroll-indicator {
    width: 24px;
    height: 40px;
    border: 2px solid var(--color-white);
    border-radius: 12px;
    position: relative;
}

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

@keyframes scroll-bounce {
    0%, 100% { top: 8px; opacity: 1; }
    50% { top: 20px; opacity: 0.3; }
}

/* Section Styles */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-accent);
    margin-bottom: 16px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-gray);
    line-height: 1.7;
}

/* Prestations Section */
.prestations {
    background: #faf8f5;
}

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

.prestation-card {
    background: #f0ede8;
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition-base);
    border: 1px solid transparent;
}

.prestation-card:hover {
    background: #f5f1ec;
    border-color: var(--color-border);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.prestation-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition-base);
}

.prestation-card:hover .prestation-icon {
    transform: scale(1.1) rotate(5deg);
}

.prestation-icon svg {
    width: 32px;
    height: 32px;
    color: var(--color-white);
}

.prestation-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.prestation-card p {
    font-size: 0.95rem;
    color: var(--color-gray);
    line-height: 1.6;
}

/* Social Proof Section - Modern 2026 Design */
.social-proof {
    background: linear-gradient(180deg, #0a0e27 0%, #1a1f3a 50%, #0f1629 100%);
    color: var(--color-white);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.social-proof::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(127, 179, 179, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(127, 179, 179, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.social-proof::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(127, 179, 179, 0.03) 2px,
        rgba(127, 179, 179, 0.03) 4px
    );
    animation: gridMove 20s linear infinite;
    pointer-events: none;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.social-proof-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.social-proof-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 16px;
    background: linear-gradient(135deg, #ffffff 0%, rgba(127, 179, 179, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.social-proof-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

.stats-grid-modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.stat-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(127, 179, 179, 0.4), rgba(127, 179, 179, 0.1));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

.stat-card:hover {
    transform: translateY(-8px);
}

.stat-card:hover .stat-card-inner {
    background: rgba(255, 255, 255, 0.08);
}

.stat-card-inner {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 32px 24px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.4s ease;
    min-height: 240px;
    justify-content: center;
}

.stat-icon-modern {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(127, 179, 179, 0.2), rgba(127, 179, 179, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.4s ease;
}

.stat-card:hover .stat-icon-modern {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(127, 179, 179, 0.3), rgba(127, 179, 179, 0.1));
}

.stat-icon-modern svg {
    width: 32px;
    height: 32px;
    stroke: var(--color-accent);
    stroke-width: 2;
}

.stat-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.stat-number-wrapper {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 4px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, var(--color-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-suffix {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-accent);
    opacity: 0.9;
}

.stat-label {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-description {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
}

/* Histoire Section */
.histoire {
    background: var(--color-white);
    padding: 100px 0;
}

.histoire-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.histoire-content {
    max-width: 600px;
}

.histoire-text {
    margin-top: 30px;
}

.histoire-intro {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-accent-dark);
    margin-bottom: 20px;
}

.histoire-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-gray);
    margin-bottom: 20px;
}

.histoire-highlight {
    background: var(--color-off-white);
    padding: 30px;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--color-accent);
    margin: 30px 0;
    display: flex;
    gap: 20px;
}

.highlight-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.highlight-icon svg {
    width: 30px;
    height: 30px;
    color: var(--color-white);
}

.highlight-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--color-anthracite-dark);
}

.highlight-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--color-gray);
    margin: 0;
}

.histoire-quote {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--color-anthracite);
    padding: 20px 30px;
    border-left: 4px solid var(--color-accent);
    background: var(--color-cream);
    border-radius: var(--radius-md);
    margin-top: 30px;
}

.histoire-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.histoire-image-real {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.histoire-image-placeholder {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    border-radius: var(--radius-lg);
    color: var(--color-white);
}

.histoire-image-placeholder svg {
    width: 80px;
    height: 80px;
    opacity: 0.7;
}

.histoire-image-placeholder span {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
    font-weight: 600;
}

.histoire-badges {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}

.badge-item {
    flex: 1;
    background: var(--color-white);
    padding: 20px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
}

.badge-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 8px;
}

.badge-text {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-anthracite);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Modern Animated Badge Cards */
.histoire-badges-modern {
    display: flex;
    gap: 20px;
    margin-top: 24px;
}

.badge-card {
    flex: 1;
    position: relative;
    cursor: pointer;
}

.badge-card-inner {
    background: linear-gradient(145deg, rgba(255,255,255,0.95), rgba(250,248,245,0.9));
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 24px 20px;
    border: 1px solid rgba(127, 179, 179, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.badge-card:hover .badge-card-inner {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(127, 179, 179, 0.25);
    border-color: var(--color-accent);
}

.badge-icon-container {
    position: relative;
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-icon-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--color-accent);
    border-radius: 50%;
    opacity: 0.3;
    animation: ringPulse 3s ease-in-out infinite;
}

.badge-icon-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(127, 179, 179, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulseBg 2.5s ease-in-out infinite;
}

.badge-card:hover .badge-icon-ring {
    animation: ringRotate 2s linear infinite;
    opacity: 0.6;
}

.badge-svg {
    width: 28px;
    height: 28px;
    color: var(--color-accent);
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.badge-card:hover .badge-svg {
    transform: scale(1.15);
    color: var(--color-accent-dark);
}

.svg-path-animate {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    animation: drawPath 1.5s ease forwards;
}

.svg-path-animate.delay {
    animation-delay: 0.3s;
}

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

.badge-title {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-anthracite-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
    transition: color 0.3s ease;
}

.badge-card:hover .badge-title {
    color: var(--color-accent-dark);
}

.badge-subtitle {
    display: block;
    font-size: 0.75rem;
    color: var(--color-gray);
    font-weight: 400;
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.4s ease;
}

.badge-card:hover .badge-subtitle {
    opacity: 1;
    transform: translateY(0);
}

.badge-line {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-accent-dark));
    border-radius: 3px 3px 0 0;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.badge-card:hover .badge-line {
    width: 60%;
}

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

@keyframes ringRotate {
    0% {
        transform: rotate(0deg);
        border-style: dashed;
    }
    100% {
        transform: rotate(360deg);
        border-style: dashed;
    }
}

@keyframes pulseBg {
    0%, 100% {
        transform: scale(0.8);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.6;
    }
}

@keyframes drawPath {
    to {
        stroke-dashoffset: 0;
    }
}

/* Réalisations Section */
.realisations {
    background: var(--color-off-white);
}

.gallery-container {
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
}

.gallery-wrapper {
    display: flex;
    transition: transform 0.5s ease;
}

.gallery-slide {
    min-width: 100%;
    padding: 0 20px;
}

.gallery-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition-base);
}

.gallery-image:hover {
    transform: scale(1.02);
}

.gallery-placeholder {
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, var(--color-anthracite-light), var(--color-anthracite));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: var(--color-white);
}

.gallery-placeholder svg {
    width: 60px;
    height: 60px;
    opacity: 0.5;
}

.gallery-placeholder span {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.7;
}

.gallery-caption {
    text-align: center;
    padding: 24px;
}

.gallery-caption h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.gallery-caption p {
    color: var(--color-gray);
}

.gallery-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 30px;
}

.gallery-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--color-white);
    border: 2px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
}

.gallery-btn:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
}

.gallery-btn:hover svg {
    color: var(--color-white);
}

.gallery-btn svg {
    width: 20px;
    height: 20px;
    color: var(--color-anthracite);
    transition: color var(--transition-base);
}

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

.gallery-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-gray-light);
    transition: all var(--transition-base);
}

.gallery-dot.active {
    background: var(--color-accent);
    transform: scale(1.2);
}

/* Before/After Comparison Slider */
.comparison-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.comparison-slider-container {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.comparison-slider-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.comparison-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
    cursor: ew-resize;
    user-select: none;
}

.comparison-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.comparison-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
}

.comparison-before {
    z-index: 1;
    clip-path: inset(0 50% 0 0);
}

.comparison-after {
    z-index: 0;
}

.comparison-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--color-white);
}

.comparison-before .comparison-placeholder {
    background: linear-gradient(135deg, #8B7355, #6B5344);
}

.comparison-after .comparison-placeholder {
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
}

.comparison-image.placeholder-active .comparison-placeholder {
    display: flex;
}

.comparison-placeholder svg {
    width: 50px;
    height: 50px;
    opacity: 0.6;
}

.comparison-placeholder span {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
}

.comparison-label {
    position: absolute;
    bottom: 16px;
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.7);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    z-index: 10;
}

.comparison-before .comparison-label {
    left: 16px;
}

.comparison-after .comparison-label {
    right: 16px;
}

.comparison-handle {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 20;
    pointer-events: none;
}

.comparison-handle-line {
    flex: 1;
    width: 3px;
    background: var(--color-white);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.comparison-handle-circle {
    width: 48px;
    height: 48px;
    background: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    flex-shrink: 0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.comparison-slider:hover .comparison-handle-circle {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}

.comparison-handle-circle svg {
    width: 24px;
    height: 24px;
    color: var(--color-accent);
}

.comparison-caption {
    padding: 24px;
    text-align: center;
}

.comparison-caption h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-anthracite-dark);
    margin-bottom: 8px;
}

.comparison-caption p {
    color: var(--color-gray);
    font-size: 0.95rem;
    line-height: 1.5;
}

.comparison-instruction {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px;
    color: var(--color-gray);
    font-size: 0.9rem;
}

.comparison-instruction svg {
    width: 24px;
    height: 24px;
    color: var(--color-accent);
    animation: slideHint 2s ease-in-out infinite;
}

@keyframes slideHint {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(5px);
    }
}

@media (max-width: 900px) {
    .comparison-gallery {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }
}

/* Gallery Carousel */
.gallery-carousel {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--color-border);
}

.carousel-title {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-anthracite-dark);
    margin-bottom: 30px;
}

.carousel-container {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.carousel-track-container {
    flex: 1;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

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

.carousel-slide {
    min-width: calc(33.333% - 10px);
    margin: 0 5px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.carousel-slide:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-lg);
}

.carousel-slide img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--color-white);
    border: 2px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-base);
    flex-shrink: 0;
}

.carousel-btn:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
}

.carousel-btn:hover svg {
    color: var(--color-white);
}

.carousel-btn svg {
    width: 24px;
    height: 24px;
    color: var(--color-anthracite);
    transition: color var(--transition-base);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-gray-light);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
}

.carousel-dot:hover {
    background: var(--color-gray);
}

.carousel-dot.active {
    background: var(--color-accent);
    transform: scale(1.2);
}

@media (max-width: 900px) {
    .carousel-slide {
        min-width: calc(50% - 10px);
    }
    
    .carousel-slide img {
        height: 200px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .carousel-btn svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 600px) {
    .carousel-slide {
        min-width: calc(100% - 10px);
    }
    
    .carousel-container {
        gap: 10px;
    }
    
    .carousel-title {
        font-size: 1.2rem;
    }
}

/* Engagements Section */
.engagements {
    background: var(--color-white);
}

.engagements-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.engagement-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: var(--color-off-white);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    border: 1px solid transparent;
}

.engagement-item:hover {
    background: var(--color-white);
    border-color: var(--color-border);
    box-shadow: var(--shadow-md);
}

.engagement-check {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
}

.engagement-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

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

/* Processus Section */
.processus {
    background: var(--color-off-white);
}

.processus-timeline {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    padding-left: 60px;
}

.timeline-line {
    position: absolute;
    left: 25px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--color-border);
}

.timeline-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(to bottom, var(--color-accent), var(--color-accent-dark));
    transition: height 1s ease;
}

.timeline-line.animate::before {
    height: 100%;
}

.processus-step {
    position: relative;
    padding: 30px 0;
}

.processus-step:last-child {
    padding-bottom: 0;
}

.step-number {
    position: absolute;
    left: -60px;
    top: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
    z-index: 1;
}

.step-content {
    background: var(--color-white);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
}

.step-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.step-content p {
    color: var(--color-gray);
    line-height: 1.7;
}

/* Recrutement Section */
.recrutement {
    background: var(--color-off-white);
    padding: 100px 0;
}

.recrutement-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.recrutement-header {
    text-align: center;
    margin-bottom: 50px;
}

.recrutement-content {
    margin-top: 40px;
}

.recrutement-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.recrutement-intro h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--color-anthracite-dark);
}

.recrutement-intro p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-gray);
}

.recrutement-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.recrutement-card {
    background: var(--color-white);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    transition: all var(--transition-base);
}

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

.recrutement-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.recrutement-icon svg {
    width: 32px;
    height: 32px;
    color: var(--color-white);
}

.recrutement-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    color: var(--color-anthracite-dark);
}

.recrutement-card ul {
    list-style: none;
    padding: 0;
}

.recrutement-card ul li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    color: var(--color-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.recrutement-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-accent-dark);
    font-weight: 700;
    font-size: 1.1rem;
}

.recrutement-cta {
    background: var(--color-white);
    padding: 50px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    border: 2px solid var(--color-accent);
}

.cta-content {
    margin-bottom: 30px;
}

.cta-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-anthracite-dark);
}

.cta-content p {
    font-size: 1.1rem;
    color: var(--color-gray);
}

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

.cta-buttons .btn {
    min-width: 200px;
}

.cta-buttons .btn svg {
    width: 18px;
    height: 18px;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, var(--color-anthracite-dark), var(--color-blue));
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(230, 126, 34, 0.1), transparent 70%);
    border-radius: 50%;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.contact-info .section-tag {
    color: var(--color-accent-light);
}

.contact-info .section-title {
    color: var(--color-white);
    text-align: left;
}

.contact-text {
    font-size: 1.1rem;
    color: var(--color-gray-light);
    margin-bottom: 32px;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon svg {
    width: 22px;
    height: 22px;
    color: var(--color-accent);
}

.contact-label {
    display: block;
    font-size: 0.8rem;
    color: var(--color-gray-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.contact-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-white);
}

.contact-value:hover {
    color: var(--color-accent);
}

.contact-form-wrapper {
    background: var(--color-white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-anthracite);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    padding: 14px 18px;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-anthracite);
    transition: all var(--transition-base);
    background: var(--color-off-white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    background: var(--color-white);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-gray-light);
}

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

/* Footer */
.footer {
    background: var(--color-anthracite-dark);
    color: var(--color-white);
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--color-gray-light);
    margin-top: 8px;
    line-height: 1.5;
}

.footer-links {
    display: flex;
    gap: 32px;
}

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

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    font-size: 0.85rem;
    color: var(--color-gray);
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: var(--color-gray);
    text-decoration: none;
    transition: color var(--transition-base);
}

.footer-legal a:hover {
    color: var(--color-accent);
}

/* Legal Pages */
.legal-page {
    padding: 120px 0 80px;
    background: var(--color-white);
    min-height: 100vh;
}

.legal-page h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-anthracite-dark);
    margin-bottom: 40px;
    text-align: center;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.legal-content h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-anthracite-dark);
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-content p {
    margin-bottom: 16px;
    color: var(--color-anthracite);
}

.legal-content ul {
    margin: 16px 0;
    padding-left: 30px;
}

.legal-content li {
    margin-bottom: 10px;
    color: var(--color-anthracite);
}

.legal-content strong {
    color: var(--color-anthracite-dark);
    font-weight: 600;
}

.legal-content em {
    color: var(--color-gray);
    font-style: italic;
}

.legal-content a {
    color: var(--color-accent);
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

.back-link {
    text-align: center;
    margin-top: 60px;
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-up.delay-1 {
    transition-delay: 0.1s;
}

.fade-up.delay-2 {
    transition-delay: 0.2s;
}

.fade-up.delay-3 {
    transition-delay: 0.3s;
}

/* Mobile Only */
.mobile-only {
    display: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero {
        background-attachment: scroll;
    }
    
    .hero-container {
        justify-content: center;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-glass-card {
        padding: 36px 28px;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .btn-glass-primary,
    .btn-glass-secondary {
        padding: 14px 24px;
        font-size: 0.9rem;
    }
    
    .prestations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .histoire-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .recrutement-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info .section-title {
        text-align: center;
    }
    
    .contact-info {
        text-align: center;
    }
    
    .contact-details {
        align-items: center;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--color-white);
        flex-direction: column;
        padding: 100px 40px 40px;
        gap: 24px;
        box-shadow: var(--shadow-xl);
        transition: right var(--transition-base);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .hero {
        padding: 100px 0 40px;
        min-height: auto;
    }
    
    .hero-glass-card {
        padding: 28px 20px;
        border-radius: 16px;
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }
    
    .hero-title {
        font-size: 1.6rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .btn-glass-primary,
    .btn-glass-secondary {
        width: 100%;
        padding: 14px 20px;
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .prestations-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .stats-grid-modern {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .social-proof-title {
        font-size: 1.8rem;
    }
    
    .social-proof-subtitle {
        font-size: 0.95rem;
    }
    
    .stat-card-inner {
        padding: 24px 20px;
        min-height: 200px;
    }
    
    .stat-icon-modern {
        width: 56px;
        height: 56px;
    }
    
    .stat-icon-modern svg {
        width: 28px;
        height: 28px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-suffix {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    .stat-description {
        font-size: 0.8rem;
    }
    
    .stat-item .stat-number {
        font-size: 2.5rem;
    }
    
    .histoire-highlight {
        flex-direction: column;
        text-align: center;
    }
    
    .recrutement-grid {
        grid-template-columns: 1fr;
    }
    
    .recrutement-cta {
        padding: 30px 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
    
    .engagements-grid {
        grid-template-columns: 1fr;
    }
    
    .processus-timeline {
        padding-left: 50px;
    }
    
    .step-number {
        left: -50px;
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .timeline-line {
        left: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .mobile-only {
        display: inline-flex;
    }
    
    .btn {
        padding: 14px 24px;
        font-size: 0.9rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .google-reviews-badge {
        flex-wrap: wrap;
        gap: 8px;
        padding: 10px 16px;
    }
    
    .google-reviews-badge .google-stars svg {
        width: 14px;
        height: 14px;
    }
    
    .google-reviews-badge .google-rating {
        font-size: 0.9rem;
    }
    
    .google-reviews-badge .google-reviews-count {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 1.7rem;
    }
    
    .hero-stats {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 20px;
    }
    
    .section-title {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }
    
    .prestation-card {
        padding: 30px 20px;
    }
    
    .stats-grid {
        gap: 20px;
    }
    
    .stat-item .stat-number {
        font-size: 2rem;
    }
    
    .gallery-nav {
        gap: 16px;
    }
    
    .gallery-btn {
        width: 40px;
        height: 40px;
    }
    
    .step-content {
        padding: 20px;
    }
}

/* Nav CTA Group */
.nav-cta-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-cta-devis {
    background: var(--color-accent);
    color: var(--color-anthracite-dark);
    padding: 12px 24px;
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(127, 179, 179, 0.3);
    transition: all var(--transition-base);
}

.nav-cta-devis:hover {
    background: var(--color-accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(127, 179, 179, 0.4);
}

/* Modal Devis */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--color-white);
    border-radius: 24px;
    padding: 48px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9) translateY(20px);
    transition: all 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: none;
    background: var(--color-off-white);
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
    color: var(--color-anthracite);
}

.modal-close:hover {
    background: var(--color-anthracite);
    color: var(--color-white);
}

.modal-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-anthracite-dark);
    margin-bottom: 12px;
}

.modal-subtitle {
    color: var(--color-gray);
    margin-bottom: 32px;
    line-height: 1.6;
}

.devis-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-anthracite);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all var(--transition-base);
    background: var(--color-off-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    background: var(--color-white);
    box-shadow: 0 0 0 4px rgba(127, 179, 179, 0.15);
}

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

.btn-submit-devis {
    background: var(--color-accent);
    color: var(--color-anthracite-dark);
    padding: 16px 32px;
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition-base);
    margin-top: 12px;
}

.btn-submit-devis:hover {
    background: var(--color-accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(127, 179, 179, 0.4);
}

@media (max-width: 768px) {
    .modal-content {
        padding: 32px 24px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .modal-title {
        font-size: 1.5rem;
    }
    
    .nav-cta-group {
        flex-direction: column;
        gap: 8px;
    }
    
    .nav-cta-devis {
        padding: 10px 16px;
        font-size: 0.8rem;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .hero-scroll,
    .gallery-nav,
    .btn,
    .contact-form-wrapper {
        display: none;
    }
    
    section {
        padding: 40px 0;
        page-break-inside: avoid;
    }
    
    .hero {
        min-height: auto;
        padding: 40px 0;
    }
}
