*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial, sans-serif
}

body{
background:#f7f9fc;
color:#333;
line-height:1.5
}

.header{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 20px;
background:#fff;
position:sticky;
top:0;
z-index:100;
box-shadow:0 2px 10px #0001
}

.logo{
font-size:20px
}

.menu-btn{
font-size:24px;
background:none;
border:none;
cursor:pointer
}

.menu{
display:none;
background:#fff
}

.menu a{
display:block;
padding:12px 20px;
text-decoration:none;
color:#333
}

/* HERO */
.hero{
height:90vh;
background:url("images/hotel-front.jpg") center/cover no-repeat;
border-radius:0 0 25px 25px;
overflow:hidden
}

.hero-overlay{
width:100%;
height:100%;
background:linear-gradient(
rgba(0,0,0,0.45),
rgba(0,0,0,0.65)
);
display:flex;
flex-direction:column;
align-items:center;
justify-content:center;
text-align:center;
color:#fff;
padding:20px
}

.hero-title{
font-size:32px;
font-weight:700;
text-shadow:0 4px 12px #000
}

.hero-subtitle{
margin:12px 0 20px;
font-size:16px
}

.hero-btn{
background:#2ecc71;
color:#fff;
padding:14px 32px;
border-radius:40px;
text-decoration:none;
font-size:18px;
font-weight:600;
margin-bottom:10px
}

.hero-note{
font-size:14px;
opacity:0.9
}

.hero-features{
display:flex;
gap:26px;
margin-top:25px
}

.hero-features div{
display:flex;
flex-direction:column;
align-items:center;
font-size:13px
}

.hero-features img{
width:42px;
height:42px;
margin-bottom:6px
}

/* SECTIONS */
.section{
padding:50px 20px
}

.gray{
background:#eef2f7
}

.rooms-grid{
display:grid;
grid-template-columns:1fr;
gap:20px
}

.card{
background:#fff;
padding:15px;
border-radius:12px;
box-shadow:0 10px 20px #0001
}

.card img{
width:100%;
height:200px;
object-fit:cover;
border-radius:10px
}

.price{
color:#d4a017;
font-weight:bold
}

ul{
list-style:none;
margin:10px 0
}

ul li{
padding:5px 0
}

.btn{
display:block;
text-align:center;
background:#25d366;
color:#fff;
padding:12px;
border-radius:30px;
text-decoration:none;
margin-top:10px
}

.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(150px,1fr));
gap:15px
}

.box{
background:#fff;
padding:20px;
border-radius:12px;
text-align:center
}

input,select{
width:100%;
padding:12px;
margin:8px 0;
border-radius:10px;
border:1px solid #ccc
}

iframe{
width:100%;
height:280px;
border:0;
border-radius:12px
}

.faq button{
width:100%;
padding:15px;
margin:8px 0;
border:none;
border-radius:12px;
background:#fff;
text-align:left;
cursor:pointer
}

.faq p{
display:none;
padding:10px
}

.whatsapp{
position:fixed;
right:20px;
bottom:20px;
background:#25d366;
color:#fff;
padding:15px;
border-radius:50%;
font-size:22px;
text-decoration:none
}

/* DESKTOP */
@media (min-width:768px){

.menu{
display:flex;
justify-content:center;
gap:25px
}

.menu-btn{
display:none
}

.rooms-grid{
grid-template-columns:repeat(2,1fr)
}

.hero-title{
font-size:44px
}
}

@media (min-width:1100px){
.rooms-grid{
grid-template-columns:repeat(4,1fr)
}
}
/* GALLERY SLIDER */
.gallery-section{
padding:60px 20px;
background:#ffffff
}

.gallery-title{
text-align:center;
font-size:26px;
margin-bottom:30px
}

.gallery-wrapper{
max-width:1200px;
margin:auto;
overflow:hidden
}

.gallery-track{
display:flex;
gap:20px;
transition:transform 0.6s ease
}

.gallery-card{
flex:0 0 80%;
border-radius:16px;
overflow:hidden;
box-shadow:0 10px 25px #0001
}

.gallery-card img{
width:100%;
height:260px;
object-fit:cover;
display:block
}

/* TABLET */
@media (min-width:768px){
.gallery-card{
flex:0 0 45%
}
.gallery-card img{
height:300px
}
}

/* DESKTOP */
@media (min-width:1100px){
.gallery-card{
flex:0 0 30%
}
.gallery-card img{
height:320px
}
}

/* ================================
   PREMIUM FACILITIES SECTION
   ================================ */

#facilities {
  padding: 70px 20px;
}

#facilities.light {
  background: #f7f9fc;
}

#facilities .section-title {
  text-align: center;
  font-size: 30px;
  margin-bottom: 8px;
}

#facilities .section-subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 40px;
  font-size: 16px;
}

