/**
 * ═══════════════════════════════════════════════════════════════════════════════
 * SPLACH PLATFORM THEME V2 - ULTRA MODERNE
 * Inspiré par les meilleures pratiques de design
 * Animations avancées, icônes, photos, effets hover
 * ═══════════════════════════════════════════════════════════════════════════════
 */

/* ═══════════════════════════════════════════════════════════════════════════════
   1. VARIABLES CSS RACINES
   ═══════════════════════════════════════════════════════════════════════════════ */

:root {
  /* Palette Splach */
  --splach-red: #E31E24;
  --splach-red-dark: #B91C1C;
  --splach-red-light: #FEE2E2;
  
  --splach-yellow: #F5C518;
  --splach-yellow-dark: #D97706;
  --splach-yellow-light: #FEF3C7;
  
  --splach-blue: #1E5AA8;
  --splach-blue-dark: #1E3A8A;
  --splach-blue-light: #DBEAFE;
  
  /* Gris */
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-800: #1F2937;
  --gray-900: #111827;
  
  /* Espacement */
  --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;
  
  /* Rayons */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;
  
  /* Ombres */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  --shadow-red: 0 10px 30px -10px rgba(227, 30, 36, 0.5);
  --shadow-yellow: 0 10px 30px -10px rgba(245, 197, 24, 0.5);
  --shadow-blue: 0 10px 30px -10px rgba(30, 90, 168, 0.5);
  
  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Fonts */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Poppins', var(--font-primary);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   2. RESET & BASE
   ═══════════════════════════════════════════════════════════════════════════════ */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-primary);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--gray-700);
  background: var(--gray-50);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-normal);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   3. ANIMATIONS KEYFRAMES
   ═══════════════════════════════════════════════════════════════════════════════ */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(227, 30, 36, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 15px rgba(227, 30, 36, 0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes slideIn {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════════
   4. HEADER MODERNE
   ═══════════════════════════════════════════════════════════════════════════════ */

.splach-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gray-200);
  transition: var(--transition-normal);
}

.splach-header.scrolled {
  box-shadow: var(--shadow-lg);
}

.splach-top-bar {
  background: linear-gradient(135deg, var(--splach-blue) 0%, var(--splach-blue-dark) 100%);
  color: white;
  padding: 0.5rem 0;
  font-size: 0.875rem;
}

.splach-top-bar-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.splach-top-bar-info {
  display: flex;
  gap: 2rem;
}

.splach-top-bar-info span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.splach-top-bar-info i {
  color: var(--splach-yellow);
}

.splach-top-bar-social {
  display: flex;
  gap: 1rem;
}

.splach-top-bar-social a {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  transition: var(--transition-normal);
}

.splach-top-bar-social a:hover {
  background: var(--splach-yellow);
  color: var(--gray-900);
  transform: translateY(-3px);
}

.splach-main-header {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.splach-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.splach-logo-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--splach-red) 0%, var(--splach-yellow) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  font-weight: 800;
  box-shadow: var(--shadow-red);
  transition: var(--transition-normal);
}

.splach-logo:hover .splach-logo-icon {
  transform: rotate(10deg) scale(1.1);
}

.splach-logo-text {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--gray-900);
}

.splach-logo-text span {
  color: var(--splach-red);
}

.splach-nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.splach-nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gray-600);
  position: relative;
  padding: 0.5rem 0;
}

.splach-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--splach-red);
  transition: var(--transition-normal);
}

.splach-nav-link:hover,
.splach-nav-link.active {
  color: var(--splach-red);
}

.splach-nav-link:hover::after,
.splach-nav-link.active::after {
  width: 100%;
}

.splach-header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   5. BOUTONS ULTRA MODERNES
   ═══════════════════════════════════════════════════════════════════════════════ */

.splach-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.splach-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: var(--transition-slow);
}

.splach-btn:hover::before {
  left: 100%;
}

.splach-btn-primary {
  background: linear-gradient(135deg, var(--splach-red) 0%, var(--splach-red-dark) 100%);
  color: white;
  box-shadow: var(--shadow-red);
}

.splach-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px -10px rgba(227, 30, 36, 0.6);
}

.splach-btn-secondary {
  background: linear-gradient(135deg, var(--splach-yellow) 0%, var(--splach-yellow-dark) 100%);
  color: var(--gray-900);
  box-shadow: var(--shadow-yellow);
}

.splach-btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px -10px rgba(245, 197, 24, 0.6);
}

.splach-btn-outline {
  background: transparent;
  color: var(--splach-blue);
  border: 2px solid var(--splach-blue);
}

