.hotel-features img {
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.2));
}
.hotel-features .card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.hotel-features .card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.hotel-features {
  background: #f8f9fa;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.hotel-features h4,
.hotel-features h5 {
  font-weight: 600;
  color: #b20000; /* ou ta couleur rouge principale ADMSoft */
}

.hotel-features .card {
  background-color: #fff;
  border: none;
  border-radius: 0.8rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hotel-features .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.hotel-features img {
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.15));
}

.feature-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  font-size: 0.95rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.feature-card i {
  color: #007bff;
  font-size: 1.2rem;
  margin-right: 8px;
}
.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.card.small {
  font-size: 0.85rem;
  border-radius: 0.75rem;
}

/* === VERSION MOBILE : pleine largeur avec très faible marge === */
@media (max-width: 600px) {

    /* Conteneur principal */
    .hotel-features {
        padding: 1rem;
        margin-left: 4px !important;
        margin-right: 4px !important;
        border-radius: 0.8rem;
    }

    /* Grille des cartes */
    .hotel-features .row,
    .hotel-features .col,
    .hotel-features .col-6,
    .hotel-features .col-12 {
        padding-left: 4px !important;
        padding-right: 4px !important;
    }

    /* Feature cards */
    .feature-card {
        padding: 8px 10px;
        margin-bottom: 8px;
    }

    /* Icônes */
    .feature-card i {
        font-size: 1.1rem;
        margin-right: 6px;
    }

    /* Images icônes */
    .hotel-features img {
        width: 28px;
        height: 28px;
    }
}