/* GRID LAYOUT */
#facilities .grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  gap: 24px;
}

#facilities .grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

/* ICON CARDS */
#facilities .icon-card {
  background: #ffffff;
  padding: 26px 16px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#facilities .icon-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.12);
}

#facilities .icon-card img {
  width: 48px;
  height: 48px;
  margin-bottom: 12px;
}

#facilities .icon-card span {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #333;
}

/* RESPONSIVE TUNING */
@media (min-width: 768px) {
  #facilities .section-title {
    font-size: 34px;
  }
}

@media (min-width: 1100px) {
  #facilities {
    padding: 90px 20px;
  }
}

/* ================================
   NEARBY ATTRACTIONS SECTION
   ================================ */

#nearby {
  padding: 70px 20px;
}

#nearby .section-title {
  text-align: center;
  font-size: 30px;
  margin-bottom: 8px;
}

#nearby .section-subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 40px;
  font-size: 16px;
}

/* GRID CONTAINER */
#nearby .grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  gap: 24px;
}

#nearby .grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

/* PHOTO CARDS */
#nearby .photo-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#nearby .photo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 35px rgba(0,0,0,0.12);
}

#nearby .photo-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

#nearby .photo-card h3 {
  margin: 16px 0 20px;
  font-size: 18px;
  font-weight: 600;
  color: #333;
}

/* RESPONSIVE TUNING */
@media (min-width: 768px) {
  #nearby .photo-card img {
    height: 240px;
  }
}

@media (min-width: 1100px) {
  #nearby {
    padding: 90px 20px;
  }
}


/* ================================
   WHY CHOOSE US SECTION
   ================================ */

#why {
  padding: 70px 20px;
}

#why.light {
  background: #f7f9fc;
}

#why .section-title {
  text-align: center;
  font-size: 30px;
  margin-bottom: 8px;
}

#why .section-subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 40px;
  font-size: 16px;
}

/* GRID */
#why .grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  gap: 24px;
}

#why .grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

/* INFO CARDS */
#why .info-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#why .info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 35px rgba(0,0,0,0.12);
}

#why .info-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

#why .info-card h3 {
  margin: 16px 0 8px;
  font-size: 18px;
  font-weight: 600;
  color: #333;
}

#why .info-card p {
  padding: 0 18px 20px;
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

/* RESPONSIVE TUNING */
@media (min-width: 768px) {
  #why .info-card img {
    height: 240px;
  }
}

@media (min-width: 1100px) {
  #why {
    padding: 90px 20px;
  }
}


/* ================================
   OUR PHOTO GALLERY SECTION
   ================================ */

#gallery {
  padding: 70px 20px;
}

#gallery.light {
  background: #f7f9fc;
}

#gallery .section-title {
  text-align: center;
  font-size: 30px;
  margin-bottom: 8px;
}

#gallery .section-subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 40px;
  font-size: 16px;
}

/* GALLERY GRID */
#gallery .gallery-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, 1fr);
}

/* GALLERY ITEMS */
#gallery .gallery-item {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

#gallery .gallery-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

#gallery .gallery-item:hover img {
  transform: scale(1.06);
}

/* TABLET */
@media (min-width: 768px) {
  #gallery .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  #gallery .gallery-item img {
    height: 220px;
  }
}

/* DESKTOP */
@media (min-width: 1100px) {
  #gallery {
    padding: 90px 20px;
  }

  #gallery .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  #gallery .gallery-item img {
    height: 240px;
  }
}


/* ================================
   FOOTER – CONTACT INFORMATION
   ================================ */

.footer {
  background: #0f172a;
  color: #ffffff;
  padding: 60px 20px 40px;
}

.footer-container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.footer-title {
  font-size: 26px;
  margin-bottom: 30px;
}

.footer-items {
  display: grid;
  gap: 26px;
}

/* FOOTER ITEM */
.footer-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.footer-icon {
  font-size: 28px;
}

.footer-item p {
  font-size: 15px;
  line-height: 1.6;
}

.footer-item a {
  color: #25d366;
  text-decoration: none;
  font-weight: 500;
}

.footer-item a:hover {
  text-decoration: underline;
}

.footer-note {
  margin-top: 40px;
  font-size: 13px;
  color: #cbd5e1;
}

/* RESPONSIVE */
@media (min-width: 768px) {
  .footer-items {
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
  }
}


/* ================================
   FLOATING CONTACT BUTTONS
   ================================ */

.floating-contact {
  position: fixed;
  right: 25px;
  bottom: 100px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

/* COMMON BUTTON STYLE */
.contact-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  text-decoration: none;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

/* CALL BUTTON */
.contact-btn.call {
  background: #25d366;
}

.contact-btn.call:hover {
  background: #25d366;
}