.splach-btn-outline:hover {
  background: var(--splach-blue);
  color: white;
  transform: translateY(-3px);
}

.splach-btn-ghost {
  background: transparent;
  color: var(--gray-600);
}

.splach-btn-ghost:hover {
  color: var(--splach-red);
  background: var(--splach-red-light);
}

.splach-btn-lg {
  padding: 1.125rem 2.5rem;
  font-size: 1.1rem;
}

.splach-btn-sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
}

.splach-btn-icon {
  width: 20px;
  height: 20px;
  transition: var(--transition-normal);
}

.splach-btn:hover .splach-btn-icon {
  transform: translateX(5px);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   6. HERO SECTION SPECTACULAIRE
   ═══════════════════════════════════════════════════════════════════════════════ */

.splach-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--splach-blue-dark) 0%, var(--splach-blue) 50%, #2563EB 100%);
  overflow: hidden;
  padding-top: 120px;
}

.splach-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.splach-hero-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  pointer-events: none;
}

.splach-hero-shape {
  position: absolute;
  border-radius: var(--radius-full);
  opacity: 0.1;
}

.splach-hero-shape-1 {
  width: 600px;
  height: 600px;
  background: var(--splach-yellow);
  top: -200px;
  right: -200px;
  animation: float 8s ease-in-out infinite;
}

.splach-hero-shape-2 {
  width: 400px;
  height: 400px;
  background: var(--splach-red);
  bottom: -100px;
  left: -100px;
  animation: float 10s ease-in-out infinite reverse;
}

.splach-hero-shape-3 {
  width: 200px;
  height: 200px;
  background: white;
  top: 50%;
  right: 20%;
  animation: float 6s ease-in-out infinite;
}

.splach-hero-content {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.splach-hero-text {
  animation: fadeInUp 1s ease-out;
}

.splach-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-full);
  color: var(--splach-yellow);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.splach-hero-badge i {
  animation: pulse 2s infinite;
}

.splach-hero-title {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 800;
  color: white;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.splach-hero-title span {
  color: var(--splach-yellow);
  position: relative;
}

.splach-hero-title span::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background: var(--splach-red);
  opacity: 0.3;
  z-index: -1;
}

.splach-hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.splach-hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.8s both;
}

.splach-hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  animation: fadeInUp 0.8s ease-out 1s both;
}

.splach-hero-stat {
  text-align: center;
}

.splach-hero-stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--splach-yellow);
}

.splach-hero-stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.25rem;
}

/* Hero Image */
.splach-hero-image {
  position: relative;
  animation: fadeInRight 1s ease-out 0.5s both;
}

.splach-hero-image-main {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.splach-hero-image-main img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: var(--transition-slow);
}

.splach-hero-image:hover .splach-hero-image-main img {
  transform: scale(1.05);
}

.splach-hero-floating-card {
  position: absolute;
  background: white;
  border-radius: var(--radius-xl);
  padding: 1.25rem;
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 2;
}

.splach-hero-floating-card-1 {
  top: 10%;
  left: -30px;
  animation: float 4s ease-in-out infinite;
}

.splach-hero-floating-card-2 {
  bottom: 15%;
  right: -20px;
  animation: float 5s ease-in-out infinite 0.5s;
}

.splach-floating-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.splach-floating-icon.red {
  background: var(--splach-red-light);
  color: var(--splach-red);
}

.splach-floating-icon.yellow {
  background: var(--splach-yellow-light);
  color: var(--splach-yellow-dark);
}

.splach-floating-text {
  font-weight: 600;
  color: var(--gray-900);
}

.splach-floating-subtext {
  font-size: 0.875rem;
  color: var(--gray-500);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   7. SECTIONS GÉNÉRALES
   ═══════════════════════════════════════════════════════════════════════════════ */

.splach-section {
  padding: 6rem 0;
}

.splach-section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.splach-section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--splach-red-light);
  color: var(--splach-red);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.splach-section-title {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.splach-section-title span {
  color: var(--splach-red);
}

.splach-section-subtitle {
  font-size: 1.125rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   8. FEATURES AVEC ICONES CERCLES
   ═══════════════════════════════════════════════════════════════════════════════ */

.splach-features {
  background: white;
}

.splach-features-grid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.splach-feature-card {
  text-align: center;
  padding: 2.5rem;
  border-radius: var(--radius-2xl);
  background: var(--gray-50);
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.splach-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--splach-red), var(--splach-yellow));
  transform: scaleX(0);
  transition: var(--transition-normal);
}

.splach-feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.splach-feature-card:hover::before {
  transform: scaleX(1);
}

