/* ==================================================
   JP PARK - PREMIUM BOUTIQUE HOTEL
   Stylesheet
================================================== */

/* ---------- DESIGN TOKENS ---------- */
:root {
  /* Primary browns */
  --brown-darkest: #310A03;
  --brown-mid: #765229;
  --brown-deep: #60441D;
  --brown-body: #4A2D12;

  /* Golds */
  --gold: #D4A95A;
  --gold-antique: #C9973E;
  --gold-light: #E5BC6A;

  /* Dark section text */
  --dk-heading: #F8F5F2;
  --dk-body: #E8E0D6;
  --dk-secondary: #CFC2B3;
  --dk-muted: #A89C8D;

  /* Light section text */
  --lt-heading: #310A03;
  --lt-body: #4A2D12;
  --lt-secondary: #765229;

  /* Neutrals */
  --cream: #FBF8F3;
  --cream-2: #F3ECE0;
  --white: #FFFFFF;

  --shadow-soft: 0 14px 40px rgba(49, 10, 3, 0.12);
  --shadow-strong: 0 24px 60px rgba(49, 10, 3, 0.28);
  --radius: 16px;

  --font-head: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;
}

/* ---------- BASE ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  background-color: var(--brown-darkest);
}

body {
  font-family: var(--font-body);
  color: var(--lt-body);
  background-color: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
  font-weight: 400;
}

h1, h2, h3, h4, h5, h6 { font-family: var(--font-head); font-weight: 700; line-height: 1.25; }
a { text-decoration: none; transition: all .3s ease; }
img { max-width: 100%; display: block; }
section { position: relative; }

/* ---------- SECTION HELPERS ---------- */
.section { padding: 100px 0; }
.section-head { max-width: 760px; margin: 0 auto 56px; }
.section-label {
  display: inline-block; font-size: .82rem; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold-antique); margin-bottom: 14px;
  position: relative; padding-bottom: 8px;
}
.section-label::after {
  content: ""; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 44px; height: 2px; background: var(--gold);
}
.about-section .section-label::after,
.col-lg-6 .section-label::after { left: 0; transform: none; }
.section-label.gold { color: var(--gold); }
.section-title { font-size: clamp(2rem, 4vw, 3.1rem); margin-bottom: 18px; }
.section-sub { font-size: 1.05rem; color: var(--lt-secondary); }
.text-dark-heading { color: var(--lt-heading); }
.text-light-heading { color: var(--dk-heading); }
.text-light-body { color: var(--dk-body); }

.light-section { background: var(--cream); }
.light-section:nth-of-type(even) { background: var(--cream-2); }
.dark-section {
  background:
    linear-gradient(rgba(49,10,3,.96), rgba(49,10,3,.96)),
    radial-gradient(circle at top right, rgba(118,82,41,.5), transparent 60%);
  background-color: var(--brown-darkest);
}

/* ---------- BUTTONS ---------- */
.btn { font-family: var(--font-body); font-weight: 600; border-radius: 50px; padding: 11px 26px; letter-spacing: .3px; border: none; transition: all .35s ease; }
.btn i { margin-right: 6px; }
.btn-gold { background: var(--gold); color: var(--brown-darkest); box-shadow: 0 8px 22px rgba(212,169,90,.35); }
.btn-gold:hover { background: var(--gold-light); color: var(--brown-darkest); transform: translateY(-3px); box-shadow: 0 12px 30px rgba(212,169,90,.5); }
.btn-outline-light-gold { background: rgba(255,255,255,.08); color: var(--dk-heading); border: 1.5px solid var(--gold); backdrop-filter: blur(8px); }
.btn-outline-light-gold:hover { background: var(--gold); color: var(--brown-darkest); transform: translateY(-3px); }
.btn-lg { padding: 14px 34px; font-size: 1rem; }

