/* ============================================
   Hotel Skyland — Gold Luxury Theme
   ============================================ */

:root {
  --gold:        #D4AF37;
  --gold-dark:   #b8942a;
  --gold-light:  #f0d060;
  --dark:        #0d0d0d;
  --dark2:       #141414;
  --dark3:       #1e1e1e;
  --text:        #e8e8e8;
  --text-muted:  #b0b0b0;
  --border:      rgba(212,175,55,0.2);
  --radius:      10px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--dark);
  color: var(--text);
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6 {
  font-family: 'Cormorant Garamond', serif;
  color: #fff;
}

a { color: var(--gold); text-decoration: none; transition: .2s; }
a:hover { color: var(--gold-light); }

img { max-width: 100%; }

/* Override Bootstrap text-muted sitewide */
.text-muted,
p.text-muted,
small.text-muted,
span.text-muted,
li.text-muted,
div.text-muted { color: #b0b0b0 !important; }

/* General paragraph colour */
p { color: #c8c8c8; }

/* ---- Utility ---- */
.text-gold { color: var(--gold) !important; }
.bg-dark-2 { background: var(--dark2) !important; }
.z-2 { z-index: 2; }
.object-fit-cover { object-fit: cover; }
.border-gold { border-color: var(--border) !important; }

/* ---- Buttons ---- */
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #000;
  font-weight: 600;
  font-size: .875rem;
  letter-spacing: .5px;
  border: none;
  border-radius: 4px;
  transition: all .3s;
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  color: #000;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(212,175,55,0.3);
}
.btn-outline-gold {
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
  font-weight: 500;
  font-size: .875rem;
  border-radius: 4px;
  transition: all .3s;
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: #000;
  transform: translateY(-1px);
}
.btn-whatsapp {
  background: #25D366;
  color: #fff;
  font-weight: 600;
  font-size: .875rem;
  border-radius: 4px;
  border: none;
  transition: all .3s;
}
.btn-whatsapp:hover {
  background: #1da851;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37,211,102,0.3);
}

/* ---- Forms ---- */
.sky-input {
  background: #111 !important;
  border: 1px solid var(--border) !important;
  color: var(--text) !important;
  border-radius: 6px;
}
.sky-input:focus {
  border-color: var(--gold) !important;
  box-shadow: 0 0 0 .2rem rgba(212,175,55,0.15) !important;
  color: #fff !important;
}
.sky-input::placeholder { color: #555; }
.form-label { color: #bbb; font-size: .875rem; margin-bottom: .4rem; }
select.sky-input option { background: #111; }

/* ============================================
   NAVBAR
   ============================================ */
.sky-navbar {
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: .6rem 0;
  transition: all .3s;
}
.sky-navbar.scrolled {
  background: rgba(5,5,5,0.98);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.brand-name {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.1;
}
.brand-tag {
  font-size: .65rem;
  color: #888;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.sky-navbar .nav-link {
  color: #ccc !important;
  font-size: .825rem;
  font-weight: 500;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding: .5rem .75rem !important;
  position: relative;
  transition: color .2s;
}
.sky-navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  width: 0; height: 1px;
  background: var(--gold);
  transition: all .3s;
  transform: translateX(-50%);
}
.sky-navbar .nav-link:hover,
.sky-navbar .nav-link.active {
  color: var(--gold) !important;
}
.sky-navbar .nav-link:hover::after,
.sky-navbar .nav-link.active::after { width: 60%; }

/* ============================================
   HERO
   ============================================ */
.hero-section {
  min-height: 100vh;
  background:
    url('../images/hero-bg.jpg') center center / cover no-repeat,
    linear-gradient(135deg, #0a0a0a 0%, #1a1204 50%, #0a0a0a 100%);
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(212,175,55,0.10) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(212,175,55,0.07) 0%, transparent 60%);
  z-index: 1;
}
/* Dark overlay on top of the photo so text stays readable */
.hero-overlay {
  display: block;
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  font-size: .75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border);
  padding: .4rem 1.2rem;
  border-radius: 100px;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.hero-title span { color: var(--gold); }
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 0 auto;
}
.hero-info-bar { gap: .5rem; }
.hero-info-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  padding: .5rem 1rem;
  border-radius: 100px;
}
.hero-info-item a { color: rgba(255,255,255,0.7); }
.hero-info-item a:hover { color: var(--gold); }

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gold);
  font-size: 1.2rem;
  animation: bounce 2s infinite;
  z-index: 2;
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================
   PAGE BANNER (inner pages)
   ============================================ */
.page-banner {
  min-height: 280px;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1204 100%);
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 80px;
}
.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(212,175,55,0.08) 0%, transparent 70%);
}
.banner-overlay { display: none; }
.banner-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: #fff;
  margin-bottom: .5rem;
}
.breadcrumb { background: none; margin-bottom: 0; }
.breadcrumb-item a { color: var(--gold); }
.breadcrumb-item.active,
.breadcrumb-item+.breadcrumb-item::before { color: #666; }

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-label {
  display: inline-block;
  font-size: .7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 3px;
  margin-bottom: .75rem;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #fff;
  margin-bottom: .5rem;
  line-height: 1.2;
}
.section-sub {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   OTA STRIP
   ============================================ */
.ota-strip { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.ota-btn {
  display: inline-flex;
  align-items: center;
  padding: .35rem 1rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 4px;
  color: #ccc;
  font-size: .825rem;
  font-weight: 500;
  transition: all .2s;
}
.ota-btn:hover {
  background: rgba(212,175,55,0.1);
  border-color: var(--gold);
  color: var(--gold);
}
.ota-btn-sm {
  display: inline-block;
  padding: .2rem .75rem;
  background: rgba(212,175,55,0.08);
  border: 1px solid var(--border);
  border-radius: 4px;
  color: #ccc;
  font-size: .8rem;
  transition: .2s;
}
.ota-btn-sm:hover { background: rgba(212,175,55,0.15); color: var(--gold); }

/* ============================================
   FEATURES STRIP
   ============================================ */
.features-strip { background: var(--dark3); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.feature-card {
  padding: 1.5rem 1rem;
  border-radius: var(--radius);
  transition: .3s;
}
.feature-card:hover { background: rgba(212,175,55,0.05); }
.feature-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(212,175,55,0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.3rem;
}
.feature-title { font-size: .9rem; font-weight: 600; color: #fff; font-family: 'Montserrat', sans-serif; }
.feature-desc { font-size: .78rem; color: var(--text-muted); margin: 0; }

/* ============================================
   ROOM CARDS
   ============================================ */
.room-card {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all .3s;
}
.room-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(212,175,55,0.1);
  border-color: rgba(212,175,55,0.4);
}
.room-card-img { position: relative; height: 200px; overflow: hidden; }
.room-card-img img { width: 100%; height: 100%; object-fit: cover; transition: .4s; }
.room-card:hover .room-card-img img { transform: scale(1.05); }
.room-placeholder {
  height: 200px;
  background: linear-gradient(135deg, #1a1a1a, #242424);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 3rem;
}
.room-category-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--gold);
  color: #000;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 3px;
}
.room-card-body { padding: 1.25rem; }
.room-card-title { font-size: 1.1rem; font-family: 'Cormorant Garamond', serif; color: #fff; }
.room-desc { color: var(--text-muted); font-size: .8rem; margin-bottom: .5rem; }
.room-price { font-size: 1.4rem; font-weight: 700; color: var(--gold); font-family: 'Cormorant Garamond', serif; }
.room-price-label { font-size: .75rem; color: var(--text-muted); }

/* Room list (rooms.php) */
.room-list-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--dark3);
  transition: .3s;
}
.room-list-item:hover { box-shadow: 0 15px 40px rgba(212,175,55,0.08); border-color: rgba(212,175,55,0.35); }
.room-list-img { position: relative; min-height: 280px; overflow: hidden; }
.room-list-img img { object-fit: cover; transition: .4s; }
.room-list-item:hover .room-list-img img { transform: scale(1.03); }
.room-placeholder-lg {
  min-height: 280px;
  background: linear-gradient(135deg, #1a1a1a, #242424);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: var(--gold); font-size: 4rem; gap: .5rem;
}
.room-placeholder-lg p { font-size: 1rem; color: var(--text-muted); margin: 0; }
.room-category-badge-lg {
  position: absolute; top: 16px; left: 16px;
  background: var(--gold); color: #000;
  font-size: .75rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  padding: 4px 14px; border-radius: 3px;
}
.room-list-body { background: var(--dark3); }
.room-price-lg { font-size: 2rem; font-weight: 700; color: var(--gold); font-family: 'Cormorant Garamond', serif; }
.room-meta span { font-size: .825rem; color: var(--text-muted); }
.amenities-preview { }
.amenity-chip {
  font-size: .75rem;
  padding: .25rem .7rem;
  background: rgba(212,175,55,0.08);
  border: 1px solid var(--border);
  border-radius: 100px;
  color: #ccc;
}

/* Room detail */
.room-placeholder-xl {
  min-height: 400px;
  background: linear-gradient(135deg, #1a1a1a, #242424);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: var(--gold); font-size: 5rem;
}
.amenity-row {
  display: flex;
  align-items: center;
  padding: .5rem .75rem;
  border-radius: 6px;
  font-size: .825rem;
  margin-bottom: 4px;
  border: 1px solid transparent;
}
.amenity-yes { background: rgba(212,175,55,0.06); border-color: rgba(212,175,55,0.15); color: #ccc; }
.amenity-no  { opacity: .4; color: #666; }

/* Booking sidebar */
.booking-card {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.booking-meta-list { list-style: none; padding: 0; margin: 0; }
.booking-meta-list li { padding: .35rem 0; font-size: .85rem; color: var(--text-muted); }
.ota-sidebar { background: var(--dark3); border: 1px solid var(--border); }

/* ============================================
   STAT CARDS
   ============================================ */
.stat-card {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: .3s;
}
.stat-card:hover { border-color: rgba(212,175,55,0.4); transform: translateY(-3px); }
.stat-number { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; color: var(--gold); }
.stat-label { color: var(--text-muted); font-size: .85rem; }

/* Why us list */
.why-us-list { list-style: none; padding: 0; }
.why-us-list li { padding: .4rem 0; color: #ccc; font-size: .875rem; }

/* ============================================
   NEARBY PLACES
   ============================================ */
.place-card-link { text-decoration: none; color: inherit; display: block; }
.place-card {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: .3s;
}
.place-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(212,175,55,0.1);
  border-color: rgba(212,175,55,0.35);
}
.place-card img { height: 200px; width: 100%; object-fit: cover; transition: .4s; }
.place-card:hover img { transform: scale(1.05); }
.place-placeholder { height: 200px; background: var(--dark2); display:flex;align-items:center;justify-content:center;color:var(--gold);font-size:3rem; }
.place-card-body { padding: 1.25rem; }
.place-distance { font-size: .75rem; color: var(--gold); background: rgba(212,175,55,0.08); padding: 2px 8px; border-radius: 3px; display: inline-block; margin-bottom: .5rem; }
.place-name { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; color: #fff; margin-bottom: .4rem; }
.place-desc { font-size: .825rem; color: var(--text-muted); }
.place-cta { font-size: .8rem; color: var(--gold); font-weight: 500; }

/* Place wide card (nearby-places.php) */
.place-card-wide {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: .3s;
}
.place-card-wide:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(212,175,55,0.08); border-color: rgba(212,175,55,.35); }
.place-img-wrap { overflow: hidden; height: 220px; }
.place-img-wrap img { width:100%; height:100%; object-fit:cover; transition:.4s; }
.place-card-wide:hover .place-img-wrap img { transform: scale(1.04); }
.place-placeholder-md { height:220px; background:var(--dark2);display:flex;align-items:center;justify-content:center;color:var(--gold);font-size:3.5rem; }
.place-wide-body { }
.place-wide-name { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: #fff; margin-bottom: .4rem; }
.place-cta-btn { color: var(--gold); font-size: .85rem; font-weight: 500; }
.place-footer { margin-top: 1rem; }

/* Place detail */
.place-placeholder-xl { min-height:400px;background:linear-gradient(135deg,#1a1a1a,#242424);display:flex;flex-direction:column;align-items:center;justify-content:center;color:var(--gold);font-size:5rem; }
.place-placeholder-xl p { font-size:1rem;color:var(--text-muted);margin:0; }
.place-booking-box { background:var(--dark3);border:1px solid var(--border);border-radius:var(--radius); }
.other-place-link { display:flex;align-items:center;gap:.75rem;padding:.75rem;background:var(--dark3);border:1px solid var(--border);border-radius:6px;color:#ccc;margin-bottom:.5rem;transition:.2s; }
.other-place-link:hover { border-color:rgba(212,175,55,.3);color:var(--gold); }
.other-place-thumb { width:60px;height:60px;border-radius:6px;background:var(--dark2);display:flex;align-items:center;justify-content:center;color:var(--gold);flex-shrink:0; }
.place-description p { color: var(--text-muted); margin-bottom: 1rem; }

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-img-wrap { position: relative; display: inline-block; width: 100%; }
.about-img-wrap img { border-radius: var(--radius); }
.about-img-placeholder { height:400px;background:var(--dark3);border-radius:var(--radius);border:1px solid var(--border);display:flex;align-items:center;justify-content:center; }
.about-experience-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000;
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 10px 30px rgba(212,175,55,0.3);
}
.exp-num { display:block; font-size:2.5rem; font-weight:700; font-family:'Cormorant Garamond',serif; }
.exp-text { font-size:.7rem; text-transform:uppercase; letter-spacing:1px; }
.about-stat { padding: .75rem; background:rgba(212,175,55,0.05); border:1px solid var(--border); border-radius:6px; }

/* Mission cards */
.mission-card { background:var(--dark3);border:1px solid var(--border);border-radius:var(--radius);transition:.3s; }
.mission-card:hover { border-color:rgba(212,175,55,.35);transform:translateY(-3px); }
.mission-icon { width:60px;height:60px;border-radius:50%;background:rgba(212,175,55,0.1);display:inline-flex;align-items:center;justify-content:center;color:var(--gold);font-size:1.4rem;margin:0 auto; }

/* Facility cards */
.facility-card { background:var(--dark3);border:1px solid var(--border);border-radius:var(--radius);transition:.3s; }
.facility-card:hover { border-color:rgba(212,175,55,.35);transform:translateY(-3px); }
.facility-icon { width:56px;height:56px;border-radius:50%;background:rgba(212,175,55,0.1);display:inline-flex;align-items:center;justify-content:center;color:var(--gold);font-size:1.2rem;margin:0 auto; }

/* Location list */
.location-list { list-style:none;padding:0; }
.location-list li { padding:.4rem 0;font-size:.875rem;color:#ccc;border-bottom:1px solid rgba(255,255,255,0.04); }

/* Map */
.map-container { border:1px solid var(--border); }
.map-container iframe { display:block; }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-info-card { background:var(--dark3);border:1px solid var(--border);border-radius:var(--radius); }
.contact-info-item { display:flex;align-items:flex-start;gap:1rem;padding:.6rem 0; }
.contact-icon { width:38px;height:38px;border-radius:50%;background:rgba(212,175,55,0.1);display:flex;align-items:center;justify-content:center;color:var(--gold);flex-shrink:0;font-size:.95rem; }
.contact-form-card { background:var(--dark3);border:1px solid var(--border);border-radius:var(--radius); }

/* ============================================
   BOOKING PAGE
   ============================================ */
.booking-form-card { background:var(--dark3);border:1px solid var(--border);border-radius:var(--radius); }
.booking-sidebar-info { background:var(--dark3);border:1px solid var(--border);border-radius:var(--radius); }
.booking-info-list { list-style:none;padding:0; }
.booking-info-list li { padding:.35rem 0;font-size:.85rem;color:#ccc; }
.mini-room-card { background:var(--dark3);border:1px solid var(--border);border-radius:6px;transition:.2s; }
.mini-room-card:hover { border-color:rgba(212,175,55,.3); }
.mini-room-icon { width:40px;height:40px;border-radius:50%;background:rgba(212,175,55,0.1);display:flex;align-items:center;justify-content:center;flex-shrink:0; }

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1204 50%, #0a0a0a 100%);
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(212,175,55,0.12) 0%, transparent 70%);
}
.cta-section .container { width:100%; }
.cta-overlay { display:none; }
.cta-title { font-family:'Cormorant Garamond',serif;font-size:clamp(1.8rem,4vw,2.8rem); }

/* ============================================
   FOOTER
   ============================================ */
.sky-footer {
  background: #080808;
  border-top: 1px solid var(--border);
}
.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: .25rem;
}
.footer-heading {
  color: var(--gold);
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  font-family: 'Montserrat', sans-serif;
}
.footer-links { list-style:none;padding:0;margin:0; }
.footer-links li { margin-bottom: .4rem; }
.footer-links a { color: #888;font-size:.85rem;transition:.2s; }
.footer-links a:hover { color: var(--gold); padding-left: 4px; }

.footer-contact-list { list-style:none;padding:0;margin:0; }
.footer-contact-list li { display:flex;align-items:flex-start;gap:.75rem;margin-bottom:.75rem;font-size:.85rem;color:#888; }
.footer-contact-list i { margin-top:3px;flex-shrink:0;width:14px;text-align:center; }
.footer-contact-list a { color:#888; }
.footer-contact-list a:hover { color:var(--gold); }

.social-btn {
  width:36px;height:36px;
  border-radius:50%;
  background:rgba(212,175,55,0.1);
  border:1px solid var(--border);
  display:inline-flex;align-items:center;justify-content:center;
  color:var(--gold);font-size:.875rem;
  transition:.2s;
}
.social-btn:hover { background:var(--gold);color:#000;transform:translateY(-2px); }

.footer-divider { border-color:var(--border); }

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 1.5rem;
  z-index: 999;
  background: #25D366;
  color: #fff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all .3s;
  text-decoration: none;
  overflow: hidden;
}
.whatsapp-float .whatsapp-label {
  position: absolute;
  right: 64px;
  background: #25D366;
  color: #fff;
  white-space: nowrap;
  padding: .4rem 1rem;
  border-radius: 100px;
  font-size: .8rem;
  font-weight: 600;
  opacity: 0;
  transform: translateX(10px);
  transition: .3s;
  pointer-events: none;
}
.whatsapp-float:hover { width: auto;border-radius:100px;padding:0 1.25rem 0 .9rem;gap:.5rem;color:#fff; }
.whatsapp-float:hover .whatsapp-label { opacity:1;transform:translateX(0);position:static; }

/* ============================================
   ALERTS
   ============================================ */
.alert-success { background:rgba(25,135,84,0.12);border-color:rgba(25,135,84,0.3);color:#75e6a0; }
.alert-danger  { background:rgba(220,53,69,0.12);border-color:rgba(220,53,69,0.3);color:#ff8080; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .about-experience-badge { right: 0; bottom: -15px; }
  .room-list-img { min-height: 220px; }
  .whatsapp-float { bottom: 1rem; right: 1rem; }
}

@media (max-width: 576px) {
  .hero-info-bar { display: none !important; }
  .hero-actions .btn { width: 100%; }
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: #333; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-dark); }
