.tcfac-room-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.tcfac-room-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.tcfac-room-card:hover {
  transform: translateY(-8px);
}

.tcfac-room-image {
  overflow: hidden;
}

.tcfac-room-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: 0.4s;
}

.tcfac-room-card:hover img {
  transform: scale(1.05);
}

.tcfac-room-card-content {
  padding: 25px;
}

.tcfac-room-meta {
  color: #777;
  font-size: 14px;
  margin-bottom: 15px;
}

.tcfac-room-card h3 {
  font-size: 30px;
  margin: 0 0 15px;
}

.tcfac-room-card p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 20px;
}

.tcfac-room-price {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 25px;
}

.tcfac-room-price span {
  font-size: 16px;
  color: #777;
}

.tcfac-room-actions {
  display: flex;
  gap: 15px;
}

.tcfac-details-btn,
.tcfac-book-btn {
  flex: 1;
  text-align: center;
  padding: 14px;
  border-radius: 12px;
  text-decoration: none;
  transition: 0.3s;
}

.tcfac-details-btn {
  background: #f5f5f5;
  color: #222;
}

.tcfac-book-btn {
  background: #c9a96a;
  color: #fff;
}

.tcfac-book-btn:hover {
  background: #b68f47;
}

@media (max-width: 767px) {
  .tcfac-room-actions {
    flex-direction: column;
  }
}

.card-col-3 {
  width: 33.3333%;
  padding: 0 15px;
}
