/*
Theme Name: Amistat Pro
Theme URI: https://example.com
Author: Claude / Cowork by Anthropic
Description: Thème vitrine professionnel inspiré des codes visuels de CrossFit Amistat — menthe, typographie bold condensée, look moderne et épuré.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: amistat-pro
*/

/* =============================================
   CSS VARIABLES — PALETTE AMISTAT
   ============================================= */
:root {
  --mint:       #7BDCB5;
  --mint-dark:  #5cc49e;
  --dark:       #1A1A1A;
  --gray:       #616161;
  --light-gray: #F0F0F1;
  --bg:         #FBFBFB;
  --white:      #FFFFFF;
  --yellow:     #FFB100;
  --pink:       #F00075;
  --blue:       #0866FF;

  --font-main: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;

  --radius: 6px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --transition: all 0.25s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--dark);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-main);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--dark);
}

h1 { font-size: clamp(52px, 8vw, 85px); }
h2 { font-size: clamp(36px, 5vw, 58px); }
h3 { font-size: clamp(24px, 3vw, 36px); }
h4 { font-size: 22px; }

p { margin-bottom: 1em; color: var(--gray); }
p:last-child { margin-bottom: 0; }

/* =============================================
   LAYOUT
   ============================================= */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

.section-label {
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mint-dark);
  margin-bottom: 12px;
  display: block;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-block;
  font-family: var(--font-main);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 14px 36px;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--mint);
  color: var(--dark);
}
.btn-primary:hover {
  background: var(--mint-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(123, 220, 181, 0.4);
}

.btn-dark {
  background: var(--dark);
  color: var(--white);
}
.btn-dark:hover {
  background: #333;
  transform: translateY(-2px);
}

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

/* =============================================
   HEADER & NAVIGATION
   ============================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--mint);
  box-shadow: 0 2px 16px rgba(0,0,0,0.1);
  transition: var(--transition);
}

.site-header.scrolled {
  background: var(--dark);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.site-logo {
  font-family: var(--font-main);
  font-size: 28px;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  transition: var(--transition);
}
.site-header.scrolled .site-logo {
  color: var(--white);
}

/* Navigation */
.main-nav ul {
  display: flex;
  gap: 32px;
  align-items: center;
}

.main-nav a {
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--dark);
  transition: var(--transition);
  position: relative;
}

.site-header.scrolled .main-nav a {
  color: var(--light-gray);
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--dark);
  transition: var(--transition);
}
.site-header.scrolled .main-nav a::after {
  background: var(--mint);
}
.main-nav a:hover::after { width: 100%; }

.main-nav .btn {
  font-size: 15px;
  padding: 10px 24px;
}

/* Burger menu */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.burger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}
.site-header.scrolled .burger span {
  background: var(--white);
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--dark);
  padding: 24px;
  z-index: 999;
  border-top: 3px solid var(--mint);
}
.mobile-nav.open { display: block; }
.mobile-nav ul { flex-direction: column; gap: 0; }
.mobile-nav a {
  display: block;
  padding: 14px 0;
  font-family: var(--font-main);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: var(--transition);
}
.mobile-nav a:hover { color: var(--mint); padding-left: 8px; }

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--dark);
  padding-top: 72px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1A1A1A 0%, #2C3338 60%, #1a3d2f 100%);
}

.hero-accent {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(123, 220, 181, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero-accent-2 {
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 177, 0, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(123, 220, 181, 0.15);
  border: 1px solid rgba(123, 220, 181, 0.3);
  color: var(--mint);
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
}

.hero h1 span {
  color: var(--mint);
  display: block;
}

.hero-subtitle {
  font-size: 20px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 44px;
  max-width: 560px;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-family: var(--font-main);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.hero-scroll svg { width: 20px; height: 20px; }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* =============================================
   STRIP — CHIFFRES CLÉS
   ============================================= */
.stats-strip {
  background: var(--mint);
  padding: 48px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  text-align: center;
}

.stat-item {
  padding: 0 32px;
  border-right: 1px solid rgba(26,26,26,0.15);
}
.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: var(--font-main);
  font-size: 60px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(26,26,26,0.6);
}

/* =============================================
   À PROPOS
   ============================================= */
.about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-image-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--light-gray) 0%, #e0e0e0 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: var(--gray);
  font-family: var(--font-main);
  font-size: 16px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.about-image-placeholder::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--mint);
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--mint);
  border-radius: 12px;
  padding: 20px 24px;
  text-align: center;
  box-shadow: var(--shadow);
}
.about-badge strong {
  font-family: var(--font-main);
  font-size: 40px;
  font-weight: 800;
  color: var(--dark);
  display: block;
  line-height: 1;
}
.about-badge span {
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--dark);
}