/* ---------- NAVBAR (Glassmorphism) ---------- */
header.fixed-top{
  position: sticky;
  position: -webkit-sticky;
}
.glass-nav {
  padding: 16px 0; transition: all .4s ease;
  background: rgba(49, 10, 3, 0.92);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(212,169,90,.12);
}
.glass-nav.scrolled {
  padding: 10px 0; background: rgba(49, 10, 3, 0.92);
  box-shadow: 0 8px 30px rgba(0,0,0,.25);
}
.navbar-brand { gap: 12px; }
.brand-mark {
  width: 44px; height: 44px; display: grid; place-items: center; border-radius: 12px;
  background: var(--gold); color: var(--brown-darkest); font-size: 1.4rem;
}
footer .brand-mark,
header .brand-mark{
  background: none;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-family: var(--font-head); font-size: 1.45rem; font-weight: 700; color: var(--dk-heading); }
.brand-tag { font-size: .68rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-light); }

.nav-links { gap: 4px; }
.nav-links .nav-link {
  color: var(--dk-secondary); font-weight: 500; font-size: .94rem; padding: 8px 14px !important;
  position: relative;
}
.nav-links .nav-link::after {
  content: ""; position: absolute; left: 50%; bottom: 2px; transform: translateX(-50%);
  width: 0; height: 2px; background: var(--gold); transition: width .3s ease;
}
.nav-links .nav-link:hover, .nav-links .nav-link.active { color: var(--gold-light); }
.nav-links .nav-link:hover::after, .nav-links .nav-link.active::after { width: 60%; }

.nav-actions { display: flex; gap: 10px; align-items: center; }
.btn-call { background: rgba(255,255,255,.1); color: var(--dk-heading); border: 1px solid rgba(212,169,90,.4); padding: 8px 18px; font-size: .88rem; }
.btn-call:hover { background: var(--gold); color: var(--brown-darkest); }
.btn-whatsapp { background: #25D366; color: #fff; padding: 8px 18px; font-size: .88rem; }
.btn-whatsapp:hover { background: #1da851; color: #fff; transform: translateY(-2px); }

.navbar-toggler { border: none; color: var(--gold-light); font-size: 1.8rem; box-shadow: none !important; }

/* ---------- HERO ---------- */
.hero { height: 100vh; min-height: 640px; display: flex; align-items: center; position: relative; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  transform: scale(1.08); animation: heroZoom 18s ease-in-out infinite alternate;
}
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1.18); } }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(49,10,3,.88), rgba(49,10,3,.55) 60%, rgba(49,10,3,.4));
}
.hero-content { position: relative; z-index: 2; }
.hero-inner { max-width: 720px; }
.hero-label {
  display: inline-block; color: var(--gold-light); letter-spacing: 3px; text-transform: uppercase;
  font-size: .85rem; font-weight: 600; margin-bottom: 18px; padding: 8px 18px;
  border: 1px solid rgba(212,169,90,.4); border-radius: 50px; background: rgba(255,255,255,.06);
  backdrop-filter: blur(6px);
}
.hero-title { font-size: clamp(3.2rem, 9vw, 6rem); color: var(--dk-heading); line-height: 1; margin-bottom: 10px; }
.hero-tagline { font-family: var(--font-head); font-style: italic; font-size: clamp(1.3rem, 3vw, 2rem); color: var(--gold); margin-bottom: 22px; }
.hero-desc { color: var(--dk-body); font-size: 1.08rem; max-width: 600px; margin-bottom: 34px; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

.scroll-indicator {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--dk-secondary);
}
.mouse { width: 26px; height: 42px; border: 2px solid var(--gold); border-radius: 20px; display: flex; justify-content: center; padding-top: 7px; }
.wheel { width: 4px; height: 8px; background: var(--gold); border-radius: 4px; animation: wheel 1.6s ease-in-out infinite; }
@keyframes wheel { 0% { opacity: 1; transform: translateY(0); } 100% { opacity: 0; transform: translateY(14px); } }
.scroll-text { font-size: .72rem; letter-spacing: 2px; text-transform: uppercase; }

