/**
 * CSS Pour la page d'accueil
 * Author: GBI
*/

/********
 * HERO *
 ********/
.tc-hero-benefits {
    display: flex;
    gap: 14px;
    margin-top: 18px;
    margin-bottom: 26px;
    max-width: 520px;
}
.tc-hero-benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-height: 72px;
    padding: 12px 16px;
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(168,122,50,0.22);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(40,25,10,0.18);
}
/* CONTENEUR ICONE */
.tc-hero-benefit-icon {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(168,122,50,0.12);
    border-radius: 50%;
}
/* IMAGE ICONE (IMPORTANT POUR VISIBILITÉ) */
.tc-hero-benefit-icon img {
    width: 26px;
    height: 26px;
    object-fit: contain;

    /* 🔥 boost visibilité */
    filter: brightness(0.35) contrast(1.5);
}
/* TEXTE */
.tc-hero-benefit-title {
    font-size: 15px;
    line-height: 1.1;
    font-weight: 800;
    color: #151515;
}
.tc-hero-benefit-text {
    margin-top: 3px;
    font-size: 14px;
    line-height: 1.2;
    color: #444;
    font-weight: 500;
}
/***************
 * VOS PROJETS *
 ***************/
.tc-project-title {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;

    font-family: 'Inter', sans-serif;
    font-size: 36px;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: 0.5px;

    color: #151515; /* couleur principale */
    margin: 0 0 14px 0;
    text-align: center;
}
/* 🔒 Force le texte en noir (évite héritage du thème) */
.tc-project-title span {
    color: #151515;
}
/* 🎯 Highlight garde le doré */
.tc-project-title .tc-highlight {
    color: #B4832D;
}
.tc-project-icon {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #B4832D;
    flex: 0 0 30px;
    position: relative;
    top: 18px;
}
.tc-project-icon svg {
    width: 30px;
    height: 30px;
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    color: #B4832D;
}
.tc-project-subtitle {
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #5c5c5c;
    margin: 0;
}



/* CARD */
.tc-project-card {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #ECE7E1;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    background: #fff;
}

/* IMAGE */
.tc-project-image {
    position: relative;
}

.tc-project-image img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

/* OVERLAY TEXTE */
.tc-project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;

    padding: 58px 20px 22px 20px;

    font-family: 'Inter', sans-serif;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.25;

    color: #ffffff;

    background: linear-gradient(
        to top,
        rgba(0,0,0,0.66),
        rgba(0,0,0,0.28),
        transparent
    );
}

/* PETITE BARRE DORÉE */
.tc-project-overlay::before {
    content: "";
    display: none;
    width: 40px;
    height: 2px;
    background: #B4832D;
    margin-bottom: 14px;
}

/* STRUCTURE TEXTE (option premium) */
.tc-project-title {
    display: block;
    color: #ffffff;
}

.tc-project-sub {
    display: block;
    color: #ffffff;
    opacity: 0.92;
}


/***************
 * TRUST PILOT * 
 ***************/
/* SECTION */
.tc-reviews-section {
  background: linear-gradient(180deg, #f4e8da 0%, #ead8c5 100%);
  border-radius: 14px;
  padding: 40px 30px 30px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

/* CONTAINER */
.tc-reviews-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* HEADER */
.tc-reviews-heading {
  text-align: center;
  margin-bottom: 20px;
}

.tc-reviews-heading h2 {
  margin: 0 0 8px;
  font-size: 28px;
  font-weight: 700;
  color: #1f1f1f;
}

/* SCORE */
.tc-reviews-score {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 15px;
}

.tc-stars {
  color: #c9942f;
  font-size: 18px;
}

.tc-stars.small {
  font-size: 14px;
}

.tc-verified-badge {
  background: #0f7a4f;
  color: #fff;
  font-size: 13px;
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 600;
}

/* SLIDER */
.tc-reviews-slider {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: stretch;
  padding: 0 50px; /* IMPORTANT pour éviter chevauchement */
}

/* CARDS */
.tc-review-card {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 8px 22px rgba(76, 50, 24, 0.13);
}

/* TOP CARD */
.tc-review-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.tc-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ead8c5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #3d2d20;
}

/* TEXT */
.tc-review-card h3 {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
}

.tc-review-card p {
  font-size: 14px;
  font-weight: 500;
  margin: 8px 0;
}

/* VERIFIED */
.tc-review-check {
  color: #247858;
  font-size: 13px;
  font-weight: 600;
}

/* FLÈCHES */
.tc-review-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(80, 60, 40, 0.15);
  background: rgba(255, 255, 255, 0.95);
  font-size: 28px;
  line-height: 36px;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

/* POSITION PROPRE (plus de chevauchement) */
.tc-review-prev {
  left: 0px;
}

.tc-review-next {
  right: 0px;
}

/* DOTS */
.tc-review-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.tc-review-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0,0,0,0.2);
}

.tc-review-dots span.active {
  background: #000;
}
