/* ==========================================================================
   Travel Box Hotels — Premium Luxury Stylesheet
   Author: Senior UI/UX Designer
   Sections: Variables, Base, Buttons, Navbar, Hero, B2B Banner,
             Sections/Headings, Hotel Cards, Packages, Gallery, Details,
             Forms, Footer, Utilities, Animations
   ========================================================================== */

/* ---------- Design Tokens ---------- */
:root {
  /* Color ramps */
  --primary-50:  #eef7ff;
  --primary-100: #d9ecff;
  --primary-300: #8fc3ff;
  --primary-500: #1e63d6;
  --primary-600: #0f4fb0;
  --primary-700: #0a3d8c;

  --gold-100: #f7ecc6;
  --gold-300: #e3c46a;
  --gold-500: #c69749;   /* signature luxury gold */
  --gold-600: #a87a2e;
  --gold-700: #7a5720;

  --accent-500: #0ea5a4;
  --accent-600: #0b7d7c;

  --success-500: #2e9e5b;
  --warning-500: #e0a106;
  --error-500:   #d23b3b;

  --neutral-0:  #ffffff;
  --neutral-50: #f7f8fa;
  --neutral-100:#eef0f4;
  --neutral-200:#e1e4ea;
  --neutral-300:#c9cdd6;
  --neutral-400:#9aa1ad;
  --neutral-500:#6b7280;
  --neutral-700:#374151;
  --neutral-800:#1f2733;
  --neutral-900:#0c1320;

  /* Typography */
  --font-heading: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing scale (8px base) */
  --sp-1: 8px;
  --sp-2: 16px;
  --sp-3: 24px;
  --sp-4: 32px;
  --sp-5: 40px;
  --sp-6: 64px;
  --sp-7: 80px;

  /* Effects */
  --radius-sm: 10px;
  --radius:    18px;
  --radius-lg: 28px;
  --shadow-sm: 0 4px 14px rgba(12,19,32,.08);
  --shadow:    0 14px 40px rgba(12,19,32,.14);
  --shadow-lg: 0 30px 80px rgba(12,19,32,.22);
  --gradient-gold: linear-gradient(135deg, var(--gold-500), var(--gold-300));
  --gradient-primary: linear-gradient(135deg, var(--primary-600), var(--primary-500));
  --gradient-dark: linear-gradient(160deg, var(--neutral-900), var(--neutral-800));
  --transition: .4s cubic-bezier(.22,.61,.36,1);
}

/* ---------- Base ---------- */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--neutral-700);
  background: var(--neutral-0);
  line-height: 1.6;
  overflow-x: hidden;
  font-size: 16px;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  color: var(--neutral-900);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.5px;
}

a { color: var(--primary-600); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-600); }

img { max-width: 100%; display: block; }

section { position: relative; }

::selection { background: var(--gold-300); color: var(--neutral-900); }

/* Custom scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--neutral-50); }
::-webkit-scrollbar-thumb { background: var(--gold-500); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-600); }

/* ---------- Layout helpers ---------- */
.section-pad { padding: var(--sp-7) 0; }
.section-pad-sm { padding: var(--sp-6) 0; }

.section-title {
  font-size: clamp(1.9rem, 4vw, 3rem);
  margin-bottom: 12px;
  position: relative;
}
.section-title span { color: var(--gold-600); }

.section-subtitle {
  color: var(--neutral-500);
  max-width: 640px;
  margin: 0 auto 48px;
  font-size: 1.05rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 2px;
  background: var(--gold-500);
  display: inline-block;
}

.text-gold { color: var(--gold-600) !important; }

/* ---------- Buttons ---------- */
.btn {
  font-family: var(--font-body);
  font-weight: 600;
  border-radius: 50px;
  padding: 12px 28px;
  border: none;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
}
.btn-lg { padding: 15px 36px; font-size: 1.05rem; }
.btn-sm { padding: 9px 20px; font-size: .9rem; }

.btn-gold {
  background: var(--gradient-gold);
  color: var(--neutral-900);
  box-shadow: 0 10px 30px rgba(198,151,73,.35);
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(198,151,73,.5);
  color: var(--neutral-900);
}