.splach-feature-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 1.5rem;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  position: relative;
  transition: var(--transition-normal);
}

.splach-feature-card:hover .splach-feature-icon {
  transform: scale(1.1) rotate(5deg);
}

.splach-feature-icon.red {
  background: linear-gradient(135deg, var(--splach-red) 0%, var(--splach-red-dark) 100%);
  color: white;
  box-shadow: 0 10px 30px -10px rgba(227, 30, 36, 0.5);
}

.splach-feature-icon.yellow {
  background: linear-gradient(135deg, var(--splach-yellow) 0%, var(--splach-yellow-dark) 100%);
  color: white;
  box-shadow: 0 10px 30px -10px rgba(245, 197, 24, 0.5);
}

.splach-feature-icon.blue {
  background: linear-gradient(135deg, var(--splach-blue) 0%, var(--splach-blue-dark) 100%);
  color: white;
  box-shadow: 0 10px 30px -10px rgba(30, 90, 168, 0.5);
}

.splach-feature-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.splach-feature-text {
  color: var(--gray-500);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   9. ABOUT SECTION AVEC PHOTO
   ═══════════════════════════════════════════════════════════════════════════════ */

.splach-about {
  background: var(--gray-50);
}

.splach-about-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.splach-about-image {
  position: relative;
}

.splach-about-image-main {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.splach-about-image-main img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: var(--transition-slow);
}

.splach-about-image:hover .splach-about-image-main img {
  transform: scale(1.05);
}

.splach-about-image-badge {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background: white;
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-xl);
  text-align: center;
  animation: float 5s ease-in-out infinite;
}

.splach-about-badge-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--splach-red);
  line-height: 1;
}

.splach-about-badge-text {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin-top: 0.5rem;
}

.splach-about-text {
  padding-left: 2rem;
}

.splach-about-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.splach-about-title span {
  color: var(--splach-red);
}

.splach-about-description {
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.splach-about-list {
  list-style: none;
  margin-bottom: 2.5rem;
}

.splach-about-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
  color: var(--gray-700);
}

.splach-about-list li i {
  width: 28px;
  height: 28px;
  background: var(--splach-red-light);
  color: var(--splach-red);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   10. SERVICES GRID AVEC HOVER EFFECTS
   ═══════════════════════════════════════════════════════════════════════════════ */

.splach-services {
  background: white;
}

.splach-services-grid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.splach-service-card {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.splach-service-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.splach-service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.splach-work-image {
  position: relative;
  min-height: 220px;
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  border-radius: 20px;
}

.splach-work-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.splach-service-card:hover .splach-service-image img {
  transform: scale(1.1);
}

.splach-service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  transition: var(--transition-normal);
}

.splach-service-card:hover .splach-service-overlay {
  background: linear-gradient(to top, rgba(227, 30, 36, 0.9) 0%, rgba(227, 30, 36, 0.3) 100%);
}

.splach-service-icon {
  width: 60px;
  height: 60px;
  background: white;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1rem;
  transform: translateY(20px);
  opacity: 0;
  transition: var(--transition-normal);
}

.splach-service-card:hover .splach-service-icon {
  transform: translateY(0);
  opacity: 1;
}

.splach-service-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
}

.splach-service-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  transform: translateY(20px);
  opacity: 0;
  transition: var(--transition-normal) 0.1s;
}

.splach-service-card:hover .splach-service-text {
  transform: translateY(0);
  opacity: 1;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   11. WORKS GALLERY AVEC FILTRES
   ═══════════════════════════════════════════════════════════════════════════════ */

.splach-works {
  background: var(--gray-50);
}

.splach-works-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.splach-filter-btn {
  padding: 0.75rem 1.5rem;
  background: white;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gray-600);
  cursor: pointer;
  transition: var(--transition-normal);
}

.splach-filter-btn:hover,
.splach-filter-btn.active {
  background: var(--splach-red);
  border-color: var(--splach-red);
  color: white;
}

.splach-works-grid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.splach-work-item {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}

.splach-work-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.splach-work-item:hover img {
  transform: scale(1.1);
}

.splach-work-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(227, 30, 36, 0.9);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-normal);
}

.splach-work-item:hover .splach-work-overlay {
  opacity: 1;
}

.splach-work-icon {
  width: 60px;
  height: 60px;
  background: white;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--splach-red);
  transform: scale(0);
  transition: var(--transition-normal) 0.1s;
}

.splach-work-item:hover .splach-work-icon {
  transform: scale(1);
}

.splach-work-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  margin-top: 1rem;
  transform: translateY(20px);
  opacity: 0;
  transition: var(--transition-normal) 0.15s;
}

