body{
  margin:0;
  font-family:Arial,Helvetica,sans-serif;
  background:linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.65)),url("hotel-luxury-bg.jpg");
  background-size:cover;
  background-position:center;
  color:#fff;
}

.wrapper{
  max-width:1200px;
  margin:auto;
  padding:60px 30px;
}

.hero{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:40px;
  align-items:center;
}

.main-panel{
  background:rgba(0,0,0,.55);
  padding:60px;
  border-radius:20px;
  border:1px solid rgba(255,255,255,.1);
}

.eyebrow{
  letter-spacing:3px;
  text-transform:uppercase;
  font-size:13px;
  color:#e5c889;
  margin-bottom:20px;
}

.availability-counter{
  display:inline-block;
  margin:0 0 22px 0;
  padding:10px 16px;
  border-radius:999px;
  background:rgba(229,200,137,.14);
  border:1px solid rgba(229,200,137,.35);
  color:#f5d28a;
  font-size:14px;
  font-weight:bold;
  animation:pulseUrgency 1.8s infinite;
}

@keyframes pulseUrgency{
  0%{transform:scale(1);box-shadow:0 0 0 0 rgba(229,200,137,.35);}
  70%{transform:scale(1.02);box-shadow:0 0 0 12px rgba(229,200,137,0);}
  100%{transform:scale(1);box-shadow:0 0 0 0 rgba(229,200,137,0);}
}

h1{
  font-size:54px;
  line-height:1.1;
  margin:0 0 20px 0;
}

.domain{
  color:#f5d28a;
}

.subheadline{
  font-size:18px;
  line-height:1.8;
  color:#e6e6e6;
  margin-bottom:25px;
}

.seo-subtitle{
  font-size:22px;
  color:#f5d28a;
  margin-bottom:30px;
}

.luxury-note{
  background:rgba(255,255,255,.05);
  padding:20px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,.1);
  margin-bottom:30px;
}

.features{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:15px;
}

.feature{
  background:rgba(255,255,255,.05);
  padding:20px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,.08);
}

.feature-title{
  color:#f5d28a;
  font-weight:bold;
  display:block;
  margin-bottom:8px;
}

.contact-panel{
  background:rgba(0,0,0,.6);
  padding:40px;
  border-radius:20px;
  border:1px solid rgba(255,255,255,.1);
}

.phone-box{
  display:block;
  background:rgba(255,255,255,.08);
  padding:18px;
  border-radius:10px;
  text-decoration:none;
  color:white;
  margin-bottom:20px;
}

.phone-number{
  font-size:22px;
  font-weight:bold;
}

.buttons a{
  display:block;
  text-align:center;
  padding:14px;
  margin-bottom:10px;
  border-radius:8px;
  text-decoration:none;
  font-weight:bold;
}

.btn-primary{
  background:#e5c889;
  color:#000;
}

.btn-secondary{
  background:#333;
  color:#fff;
}

.offer-card{
  margin-top:20px;
  font-size:14px;
  line-height:1.6;
}

.whatsapp-float{
  position:fixed;
  right:22px;
  bottom:22px;
  width:64px;
  height:64px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#25D366;
  color:#fff;
  text-decoration:none;
  font-size:30px;
  box-shadow:0 12px 30px rgba(0,0,0,.35);
  z-index:9999;
  transition:transform .2s ease, box-shadow .2s ease;
}

.whatsapp-float:hover{
  transform:translateY(-3px) scale(1.03);
  box-shadow:0 16px 34px rgba(0,0,0,.42);
}

@media(max-width:900px){
  .hero{grid-template-columns:1fr;}
  .features{grid-template-columns:1fr;}
  h1{font-size:36px;}
}