.btn-dark {
  background: var(--gradient-dark);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-dark:hover { transform: translateY(-3px); box-shadow: var(--shadow); color: #fff; }

.btn-outline-gold {
  background: transparent;
  border: 2px solid var(--gold-500);
  color: var(--gold-600);
}
.btn-outline-gold:hover { background: var(--gold-500); color: #fff; transform: translateY(-3px); }

.btn-outline-light {
  background: rgba(255,255,255,.08);
  border: 2px solid rgba(255,255,255,.6);
  color: #fff;
  backdrop-filter: blur(10px);
}
.btn-outline-light:hover { background: #fff; color: var(--neutral-900); transform: translateY(-3px); }

.btn i { transition: transform var(--transition); }
.btn:hover i { transform: translateX(4px); }

/* ---------- Navbar ---------- */
.navbar-travelbox {
  padding: 18px 0;
  background: transparent;
  transition: all var(--transition);
  z-index: 1030;
}
.navbar-travelbox.scrolled {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-sm);
  padding: 12px 0;
}
.navbar-travelbox .navbar-brand {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.6rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
}
.navbar-travelbox.scrolled .navbar-brand,
.navbar-travelbox.scrolled .nav-link { color: var(--neutral-800) !important; }
.navbar-travelbox .nav-link {
  color: rgba(255,255,255,.9) !important;
  font-weight: 500;
  margin: 0 4px;
  position: relative;
  padding: 6px 14px !important;
  border-radius: 50px;
  transition: all var(--transition);
}
.navbar-travelbox .nav-link::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 2px;
  height: 2px;
  background: var(--gold-500);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.navbar-travelbox .nav-link:hover,
.navbar-travelbox .nav-link.active { color: var(--gold-500) !important; }
.navbar-travelbox .nav-link:hover::after,
.navbar-travelbox .nav-link.active::after { transform: scaleX(1); }

.navbar-brand .brand-mark {
  width: 42px; height: 42px;
  background: var(--gradient-gold);
  border-radius: 12px;
  display: grid; place-items: center;
  color: var(--neutral-900);
  font-size: 1.3rem;
}
.navbar-brand .brand-text small {
  display: block;
  font-family: var(--font-body);
  font-size: .62rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-500);
  font-weight: 600;
  line-height: 1;
}

/* When navbar is NOT over hero (interior pages), start solid */
.navbar-solid {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-sm);
}
.navbar-solid .navbar-brand,
.navbar-solid .nav-link { color: var(--neutral-800) !important; }

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  color: #fff;
  overflow: hidden;
      padding-top: 87px;
    padding-bottom: 30px;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.1);
  animation: heroZoom 18s ease-in-out infinite alternate;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(10,15,30,.78) 0%, rgba(10,15,30,.45) 50%, rgba(10,15,30,.65) 100%);
}
@keyframes heroZoom { from { transform: scale(1.05); } to { transform: scale(1.18); } }

.hero-content { position: relative; z-index: 2; max-width: 760px; }
.hero-content .eyebrow { color: var(--gold-300); }
.hero-content .eyebrow::before { background: var(--gold-300); }
.hero h1 {
  color: #fff;
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 800;
  margin-bottom: 22px;
  text-shadow: 0 4px 30px rgba(0,0,0,.4);
}
.hero h1 span {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero p.lead {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: rgba(255,255,255,.92);
  margin-bottom: 36px;
  max-width: 560px;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-stats {
  display: flex; gap: 48px; margin-top: 56px;
  flex-wrap: wrap;
}
.hero-stat .num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold-300);
  line-height: 1;
}
.hero-stat .label {
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,.8);
}

/* Hero search bar */
.hero-search {
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: var(--radius);
  padding: 22px;
  margin-top: 48px;
  max-width: 880px;
}
.hero-search label {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,.8);
  margin-bottom: 4px;
}
.hero-search .form-control,
.hero-search .form-select {
  background: rgba(255,255,255,.95);
  border: none;
  border-radius: 10px;
}

/* ---------- B2B Banner ---------- */
.b2b-banner {
  background: var(--gradient-dark);
  border-radius: var(--radius-lg);
  padding: 26px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition);
  text-decoration: none;
}
.b2b-banner::before {
  content: "";
  position: absolute;
  top: -50%; right: -10%;
  width: 60%; height: 200%;
  background: radial-gradient(circle, rgba(198,151,73,.4), transparent 60%);
  animation: pulseGlow 5s ease-in-out infinite;
}
@keyframes pulseGlow { 0%,100% { opacity:.5; } 50% { opacity:1; } }
.b2b-banner:hover { transform: translateY(-4px); color: #fff; }
.b2b-banner .b2b-text h3 {
  color: #fff;
  font-size: 1.6rem;
  margin: 0;
  display: flex; align-items: center; gap: 12px;
}
.b2b-banner .b2b-text h3 .star { color: var(--gold-300); }
.b2b-banner .b2b-text p { margin: 4px 0 0; color: rgba(255,255,255,.75); font-size: .95rem; }
.b2b-banner .b2b-cta {
  background: var(--gradient-gold);
  color: var(--neutral-900);
  font-weight: 700;
  padding: 14px 30px;
  border-radius: 50px;
  white-space: nowrap;
  display: inline-flex; align-items: center; gap: 10px;
  flex-shrink: 0;
  z-index: 1;
}

/* ---------- Hotel Cards ---------- */
.hotel-card {
  background: var(--neutral-0);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--neutral-100);
}
.hotel-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}
.hotel-card .card-img-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.hotel-card .card-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.22,.61,.36,1);
}
.hotel-card:hover .card-img-wrap img { transform: scale(1.12); }

.hotel-card .price-tag {
  position: absolute;
  top: 16px; right: 16px;
  background: rgba(12,19,32,.85);
  backdrop-filter: blur(8px);
  color: #fff;
  padding: 2px 9px;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 700;
}
.hotel-card .price-tag strong { color: var(--gold-300); font-size: 1.05rem; }

.hotel-card .rating-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--gradient-gold);
  color: var(--neutral-900);
    padding: 2px 6px;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 700;
  display: flex; align-items: center; gap: 4px;
}

