/* ========================================
   Little World Hotel & SPA — Design System
   Bootstrap + Custom CSS
   ======================================== */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  --gold: #D4AF37;
  --gold-hover: #C4A030;
  --gold-light: rgba(212, 175, 55, 0.2);
  --gold-lighter: rgba(212, 175, 55, 0.1);
  --gold-lightest: rgba(212, 175, 55, 0.05);
  --dark: #2D2D2D;
  --muted: #666666;
  --light-muted: #999999;
  --border: #E5E5E5;
  --bg-light: #FAFAFA;
  --bg-card: #FFFEF9;
  --bg-card-pricing: #FFFEF5;
  --btn-bg: #F2F2F2;
  --btn-text: #4A4A4A;
  --btn-hover: #E8E8E8;
  --white: #FFFFFF;
  --font-display: 'Playfair Display', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--dark);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; }

a { text-decoration: none; transition: color 0.3s; }

/* ---------- Typography ---------- */
.font-display { font-family: var(--font-display); }

.section-title {
  font-family: var(--font-display);
  font-weight: 300;
  color: var(--dark);
}

.section-subtitle {
  color: var(--muted);
  line-height: 1.7;
}

.text-gold { color: var(--gold) !important; }
.text-dark { color: var(--dark) !important; }
.text-muted-custom { color: var(--muted) !important; }
.text-light-muted { color: var(--light-muted) !important; }

/* ---------- Backgrounds ---------- */
.bg-light-custom { background-color: var(--bg-light) !important; }
.bg-card { background-color: var(--bg-card) !important; }
.bg-gold-gradient { background: linear-gradient(135deg, var(--gold-light), var(--gold-lightest), var(--gold-light)); }
.bg-gold-solid { background: linear-gradient(to right, var(--gold), #B8860B); }

/* ---------- Navbar ---------- */
.navbar-custom {
  background-color: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 !important;
  min-height: 64px;
  z-index: 1050;
}

.navbar-custom > .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding-left: 1.5rem;
  padding-right: 2rem;
}

.navbar-custom .navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--dark);
  font-size: 1.125rem;
  letter-spacing: -0.02em;
  padding: 0;
  margin: 0;
}

.navbar-custom .navbar-brand img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.navbar-custom .navbar-collapse {
  flex-grow: 0;
  border: none !important;
}

.navbar-custom .navbar-toggler {
  border: none !important;
  box-shadow: none !important;
  padding: 0;
}

.navbar-custom .navbar-nav {
  border: none !important;
  margin: 0;
}

.navbar-custom .nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted) !important;
  transition: color 0.2s;
  padding: 0.5rem 1rem !important;
}

.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
  color: var(--gold) !important;
}

.btn-reservar {
  background-color: var(--gold);
  color: var(--white) !important;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 1.5rem;
  border: none;
  border-radius: 0;
  transition: background-color 0.3s;
}

.btn-reservar:hover {
  background-color: var(--gold-hover);
  color: var(--white) !important;
}

/* ---------- Mobile Drawer ---------- */
.mobile-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(4px);
  z-index: 1060;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.mobile-drawer-overlay.show {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 380px;
  height: 100%;
  background-color: #111827;
  color: var(--white);
  z-index: 1070;
  transform: translateX(-100%);
  transition: transform 0.3s ease-in-out;
  overflow-y: auto;
}

.mobile-drawer.show { transform: translateX(0); }

.mobile-drawer .drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  border-bottom: 1px solid #374151;
}

.mobile-drawer .drawer-header button {
  background: none;
  border: none;
  color: var(--white);
  padding: 0.5rem;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background 0.2s;
}

.mobile-drawer .drawer-header button:hover { background: #1f2937; }

.drawer-section-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.75rem;
  background: none;
  border: none;
  color: var(--white);
  font-weight: 500;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background 0.2s;
}

