/* ============================================
   CERISE COMMUNICATION & MARKETING
   Brand Stylesheet
   ============================================ */

/* ============================================
   CERISE COMMUNICATION & MARKETING
   Brand Colors & Design System
   ============================================ */

:root {
  /* Primary Colors - Vibrant Red Palette */
  --cerise-green: #FF5252;
  /* Rouge vif / Light Red */
  --cerise-green-light: #FF8A80;
  /* Rouge clair */
  --cerise-green-dark: #D32F2F;
  /* Rouge foncé */

  /* Neutral Colors */
  --cerise-black: #1A1A1A;
  --cerise-white: #FFFFFF;
  --cerise-gray: #E5E5E5;
  --cerise-gray-light: #F5F5F5;
  --cerise-gray-dark: #757575;

  /* Text Colors */
  --cerise-text-primary: #1A1A1A;
  --cerise-text-secondary: #4A4A4A;
  --cerise-text-light: #888888;

  /* Gradients */
  --gradient-green: linear-gradient(135deg, #FF5252 0%, #D32F2F 100%);
  --gradient-overlay: linear-gradient(rgba(26, 26, 26, 0.7), rgba(26, 26, 26, 0.5));

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(255, 82, 82, 0.15);
  --shadow-md: 0 4px 6px rgba(255, 82, 82, 0.2);
  --shadow-lg: 0 10px 15px rgba(255, 82, 82, 0.25);
  --shadow-xl: 0 20px 25px rgba(255, 82, 82, 0.3);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;

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

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&family=Open+Sans:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--cerise-text-primary);
  background-color: var(--cerise-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--cerise-black);
  margin-bottom: var(--spacing-md);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
}

h4 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 600;
}

h5 {
  font-size: 1.125rem;
  font-weight: 600;
}

h6 {
  font-size: 1rem;
  font-weight: 600;
}

p {
  margin-bottom: var(--spacing-sm);
  color: var(--cerise-text-secondary);
}

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

a:hover {
  color: var(--cerise-green-dark);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: 8px;
  /* Changed from var(--radius-full) */
  cursor: pointer;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transition: left var(--transition-normal);
  z-index: -1;
}

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

.btn-primary {
  background: var(--cerise-green);
  /* Solid primary color */
  color: var(--cerise-white);
  box-shadow: var(--shadow-md);
  border: 2px solid var(--cerise-green);
}

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

.btn-secondary {
  background: var(--cerise-white);
  color: var(--cerise-text-primary);
  /* Secondary color often implies neutral text or similar, but spec says white bg */
  border: 2px solid var(--cerise-green);
  /* Border with primary color */
  color: var(--cerise-black);
  /* Keeping text legible */
}

.btn-secondary:hover {
  background: var(--cerise-green);
  color: var(--cerise-white);
  transform: translateY(-2px);
}

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

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

.btn-lg {
  padding: 1.125rem 2.5rem;
  font-size: 1.125rem;
}

.btn-sm {
  padding: 0.625rem 1.5rem;
  font-size: 0.875rem;
}

/* ============================================
   CARDS
   ============================================ */
.card {
  background: var(--cerise-white);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  height: 100%;
}

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

.card-header {
  margin-bottom: var(--spacing-md);
}

.card-icon {
  width: 64px;
  height: 64px;
  background: var(--gradient-green);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-md);
  color: var(--cerise-white);
  font-size: 2rem;
}

.card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cerise-black);
  margin-bottom: var(--spacing-sm);
}

.card-description {
  color: var(--cerise-text-secondary);
  line-height: 1.7;
}

/* ============================================
   LAYOUT UTILITIES
   ============================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.container-wide {
  max-width: 1400px;
}

.container-narrow {
  max-width: 900px;
}

.section {
  padding: var(--spacing-xxl) 0;
}

.section-lg {
  padding: 5rem 0;
}

.section-xl {
  padding: 6rem 0;
}

/* ============================================
   GRID SYSTEM
   ============================================ */