.hotel-card .card-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.hotel-card .card-location {
  font-size: .82rem;
  color: var(--neutral-500);
  display: flex; align-items: center; gap: 6px;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.hotel-card .card-location i { color: var(--gold-500); }
.hotel-card .card-title {
  font-size: 1.35rem;
  margin-bottom: 10px;
}
.hotel-card .card-text {
  color: var(--neutral-500);
  font-size: .92rem;
  margin-bottom: 16px;
  flex: 1;
}
.hotel-card .amenities {
  display: flex; gap: 14px;
  margin-bottom: 18px;
  padding: 14px 0;
  border-top: 1px solid var(--neutral-100);
  border-bottom: 1px solid var(--neutral-100);
}
.hotel-card .amenities span {
  color: var(--neutral-500);
  font-size: 1.1rem;
  transition: color var(--transition);
}
.hotel-card:hover .amenities span { color: var(--gold-500); }
.hotel-card .card-actions { display: flex; gap: 10px; }
.hotel-card .card-actions .btn { flex: 1; justify-content: center; }

/* ---------- Packages ---------- */
.package-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  height: 460px;
  color: #fff;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.package-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}
.package-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.package-card:hover img { transform: scale(1.1); }
.package-card .pkg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,15,30,.92) 10%, rgba(10,15,30,.2) 60%, transparent);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}
.package-card .pkg-tag {
  position: absolute; top: 20px; left: 20px;
  background: var(--gradient-gold);
  color: var(--neutral-900);
  padding: 6px 16px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .85rem;
}
.package-card .pkg-title { color: #fff; font-size: 1.7rem; margin-bottom: 6px; }
.package-card .pkg-desc { color: rgba(255,255,255,.85); font-size: .92rem; margin-bottom: 16px; }
.package-card .pkg-footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.package-card .pkg-price { font-family: var(--font-heading); font-size: 1.4rem; color: var(--gold-300); font-weight: 700; }
.package-card .pkg-price small { color: rgba(255,255,255,.7); font-size: .75rem; font-family: var(--font-body); }

/* ---------- Gallery ---------- */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: block;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}
.gallery-item::after {
  content: "\f00e";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute; inset: 0;
  display: grid; place-items: center;
  background: rgba(10,15,30,.55);
  color: #fff;
  font-size: 1.8rem;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover img { transform: scale(1.15); }
.gallery-item:hover::after { opacity: 1; }

/* gallery masonry-ish grid */
.gallery-grid {
  column-count: 3;
  column-gap: 16px;
}
.gallery-grid .gallery-item { break-inside: avoid; margin-bottom: 16px; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(8,12,22,.95);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: var(--radius-sm); box-shadow: var(--shadow-lg); }
.lightbox .lb-close, .lightbox .lb-prev, .lightbox .lb-next {
  position: absolute;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  width: 52px; height: 52px;
  border-radius: 50%;
  display: grid; place-items: center;
  cursor: pointer;
  font-size: 1.3rem;
  transition: all var(--transition);
}
.lightbox .lb-close:hover, .lightbox .lb-prev:hover, .lightbox .lb-next:hover { background: var(--gold-500); color: var(--neutral-900); }
.lightbox .lb-close { top: 24px; right: 24px; }
.lightbox .lb-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox .lb-next { right: 24px; top: 50%; transform: translateY(-50%); }

/* ---------- Hotel Details ---------- */
.detail-hero {
  height: 60vh;
  min-height: 440px;
  position: relative;
  color: #fff;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.detail-hero .dh-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.05);
  animation: heroZoom 18s ease-in-out infinite alternate;
}
.detail-hero .dh-overlay {
  position: absolute; inset: 0;
 background: linear-gradient(to top, rgba(10,15,30,.9), rgba(10,15,30,.3));
}
.detail-hero .dh-content { position: relative; z-index: 2; padding-bottom: 40px; }
.detail-hero h1 { color: #fff; font-size: clamp(2rem,5vw,3.4rem); }
.detail-hero .dh-meta { display: flex; gap: 20px; flex-wrap: wrap; margin-top: 14px; color: rgba(255,255,255,.9); }
.detail-hero .dh-meta span { display: flex; align-items: center; gap: 6px; }

/* Image slider */
.detail-slider {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.detail-slider .slide {
  display: none;
  height: 460px;
}
.detail-slider .slide img { width: 100%; height: 100%; object-fit: cover; }
.detail-slider .slide.active { display: block; animation: fadeIn .6s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.detail-slider .slider-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px;
  background: rgba(255,255,255,.85);
  border-radius: 50%;
  display: grid; place-items: center;
  cursor: pointer;
  color: var(--neutral-800);
  transition: all var(--transition);
  border: none;
  z-index: 5;
}
.detail-slider .slider-nav:hover { background: var(--gold-500); color: #fff; }
.detail-slider .slider-prev { left: 18px; }
.detail-slider .slider-next { right: 18px; }
.detail-slider .slider-dots {
  position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 10px; z-index: 5;
}
.detail-slider .slider-dots button {
  width: 12px; height: 12px; border-radius: 50%;
  border: none; background: rgba(255,255,255,.5);
  cursor: pointer; transition: all var(--transition);
}
.detail-slider .slider-dots button.active { background: var(--gold-500); width: 30px; border-radius: 6px; }

/* Slider thumbnails */
.slider-thumbs { display: flex; gap: 12px; margin-top: 14px; }
.slider-thumbs button {
  border: 2px solid transparent;
  border-radius: 10px;
  overflow: hidden;
  padding: 0;
  cursor: pointer;
  flex: 1;
  transition: border-color var(--transition);
  background: none;
}
.slider-thumbs button img { width: 100%; height: 80px; object-fit: cover; }
.slider-thumbs button.active { border-color: var(--gold-500); }

/* Facility chips */
.facility-chip {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px;
  background: var(--neutral-50);
  border-radius: var(--radius-sm);
  border: 1px solid var(--neutral-100);
  transition: all var(--transition);
}
.facility-chip:hover { background: #fff; box-shadow: var(--shadow-sm); transform: translateY(-3px); }
.facility-chip i {
  width: 40px; height: 40px;
  background: var(--gradient-gold);
  color: var(--neutral-900);
  border-radius: 10px;
  display: grid; place-items: center;
  font-size: 1.05rem;
  flex-shrink: 0;
}
.facility-chip span { font-weight: 600; color: var(--neutral-800); font-size: .92rem; }

/* Room type card */
.room-card {
  border: 1px solid var(--neutral-100);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  background: #fff;
  transition: all var(--transition);
}
.room-card:hover { box-shadow: var(--shadow); }
.room-card .room-img { flex: 0 0 38%; }
.room-card .room-img img { width: 100%; height: 100%; min-height: 200px; object-fit: cover; }
.room-card .room-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.room-card .room-name { font-size: 1.25rem; margin-bottom: 6px; }
.room-card .room-features { display: flex; gap: 16px; flex-wrap: wrap; margin: 12px 0; color: var(--neutral-500); font-size: .85rem; }
.room-card .room-features span { display: flex; align-items: center; gap: 5px; }
.room-card .room-footer { margin-top: auto; display: flex; align-items: center; justify-content: space-between; padding-top: 14px; border-top: 1px solid var(--neutral-100); }
.room-card .room-price { font-family: var(--font-heading); font-size: 1.5rem; color: var(--gold-600); font-weight: 700; }
.room-card .room-price small { color: var(--neutral-500); font-size: .78rem; font-family: var(--font-body); font-weight: 400; }

/* Review card */
.review-card {
  background: var(--neutral-50);
  border: 1px solid var(--neutral-100);
  border-radius: var(--radius);
  padding: 26px;
  height: 100%;
  transition: all var(--transition);
}
.review-card:hover { background: #fff; box-shadow: var(--shadow); transform: translateY(-4px); }
.review-card .stars { color: var(--gold-500); margin-bottom: 12px; }
.review-card .review-text { color: var(--neutral-700); font-style: italic; margin-bottom: 18px; }
.review-card .reviewer { display: flex; align-items: center; gap: 12px; }
.review-card .reviewer .avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: #fff;
  display: grid; place-items: center;
  font-weight: 700;
}
.review-card .reviewer .name { font-weight: 700; color: var(--neutral-900); }
.review-card .reviewer .meta { font-size: .82rem; color: var(--neutral-500); }

/* ---------- Forms ---------- */
.form-control, .form-select {
  border-radius: 10px;
  border: 1.5px solid var(--neutral-200);
  padding: 12px 16px;
  font-size: .95rem;
  transition: all var(--transition);
}
.form-control:focus, .form-select:focus {
  border-color: var(--gold-500);
  box-shadow: 0 0 0 4px rgba(198,151,73,.15);
}
.form-label { font-weight: 600; color: var(--neutral-800); margin-bottom: 6px; font-size: .88rem; }

.booking-form-wrap {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--gold-500);
}
.booking-form-wrap h3 { font-size: 1.5rem; margin-bottom: 6px; }
.booking-form-wrap .form-note { color: var(--neutral-500); font-size: .85rem; margin-bottom: 20px; }

/* ---------- Map ---------- */
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--neutral-100);
  height: 380px;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* ---------- About / Why choose ---------- */
.feature-box {
  text-align: center;
  padding: 30px 22px;
  border-radius: var(--radius);
  background: var(--neutral-50);
  border: 1px solid var(--neutral-100);
  transition: all var(--transition);
  height: 100%;
}
.feature-box:hover { background: #fff; box-shadow: var(--shadow); transform: translateY(-8px); }
.feature-box .fb-icon {
  width: 70px; height: 70px;
  margin: 0 auto 18px;
  background: var(--gradient-gold);
  color: var(--neutral-900);
  border-radius: 20px;
  display: grid; place-items: center;
  font-size: 1.7rem;
  transition: transform var(--transition);
}
.feature-box:hover .fb-icon { transform: rotate(-8deg) scale(1.08); }
.feature-box h4 { font-size: 1.2rem; margin-bottom: 10px; }
.feature-box p { color: var(--neutral-500); font-size: .92rem; margin: 0; }

/* About image collage */
.about-img-stack { position: relative; }
.about-img-stack .img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-stack .img-main img { width: 100%; height: 520px; object-fit: cover; }
.about-img-stack .img-float {
  position: absolute;
  bottom: -30px; left: -30px;
  width: 200px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 6px solid #fff;
  box-shadow: var(--shadow);
}
.about-img-stack .img-float img { width: 100%; height: 160px; object-fit: cover; }
.about-img-stack .exp-badge {
  position: absolute;
  top: 24px; right: -20px;
  background: var(--gradient-gold);
  color: var(--neutral-900);
  border-radius: 50%;
  width: 120px; height: 120px;
  display: grid; place-items: center;
  text-align: center;
  font-weight: 700;
  box-shadow: var(--shadow);
}
.about-img-stack .exp-badge .num { font-family: var(--font-heading); font-size: 2rem; line-height: 1; }
.about-img-stack .exp-badge .lbl { font-size: .7rem; text-transform: uppercase; letter-spacing: 1px; }

/* ---------- Stats band ---------- */
.stats-band {
  background: var(--gradient-dark);
  color: #fff;
  padding: var(--sp-6) 0;
}
.stats-band .stat-num {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800;
  color: var(--gold-300);
  line-height: 1;
}
.stats-band .stat-label {
  color: rgba(255,255,255,.8);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: .82rem;
  margin-top: 6px;
}

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--gradient-gold);
  padding: var(--sp-6) 0;
  text-align: center;
}
.cta-band h2 { font-size: clamp(1.8rem,4vw,2.6rem); margin-bottom: 10px; }
.cta-band p { color: var(--neutral-800); margin-bottom: 24px; }

/* ---------- Contact ---------- */
.contact-info-card {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 22px;
  background: var(--neutral-50);
  border-radius: var(--radius);
  border: 1px solid var(--neutral-100);
  transition: all var(--transition);
  height: 100%;
}
.contact-info-card:hover { background: #fff; box-shadow: var(--shadow); }
.contact-info-card .ci-icon {
  width: 52px; height: 52px;
  background: var(--gradient-gold);
  color: var(--neutral-900);
  border-radius: 14px;
  display: grid; place-items: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.contact-info-card h5 { font-size: 1.05rem; margin-bottom: 4px; }
.contact-info-card p { margin: 0; color: var(--neutral-500); font-size: .92rem; }

.whatsapp-float {
  position: fixed;
  bottom: 90px; right: 24px;
  width: 56px; height: 56px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 1.5rem;
  z-index: 1000;
  box-shadow: 0 8px 24px rgba(37,211,102,.45);
  transition: transform var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); color: #fff; }

/* ---------- Footer ---------- */
.footer {
  background: var(--neutral-900);
  color: rgba(255,255,255,.7);
  padding-top: var(--sp-7);
}
.footer h5 {
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 22px;
  letter-spacing: .5px;
}
.footer .footer-brand {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: #fff;
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 18px;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: 12px; }
.footer ul li a {
  color: rgba(255,255,255,.7);
  font-size: .92rem;
  transition: all var(--transition);
  display: inline-flex; align-items: center; gap: 8px;
}
.footer ul li a:hover { color: var(--gold-300); padding-left: 6px; }
.footer .social-icons { display: flex; gap: 12px; margin-top: 18px; }
.footer .social-icons a {
  width: 40px; height: 40px;
  background: rgba(255,255,255,.08);
  border-radius: 10px;
  display: grid; place-items: center;
  color: #fff;
  transition: all var(--transition);
}
.footer .social-icons a:hover { background: var(--gold-500); color: var(--neutral-900); transform: translateY(-3px); }
.footer .newsletter input {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  color: #fff;
  border-radius: 10px;
}
.footer .newsletter input::placeholder { color: rgba(255,255,255,.5); }
.footer .newsletter input:focus { background: rgba(255,255,255,.12); border-color: var(--gold-500); box-shadow: none; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 22px 0;
  margin-top: var(--sp-6);
  font-size: .85rem;
}
.footer-bottom a { color: var(--gold-300); }

/* ---------- Back to top ---------- */
.back-to-top {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 50px; height: 50px;
  background: var(--gradient-gold);
  color: var(--neutral-900);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 1.1rem;
  z-index: 1000;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition);
  border: none;
  cursor: pointer;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-4px); }

/* ---------- Page header (interior pages) ---------- */
.page-header {
  height: 42vh;
  min-height: 320px;
  display: flex;
  align-items: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.page-header .ph-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.08);
  animation: heroZoom 18s ease-in-out infinite alternate;
}
.page-header .ph-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(10,15,30,.82), rgba(10,15,30,.55));
}
.page-header .ph-content { position: relative; z-index: 2; }
.page-header h1 { color: #fff; font-size: clamp(2.2rem,5vw,3.4rem); margin-bottom: 10px; }
.page-header .breadcrumb {
  justify-content: flex-start;
  margin: 0;
  background: transparent;
}
.page-header .breadcrumb-item, .page-header .breadcrumb-item a { color: rgba(255,255,255,.85); }
.page-header .breadcrumb-item.active { color: var(--gold-300); }
.page-header .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.5); }