.about-content h2 { margin-bottom: 24px; }
.about-content p { margin-bottom: 20px; font-size: 18px; line-height: 1.7; }

.about-values {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-value {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.value-icon {
  width: 44px;
  height: 44px;
  background: rgba(123, 220, 181, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
}

.value-text strong {
  display: block;
  font-family: var(--font-main);
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 2px;
}
.value-text p { font-size: 15px; color: var(--gray); margin: 0; }

/* =============================================
   TÉMOIGNAGES
   ============================================= */
.testimonials {
  background: var(--dark);
  overflow: hidden;
  position: relative;
}

.testimonials::before {
  content: '"';
  position: absolute;
  top: -40px;
  left: -20px;
  font-family: var(--font-main);
  font-size: 400px;
  font-weight: 900;
  color: rgba(123, 220, 181, 0.04);
  line-height: 1;
  pointer-events: none;
}

.testimonials .section-label { color: var(--mint); }
.testimonials h2 { color: var(--white); margin-bottom: 60px; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 36px;
  transition: var(--transition);
  position: relative;
}
.testimonial-card:hover {
  background: rgba(123, 220, 181, 0.08);
  border-color: rgba(123, 220, 181, 0.25);
  transform: translateY(-4px);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}
.star {
  color: var(--yellow);
  font-size: 18px;
}

.testimonial-text {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
  margin-bottom: 28px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--mint);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-main);
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  flex-shrink: 0;
}

.author-info strong {
  display: block;
  font-family: var(--font-main);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
}
.author-info span {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
}

/* =============================================
   CTA BAND
   ============================================= */
.cta-band {
  background: var(--mint);
  padding: 80px 0;
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-band h2 {
  font-size: clamp(32px, 4vw, 52px);
  max-width: 600px;
  line-height: 1.1;
}

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-section {
  background: var(--bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info h2 { margin-bottom: 20px; }
.contact-info p { font-size: 18px; line-height: 1.7; margin-bottom: 36px; }

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

.contact-detail {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.detail-icon {
  font-size: 22px;
  width: 44px;
  text-align: center;
}
.detail-text strong { display: block; font-family: var(--font-main); font-size: 14px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--gray); }
.detail-text span { font-weight: 600; color: var(--dark); }

/* Form */
.contact-form { background: var(--white); padding: 40px; border-radius: 16px; box-shadow: var(--shadow); }

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--light-gray);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--dark);
  background: var(--bg);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--mint);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: #111111;
  color: rgba(255,255,255,0.6);
  padding: 60px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
}

.footer-brand .site-logo {
  color: var(--white);
  font-size: 32px;
  margin-bottom: 16px;
  display: block;
}

.footer-brand p { font-size: 15px; line-height: 1.7; max-width: 300px; }

.footer-col h4 {
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }

.footer-col a {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}
.footer-col a:hover { color: var(--mint); padding-left: 6px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p { font-size: 14px; margin: 0; }

.footer-legal {
  display: flex;
  gap: 24px;
}
.footer-legal a { font-size: 14px; color: rgba(255,255,255,0.4); }
.footer-legal a:hover { color: var(--mint); }

.footer-mint-bar {
  height: 4px;
  background: var(--mint);
  width: 100%;
}

/* =============================================
   PAGE GÉNÉRIQUE
   ============================================= */
.page-hero {
  background: var(--dark);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, transparent 50%, rgba(123,220,181,0.08) 100%);
}
.page-hero h1 { color: var(--white); position: relative; z-index: 1; }
.page-hero .breadcrumb {
  font-family: var(--font-main);
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
  position: relative; z-index: 1;
}
.page-hero .breadcrumb a { color: var(--mint); }