.drawer-section-btn:hover { background: #1f2937; }

.drawer-section-btn i.bi { color: #eab308; font-size: 1.25rem; }

.drawer-sub-links {
  margin-left: 2.25rem;
  display: none;
}

.drawer-sub-links.show { display: block; }

.drawer-sub-links a {
  display: block;
  color: #d1d5db;
  padding: 0.25rem 0;
  font-size: 0.875rem;
  transition: color 0.2s;
}

.drawer-sub-links a:hover { color: var(--white); }

.drawer-nav-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  color: var(--white) !important;
  font-weight: 500;
  border-radius: 0.5rem;
  transition: background 0.2s;
}

.drawer-nav-link:hover { background: #1f2937; }

.drawer-nav-link i.bi { color: #eab308; font-size: 1.25rem; }

.drawer-offer {
  border-radius: 0.5rem;
  overflow: hidden;
  background: #111;
  background-image: radial-gradient(circle, rgba(212,175,55,0.2) 1px, transparent 1px);
  background-size: 20px 20px;
  padding: 1.5rem;
  text-align: center;
}

.drawer-footer {
  padding: 1rem;
  border-top: 1px solid #374151;
}

.drawer-footer-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: #9ca3af;
}

.drawer-footer-features i.bi { color: #eab308; font-size: 0.75rem; }

/* ---------- Hero Sections ---------- */
.hero-section {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-home { height: 100vh; }

.hero-page {
  height: 35vh;
  min-height: 280px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.2), rgba(0,0,0,0.6));
}

.hero-page .hero-overlay {
  background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.2), rgba(0,0,0,0.5));
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 1rem;
}

.hero-page .hero-content { padding-top: 60px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold-light);
  color: var(--gold);
  border: 1px solid rgba(212,175,55,0.3);
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  font-size: 1rem;
  font-weight: 600;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  text-shadow: 0 8px 16px rgba(0,0,0,0.8);
}

.hero-title .gold-text {
  background: linear-gradient(to right, var(--gold), rgba(212,175,55,0.9), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-page-title {
  font-family: var(--font-display);
  font-weight: 300;
  letter-spacing: 0.05em;
  color: var(--white);
  text-shadow: 0 8px 24px rgba(0,0,0,0.9);
}

.hero-subtitle {
  color: rgba(255,255,255,0.9);
  font-weight: 300;
  text-shadow: 0 4px 8px rgba(0,0,0,0.7);
}

/* Hero Quick Info */
.hero-info-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(4px);
  border-radius: 1rem;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255,255,255,0.2);
  text-align: center;
}

/* ---------- Buttons ---------- */
.btn-gold {
  background-color: var(--gold);
  color: var(--white);
  font-weight: 600;
  border: none;
  border-radius: 9999px;
  padding: 0.75rem 2rem;
  transition: background-color 0.3s;
}

.btn-gold:hover {
  background-color: var(--gold-hover);
  color: var(--white);
}

.btn-gold-lg {
  font-size: 1.125rem;
  padding: 1rem 3rem;
}

.btn-outline-white {
  border: 2px solid rgba(255,255,255,0.5);
  color: var(--white);
  font-weight: 600;
  border-radius: 9999px;
  padding: 0.75rem 2rem;
  backdrop-filter: blur(4px);
  background: rgba(255,255,255,0.1);
  transition: all 0.3s;
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.2);
  color: var(--white);
}

.btn-card {
  width: 100%;
  padding: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  background-color: var(--btn-bg);
  color: var(--btn-text);
  border: none;
  transition: all 0.3s;
}

.btn-card:hover {
  background-color: var(--btn-hover);
  color: var(--gold);
}

.btn-gold-solid {
  background-color: var(--gold);
  color: var(--white) !important;
  font-weight: 500;
  border: none;
  transition: background-color 0.3s;
}

.btn-gold-solid:hover {
  background-color: var(--gold-hover);
  color: var(--white) !important;
}

/* ---------- Cards ---------- */
.card-custom {
  background-color: var(--bg-card);
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  border: none;
  overflow: hidden;
  transition: all 0.5s;
}

.card-custom:hover {
  box-shadow: 0 8px 30px rgba(212,175,55,0.15);
}

.card-custom .card-img-top {
  height: 320px;
  object-fit: cover;
  transition: transform 0.7s;
}

.card-custom:hover .card-img-top {
  transform: scale(1.05);
}

.card-img-wrapper {
  position: relative;
  overflow: hidden;
  height: 320px;
}

.card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}

.card-custom:hover .card-img-wrapper img {
  transform: scale(1.05);
}

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

.card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--white);
}