/* ---------- ABOUT ---------- */
.about-image-wrap { position: relative; }
.about-image { border-radius: var(--radius); box-shadow: var(--shadow-strong); width: 100%; height: 540px; object-fit: cover; }
.exp-badge {
  position: absolute; bottom: -24px; right: -10px; background: var(--gold); color: var(--brown-darkest);
  border-radius: var(--radius); padding: 20px 26px; text-align: center; box-shadow: var(--shadow-soft);
}
.exp-num { display: block; font-family: var(--font-head); font-size: 2.6rem; font-weight: 800; line-height: 1; }
.exp-num::after { content: "+"; }
.exp-label { font-size: .78rem; font-weight: 600; text-transform: uppercase; letter-spacing: .5px; }
.since-badge {
  position: absolute; top: 20px; left: 20px; background: rgba(49,10,3,.85); color: var(--gold-light);
  padding: 8px 18px; border-radius: 50px; font-size: .8rem; font-weight: 600; letter-spacing: 1px;
  backdrop-filter: blur(6px); border: 1px solid rgba(212,169,90,.4);
}
.lead-text { font-size: 1.12rem; color: var(--lt-body); margin-bottom: 22px; }
.about-subtitle { font-size: 1.25rem; color: var(--brown-mid); margin: 22px 0 8px; }
.body-text { color: var(--lt-secondary); margin-bottom: 10px; }
.about-stats { display: flex; gap: 16px; margin-top: 34px; flex-wrap: wrap; }
.stat-item { flex: 1; min-width: 120px; background: var(--white); border-radius: 14px; padding: 20px; text-align: center; box-shadow: var(--shadow-soft); border-bottom: 3px solid var(--gold); }
.stat-num { font-family: var(--font-head); font-size: 2rem; font-weight: 800; color: var(--brown-deep); }
.stat-text { display: block; font-size: .82rem; color: var(--lt-secondary); margin-top: 4px; }

/* ---------- ROOMS ---------- */
.room-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden; height: 100%;
  box-shadow: var(--shadow-soft); transition: transform .4s ease, box-shadow .4s ease;
}
.room-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-strong); }
.room-img-wrap { position: relative; overflow: hidden; height: 250px; }
.room-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.room-card:hover .room-img-wrap img { transform: scale(1.1); }
.room-occupancy {
  position: absolute; top: 14px; right: 14px; background: rgba(49,10,3,.82); color: var(--gold-light);
  padding: 6px 14px; border-radius: 50px; font-size: .8rem; font-weight: 600; backdrop-filter: blur(6px);
}
.room-body { padding: 26px 24px 28px; }
.room-name { font-size: 1.5rem; color: var(--lt-heading); margin-bottom: 10px; }
.room-desc { color: var(--lt-secondary); font-size: .95rem; margin-bottom: 18px; }
.room-amenities { list-style: none; margin-bottom: 22px; }
.room-amenities li { font-size: .9rem; color: var(--lt-body); padding: 4px 0; display: flex; align-items: center; gap: 8px; }
.room-amenities i { color: var(--gold-antique); font-weight: 700; }

.common-amenities { margin-top: 60px; text-align: center; padding: 40px; border: 1px solid rgba(212,169,90,.25); border-radius: var(--radius); background: rgba(212,169,90,.05); }
.common-title { color: var(--gold); font-size: 1.5rem; margin-bottom: 24px; }
.common-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 30px; }
.common-grid span { color: var(--dk-body); font-size: .92rem; display: inline-flex; align-items: center; gap: 8px; }
.common-grid i { color: var(--gold); font-size: 1.1rem; }