.page-content { padding: 80px 0; }
.page-content .prose { max-width: 760px; }
.page-content h2 { margin: 40px 0 16px; }
.page-content h3 { margin: 28px 0 12px; }
.page-content p { line-height: 1.8; margin-bottom: 20px; }
.page-content ul, .page-content ol { margin: 0 0 20px 24px; color: var(--gray); }
.page-content li { margin-bottom: 8px; line-height: 1.7; }

/* =============================================
   404 PAGE
   ============================================= */
.error-404 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--dark);
  padding: 40px;
}
.error-404-inner { max-width: 560px; }
.error-number {
  font-family: var(--font-main);
  font-size: 180px;
  font-weight: 900;
  color: var(--mint);
  line-height: 1;
  opacity: 0.3;
  margin-bottom: -20px;
}
.error-404 h1 { color: var(--white); font-size: 48px; margin-bottom: 16px; }
.error-404 p { color: rgba(255,255,255,0.5); margin-bottom: 36px; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .main-nav { display: none; }
  .burger { display: flex; }
  .stats-grid { grid-template-columns: 1fr; gap: 32px; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(26,26,26,0.15); padding-bottom: 32px; }
  .stat-item:last-child { border-bottom: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .cta-band-inner { flex-direction: column; text-align: center; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-cta { flex-direction: column; }
}

/* =============================================
   WORDPRESS BUILT-IN CLASSES
   ============================================= */
.wp-block-image { margin: 2em 0; }
.aligncenter { text-align: center; margin-left: auto; margin-right: auto; }
.alignright { float: right; margin-left: 2em; margin-bottom: 1em; }
.alignleft { float: left; margin-right: 2em; margin-bottom: 1em; }
.screen-reader-text { clip: rect(1px,1px,1px,1px); height: 1px; overflow: hidden; position: absolute; width: 1px; }


/* ============================================================
   GALERIE CAROUSEL
   ============================================================ */
.gallery-section {
    padding: 80px 0 0;
    background: var(--dark);
    overflow: hidden;
}

.gallery-section h2 {
    color: var(--white);
}

.gallery-carousel-wrapper {
    position: relative;
    overflow: hidden;
}

.gallery-carousel-wrapper::before,
.gallery-carousel-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.gallery-carousel-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--dark), transparent);
}

.gallery-carousel-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--dark), transparent);
}

.gallery-track {
    display: flex;
    gap: 16px;
    padding: 0 0 60px;
    animation: gallery-scroll 40s linear infinite;
    width: max-content;
}

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

.gallery-placeholder {
    animation: none !important;
    justify-content: center;
    width: 100% !important;
    flex-wrap: wrap;
    padding: 0 40px 60px;
    gap: 20px;
}

@keyframes gallery-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.gallery-slide {
    width: 380px;
    height: 260px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-slide:hover img {
    transform: scale(1.05);
}

.gallery-slide-empty {
    background: rgba(255,255,255,.05);
    border: 2px dashed rgba(255,255,255,.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-placeholder-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #555;
}

.gallery-placeholder-inner span {
    font-size: 13px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================================
   TRUSTINDEX WIDGET — DARK MODE
   ============================================================ */

/* Fond de section */
#testimonials {
    background: var(--dark);
    padding: 80px 0;
}
#testimonials h2,
#testimonials .section-label {
    color: var(--white);
}

/* Widget container */
#testimonials .ti-widget {
    background: transparent !important;
    color: var(--white) !important;
}

/* Cartes d'avis */
#testimonials .ti-review-item {
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px !important;
    box-shadow: none !important;
    transition: background 0.3s ease;
}
#testimonials .ti-review-item:hover {
    background: rgba(255, 255, 255, 0.1) !important;
}

/* Textes */
#testimonials .ti-name,
#testimonials .ti-name a {
    color: var(--white) !important;
    font-weight: 600;
}
#testimonials .ti-date {
    color: rgba(255, 255, 255, 0.5) !important;
    font-size: 12px;
}
#testimonials .ti-review-content,
#testimonials .ti-review-text-container {
    color: rgba(255, 255, 255, 0.85) !important;
}
#testimonials .ti-read-more {
    color: #7BDCB5 !important;
}