.card-icon-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gold-light);
  backdrop-filter: blur(4px);
  border-radius: 50%;
  padding: 0.75rem;
  color: var(--gold);
}

.card-theme {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gold);
  font-weight: 500;
}

.card-features .feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--muted);
}

.card-features .feature-item i { color: var(--gold); margin-top: 2px; font-size: 0.75rem; }

.card-pricing {
  border-top: 1px solid var(--border);
  background-color: var(--bg-card-pricing);
  padding: 1rem 1.5rem;
  margin: 0 -1.5rem;
}

.card-pricing .price-label { font-size: 0.75rem; color: var(--light-muted); }
.card-pricing .price-value { font-size: 1.125rem; font-weight: 600; color: var(--dark); }

/* Stat cards */
.stat-card {
  background: var(--white);
  border: none;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: all 0.3s;
  text-align: center;
}

.stat-card:hover { box-shadow: 0 8px 25px rgba(0,0,0,0.12); }

.stat-icon-circle {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: linear-gradient(to right, var(--gold-light), var(--gold-lighter));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
}

/* Testimonial cards */
.testimonial-card {
  background: var(--white);
  border: none;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: all 0.3s;
}

.testimonial-card:hover {
  box-shadow: 0 8px 30px rgba(212,175,55,0.15);
}

/* Facility cards (home page) */
.facility-card {
  background: var(--white);
  border: none;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: all 0.5s;
  cursor: pointer;
}

.facility-card:hover {
  box-shadow: 0 8px 30px rgba(212,175,55,0.15);
}

/* ---------- Sections ---------- */
.section-intro {
  padding-top: 3rem;
  padding-bottom: 1.5rem;
}

.section-cards {
  padding-top: 2rem;
  padding-bottom: 6rem;
  background-color: var(--bg-light);
}

.section-cta {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-lightest), var(--gold-light));
}

.section-cta-gold {
  padding: 3rem 0;
  background: linear-gradient(to right, var(--gold), #B8860B);
  color: var(--white);
}

/* Social mission */
.mission-section {
  background: linear-gradient(180deg, #FAFAFA 0%, rgba(212,175,55,0.06) 50%, #FAFAFA 100%);
}

.mission-stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem 1rem;
  text-align: center;
  transition: all 0.4s ease;
  height: 100%;
}

.mission-stat-card:hover {
  border-color: rgba(212,175,55,0.3);
  box-shadow: 0 8px 25px rgba(212,175,55,0.12);
  transform: translateY(-3px);
}

.mission-stat-icon {
  color: var(--gold);
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.mission-stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.1;
}

.mission-stat-label {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
}

.mission-divider {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  color: var(--gold);
  font-size: 0.85rem;
  opacity: 0.5;
}

.mission-divider::before,
.mission-divider::after {
  content: '';
  width: 4rem;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.mission-feature-item {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--dark);
}

.mission-donate-card {
  background: var(--white);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  border: 1px solid var(--border);
}

.mission-donate-header {
  background: var(--gold);
  color: var(--white);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  font-size: 0.95rem;
}

.mission-donate-body {
  padding: 1.5rem;
}

/* Elegant Menu Styles */
.menu-list-item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 0.25rem;
}

.menu-list-dots {
  flex-grow: 1;
  border-bottom: 2px dotted rgba(212,175,55,0.3);
  margin: 0 1rem;
  position: relative;
  top: -4px;
}