.grid {
  display: grid;
  gap: var(--spacing-lg);
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* ============================================
   TEXT UTILITIES
   ============================================ */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-green {
  color: var(--cerise-green);
}

.text-white {
  color: var(--cerise-white);
}

.text-muted {
  color: var(--cerise-text-light);
}

.font-bold {
  font-weight: 700;
}

.font-semibold {
  font-weight: 600;
}

/* ============================================
   BACKGROUND UTILITIES
   ============================================ */
.bg-white {
  background-color: var(--cerise-white);
}

.bg-gray-light {
  background-color: var(--cerise-gray-light);
}

.bg-green {
  background: var(--gradient-green);
}

.bg-black {
  background-color: var(--cerise-black);
}

/* ============================================
   RESPONSIVE UTILITIES
   ============================================ */
@media (max-width: 768px) {
  :root {
    --spacing-xl: 2rem;
    --spacing-xxl: 3rem;
  }

  .section {
    padding: var(--spacing-xl) 0;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .about-image {
    height: 300px !important;
  }

  .btn {
    width: 100%;
  }
}

/* Mobilier Urbain Grid Layout */
.mobilier-grid {
  display: grid !important;
  grid-template-areas:
    "content image"
    "cta cta";
}

.mobilier-content {
  grid-area: content;
}

.mobilier-image {
  grid-area: image;
}

.mobilier-cta {
  grid-area: cta;
}

@media (max-width: 768px) {
  .mobilier-grid {
    grid-template-areas:
      "content"
      "image"
      "cta" !important;
    grid-template-columns: 1fr;
    gap: 2rem !important;
  }
}

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

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

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

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

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

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

.fade-in {
  animation: fadeIn 0.6s ease-out;
}

.slide-in-left {
  animation: slideInLeft 0.6s ease-out;
}

.slide-in-right {
  animation: slideInRight 0.6s ease-out;
}

/* ============================================
   PARTNERS CAROUSEL
   ============================================ */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.partners-carousel {
  overflow: hidden;
  padding: 2rem 0;
  background: white;
  position: relative;
  width: 100%;
}

.partners-carousel::before,
.partners-carousel::after {
  content: '';
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.partners-carousel::before {
  left: 0;
  background: linear-gradient(to right, white, transparent);
}

.partners-carousel::after {
  right: 0;
  background: linear-gradient(to left, white, transparent);
}

.partners-track {
  display: flex;
  gap: 4rem;
  animation: scroll 30s linear infinite;
  width: fit-content;
}

.partners-track:hover {
  animation-play-state: paused;
}

.partner-logo {
  flex-shrink: 0;
  width: 180px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.partner-logo:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.partner-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: none;
  opacity: 1;
  transition: all var(--transition-normal);
}

.partner-logo:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

@media (max-width: 768px) {
  .partner-logo {
    width: 140px;
    height: 80px;
    padding: 1rem;
  }

  .partners-track {
    gap: 2rem;
  }
}

/* ============================================
   HERO CAROUSEL
   ============================================ */
.hero-carousel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  animation: heroSlide 20s infinite;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(26, 26, 26, 0.7), rgba(26, 26, 26, 0.6));
  z-index: 1;
}

.hero-slide:nth-child(1) {
  animation-delay: 0s;
}

.hero-slide:nth-child(2) {
  animation-delay: 5s;
}

.hero-slide:nth-child(3) {
  animation-delay: 10s;
}

.hero-slide:nth-child(4) {
  animation-delay: 15s;
}

@keyframes heroSlide {
  0% {
    opacity: 0;
  }

  5% {
    opacity: 1;
  }

  25% {
    opacity: 1;
  }

  30% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

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

/* Typewriter Cursor */
.typewriter-cursor {
  border-right: 3px solid #FFFFFF;
  animation: blink 0.7s infinite;
  margin-left: 2px;
  display: inline-block;
  vertical-align: middle;
  height: 1.2em;
}

@keyframes blink {

  0%,
  100% {
    border-color: transparent;
  }

  50% {
    border-color: #FFFFFF;
  }
}

/* ============================================
   MODERN STATS SECTION
   ============================================ */
.stats-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.stat-card {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #eee;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

.stat-card:hover {
  transform: translateY(-10px);
  border-color: #E31937;
  box-shadow: 0 20px 40px rgba(227, 25, 55, 0.08);
}

.stat-icon {
  font-size: 2rem;
  color: #E31937;
  margin-bottom: 1rem;
}

.stat-number {
  font-family: 'Inter', sans-serif;
  font-size: 2.25rem;
  font-weight: 800;
  color: #E31937;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-family: 'Inter', sans-serif;
  color: #333333;
  font-weight: 600;
  font-size: 0.95rem;
  margin: 0;
}

/* ============================================
   DOMAINES DE COMPÉTENCES V2
   ============================================ */
.competence-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

@media (max-width: 1200px) {
  .competence-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .competence-grid {
    grid-template-columns: 1fr;
  }
}

.competence-card {
  background: #ffffff;
  border-radius: 15px;
  border: 1px solid #f0f0f0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  height: 100%;
}

.competence-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.competence-image-wrapper {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.competence-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.competence-card:hover .competence-image-wrapper img {
  transform: scale(1.05);
}

.competence-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.competence-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #333333;
  margin-bottom: 0.75rem;
  font-family: 'Montserrat', sans-serif;
}

.competence-description {
  font-size: 14px;
  color: #666666;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.competence-link {
  color: #E31937;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: color 0.3s ease;
  margin-top: auto;
}

.competence-link i {
  margin-left: 0.5rem;
  font-size: 0.9em;
  transition: transform 0.3s ease;
}

.competence-card:hover .competence-link i {
  transform: translateX(5px);
}

/* ============================================
   COUVERTURE NATIONALE GLASSMORPHISM
   ============================================ */
.coverage-glass-container {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 25px;
  padding: 3rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 992px) {
  .coverage-glass-container {
    grid-template-columns: 1fr;
    padding: 2rem;
  }
}

/* Map Area */
.coverage-map-placeholder {
  background: #f8f9fa;
  border-radius: 20px;
  aspect-ratio: 4 / 3;
  position: relative;
  overflow: hidden;
  border: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-marker {
  position: absolute;
  width: 15px;
  height: 15px;
  background: #E31937;
  border-radius: 50%;
  top: 45%;
  left: 35%;
}

.map-marker::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: #E31937;
  border-radius: 50%;
  animation: ping 1.5s ease-out infinite;
}

@keyframes ping {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.8;
  }

  100% {
    transform: translate(-50%, -50%) scale(4);
    opacity: 0;
  }
}

/* Zone List */
.zone-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.zone-item {
  display: flex;
  align-items: center;
  padding: 0.85rem 0;
  color: #444;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.zone-item::before {
  content: '';
  position: absolute;
  left: -15px;
  width: 6px;
  height: 6px;
  background: #E31937;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.3s ease;
}

.zone-item:hover {
  color: #000;
  font-weight: 700;
  transform: translateX(10px);
}

.zone-item:hover::before {
  opacity: 1;
  left: -20px;
}

.zone-checkmark {
  width: 24px;
  height: 24px;
  background: #E31937;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
}

.zone-checkmark i {
  color: #fff;
  font-size: 0.75rem;
}

.coverage-title {
  color: #000;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

/* ============================================
   MODERN CTA SECTION (FULL SCREEN)
   ============================================ */
.cta-modern {
  background: linear-gradient(135deg, #E31937 0%, #8B0014 100%);
  position: relative;
  overflow: hidden;
  padding: 8rem 0;
  color: white;
  text-align: center;
}

/* Textured Background Pattern */
.cta-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 2px 2px, rgba(255, 255, 255, 0.05) 1px, transparent 0);
  background-size: 30px 30px;
  pointer-events: none;
}

.cta-modern h2 {
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.cta-modern p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 800px;
  margin: 0 auto 3rem;
  line-height: 1.8;
}

/* Pill Buttons */
.btn-pill {
  border-radius: 50px;
  padding: 1rem 2.5rem;
  font-weight: 700;
  text-transform: none;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.1rem;
}

.btn-pill-white {
  background: white;
  color: #E31937;
  border: none;
}

.btn-pill-white:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.95);
}

