/* Facility */

.facility-card{
background:rgba(255,255,255,0.8);
backdrop-filter:blur(6px);
padding:40px 20px;
text-align:center;
border-radius:18px;
border:1px solid rgba(0,0,0,0.05);
transition:all .35s ease;
cursor:pointer;
box-shadow:0 8px 20px rgba(0,0,0,0.05);
}

.facility-card:hover{
transform:translateY(-10px);
box-shadow:0 18px 40px rgba(0,0,0,0.15);
border-color:#c8a97e;
}

.facility-icon{
width:70px;
height:70px;
margin:auto;
margin-bottom:15px;
background:linear-gradient(135deg,#f5f5f5,#e8e8e8);
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:26px;
color:#f59f27;
transition:all .35s ease;
}

.facility-card:hover .facility-icon{
background:#ff9500;
color:white;
transform:scale(1.2);
box-shadow:0 10px 25px rgba(200,169,126,0.5);
}

.facility-card h4{
font-weight:600;
font-size:15px;
color:#374151;
}

/* Room Card */

.room-card{
  background:white;
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 15px 40px rgba(0,0,0,0.1);
  transition:all .35s ease;
}

.room-card:hover{
  transform:translateY(-10px);
}

.room-image-wrapper{
  position:relative;
  overflow:hidden;
}

.room-img{
  width:100%;
  height:260px;
  object-fit:cover;
  transition:transform .5s ease;
}

.room-card:hover .room-img{
  transform:scale(1.08);
}

.room-overlay{
  position:absolute;
  bottom:0;
  left:0;
  width:100%;
  padding:25px;
  background:linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.1));
}

.room-title{
  color:white;
  font-size:24px;
  font-weight:600;
  margin-bottom:10px;
}

.room-info{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  font-size:14px;
  color:white;
}

.room-info i{
  color:#c8a97e;
  margin-right:5px;
}

.room-bottom{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:20px 25px;
}

.room-bottom h4{
  font-size:22px;
  color:#000000;
}

.room-bottom small{
  font-size:14px;
  font-weight: 600;
  color:#000000;
}

.room-btn{
  background:#8f672f;
  color:white;
  padding:8px 18px;
  border-radius:6px;
  font-size:14px;
  transition:.3s;
}

.room-btn:hover{
  background:#b89663;
}

.room-bottom{
display:flex;
justify-content:space-between;
align-items:center;
flex-wrap:wrap;
gap:10px;
}

.room-price p{
font-size:13px;
}

/* Tourist Places - Map Index Page */

.tour-map-container{
width:100%;
border-radius:14px;
overflow:hidden;
box-shadow:0 15px 35px rgba(0,0,0,0.15);
}

.tour-map-img{
width:100%;
height:auto;
display:block;
}

/* Tourist Places - Index Page */

.tour-preview-card{
background:white;
border-radius:14px;
overflow:hidden;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
transition:0.35s;
}

.tour-preview-card:hover{
transform:translateY(-8px);
box-shadow:0 18px 40px rgba(0,0,0,0.15);
}

.tour-preview-card img{
width:100%;
height:200px;
object-fit:cover;
}

.tour-preview-content{
padding:18px;
}

.tour-preview-content h3{
font-size:18px;
font-weight:600;
margin-bottom:6px;
}

.tour-preview-content p{
color:#c8a97e;
font-size:14px;
}

/* Tourist Places - page */

.tour-card{
background:white;
border-radius:18px;
overflow:hidden;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
transition:0.35s;
}

.tour-card:hover{
transform:translateY(-8px);
box-shadow:0 18px 40px rgba(0,0,0,0.15);
}

.tour-img-wrapper{
position:relative;
height:230px;
overflow:hidden;
}

.tour-img-wrapper img{
width:100%;
height:100%;
object-fit:cover;
transition:transform .5s ease;
}

.tour-card:hover img{
transform:scale(1.08);
}

.tour-distance{
position:absolute;
top:12px;
left:12px;
background:#f59f27;
color:white;
padding:4px 10px;
font-size:12px;
border-radius:6px;
}

.tour-content{
padding:22px;
}

.tour-content h3{
font-size:20px;
font-weight:600;
margin-bottom:8px;
color:#000000;
}

.tour-content p{
color:#000000;
font-size:14px;
line-height:1.6;
}

/* Contact */

.contact-card{
display:flex;
gap:18px;
align-items:flex-start;
background:white;
padding:20px;
border-radius:12px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.contact-card h3{
font-size:18px;
font-weight:600;
margin-bottom:4px;
}

.contact-card p{
color:#000000;
font-size:14px;
}

.contact-icon{
font-size:22px;
color:#f59f27;
margin-top:3px;
}

.contact-input{
width:100%;
padding:12px;
border:1px solid #e5e7eb;
border-radius:8px;
font-size:14px;
}

.contact-input:focus{
outline:none;
border-color:#f59f27;
}