/*=====================*/
/*========HERO=========*/
/*=====================*/

.hero-image {
  position: relative;
  background: url('../images/hijama.jpg') no-repeat center center;
  background-size: cover; 
  height: 500px;
  width: 100%;
  color: white;
}
.hero-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 1;
}

.hero-image::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.5) 70%,
        rgba(0, 0, 0, 0) 100%  
    );
    z-index: 2;
}
.hero-image .container {
    position: relative;
    z-index: 3;
}

/* Typo & espacements doux */
h1, h2, h3 { letter-spacing: 0.2px; }

.section-title {
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--bs-secondary);
}
.lead-quiet {
  color: #5b5b5b;
}

/* Cartes services */
.services .card {
  border: none;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0,0,0,0.06);
  transition: transform .2s ease, box-shadow .2s ease;
}
.services .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(0,0,0,0.08);
}
.services .card img {
  height: 180px;
  object-fit: cover;
}

/*======================*/
/*=========Tarifs====== */
/*======================*/
.pricing {
  background: rgba(var(--bs-primary-rgb), 0.06);
  border-radius: 1rem;
  padding: 2rem;
}

.pricing .tarif-box {
  position: relative;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 6px 16px rgba(0,0,0,0.04);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.pricing .tarif-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.07);
  border-color: rgba(0,0,0,0.08);
}

.pricing .tarif-box.highlight {
  border-color: rgba(var(--bs-secondary-rgb), .25);
  box-shadow: 0 10px 28px rgba(0,0,0,0.08);
}

.pricing .price {
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--bs-secondary);
  line-height: 1.1;
}
.pricing .price .amount { letter-spacing: .2px; }
.pricing .price .note { font-size: .85rem; }

.pricing .features li {
  padding: .15rem 0;
}

/* Badge promo – plus visible et élégant */
.deal-placeholder {
  height: 32px; /* même hauteur que le badge */
}
.deal-badge {
  gap: .4rem;
  padding: .35rem .6rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--bs-secondary), #6f3b49);
  color: #fff;
  box-shadow: 0 6px 16px rgba(111,59,73,.25);
  font-weight: 700;
  font-size: .85rem;
}

.deal-badge .deal {
  background: rgba(255,255,255,.18);
  padding: .1rem .45rem;
  border-radius: .5rem;
  font-variant-numeric: tabular-nums;
}

.deal-badge .deal-text {
  opacity: .95;
}

.badge-soft {
  background: rgba(var(--bs-primary-rgb), 0.2);
  color: #3e3320;
  font-weight: 600;
}

/*=====================*/
/*=======Contact=======*/
/*=====================*/
.contact-card {
  border-radius: 1rem;
}

.contact-tile {
  background: rgba(var(--bs-primary-rgb), 0.06);
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.contact-tile:hover {
  transform: translateY(-2px);
  background: rgba(var(--bs-primary-rgb), 0.09);
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}

.icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--bs-secondary-bg, #f8f9fa);
  color: var(--bs-secondary);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.06);
  font-size: 1.1rem;
}