.btn-pill-outline {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-pill-outline:hover {
  background: white;
  color: #E31937;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 576px) {
  .cta-modern {
    padding: 5rem 0;
  }

  .btn-pill {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================
   INFINITE PARTNER MARQUEE V2
   ============================================ */
.partners-container-v2 {
  position: relative;
  max-width: 100%;
  padding: 2rem 0;
  overflow: hidden;
}

.partners-container-v2::before,
.partners-container-v2::after {
  content: "";
  height: 100%;
  position: absolute;
  width: 15%;
  z-index: 2;
  pointer-events: none;
  top: 0;
}

.partners-container-v2::before {
  left: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

.partners-container-v2::after {
  right: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

.marquee-track {
  display: flex;
  width: calc(250px * 16);
  animation: scroll-marquee 40s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-logo-card {
  width: 200px;
  height: 120px;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #f0f0f0;
  margin: 0 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  transition: all 0.4s ease;
  flex-shrink: 0;
}

.marquee-logo-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: none;
  opacity: 1;
  transition: all 0.4s ease;
}

.marquee-logo-card:hover {
  border-color: #E31937;
  box-shadow: 0 10px 20px rgba(227, 25, 55, 0.05);
  background: #ffffff;
}

.marquee-logo-card:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

@keyframes scroll-marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-250px * 8));
  }
}

/* Hide old carousel if it still exists in HTML classes */
.partners-carousel,
.partners-track {
  display: none !important;
}

/* ============================================
   PERSPECTIVES EVOLUTION STYLES
   ============================================ */
.evolution-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin: 3rem auto;
  max-width: 900px;
  flex-wrap: wrap;
}