/* Étoiles — garder la couleur orange native */
#testimonials .ti-star svg,
#testimonials .ti-star {
    fill: #FFAA00 !important;
    color: #FFAA00 !important;
}

/* Icône Google */
#testimonials .ti-platform-icon svg path {
    fill: rgba(255,255,255,0.7) !important;
}

/* Flèches de navigation */
#testimonials .ti-next,
#testimonials .ti-prev {
    background: rgba(255,255,255,0.1) !important;
    border: 1px solid rgba(255,255,255,0.2) !important;
    color: var(--white) !important;
    border-radius: 50% !important;
}
#testimonials .ti-next:hover,
#testimonials .ti-prev:hover {
    background: #7BDCB5 !important;
    border-color: #7BDCB5 !important;
}
#testimonials .ti-next svg,
#testimonials .ti-prev svg {
    fill: var(--white) !important;
}

/* Dots de pagination */
#testimonials .dot {
    background: rgba(255,255,255,0.3) !important;
}
#testimonials .dot.active {
    background: #7BDCB5 !important;
}

/* Lien "Voir tous les avis" */
#testimonials .ti-widget a[href*="google"],
#testimonials .ti-widget .ti-review-link {
    color: #7BDCB5 !important;
}

/* Tooltip */
#testimonials .ti-tooltip {
    background: #2a2a2a !important;
    color: var(--white) !important;
    border: 1px solid rgba(255,255,255,0.15) !important;
}

/* ============================================================
   SECTION QUI SOMMES-NOUS — ABOUT
   ============================================================ */
.about.section {
    background: var(--bg, #FBFBFB);
    padding: 100px 0;
}

.about-header {
    text-align: center;
    margin-bottom: 64px;
}
.about-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin: 12px 0 20px;
    color: #1A1A1A;
    line-height: 1.2;
}
.about-header h2 .accent {
    color: #7BDCB5;
}
.about-intro {
    max-width: 580px;
    margin: 0 auto;
    color: #616161;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Layout photo + coachs */
.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

/* Photo */
.about-photo-wrap {
    position: sticky;
    top: 100px;
}
.about-team-photo {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    aspect-ratio: 4/5;
    display: block;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}
.about-photo-placeholder {
    width: 100%;
    aspect-ratio: 4/5;
    background: #1A1A1A;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 2px dashed rgba(255,255,255,0.15);
}
.about-photo-placeholder span {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    font-weight: 500;
}
.about-photo-placeholder small {
    color: rgba(255,255,255,0.3);
    font-size: 11px;
    text-align: center;
    padding: 0 24px;
}

/* Cartes coachs */
.about-coaches {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.coach-card {
    display: flex;
    gap: 20px;
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.06);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.coach-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}
.coach-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #7BDCB5;
    color: #1A1A1A;
    font-size: 1.3rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.coach-info h3 {
    margin: 0 0 4px;
    font-size: 1.2rem;
    color: #1A1A1A;
}
.coach-role {
    font-size: 0.8rem;
    color: #7BDCB5;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 10px;
}
.coach-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}
.badge {
    background: rgba(123,220,181,0.15);
    color: #1A1A1A;
    border: 1px solid rgba(123,220,181,0.4);
    border-radius: 20px;
    padding: 3px 10px;
    font-size: 0.75rem;
    font-weight: 600;
}
.coach-info p {
    margin: 0;
    color: #616161;
    font-size: 0.92rem;
    line-height: 1.6;
}

/* Valeurs */
.about-values {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    padding: 20px 28px;
    background: #1A1A1A;
    border-radius: 16px;
}
.value-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.85);
    font-size: 0.88rem;
    font-weight: 500;
}
.value-icon {
    font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .about-layout {
        grid-template-columns: 1fr;
    }
    .about-photo-wrap {
        position: static;
        max-width: 340px;
        margin: 0 auto;
    }
    .about-values {
        flex-direction: column;
    }
}