.splach-work-item:hover .splach-work-title {
  transform: translateY(0);
  opacity: 1;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   12. TESTIMONIALS
   ═══════════════════════════════════════════════════════════════════════════════ */

.splach-testimonials {
  background: white;
}

.splach-testimonials-grid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.splach-testimonial-card {
  background: var(--gray-50);
  border-radius: var(--radius-2xl);
  padding: 2.5rem;
  position: relative;
  transition: var(--transition-normal);
}

.splach-testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.splach-testimonial-quote {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: var(--splach-red-light);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--splach-red);
}

.splach-testimonial-text {
  font-size: 1.1rem;
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 2rem;
  font-style: italic;
}

.splach-testimonial-text span {
  color: var(--splach-red);
  font-weight: 600;
}

.splach-testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.splach-testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-full);
  object-fit: cover;
  border: 3px solid white;
  box-shadow: var(--shadow-md);
}

.splach-testimonial-info {
  flex: 1;
}

.splach-testimonial-name {
  font-weight: 700;
  color: var(--gray-900);
}

.splach-testimonial-role {
  font-size: 0.875rem;
  color: var(--gray-500);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   13. CTA SECTION
   ═══════════════════════════════════════════════════════════════════════════════ */

.splach-cta {
  background: linear-gradient(135deg, var(--splach-red) 0%, var(--splach-red-dark) 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.splach-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-full);
}

.splach-cta-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
}

.splach-cta-text h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 0.5rem;
}

.splach-cta-text p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.125rem;
}

.splach-cta-buttons {
  display: flex;
  gap: 1rem;
}

.splach-cta-btn {
  padding: 1rem 2.5rem;
  background: white;
  color: var(--splach-red);
  font-weight: 600;
  border-radius: var(--radius-lg);
  transition: var(--transition-normal);
}

.splach-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.splach-cta-btn-outline {
  padding: 1rem 2.5rem;
  background: transparent;
  color: white;
  font-weight: 600;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-lg);
  transition: var(--transition-normal);
}

.splach-cta-btn-outline:hover {
  background: white;
  color: var(--splach-red);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   14. CONTACT FORM MODERNE
   ═══════════════════════════════════════════════════════════════════════════════ */

.splach-contact {
  background: var(--gray-50);
}

.splach-contact-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
}

.splach-contact-info {
  padding-right: 2rem;
}

.splach-contact-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.splach-contact-title span {
  color: var(--splach-red);
}

.splach-contact-text {
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.splach-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--gray-200);
}

.splach-contact-item:last-child {
  border-bottom: none;
}

.splach-contact-icon {
  width: 50px;
  height: 50px;
  background: var(--splach-red-light);
  color: var(--splach-red);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.splach-contact-item-title {
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.25rem;
}

.splach-contact-item-text {
  color: var(--gray-500);
  font-size: 0.95rem;
}

.splach-contact-form {
  background: white;
  border-radius: var(--radius-2xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}

.splach-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.splach-form-group {
  margin-bottom: 1.5rem;
}

.splach-form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 0.5rem;
}

.splach-form-input,
.splach-form-textarea,
.splach-form-select {
  width: 100%;
  padding: 1rem 1.25rem;
  font-family: var(--font-primary);
  font-size: 1rem;
  color: var(--gray-900);
  background: var(--gray-50);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  transition: var(--transition-normal);
}

.splach-form-input:focus,
.splach-form-textarea:focus,
.splach-form-select:focus {
  outline: none;
  border-color: var(--splach-red);
  background: white;
  box-shadow: 0 0 0 4px var(--splach-red-light);
}

.splach-form-textarea {
  min-height: 150px;
  resize: vertical;
}

.splach-form-submit {
  width: 100%;
  padding: 1.125rem;
  background: linear-gradient(135deg, var(--splach-red) 0%, var(--splach-red-dark) 100%);
  color: white;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: var(--transition-normal);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.splach-form-submit:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-red);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   15. FOOTER MODERNE
   ═══════════════════════════════════════════════════════════════════════════════ */

.splach-footer {
  background: var(--gray-900);
  color: var(--gray-400);
  padding: 5rem 0 2rem;
}

.splach-footer-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 4rem;
}

.splach-footer-brand {
  max-width: 300px;
}

.splach-footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.splach-footer-logo-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--splach-red) 0%, var(--splach-yellow) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
  font-weight: 800;
}

.splach-footer-logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
}

.splach-footer-description {
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.splach-footer-social {
  display: flex;
  gap: 0.75rem;
}

.splach-footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-normal);
}