.evolution-box {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 15px;
  border: 1px solid #f0f0f0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  text-align: center;
  flex: 1;
  min-width: 280px;
  transition: transform 0.3s ease;
}

.evolution-box:hover {
  transform: translateY(-5px);
}

.evolution-box h4 {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: #333;
  line-height: 1.5;
  text-transform: uppercase;
}

.evolution-box .highlight-red {
  color: #E31937;
  font-weight: 900;
  font-size: 1.8rem;
  display: block;
  margin-top: 0.5rem;
}

.evolution-arrow {
  color: #E31937;
  font-size: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse-arrow 2s infinite;
}

@keyframes pulse-arrow {
  0% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(10px);
  }

  100% {
    transform: translateX(0);
  }
}

.evolution-subtitle {
  text-align: center;
  font-size: 1.125rem;
  font-weight: 800;
  color: #E31937;
  text-transform: uppercase;
  margin-top: 2rem;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

@media (max-width: 992px) {
  .evolution-container {
    flex-direction: column;
    gap: 1rem;
  }

  .evolution-box {
    width: 100%;
    min-width: auto;
  }

  .evolution-arrow {
    transform: rotate(90deg);
    margin: 1rem 0;
    animation: pulse-arrow-vertical 2s infinite;
  }
}

@keyframes pulse-arrow-vertical {
  0% {
    transform: rotate(90deg) translateY(0);
  }

  50% {
    transform: rotate(90deg) translateY(10px);
  }

  100% {
    transform: rotate(90deg) translateY(0);
  }
}

/* ============================================
   WHY PARTNER SECTION STYLES
   ============================================ */
.partner-benefit-card {
  background: #ffffff;
  border: 1px solid #f0f0f0;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.partner-benefit-card:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: rgba(227, 25, 55, 0.1);
}

.benefit-icon-wrapper {
  width: 60px;
  height: 60px;
  background-color: #E31937;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: white;
  font-size: 1.5rem;
  box-shadow: 0 4px 10px rgba(227, 25, 55, 0.2);
}

.partner-benefit-card h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.partner-benefit-card p {
  line-height: 1.6;
  color: #666;
  margin: 0;
}

/* ============================================
   SERVICE IMAGE SLIDER
   ============================================ */
.service-slider {
  position: relative;
  height: 500px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.service-slider-track {
  display: flex;
  width: 500%;
  height: 100%;
  animation: service-slide-5 25s infinite ease-in-out;
}

.service-slide {
  width: 20%;
  height: 100%;
  background-position: center;
  background-size: cover;
  position: relative;
}

.service-slide-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2.5rem 2rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

@keyframes service-slide-5 {

  0%,
  18% {
    transform: translateX(0);
  }

  20%,
  38% {
    transform: translateX(-20%);
  }

  40%,
  58% {
    transform: translateX(-40%);
  }

  60%,
  78% {
    transform: translateX(-60%);
  }

  80%,
  98% {
    transform: translateX(-80%);
  }

  100% {
    transform: translateX(0);
  }
}

@media (max-width: 768px) {
  .service-slider {
    height: 350px;
  }
}

/* ============================================
   VALUES & ENGAGEMENTS SECTION
   ============================================ */
.values-engagements-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 3rem;
}

.value-card-modern {
  background: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.4s ease;
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.value-card-modern:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  border-color: rgba(227, 25, 55, 0.1);
}

.value-icon-circle {
  width: 50px;
  height: 50px;
  background-color: #E31937;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 10px rgba(227, 25, 55, 0.2);
}

.value-card-modern h4 {
  color: #E31937;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.value-card-modern p {
  line-height: 1.6;
  color: #666;
  margin: 0;
}

/* Value Capsules (Simplified Rectangles) */
.values-capsule-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 3rem;
  padding: 0 1rem;
}

