.bg-silver-gradient {
  background: linear-gradient(
    135deg,
    #f9fafb 0%,
    #e2e5ea 25%,
    #cfd4dc 50%,
    #e6e9ef 75%,
    #f9fafb 100%
  );
  border: 1px solid rgba(160,160,160,0.55);
  box-shadow:
    inset 0 1px 1px rgba(255,255,255,0.9),
    0 10px 25px rgba(0,0,0,0.08);
    backdrop-filter: blur(6px);
}

.bg-gold-gradient {
  background: linear-gradient(
    135deg,
    #fff3c4 0%,
    #f6d365 25%,
    #d4af37 50%,
    #f6d365 75%,
    #fff3c4 100%
  );
  border: 1px solid rgba(180,140,40,0.6);
  box-shadow:
    inset 0 1px 1px rgba(255,255,255,0.8),
    0 12px 28px rgba(0,0,0,0.12);
}

.bg-platinum-gradient {
  background: linear-gradient(
    135deg,
    #f7f8fa 0%,
    #e3e6eb 25%,
    #bfc5ce 50%,
    #e9ebf0 75%,
    #f7f8fa 100%
  );
  border: 1px solid rgba(150,155,165,0.6);
  box-shadow:
    inset 0 1px 1px rgba(255,255,255,0.9),
    0 12px 30px rgba(0,0,0,0.1);
}


.room-card-xl {
  min-width: 260px;
  max-width: 260px;
  border-radius: 18px;
  overflow: hidden;
  scroll-snap-align: start;
  flex-shrink: 0;
  background: #fff;
  border: 1px solid rgba(200, 200, 200, 0.35);
}


.room-card-xl img {
  height: 160px;
  object-fit: cover;
}

.carousel-indicators [data-bs-target] {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.carousel-indicators {
  margin-bottom: 8px;
}

.room-scroll {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.room-scroll::-webkit-scrollbar {
  display: none;
}

.custom-arrow {
  width: 24px;
  height: 24px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.85);
  border-radius: 50%;
  opacity: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
    backdrop-filter: blur(6px);
}

.carousel-control-prev.custom-arrow {
  left: 10px;
}

.carousel-control-next.custom-arrow {
  right: 10px;
}

.custom-arrow i {
  color: #111;
  font-size: 14px;
}

.custom-arrow:hover {
  background: #fff;
}


.experience-card {
  height: 140px;
  border-radius: 14px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.experience-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.65),
    rgba(0,0,0,0.15)
  );
  color: #fff;
  padding: 12px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.experience-overlay i {
  font-size: 20px;
  margin-bottom: 4px;
}


.hotel-about {
  background: linear-gradient(135deg,#f8f9fa,#ffffff);
  border: 1px solid rgba(0,0,0,0.05);
}

.feature-card {
  height: 100%;
  border-radius: 16px;
  padding: 18px 12px;
  text-align: center;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  transition: all .25s ease;
}

.feature-card i {
  font-size: 22px;
  margin-bottom: 8px;
  color: #2f7f6a; /* soft emerald uyumu */
      background: rgba(47,127,106,.1);
  padding: 10px;
  border-radius: 50%;
}



.feature-card div {
  font-weight: 500;
  font-size: 14px;
  color: #222;
}

.feature-card:hover {
  border-color: rgba(0,0,0,0.12);
  transform: translateY(-2px);
}