/* ---------- Legal pages ---------- */
.legal-content {
  max-width: 860px;
  margin: 0 auto;
}
.legal-content h2 {
  font-size: 1.5rem;
  margin: 32px 0 14px;
  color: var(--neutral-900);
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p, .legal-content li { color: var(--neutral-600); margin-bottom: 12px; }
.legal-content ul { padding-left: 22px; }
.legal-content .updated { color: var(--neutral-400); font-size: .9rem; margin-bottom: 24px; }

/* ---------- Animations: reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.22,.61,.36,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: .12s; }
.reveal.delay-2 { transition-delay: .24s; }
.reveal.delay-3 { transition-delay: .36s; }
.reveal.delay-4 { transition-delay: .48s; }

/* ---------- Preloader ---------- */
.preloader {
  position: fixed; inset: 0;
  background: var(--neutral-900);
  z-index: 3000;
  display: grid; place-items: center;
  transition: opacity .6s ease, visibility .6s ease;
}
.preloader.hidden { opacity: 0; visibility: hidden; }
.preloader .loader-mark {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold-300);
  animation: pulse 1.4s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .4; } }

/* ---------- Misc utilities ---------- */
.bg-soft { background: var(--neutral-50); }
.bg-gradient-dark { background: var(--gradient-dark); }
.rounded-xl { border-radius: var(--radius-lg) !important; }
.shadow-soft { box-shadow: var(--shadow-sm); }
.divider-gold {
  width: 80px; height: 4px;
  background: var(--gradient-gold);
  border-radius: 4px;
  margin: 14px 0 0;
}
.text-shadow { text-shadow: 0 2px 20px rgba(0,0,0,.5); }
.breadcrumb{
    padding-top: 76px;
}
.breadcrumb-item  a{
color:#c69749 !important;
}
.skyheaven .room-card .room-img img {
   
    height: 180px !important;
  
}
.thankyou-section{
            height:100vh;
            display:flex;
            justify-content:center;
            align-items:center;
        }

        .thankyou-box{
            background:#fff;
            margin-top: 95px;
            padding:50px;
            max-width:650px;
            border-radius:15px;
            text-align:center;
            box-shadow:0 10px 35px rgba(0,0,0,.12);
        }

        .check{
            width:90px;
            height:90px;
            background:#28a745;
            color:#fff;
            border-radius:50%;
            margin:auto;
            display:flex;
            align-items:center;
            justify-content:center;
            font-size:45px;
            margin-bottom:25px;
        }

        .thankyou-box h1{
            color:var(--gold-500);
            font-weight:700;
            margin-bottom:20px;
        }

        .thankyou-box p{
            color:#666;
            font-size:18px;
            line-height:30px;
        }
        .travel-services{
    padding:150px 0;
    background:linear-gradient(180deg,#faf8f2,#ffffff);
    position:relative;
}

.travel-box{
    position:relative;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    height:300px;
    overflow:hidden;
    border-radius:22px;
    text-decoration:none;
    background-size:cover;
    background-position:center;
    box-shadow:0 15px 35px rgba(0,0,0,.15);
    transition:.4s;
}

.travel-box::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(0,0,0,.82),
        rgba(0,0,0,.30),
        rgba(0,0,0,.10)
    );
}