.splach-footer-social a:hover {
  background: var(--splach-red);
  color: white;
  transform: translateY(-3px);
}

.splach-footer-title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
}

.splach-footer-links {
  list-style: none;
}

.splach-footer-links li {
  margin-bottom: 0.75rem;
}

.splach-footer-links a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition-normal);
}

.splach-footer-links a::before {
  content: '→';
  opacity: 0;
  transform: translateX(-10px);
  transition: var(--transition-normal);
}

.splach-footer-links a:hover {
  color: var(--splach-yellow);
  padding-left: 10px;
}

.splach-footer-links a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.splach-footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.splach-footer-contact-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--splach-yellow);
  flex-shrink: 0;
}

.splach-footer-contact-text {
  line-height: 1.6;
}

.splach-footer-bottom {
  max-width: 1400px;
  margin: 4rem auto 0;
  padding: 2rem 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
}

.splach-footer-bottom a {
  color: var(--splach-yellow);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   16. RESPONSIVE
   ═══════════════════════════════════════════════════════════════════════════════ */

@media (max-width: 1200px) {
  .splach-hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
  }
  
  .splach-hero-image {
    display: block;
    max-width: 520px;
    margin: 0 auto;
  }
  
  .splach-hero-stats {
    justify-content: center;
  }
  
  .splach-features-grid,
  .splach-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .splach-works-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .splach-footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .splach-top-bar {
    display: none;
  }
  
  .splach-nav {
    display: none;
  }

  .splach-main-header {
    padding: 0.6rem 0.75rem;
    flex-wrap: nowrap;
    gap: 0.5rem;
    width: 100%;
    box-sizing: border-box;
  }

  .splach-logo {
    gap: 0.4rem;
  }

  .splach-logo-icon {
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
  }

  .splach-logo-img {
    width: 32px;
    height: 32px;
    margin-right: 0.25rem;
    border-radius: 8px;
  }

  .splach-logo-text {
    font-size: 1rem;
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .splach-header-actions {
    width: auto;
    justify-content: flex-end;
    flex-wrap: nowrap;
    gap: 0.35rem;
  }

  .splach-header-actions .splach-btn {
    padding: 0.45rem 0.65rem;
    font-size: 0.75rem;
  }
  
  .splach-hero-title {
    font-size: 2.5rem;
  }

  .splach-hero {
    min-height: auto;
    padding-top: 100px;
    padding-bottom: 60px;
  }

  .splach-hero-content {
    padding: 0 1.25rem;
    gap: 2rem;
  }

  .splach-hero-text {
    text-align: center;
    max-width: 540px;
    margin: 0 auto;
  }

  .splach-hero-subtitle {
    font-size: 1.05rem;
  }

  .splach-hero-image-main {
    max-width: 280px;
    margin: 0 auto;
    padding: 8px;
    background: rgba(15, 23, 42, 0.85);
    border-radius: 28px;
    border: 2px solid rgba(255, 255, 255, 0.15);
  }

  .splach-hero-image-main img {
    width: 100%;
    height: auto;
    aspect-ratio: 9 / 16;
    object-fit: cover;
    border-radius: 22px;
  }

  .splach-hero-floating-card {
    display: none;
  }
  
  .splach-features-grid,
  .splach-services-grid,
  .splach-works-grid,
  .splach-testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .splach-about-content,
  .splach-contact-content {
    grid-template-columns: 1fr;
  }
  
  .splach-about-image {
    order: -1;
  }
  
  .splach-cta-content {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }
  
  .splach-form-row {
    grid-template-columns: 1fr;
  }
  
  .splach-footer-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .splach-footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════════
   17. UTILITAIRES
   ═══════════════════════════════════════════════════════════════════════════════ */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--space-xs); }
.mt-2 { margin-top: var(--space-sm); }
.mt-3 { margin-top: var(--space-md); }
.mt-4 { margin-top: var(--space-lg); }
.mt-5 { margin-top: var(--space-xl); }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--space-xs); }
.mb-2 { margin-bottom: var(--space-sm); }
.mb-3 { margin-bottom: var(--space-md); }
.mb-4 { margin-bottom: var(--space-lg); }
.mb-5 { margin-bottom: var(--space-xl); }

.hidden { display: none; }
.block { display: block; }
.flex { display: flex; }
.grid { display: grid; }

/* Scroll Reveal Animation Classes */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease-out;
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s ease-out;
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.8s ease-out;
}

.reveal-scale.active {
  opacity: 1;
  transform: scale(1);
}

.splach-work-image {
  border: 1px solid rgba(15, 23, 42, .1);
}