.value-capsule {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border: 2px solid var(--cerise-green);
  border-radius: 12px;
  background-color: transparent;
  transition: all 0.3s ease;
  min-width: 200px;
}

.value-capsule:hover {
  background-color: var(--cerise-green);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.value-capsule span {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--cerise-green);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}

.value-capsule:hover span {
  color: white;
}

@media (max-width: 768px) {
  .values-capsule-container {
    flex-direction: column;
    align-items: center;
  }

  .value-capsule {
    width: 100%;
    max-width: 300px;
  }
}

/* Center 7th card on desktop */
.values-engagements-grid .value-card-modern:nth-child(7) {
  grid-column: 2 / 3;
}

@media (max-width: 1200px) {
  .values-engagements-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .values-engagements-grid .value-card-modern:nth-child(7) {
    grid-column: span 2;
    max-width: 50%;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .values-engagements-grid {
    grid-template-columns: 1fr;
  }

  .values-engagements-grid .value-card-modern:nth-child(7) {
    grid-column: auto;
    max-width: 100%;
  }
}

/* ============================================
   BILLBOARD GALLERY
   ============================================ */
.billboard-gallery-wrapper {
  margin-top: 3rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.billboard-gallery-wrapper.active {
  max-height: 2500px;
}

.billboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  padding: 1rem 0;
}

.billboard-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.4s ease;
  aspect-ratio: 16 / 9;
}

.billboard-gallery-wrapper.active .billboard-item {
  opacity: 1;
  transform: translateY(0);
}

.billboard-gallery-wrapper.active .billboard-item:nth-child(1) {
  transition-delay: 0.1s;
}

.billboard-gallery-wrapper.active .billboard-item:nth-child(2) {
  transition-delay: 0.2s;
}

.billboard-gallery-wrapper.active .billboard-item:nth-child(3) {
  transition-delay: 0.3s;
}

.billboard-gallery-wrapper.active .billboard-item:nth-child(4) {
  transition-delay: 0.4s;
}

.billboard-gallery-wrapper.active .billboard-item:nth-child(5) {
  transition-delay: 0.5s;
}

.billboard-gallery-wrapper.active .billboard-item:nth-child(6) {
  transition-delay: 0.6s;
}

.billboard-gallery-wrapper.active .billboard-item:nth-child(7) {
  transition-delay: 0.7s;
}

.billboard-gallery-wrapper.active .billboard-item:nth-child(8) {
  transition-delay: 0.8s;
}

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

.billboard-item:hover img {
  transform: scale(1.1);
}

.billboard-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: white;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.billboard-item:hover .billboard-overlay {
  transform: translateY(0);
}

.billboard-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  color: white;
}

.billboard-location {
  font-size: 0.875rem;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .billboard-grid {
    grid-template-columns: 1fr;
  }
}