/* ---------- AMENITIES ---------- */
.amenity-card {
  background: var(--white); border-radius: var(--radius); padding: 30px 18px; text-align: center; height: 100%;
  box-shadow: var(--shadow-soft); transition: all .4s ease; border-bottom: 3px solid transparent;
}
.amenity-card:hover { transform: translateY(-8px); border-bottom-color: var(--gold); }
.amenity-card i { font-size: 2.4rem; color: var(--gold-antique); margin-bottom: 14px; transition: transform .4s ease; }
.amenity-card:hover i { transform: scale(1.15); }
.amenity-card h3 { font-size: 1rem; color: var(--lt-heading); font-family: var(--font-body); font-weight: 600; }

.languages-wrap { margin-top: 54px; text-align: center; }
.languages-title { color: var(--brown-deep); font-size: 1.4rem; margin-bottom: 20px; }
.languages-list { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }
.languages-list span {
  background: var(--brown-darkest); color: var(--gold-light); padding: 10px 26px; border-radius: 50px;
  font-weight: 500; font-size: .92rem; box-shadow: var(--shadow-soft);
}

/* ---------- DINING (Parallax) ---------- */
.dining-section { background-size: cover; background-position: center; }
.parallax { background-attachment: fixed; }
.dining-overlay { position: absolute; inset: 0; background: linear-gradient(rgba(49,10,3,.9), rgba(49,10,3,.93)); }
.dining-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(212,169,90,.18); border-radius: var(--radius);
  overflow: hidden; height: 100%; backdrop-filter: blur(8px); transition: all .4s ease;
}
.dining-card:hover { transform: translateY(-8px); border-color: var(--gold); }
.dining-img { height: 230px; overflow: hidden; }
.dining-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.dining-card:hover .dining-img img { transform: scale(1.1); }
.dining-info { padding: 24px; }
.dining-info h3 { color: var(--gold-light); font-size: 1.3rem; margin-bottom: 10px; }
.dining-info p { color: var(--dk-body); font-size: .94rem; }

/* ---------- GALLERY (Masonry) ---------- */
.masonry-gallery { columns: 3; column-gap: 18px; }
.gallery-item {
  position: relative; display: block; margin-bottom: 18px; border-radius: var(--radius); overflow: hidden;
  break-inside: avoid; box-shadow: var(--shadow-soft);
}
.gallery-item img { width: 100%; transition: transform .6s ease; }
.gallery-item.tall img { min-height: 420px; object-fit: cover; }
.gallery-item:hover img { transform: scale(1.12); }
.gallery-item::before { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent 50%, rgba(49,10,3,.7)); opacity: 0; transition: opacity .4s ease; }
.gallery-item:hover::before { opacity: 1; }
.gallery-cap {
  position: absolute; bottom: 16px; left: 16px; color: var(--gold-light); font-weight: 600; z-index: 2;
  opacity: 0; transform: translateY(10px); transition: all .4s ease; display: flex; align-items: center; gap: 8px;
}
.gallery-item:hover .gallery-cap { opacity: 1; transform: translateY(0); }

/* ---------- ATTRACTIONS ---------- */
.attraction-card { background: rgba(255,255,255,.05); border: 1px solid rgba(212,169,90,.16); border-radius: var(--radius); overflow: hidden; height: 100%; transition: all .4s ease; }
.attraction-card:hover { transform: translateY(-8px); border-color: var(--gold); }
.attraction-img { position: relative; height: 220px; overflow: hidden; }
.attraction-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.attraction-card:hover .attraction-img img { transform: scale(1.1); }
.distance-badge { position: absolute; bottom: 14px; left: 14px; background: var(--gold); color: var(--brown-darkest); padding: 6px 14px; border-radius: 50px; font-size: .82rem; font-weight: 600; }
.attraction-body { padding: 22px 24px; }
.attraction-body h3 { color: var(--gold-light); font-size: 1.3rem; margin-bottom: 8px; }
.attraction-body p { color: var(--dk-body); font-size: .92rem; }