.travel-box span{
    position:relative;
    z-index:2;
    display:inline-block;
    margin:18px;
    align-self:flex-start;
    background:linear-gradient(90deg,var(--gold-500),#c69749);
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    font-size:13px;
    font-weight:700;
    letter-spacing:1px;
}

.travel-content{
    position:relative;
    z-index:2;
    padding:25px;
    color:#fff;
}

.travel-content h4{
    font-size:23px;
    font-family:var(--font-heading);
    margin-bottom:12px;
    color:#fff;
}

.travel-content p{
    font-size:15px;
    color:#eee;
    line-height:1.6;
    margin-bottom:18px;
}

.travel-content small{
    color:#e3c46a;
    font-size:15px;
    font-weight:600;
}

.travel-box:hover{
    transform:translateY(-12px) scale(1.02);
    box-shadow:0 25px 60px rgba(0,0,0,.25);
}

.travel-box:hover::before{
    background:linear-gradient(
        to top,
        rgba(122,87,32,.88),
        rgba(0,0,0,.35),
        rgba(0,0,0,.10)
    );
}
.travel-services .text-center{
  margin-top:60px;
}

/*====================================
      TEMPLE PACKAGE PAGE
====================================*/

:root{
    --gold:#c69749;
    --gold-dark:#a87a2e;
    --dark:#0c1320;
    --light:#f8f8f8;
}

/* HERO */

.temple-hero{
    padding:120px 0 80px;
    background:linear-gradient(rgba(12,19,32,.75),rgba(12,19,32,.75)),
    url("../images/packages_bg.avif") center/cover;
    color:#fff;
}

.hero-tag{
    display:inline-block;
    background:var(--gold);
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
    margin-bottom:20px;
    font-weight:600;
}

.temple-hero h1{
    font-size:58px;
    font-family:'Playfair Display',serif;
    font-weight:700;
    line-height:1.2;
    margin-bottom:25px;
}

.temple-hero h1 span{
    color:var(--gold);
}

.temple-hero p{
    font-size:18px;
    line-height:1.8;
    color:#ddd;
}

.temple-hero img{
    border-radius:20px;
    box-shadow:0 25px 60px rgba(0,0,0,.35);
}


/* SECTION */

.section-title{
    font-size:42px;
    font-family:'Playfair Display',serif;
    color:var(--dark);
    margin-bottom:10px;
}

.section-title::after{
    content:"";
    display:block;
    width:90px;
    height:4px;
    background:var(--gold);
    margin:18px auto 0;
}


/* HIGHLIGHTS */

.highlight-box{
    background:#fff;
    border-radius:18px;
    padding:35px 25px;
    text-align:center;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
    transition:.35s;
    height:100%;
}

.highlight-box:hover{
    transform:translateY(-8px);
}

.highlight-box i{
    font-size:45px;
    color:var(--gold);
    margin-bottom:18px;
}

.highlight-box h5{
    font-size:23px;
    margin-bottom:12px;
    color:var(--dark);
}

.highlight-box p{
    color:#666;
    margin:0;
}


/* TEMPLE CARDS */

.temple-card{
    position:relative;
    height:320px;
    border-radius:20px;
    overflow:hidden;
    background-size:cover;
    background-position:center;
    box-shadow:0 15px 35px rgba(0,0,0,.18);
    transition:.4s;
}

.temple-card:hover{
    transform:translateY(-8px);
}

.temple-card .overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to top,
        rgba(0,0,0,.82),
        rgba(0,0,0,.25));
}