.badge-novo {
  background: linear-gradient(135deg, var(--gold), #B8860B);
  color: var(--white);
  font-size: 0.6rem;
  letter-spacing: 0.05em;
  padding: 0.2em 0.6em;
  border-radius: 1rem;
  text-transform: uppercase;
  vertical-align: middle;
  margin-left: 0.5rem;
}

.badge-kids {
  background: linear-gradient(135deg, #ec4899, #be185d);
}

.badge-bar {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.mission-donation-box {
  background: var(--gold-light);
  border: 2px solid rgba(212,175,55,0.3);
  border-radius: 1.5rem;
  padding: 1.5rem;
  box-shadow: 0 4px 15px rgba(212,175,55,0.15);
}

.mission-impact-card {
  background: linear-gradient(135deg, rgba(59,130,246,0.1), rgba(236,72,153,0.1));
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.mission-icon-circle {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 4px 15px rgba(212,175,55,0.3);
}

/* ---------- Footer ---------- */
.footer-custom {
  background-color: var(--white);
  border-top: 1px solid var(--border);
}

.footer-custom h5 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 1rem;
}

.footer-custom p,
.footer-custom span {
  font-size: 0.875rem;
  color: var(--muted);
}

.footer-custom a {
  font-size: 0.875rem;
  color: var(--muted);
  transition: color 0.3s;
}

.footer-custom a:hover { color: var(--gold); }

.footer-social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--btn-bg);
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.footer-social-icon:hover {
  background: var(--gold);
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  margin-top: 2rem;
  padding-top: 1.5rem;
  text-align: center;
}

.footer-bottom p { color: var(--light-muted); font-size: 0.875rem; }

/* ---------- Back to Top ---------- */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  border: none;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(212,175,55,0.3);
  transition: background 0.3s;
  cursor: pointer;
}

.back-to-top.show { display: flex; }
.back-to-top:hover { background: var(--gold-hover); }

/* ---------- Modal Menu ---------- */
.modal-menu .modal-content {
  border: none;
  border-radius: 1rem;
}

.modal-menu .modal-header {
  border-bottom: 1px solid var(--gold-light);
  padding-bottom: 1.5rem;
}

.modal-menu .menu-item {
  padding: 1.5rem;
  border-radius: 0.75rem;
  background: var(--white);
  border: 1px solid var(--gold-lighter);
  transition: all 0.3s;
}

.modal-menu .menu-item:hover {
  border-color: rgba(212,175,55,0.3);
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.modal-menu .menu-col-title {
  font-family: var(--font-display);
  font-weight: 300;
  color: #1f2937;
  font-size: 1.5rem;
}

.modal-menu .menu-col-divider {
  width: 4rem;
  height: 2px;
  margin: 0 auto;
}

/* ---------- Booking Form ---------- */
.booking-card {
  background: var(--white);
  border: none;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.booking-card .card-header {
  background: linear-gradient(to right, var(--gold-lighter), var(--gold-lightest));
  border-bottom: none;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 0.2rem var(--gold-light);
}

.form-label i { color: var(--gold); }

/* ---------- Responsive ---------- */
@media (max-width: 767.98px) {
  .hero-title { font-size: 2.5rem; }
  .hero-subtitle { font-size: 1rem; }
  .hero-badge { font-size: 0.875rem; padding: 0.375rem 1rem; }
  .section-title { font-size: 2rem; }
  .navbar-custom { min-height: 56px; }
  .navbar-custom > .container { height: 56px; padding-left: 1rem; padding-right: 1rem; }
  .navbar-custom .navbar-brand { font-size: 0.875rem; }
  .navbar-custom .navbar-brand img { width: 32px; height: 32px; }
  .card-img-wrapper { height: 256px; }
  .card-custom .card-img-top { height: 256px; }
  body { padding-top: 56px; }
}

@media (min-width: 768px) {
  .hero-title { font-size: 4rem; }
}

@media (min-width: 992px) {
  .hero-title { font-size: 6rem; }
}

/* ---------- Animations ---------- */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in { animation: fadeIn 0.8s ease-out; }

/* ---------- Utility ---------- */
.rounded-pill-custom { border-radius: 9999px; }
.shadow-gold { box-shadow: 0 4px 15px rgba(212,175,55,0.3); }
.object-cover { object-fit: cover; }
.overflow-hidden { overflow: hidden; }
.cursor-pointer { cursor: pointer; }

/* Gradient badges */
.badge-gradient-gold { background: linear-gradient(to right, var(--gold), #B8860B); }
.badge-gradient-pink { background: linear-gradient(to right, #ec4899, #f9a8d4); }
.badge-gradient-blue { background: linear-gradient(to right, #3b82f6, #60a5fa); }
.badge-gradient-green { background: linear-gradient(to right, #22c55e, #34d399); }
.badge-gradient-purple { background: linear-gradient(to right, #a855f7, #c084fc); }
.badge-gradient-cyan { background: linear-gradient(to right, #3b82f6, #06b6d4); }
.badge-gradient-dark { background: linear-gradient(to right, #1d4ed8, #111827); }
.badge-gradient-teal { background: linear-gradient(to right, #2563eb, #14b8a6); }
.badge-gradient-amber { background: linear-gradient(to right, #7e22ce, #fde68a); }

/* Check icon color */
.check-gold { color: var(--gold); }

/* Star rating */
.stars-gold i { color: var(--gold); }

/* Body padding for fixed navbar */
body { padding-top: 64px; }

/* Spa treatment card icons */
.treatment-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: linear-gradient(to right, var(--gold-light), var(--gold-lighter));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--gold);
  font-size: 1.5rem;
}

/* Info card */
.info-card {
  background: linear-gradient(to right, rgba(0,0,0,0.02), rgba(0,0,0,0.04));
  border: 1px solid rgba(0,0,0,0.05);
}

/* ---------- Section Labels ---------- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 1rem;
}

/* ---------- Hero Subtitle Small ---------- */
.hero-subtitle-small {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

/* ---------- Why Choose Us Section ---------- */
.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  transition: all 0.4s ease;
  height: 100%;
}

.why-card:hover {
  border-color: rgba(212,175,55,0.4);
  box-shadow: 0 8px 30px rgba(212,175,55,0.12);
  transform: translateY(-4px);
}

.why-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-lighter));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.5rem;
  color: var(--gold);
  transition: all 0.4s ease;
}

.why-card:hover .why-icon {
  background: var(--gold);
  color: var(--white);
  transform: scale(1.1);
}

/* ---------- Featured Rooms ---------- */
.featured-room-card {
  background: var(--white);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: all 0.5s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.featured-room-card:hover {
  box-shadow: 0 12px 40px rgba(212,175,55,0.18);
  transform: translateY(-6px);
}

.featured-room-img {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.featured-room-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.featured-room-card:hover .featured-room-img img {
  transform: scale(1.08);
}

.featured-room-price {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px);
  color: var(--white);
  padding: 0.4rem 1rem;
  border-radius: 9999px;
  font-size: 0.85rem;
  z-index: 5;
}

.featured-room-price strong {
  color: var(--gold);
  font-weight: 700;
}

.featured-room-body {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.featured-room-body .btn-card {
  margin-top: auto;
}

/* ---------- Testimonial Avatars ---------- */
.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

/* ---------- Premium CTA Section ---------- */
.section-cta-premium {
  padding: 5rem 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(212,175,55,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(212,175,55,0.08) 0%, transparent 50%),
    linear-gradient(135deg, var(--gold-light), var(--gold-lightest), var(--gold-light));
}

/* ---------- CTA Counters ---------- */
.cta-counter-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.1;
}

.cta-counter-label {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
}

/* ---------- Scroll Reveal Animation ---------- */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.row .reveal-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.row .reveal-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.row .reveal-on-scroll:nth-child(4) { transition-delay: 0.15s; }
.row .reveal-on-scroll:nth-child(5) { transition-delay: 0.25s; }
.row .reveal-on-scroll:nth-child(6) { transition-delay: 0.35s; }

/* ---------- Responsive additions ---------- */
@media (max-width: 767.98px) {
  .cta-counter-number { font-size: 1.75rem; }
  .cta-counter-label { font-size: 0.7rem; }
  .why-card { padding: 1.5rem; }
  .featured-room-img { height: 200px; }
  .hero-subtitle-small { font-size: 0.9rem; }
}

/* ---------- Partner Badges ---------- */
.partner-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}

.partner-badge:hover {
  border-color: rgba(212,175,55,0.4);
  box-shadow: 0 4px 15px rgba(212,175,55,0.15);
  transform: translateY(-2px);
  color: var(--gold);
}

.partner-badge-blue {
  background: rgba(59,130,246,0.05);
  border-color: rgba(59,130,246,0.2);
  color: #1e40af;
}

.partner-badge-blue:hover {
  border-color: rgba(59,130,246,0.5);
  box-shadow: 0 4px 15px rgba(59,130,246,0.15);
  color: #1e40af;
}

.partner-badge-rose {
  background: rgba(236,72,153,0.05);
  border-color: rgba(236,72,153,0.2);
  color: #9d174d;
}

.partner-badge-rose:hover {
  border-color: rgba(236,72,153,0.5);
  box-shadow: 0 4px 15px rgba(236,72,153,0.15);
  color: #9d174d;
}
