/* ============================================================
   HOTELS DYNAMIC Ã¢â‚¬â€ EXTRA CSS
   Paste at the bottom of your style.css
   (replaces any previous hotel CSS you added)
   ============================================================ */

 
.hotels-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 28px;
  margin: 40px 0 0;
}
.hotel-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--ease);
  /* display: flex; */
  flex-direction: column;
}
.hotel-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.hotel-img {position: relative;height: 300px;overflow: hidden;flex-shrink: 0;width: 500px;float: left;}
.hotel-img img {width: 100%;height: 100%;object-fit: cover;transition: transform .5s ease;}
.hotel-card:hover .hotel-img img { transform: scale(1.06); }

.hotel-tags-overlay {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  bottom: auto;
}
.hotel-tag-pill {
  background: #fff;
  color: #002d5e;
  backdrop-filter: blur(4px);
  font-family: var(--font-ui);
  font-size: .67rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
}
.hotel-featured-badge {
  position: absolute; top: 12px; right: 12px;
  background: var(--gold); color: var(--dark);
  font-family: var(--font-ui); font-size: .67rem; font-weight: 700;
  padding: 4px 10px; border-radius: 50px;
}

.hotel-body {padding: 20px;/* display: flex; */flex-direction: column;/* flex: 1; */width: calc(100% - 500px);float: left;}
.hotel-stars-label {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  color: var(--gold-dark,#d97706);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #54657a;
}
.hotel-stars-icons { font-size: .85rem; }
.hotel-body h3 {font-size: 27px;margin-bottom: 6px;}
.hotel-loc { font-size: .8rem; color: var(--text-muted); margin-bottom: 10px; }
.hotel-body > p { font-size: .855rem; color: var(--text-muted); margin-bottom: 14px; flex: 1; }
.hotel-amenities { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.amenity-chip {
  font-size: .72rem;
  background: #c7e2f6;
  color: var(--mid);
  padding: 3px 9px;
  border-radius: 4px;
  font-family: var(--font-ui);
  font-weight: 500;
}
.hotel-footer {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding-top: 14px; border-top: 1px solid var(--border); margin-top: auto;
}
.hotel-price {font-family: var(--font-ui);font-weight: 700;color: #0074c8;font-size: 21px;}
.hotel-price span {color: #0074c8;font-weight: 700;color: #0074c8;font-size: 21px;}

 
.hotels-filter-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  position: sticky;
  top: 70px;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}
.hotels-filter-form {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.filter-group { display: flex; flex-direction: column; gap: 4px; }
.filter-group label {
  font-family: var(--font-ui);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--mid);
}
.filter-group select {
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 8px 32px 8px 12px;
  font-family: var(--font-sans);
  font-size: .875rem;
  color: var(--text);
  background: var(--white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2364748b' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right 10px center;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  transition: border-color var(--ease);
  min-width: 160px;
}
.filter-group select:focus { outline: none; border-color: var(--blue); }
.filter-clear {
  font-family: var(--font-ui);
  font-size: .8rem;
  font-weight: 600;
  color: var(--mid);
  padding: 8px 12px;
  border-radius: var(--r-sm);
  background: var(--light);
  transition: all var(--ease);
  margin-top: auto;
  white-space: nowrap;
}
.filter-clear:hover { background: var(--border); color: var(--dark); }
.filter-count {
  margin-left: auto;
  font-family: var(--font-ui);
  font-size: .8rem;
  color: var(--mid);
  white-space: nowrap;
  margin-top: auto;
}
 
.hotels-empty {
  text-align: center;
  padding: 72px 24px;
  background: var(--light);
  border-radius: var(--r-lg);
}
.hotels-empty h3 { margin-bottom: 10px; }
.hotels-empty p { color: var(--text-muted); }
.hotels-empty a:not(.btn) { color: var(--blue); }

 
.drt-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 52px;
  flex-wrap: wrap;
}
.drt-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--r-sm);
  font-family: var(--font-ui);
  font-size: .875rem;
  font-weight: 600;
  color: var(--text);
  background: var(--light);
  transition: all var(--ease);
  border: 1px solid var(--border);
}
.drt-pagination .page-numbers:hover { background: var(--blue); color: var(--white); border-color: var(--blue); }
.drt-pagination .page-numbers.current { background: var(--blue); color: var(--white); border-color: var(--blue); }
.drt-pagination .page-numbers.prev,
.drt-pagination .page-numbers.next { width: auto; padding: 0 16px; }
.drt-pagination .page-numbers.dots { border: none; background: none; cursor: default; } 
.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(10,20,40,.7); backdrop-filter: blur(4px);
  align-items: center; justify-content: center; padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--white); border-radius: var(--r-lg);
  max-width: 620px; width: 100%;
  max-height: 90vh; overflow-y: auto;
  position: relative; box-shadow: var(--shadow-xl);
}
.modal-close {
  position: absolute; top: 16px; right: 16px; z-index: 10;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--light); display: flex; align-items: center;
  justify-content: center; font-size: 1.1rem; color: var(--mid);
  transition: all var(--ease); cursor: pointer; border: none;
}
.modal-close:hover { background: var(--border); color: var(--dark); }
.modal-img { height: 230px; overflow: hidden; border-radius: var(--r-lg) var(--r-lg) 0 0; }
.modal-img img { width: 100%; height: 100%; object-fit: cover; }
.modal-body { padding: 28px; }
.modal-body h3 { font-size: 1.35rem; margin-bottom: 10px; }
.modal-form-title {
  font-family: var(--font-ui); font-size: .82rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase; color: var(--blue);
  margin-bottom: 14px; display: block;
}
.btn-gold { background: var(--gold,#f59e0b); color: var(--dark); }
.btn-gold:hover { background: var(--gold-dark,#d97706); transform: translateY(-2px); }
.Hotel-page{background:#c7e2f6; padding:50px 20px;}
.Hotel-page .wrap{max-width:1000px}
.Hotel-page h2, .Hotel-page span{text-align:center}
.Hotel-page .tips-grid{
	    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 36px;
}
.hotel-footer button{background:#002d5e}
@media (max-width: 1100px) { .hotels-grid { grid-template-columns: repeat(2, 1fr); }
	.hotel-img, .hotel-body{width:100%}
	.Hotel-page .tips-grid{    grid-template-columns: repeat(1, 1fr);}
}
@media (max-width: 768px) {
  .hotels-grid { grid-template-columns: 1fr; }
  .hotels-filter-form { gap: 12px; }
  .filter-group select { min-width: 130px; }
  .filter-count { margin-left: 0; width: 100%; }
}