.temple-card .content{
    position:absolute;
    left:25px;
    right:25px;
    bottom:25px;
    z-index:2;
}

.temple-card h4{
    color:#fff;
    font-size: 21px;
    font-family:'Playfair Display',serif;
    margin-bottom:10px;
}

.temple-card p{
    color:#f1f1f1;
    margin:0;
    line-height:1.7;
}

/* TIMELINE */

.timeline{
    position:relative;
    max-width:900px;
    margin:auto;
}

.timeline::before{
    content:"";
    position:absolute;
    left:24px;
    top:0;
    width:4px;
    height:100%;
    background:var(--gold);
}

.timeline-item{
    position:relative;
    background:#fff;
    padding:25px 30px;
    margin-left:70px;
    margin-bottom:30px;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.timeline-item::before{
    content:"";
    position:absolute;
    width:18px;
    height:18px;
    border-radius:50%;
    background:var(--gold);
    left:-56px;
    top:32px;
    border:5px solid #fff;
    box-shadow:0 0 0 3px var(--gold);
}

.timeline-item h4{
    color:var(--gold-dark);
    margin-bottom:10px;
    font-size:26px;
}

.timeline-item p{
    margin-bottom:6px;
    color:#555;
    line-height:1.7;
}


/* CTA */

.package-cta{
    padding:90px 20px;
    background:var(--gradient-gold);
    color:#fff;
}

.package-cta h2{
    font-size:46px;
    font-family:'Playfair Display',serif;
    margin-bottom:20px;
    
}

.package-cta p{
    max-width:700px;
    margin:auto;
    color:#121111;
    font-size:18px;
    line-height:1.8;
    margin-bottom:35px;
}


/* BUTTON */

.btn-gold{
    background:var(--gold);
    color:#fff;
    padding:14px 35px;
    border-radius:50px;
    font-weight:600;
    border:none;
    transition:.3s;
}

.btn-gold:hover{
    background:var(--gold-dark);
    color:#fff;
    transform:translateY(-3px);
}

.btn-outline-light{
    border:2px solid #fff;
    color:#fff;
    border-radius:50px;
    padding:14px 35px;
    margin-left:15px;
}

.btn-outline-light:hover{
    background:#fff;
    color:var(--dark);
}


/* RESPONSIVE */

@media(max-width:991px){

.temple-hero{
padding:100px 0 60px;
text-align:center;
}

.temple-hero h1{
font-size:42px;
}

.temple-hero p{
font-size:16px;
}

.section-title{
font-size:34px;
}

.package-cta h2{
font-size:34px;
}

.timeline-item{
margin-left:55px;
}

.timeline::before{
left:18px;
}

.timeline-item::before{
left:-42px;
}

}

@media(max-width:576px){

.temple-hero h1{
font-size:32px;
}

.hero-buttons .btn{
display:block;
width:100%;
margin:10px 0;
}

.highlight-box,
.temple-card,
.timeline-item{
padding:22px;
}

.timeline-item{
margin-left:40px;
}

.timeline::before{
left:12px;
}

.timeline-item::before{
left:-34px;
}

.package-cta{
padding:60px 15px;
}

.package-cta h2{
font-size:28px;
}

}/*==============================
        HERO SECTION
==============================*/

.package-hero{
    position:relative;
    min-height:90vh;
    padding-top:140px;
    display:flex;
    align-items:center;
    background:url("../images/packages_banners.jfif") center center/cover no-repeat;
    overflow:hidden;
}
.hero-info{
  color:#fff;
}
.package-hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(90deg,
    rgba(12,19,32,.88) 15%,
    rgba(12,19,32,.65) 45%,
    rgba(12,19,32,.30) 100%);
}

