/* ==========================================================================
   VFM SERVICES - DESIGN EXECUTIVE PAGE À PROPOS
   ========================================================================== */
@import url('css/styles.css');

.about-header {
  background: linear-gradient(135deg, #07121E 0%, #0B4C8C 50%, #0096D6 100%);
  color: #FFFFFF;
  padding: 9.5rem 0 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-header::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 140%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 150, 214, 0.25) 0%, transparent 60%);
  pointer-events: none;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.about-stat-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.15);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.25rem;
  text-align: center;
  transition: all var(--transition-normal);
}

.about-stat-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.3);
}

.about-stat-num {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  color: #FFFFFF;
  display: block;
  line-height: 1.1;
  background: linear-gradient(135deg, #FFFFFF 0%, #7DD3FC 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-stat-label {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 0.35rem;
  display: block;
}

.executive-card {
  background: #FFFFFF;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 3.5rem 3rem;
  box-shadow: 0 15px 45px rgba(7, 18, 30, 0.06);
  position: relative;
}

.executive-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 3rem;
  align-items: center;
}

.executive-img-wrapper {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  border: 4px solid #FFFFFF;
}

.executive-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-normal);
}

.executive-card:hover .executive-img {
  transform: scale(1.03);
}

.values-grid-luxury {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  justify-content: center;
}

.value-card-item {
  background: #FFFFFF;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 20px;
  padding: 2.25rem 2rem;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(11, 76, 140, 0.04);
}

.value-card-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0096D6 0%, #0B4C8C 100%);
  opacity: 0.7;
  transition: opacity 0.3s ease, height 0.3s ease;
}

.value-icon-box {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(0, 150, 214, 0.1) 0%, rgba(11, 76, 140, 0.12) 100%);
  border: 1px solid rgba(0, 150, 214, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0096D6;
  font-size: 1.85rem;
  margin-bottom: 1.25rem;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), background 0.35s ease, color 0.35s ease;
}

.value-card-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 150, 214, 0.15);
  border-color: rgba(0, 150, 214, 0.4);
}

.value-card-item:hover::before {
  opacity: 1;
  height: 5px;
}

.value-card-item:hover .value-icon-box {
  transform: scale(1.1) rotate(-4deg);
  background: linear-gradient(135deg, #0096D6 0%, #0B4C8C 100%);
  color: #FFFFFF;
}

.dept-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.75rem;
  justify-content: center;
}

.dept-card-item {
  background: #FFFFFF;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 18px;
  padding: 1.75rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.35rem;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease;
  box-shadow: 0 8px 25px rgba(11, 76, 140, 0.04);
  position: relative;
  overflow: hidden;
}

.dept-card-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #0096D6 0%, #0B4C8C 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.dept-card-item:hover::before {
  opacity: 1;
}

.dept-card-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 35px rgba(0, 150, 214, 0.15);
  border-color: rgba(0, 150, 214, 0.4);
}

.dept-img-box {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid rgba(0, 150, 214, 0.2);
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(11, 76, 140, 0.1);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease;
}

.dept-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.dept-card-item:hover .dept-img-box {
  transform: scale(1.08);
  border-color: #0096D6;
}

.dept-card-item:hover .dept-img {
  transform: scale(1.12);
}

@media (max-width: 992px) {
  .about-header {
    padding: 7.5rem 1rem 3rem 1rem;
  }
  .about-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2.5rem;
  }
  .executive-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .executive-card {
    padding: 2rem 1.5rem;
  }
  .executive-img {
    height: 320px;
  }
}

@media (max-width: 768px) {
  .about-header {
    padding: 7rem 1rem 2.5rem 1rem;
  }
  .about-header h1 {
    font-size: 2rem !important;
  }
  .about-header p {
    font-size: 1rem !important;
  }
  .about-stat-card {
    padding: 1.25rem 1rem;
  }
  .about-stat-num {
    font-size: 1.85rem;
  }
  .about-stat-label {
    font-size: 0.82rem;
  }
  .dept-img-box {
    width: 52px;
    height: 52px;
    border-radius: 14px;
  }
  .dept-card-item {
    padding: 1.25rem 1rem;
    gap: 1rem;
    border-radius: 14px;
  }
  .value-card-item {
    padding: 1.5rem 1.25rem;
    border-radius: 16px;
  }
  .value-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }
  .values-grid-luxury,
  .dept-card-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .about-header {
    padding: 6.5rem 0.85rem 2rem 0.85rem;
  }
  .about-stats-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }
  .executive-card {
    padding: 1.5rem 1rem;
  }
  .executive-img {
    height: 260px;
  }
  .dept-img-box {
    width: 46px;
    height: 46px;
    border-radius: 12px;
  }
  .dept-card-item {
    padding: 1rem 0.85rem;
    gap: 0.85rem;
  }
  .value-card-item {
    padding: 1.25rem 1rem;
  }
}