/* ---------- WHY CHOOSE US ---------- */
.feature-card { background: var(--white); border-radius: var(--radius); padding: 32px 28px; height: 100%; box-shadow: var(--shadow-soft); transition: all .4s ease; border-left: 3px solid transparent; }
.feature-card:hover { transform: translateY(-6px); border-left-color: var(--gold); box-shadow: var(--shadow-strong); }
.feature-icon { width: 60px; height: 60px; display: grid; place-items: center; border-radius: 14px; background: linear-gradient(135deg, var(--gold), var(--gold-antique)); color: var(--brown-darkest); font-size: 1.6rem; margin-bottom: 18px; }
.feature-card h3 { font-size: 1.25rem; color: var(--lt-heading); margin-bottom: 10px; }
.feature-card p { color: var(--lt-secondary); font-size: .94rem; }

/* ---------- TESTIMONIALS ---------- */
.testimonial-swiper { max-width: 800px; margin: 0 auto; padding-bottom: 60px; }
.testimonial-card { background: rgba(255,255,255,.06); border: 1px solid rgba(212,169,90,.2); border-radius: var(--radius); padding: 48px 44px 40px; text-align: center; position: relative; backdrop-filter: blur(8px); }
.quote-icon { position: absolute; top: 22px; left: 30px; font-size: 3.4rem; color: rgba(212,169,90,.22); }
.stars { color: var(--gold); font-size: 1.05rem; margin-bottom: 18px; letter-spacing: 3px; }
.testimonial-card blockquote { color: var(--dk-body); font-size: 1.12rem; font-style: italic; line-height: 1.8; margin-bottom: 28px; }
.testimonial-author { display: flex; align-items: center; justify-content: center; gap: 14px; }
.testimonial-author img { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold); }
.testimonial-author div { text-align: left; }
.author-name { display: block; font-family: var(--font-head); font-weight: 700; color: var(--gold-light); font-size: 1.05rem; }
.author-role { font-size: .82rem; color: var(--dk-muted); }
.testimonial-swiper .swiper-pagination-bullet { background: var(--dk-muted); opacity: .6; }
.testimonial-swiper .swiper-pagination-bullet-active { background: var(--gold); opacity: 1; width: 26px; border-radius: 6px; }

/* ---------- CONTACT ---------- */
.contact-info { background: var(--white); border-radius: var(--radius); padding: 36px 30px; box-shadow: var(--shadow-soft); height: 100%; }
.contact-item { display: flex; gap: 16px; margin-bottom: 26px; }
.contact-item:last-child { margin-bottom: 0; }
.contact-ic { flex-shrink: 0; width: 48px; height: 48px; display: grid; place-items: center; border-radius: 12px; background: var(--brown-darkest); color: var(--gold); font-size: 1.2rem; }
.contact-item h3 { font-size: 1.05rem; color: var(--lt-heading); margin-bottom: 4px; }
.contact-item p, .contact-item a { color: var(--lt-secondary); font-size: .95rem; }
.contact-item a:hover { color: var(--gold-antique); }