.package-hero .container{
    position:relative;
    z-index:2;
}

.hero-badge{
    display:inline-block;
    padding:8px 22px;
    border-radius:50px;
    background:#c69749;
    color:#fff;
    font-size:13px;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:25px;
}

.package-hero h1{
    color:#fff;
    font-size:62px;
    font-weight:700;
    line-height:1.15;
    font-family:'Playfair Display',serif;
}

.package-hero h1 span{
    color:#e3c46a;
}

.package-hero p{
    color:#f1f1f1;
    font-size:18px;
    line-height:1.8;
    margin:30px 0;
    max-width:650px;
}

.hero-features{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
}

.hero-features div{
    background:rgba(255,255,255,.12);
    border:1px solid rgba(255,255,255,.15);
    backdrop-filter:blur(12px);
    color:#fff;
    padding:12px 22px;
    border-radius:40px;
}

.hero-features i{
    color:#e3c46a;
    margin-right:8px;
}
/*==============================
        PACKAGE SECTION
==============================*/

.package-section{
    padding:90px 0;
}

.package-section:nth-child(even){
    background:#faf9f6;
}

.package-section img{
    width:100%;
    height:500px;
    object-fit:cover;
    border-radius:25px;
    transition:.5s;
    box-shadow:0 20px 50px rgba(0,0,0,.15);
}

.package-section img:hover{
    transform:scale(1.03);
}

.package-tag{
    display:inline-block;
    background:#c69749;
    color:#fff;
    padding:10px 24px;
    border-radius:30px;
    margin-bottom:18px;
    font-size:13px;
    letter-spacing:1px;
    text-transform:uppercase;
}

.package-section h2{
    font-size:32px;
    font-family:'Playfair Display',serif;
    margin-bottom:15px;
    color:#17202a;
}

.package-section h5{
    color:#c69749;
    font-weight:700;
    margin-bottom:20px;
}

.package-section p{
    color:#666;
    line-height:1.8;
    font-size:17px;
}

.package-list{
    margin-top:25px;
    list-style:none;
    padding:0;
}

.package-list li{
    position:relative;
    padding-left:40px;
    margin-bottom:18px;
    line-height:1.8;
    color:#555;
}

.package-list li::before{
    content:"✓";
    position:absolute;
    left:0;
    top:2px;
    width:26px;
    height:26px;
    background:#c69749;
    color:#fff;
    border-radius:50%;
    text-align:center;
    line-height:26px;
    font-size:13px;
    font-weight:bold;
}

.package-section .btn{
    margin-top:15px;
}
.btn-gold{

display:inline-block;

padding:14px 36px;

background:#c69749;

color:#fff;

border-radius:40px;

font-weight:600;

text-decoration:none;

transition:.4s;

}

.btn-gold:hover{

background:#17202a;

color:#fff;

transform:translateY(-3px);

}
@media(max-width:991px){

.package-hero{

min-height:75vh;

text-align:center;

}

.package-hero h1{

font-size:44px;

}

.package-hero p{

margin:auto;

margin-top:25px;

margin-bottom:25px;

}

.hero-features{

justify-content:center;

}

.package-section img{

height:350px;

margin-bottom:35px;

}

.package-section h2{

font-size:32px;

}

}

@media(max-width:576px){

.package-hero h1{

font-size:34px;

}

.package-hero p{

font-size:15px;

}

.hero-features div{

width:100%;

text-align:center;

}

.package-section{

padding:70px 0;

}

.package-section h2{

font-size:28px;

}

.package-section img{

height:250px;

}

}
.coming-soon-section{
    padding:150px 0;
   
    background:linear-gradient(135deg,#f8fbff,#eef5ff);
}

.coming-soon-card{
    background:#fff;
    border-radius:20px;
    padding:60px 40px;
    box-shadow:0 20px 60px rgba(0,0,0,.08);
    border:1px solid #e9eef5;
}

.coming-badge{
    display:inline-block;
    background:#fff3cd;
    color:#a16207;
    padding:8px 20px;
    border-radius:50px;
    font-weight:600;
    margin-bottom:20px;
}

.coming-soon-card h2{
    font-size:52px;
    font-weight:700;
    color:#0d3b66;
    margin-bottom:20px;
}

.coming-soon-card .btn:hover{
    transform:translateY(-3px);
}

@media(max-width:768px){

    .coming-soon-card{
        padding:40px 25px;
    }

    .coming-soon-card h2{
        font-size:38px;
    }

    .coming-soon-card p{
        font-size:16px;
    }

}
.room-description.short{
    max-height:24px;   /* 1 line */
    overflow:hidden;
}

.room-description.full{
    max-height:1000px;
}

.toggle-btn{
    color:#0d6efd;
    cursor:pointer;
    text-decoration:none;
}.room-description {
    height: 25px;
    overflow: hidden;
}

.room-description.show {
    height: auto;
}