.contact-form { background: var(--white); border-radius: var(--radius); padding: 36px 30px; box-shadow: var(--shadow-soft); }
.form-label { font-weight: 500; color: var(--lt-body); font-size: .9rem; margin-bottom: 6px; }
.form-control { border: 1.5px solid var(--cream-2); border-radius: 10px; padding: 12px 16px; font-size: .95rem; background: var(--cream); }
.form-control:focus { border-color: var(--gold); box-shadow: 0 0 0 .2rem rgba(212,169,90,.2); background: var(--white); }
.form-feedback { font-weight: 500; margin: 0; }
.form-feedback.success { color: #2e7d32; }
.form-feedback.error { color: #c62828; }

.map-wrap { margin-top: 50px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-soft); line-height: 0; }

/* ---------- FOOTER ---------- */
.footer { background: var(--brown-darkest); color: var(--dk-secondary); padding: 70px 0 0; }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.footer-brand .brand-name { color: var(--dk-heading); }
.footer-about { font-size: .92rem; color: var(--dk-secondary); margin-bottom: 20px; }
.social-links { display: flex; gap: 12px; }
.social-links a { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 10px; background: rgba(255,255,255,.07); color: var(--gold-light); font-size: 1.05rem; }
.social-links a:hover { background: var(--gold); color: var(--brown-darkest); transform: translateY(-3px); }
.footer-title { color: var(--dk-heading); font-size: 1.15rem; margin-bottom: 18px; }
.footer-links, .footer-contact { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: var(--dk-secondary); font-size: .92rem; }
.footer-links a:hover { color: var(--gold-light); padding-left: 6px; }
.footer-contact li { font-size: .9rem; margin-bottom: 14px; display: flex; gap: 10px; color: var(--dk-secondary); }
.footer-contact i { color: var(--gold); margin-top: 3px; }
.footer-contact a { color: var(--dk-secondary); }
.footer-contact a:hover { color: var(--gold-light); }
.footer-bottom { border-top: 1px solid rgba(212,169,90,.15); margin-top: 50px; padding: 24px 0; text-align: center; }
.footer-bottom p { font-size: .85rem; color: var(--dk-muted); margin: 0; }

/* ---------- FLOATING BUTTONS ---------- */
.float-btn { position: fixed; right: 24px; z-index: 999; width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; color: #fff; font-size: 1.5rem; box-shadow: 0 8px 24px rgba(0,0,0,.3); }
.float-whatsapp { bottom: 26px; background: #25D366; }
.float-call { bottom: 94px; background: var(--gold-antique); color: var(--brown-darkest); }
.float-btn:hover { transform: scale(1.1); color: #fff; }
.float-call:hover { color: var(--brown-darkest); }
.pulse::before { content: ""; position: absolute; inset: 0; border-radius: 50%; background: #25D366; animation: pulse 2s infinite; z-index: -1; }
@keyframes pulse { 0% { transform: scale(1); opacity: .7; } 100% { transform: scale(1.8); opacity: 0; } }

.scroll-top { position: fixed; left: 24px; bottom: 26px; z-index: 999; width: 48px; height: 48px; border-radius: 50%; border: none; background: var(--brown-darkest); color: var(--gold); font-size: 1.2rem; box-shadow: var(--shadow-soft); opacity: 0; visibility: hidden; transform: translateY(20px); transition: all .4s ease; }
.scroll-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top:hover { background: var(--gold); color: var(--brown-darkest); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1199px) {
  .glass-nav { background: rgba(49,10,3,.95); }
  .navbar-collapse { margin-top: 16px; padding: 16px 0; border-top: 1px solid rgba(212,169,90,.15); }
  .nav-links { gap: 0; margin-bottom: 16px; }
  .nav-links .nav-link { padding: 10px 4px !important; }
  .nav-actions.d-xl-none { display: flex; gap: 12px; }
  .nav-actions.d-xl-none .btn { flex: 1; justify-content: center; }
}
@media (max-width: 991px) {
  .masonry-gallery { columns: 2; }
  .about-image { height: 440px; }
  .parallax { background-attachment: scroll; }
}
@media (max-width: 767px) {
  .section { padding: 70px 0; }
  .hero { min-height: 600px; }
  .hero-buttons .btn { flex: 1; justify-content: center; }
  .about-stats { flex-direction: column; }
  .about-stats .stat-item { width: 100%; }
}
@media (max-width: 575px) {
  .masonry-gallery { columns: 1; }
  .gallery-item.tall img { min-height: auto; }
  .testimonial-card { padding: 40px 24px 32px; }
  .testimonial-card blockquote { font-size: 1rem; }
  .float-btn { width: 50px; height: 50px; font-size: 1.3rem; }
  .common-amenities { padding: 28px 18px; }
  .exp-badge { right: 10px; padding: 16px 20px; }
}
