/* ==========================================================================
   Premium Clean CSS - Hotel Senang Hati
   Consolidated luxury styling for navigation, hero, and booking sections
   ========================================================================== */

:root {
  /* Primary Color Palette */
  --primary-dark: #1a1a1a;
  --primary-gold: #D4AF37;
  --primary-white: #ffffff;
  --primary-cream: #f8f6f0;
  --primary-brown: #8B4513;
  
  /* Gradients */
  --gradient-gold: linear-gradient(135deg, var(--primary-gold), #b8941f);
  --gradient-dark: linear-gradient(135deg, var(--primary-dark), #2c2c2c);
  
  /* Shadows */
  --shadow-luxury: 0 8px 32px rgba(212, 175, 55, 0.15);
  --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.3);
  --text-shadow-gold: 0 2px 4px rgba(212, 175, 55, 0.3);
}

/* ==========================================================================
   PREMIUM NAVIGATION BAR
   ========================================================================== */

.premium-header {
  background: var(--gradient-dark) !important;
  backdrop-filter: blur(20px);
  border-bottom: 2px solid var(--primary-gold);
  box-shadow: var(--shadow-luxury);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1200 !important;
}

.premium-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1200 !important;
  background: var(--gradient-dark) !important;
  backdrop-filter: blur(20px);
  border-bottom: 2px solid var(--primary-gold);
  box-shadow: var(--shadow-luxury);
  padding: 1rem 0;
  transition: background 0.3s, box-shadow 0.3s;
}

.premium-navbar.scrolled {
  background: rgba(24, 24, 24, 0.95) !important;
  box-shadow: 0 2px 16px rgba(26,26,26,0.10);
  backdrop-filter: blur(25px);
}

.premium-brand {
  text-decoration: none;
  color: var(--primary-gold) !important;
}

.brand-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-icon {
  width: 45px;
  height: 45px;
  background: var(--gradient-gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--primary-white);
  text-shadow: var(--text-shadow-gold);
}

.brand-details {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--primary-gold);
  line-height: 1.2;
  text-shadow: var(--text-shadow-gold);
  letter-spacing: 0.5px;
}

.brand-subtitle {
  font-family: 'Open Sans', sans-serif;
  font-size: 11px;
  color: var(--primary-cream);
  opacity: 0.8;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.premium-nav-menu {
  gap: 2rem;
}

.premium-nav-link {
  color: var(--primary-cream) !important;
  font-family: 'Open Sans', sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 0.75rem 0 !important;
  transition: all 0.3s ease;
  position: relative;
  text-decoration: none;
}

.premium-nav-link {
  color: var(--primary-cream);
  position: relative;
  transition: color 0.2s;
  font-weight: 600;
  padding-bottom: 4px;
}

.premium-nav-link:hover,
.premium-nav-link.active {
  color: var(--primary-gold);
}

.premium-nav-link.active::after {
  content: '';
  display: block;
  margin: 0 auto;
  width: 32px;
  height: 3px;
  border-radius: 2px;
  background: var(--primary-gold);
  transition: width 0.2s;
}

.premium-nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gradient-gold);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.premium-nav-link:hover {
  color: var(--primary-gold) !important;
  transform: translateY(-2px);
}

.premium-nav-link:hover::before {
  width: 100%;
}

.premium-book-btn {
  background: var(--gradient-gold);
  color: var(--primary-white) !important;
  padding: 12px 24px;
  border-radius: 6px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-gold);
}

.premium-book-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212,175,55,0.4);
}

/* ==========================================================================
   BOOKING SEARCH SECTION
   ========================================================================== */

.booking-search-section {
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  z-index: 1050;
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.1) !important;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2) !important;
  padding: 15px 0;
  transition: all 0.3s ease;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
}

.booking-search-section.sticky-active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.booking-search-section.always-visible {
  position: relative;
  top: auto;
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  background: transparent !important;
  backdrop-filter: none;
  box-shadow: none !important;
  border-bottom: none !important;
}

.hotel-search-form {
  background: var(--primary-white);
  padding: 20px 25px;
  border-radius: 12px;
  box-shadow: var(--shadow-luxury);
  border: 1px solid rgba(212, 175, 55, 0.2);
  margin: 0 15px;
}

.booking-search-section.sticky-active .hotel-search-form {
  margin: 0 15px;
  padding: 15px 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.search-label {
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 12px;
  color: var(--primary-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  display: block;
}

.search-input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--primary-dark);
  background: #fff;
  transition: all 0.3s ease;
  outline: none;
}

.search-input:focus {
  border-color: var(--primary-gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
  background: #fafafa;
}

.search-input:hover {
  border-color: #ccc;
}

.search-input::placeholder {
  color: #999;
  font-weight: 400;
}

.search-input:focus {
  outline: none;
  border-color: var(--primary-gold);
  box-shadow: 0 0 0 4px rgba(212,175,55,0.13);
  background: #fffbe9;
  transition: box-shadow 0.3s, background 0.3s;
}

#guestCount {
  transition: box-shadow 0.3s, background 0.3s;
}

#guestCount:focus {
  box-shadow: 0 0 0 4px rgba(212,175,55,0.13);
  background: #fffbe9;
}

.search-btn {
  width: 100%;
  padding: 12px 20px;
  background: var(--gradient-gold);
  color: var(--primary-white);
  border: none;
  border-radius: 6px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-gold);
  position: relative;
  overflow: hidden;
}

.search-btn:active {
  background: var(--primary-gold);
  color: #fff;
  box-shadow: 0 4px 16px rgba(212,175,55,0.18);
}

.search-btn .spinner {
  display: none;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  width: 22px;
  height: 22px;
  border: 3px solid #fff;
  border-top: 3px solid var(--primary-gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.search-btn.loading .spinner {
  display: inline-block;
}

.search-btn.loading span {
  opacity: 0.3;
}

/* ==========================================================================
   PREMIUM HERO SECTION
   ========================================================================== */

.premium-hero {
  position: relative;
  height: 100vh;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 0;
  padding-top: 80px; /* Add padding to account for fixed navbar */
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.4) 0%, rgba(26, 26, 26, 0.2) 50%, transparent 100%);
  z-index: -1;
}

.hero-overlay.hero-overlay-dark {
  background: linear-gradient(135deg, rgba(26,26,26,0.72) 0%, rgba(26,26,26,0.55) 60%, rgba(26,26,26,0.35) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 0 0 0;
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 3.2rem;
  line-height: 1.2;
  color: #fff;
  text-shadow: 2px 2px 12px rgba(0,0,0,0.45);
  margin-bottom: 0.5rem;
}

.hero-brand {
  color: var(--primary-gold);
  text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.hero-location {
  color: var(--primary-cream);
  font-weight: 400;
  font-style: italic;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.hero-content .btn {
  margin-top: 18px;
  font-size: 1.15rem;
  padding: 14px 38px;
  box-shadow: 0 4px 18px rgba(212,175,55,0.18);
}

@media (max-width: 991px) {
  .hero-title { font-size: 2.1rem; }
  .premium-hero { min-height: 380px; }
}

@media (max-width: 600px) {
  .hero-title { font-size: 1.3rem; }
  .premium-hero { min-height: 260px; }
}

/* Hero background container */
.hero-section-premium .hero-background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  border-radius: 0 0 32px 32px;
}

.hero-bg-image {
  transition: opacity 0.3s ease;
}

/* Ensure container positioning */
.hero-section-premium .container {
  position: relative;
  z-index: 3;
}

/* ==========================================================================
   LUXURY ROOM CARDS
   ========================================================================== */

.hotel-room-item {
  background: var(--primary-white);
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(26,26,26,0.07);
  overflow: hidden;
  transition: box-shadow 0.3s;
  margin-bottom: 32px;
}
.hotel-room-item:hover {
  box-shadow: 0 8px 32px rgba(212,175,55,0.13);
}
.room-img {
  width: 100%;
  height: 220px;
  overflow: hidden;
  border-radius: 18px 18px 0 0;
  position: relative;
}
.room-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px 18px 0 0;
  transition: transform 0.5s cubic-bezier(.4,0,.2,1);
}
.hotel-room-item:hover .room-img img {
  transform: scale(1.06);
}
.luxury-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(212,175,55,0.75);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 6px 18px;
  border-radius: 16px;
  letter-spacing: 1px;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(26,26,26,0.08);
  backdrop-filter: blur(2px);
}
.hotel-room-item .p-4 {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hotel-room-item h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.hotel-room-item p {
  font-size: 1rem;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 2.7em;
}
.room-features {
  display: flex;
  gap: 12px;
  align-items: center;
  color: var(--primary-brown);
  font-size: 0.98rem;
  margin-bottom: 0.5rem;
}
.hotel-room-item .d-flex.justify-content-between {
  flex-direction: column;
  gap: 8px;
  margin-bottom: 0.5rem;
}
.hotel-room-item .fs-5 {
  color: var(--primary-gold);
  font-size: 1.15rem;
}
.hotel-room-item .d-flex.gap-2 {
  gap: 14px;
}
.btn-luxury-secondary {
  background: #fff;
  color: var(--primary-gold);
  border: 1.5px solid var(--primary-gold);
  transition: background 0.3s, color 0.3s;
}
.btn-luxury-secondary:hover {
  background: var(--primary-gold);
  color: #fff;
}
.btn-luxury-primary {
  background: var(--gradient-gold);
  color: #fff;
  border: none;
  transition: background 0.3s, color 0.3s;
}
.btn-luxury-primary:hover {
  background: var(--primary-gold);
  color: #fff;
}

/* ==========================================================================
   AMENITIES CARDS
   ========================================================================== */

.amenity-item {
  background: var(--primary-white);
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(26,26,26,0.07);
  overflow: hidden;
  transition: box-shadow 0.3s;
  margin-bottom: 32px;
}
.amenity-item:hover {
  box-shadow: 0 8px 32px rgba(212,175,55,0.13);
}
.amenity-img {
  width: 100%;
  height: 180px;
  overflow: hidden;
  border-radius: 18px 18px 0 0;
  position: relative;
}
.amenity-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px 18px 0 0;
  transition: transform 0.5s cubic-bezier(.4,0,.2,1);
}
.amenity-item:hover .amenity-img img {
  transform: scale(1.04);
}
.amenity-item .luxury-badge {
  top: 16px;
  left: 16px;
  background: rgba(26,26,26,0.65);
  color: var(--primary-gold);
  font-size: 0.93rem;
  font-weight: 600;
  padding: 6px 18px;
  border-radius: 16px;
  letter-spacing: 1px;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(26,26,26,0.08);
  backdrop-filter: blur(2px);
}
.amenity-item h4 {
  font-size: 1.18rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
  margin-top: 0.5rem;
}
.amenity-item p {
  font-size: 1rem;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 2.7em;
}
.amenity-features {
  display: flex;
  gap: 12px;
  align-items: center;
  color: var(--primary-brown);
  font-size: 0.98rem;
  margin-bottom: 0.5rem;
}
.amenity-item .fs-6 {
  color: var(--primary-gold);
  font-size: 1.05rem;
  font-weight: 600;
  margin-top: 0.5rem;
}

/* 3-column grid for cards */
.room-grid, .amenity-grid, .restaurant-grid, .event-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 992px) {
  .room-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1200px) {
  .room-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

/* Card hover/drop shadow */
.hotel-room-item, .amenity-item, .restaurant-item, .event-item {
  transition: box-shadow 0.25s, transform 0.25s;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.hotel-room-item:hover, .amenity-item:hover, .restaurant-item:hover, .event-item:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  transform: translateY(-8px) scale(1.03);
  z-index: 2;
}

/* ==========================================================================
   FOOTER STYLING
   ========================================================================== */

.footer-item {
  padding: 0 0 0 0;
}
.footer-logo {
  width: 48px;
  height: 48px;
  background: var(--gradient-gold);
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 22px;
  color: #fff;
  margin-bottom: 12px;
  margin-right: 12px;
}
.footer-desc {
  font-size: 1.08rem;
  color: var(--luxury-cream);
  opacity: 0.9;
  margin-bottom: 1.2rem;
  border-right: 1.5px solid var(--primary-gold);
  padding-right: 32px;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--luxury-cream);
  font-size: 1.05rem;
  margin-left: 24px;
}
.footer-contact-label {
  font-weight: 600;
  color: var(--primary-gold);
  margin-right: 8px;
}
.footer-social {
  margin-top: 18px;
  display: flex;
  gap: 18px;
}
.footer-social a {
  border: 2px solid var(--primary-gold);
  color: var(--primary-gold);
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.2rem;
  transition: background 0.3s, color 0.3s, border 0.3s, transform 0.3s;
}
.footer-social a:hover {
  background: var(--primary-gold);
  color: #fff;
  border-color: var(--primary-gold);
  transform: rotate(-12deg) scale(1.13);
}
.footer-divider {
  border-top: 1.5px solid var(--primary-gold);
  margin: 32px 0 12px 0;
}
.footer-copyright {
  font-size: 0.98rem;
  color: var(--luxury-cream);
  opacity: 0.8;
  text-align: center;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .footer-desc {
    border-right: none;
    padding-right: 0;
    margin-bottom: 1.5rem;
  }
  .footer-contact {
    margin-left: 0;
  }
}

/* Premium Footer Styles */
.premium-footer {
  background: #181818;
  color: var(--luxury-cream);
  font-size: 1rem;
  border-top: 1px solid var(--primary-gold);
}
.premium-footer .footer-logo {
  background: var(--primary-gold);
  color: #fff;
  font-size: 2.2rem;
  border-radius: 12px;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.premium-footer .footer-desc h2 {
  color: var(--primary-gold);
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
}
.premium-footer .footer-contact-label {
  color: var(--primary-gold);
  font-weight: 600;
}
.premium-footer .footer-social-icon {
  color: var(--primary-gold);
  font-size: 1.5rem;
  background: #232323;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.premium-footer .footer-social-icon:hover {
  background: var(--primary-gold) !important;
  color: #181818 !important;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}
.premium-footer .footer-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 2rem 0 1rem 0;
}
.premium-footer .small {
  font-size: 0.98rem;
  opacity: 0.85;
}
@media (max-width: 991.98px) {
  .premium-footer .footer-logo {
    margin-bottom: 1rem;
  }
  .premium-footer .footer-desc {
    text-align: left;
  }
}

/* ==========================================================================
   RESTAURANT SECTION STYLES
   ========================================================================== */

#restaurant {
  position: relative;
  overflow: hidden;
}

.menu-category {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-category:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15) !important;
}

.menu-item {
  transition: all 0.3s ease;
  padding: 10px 0;
  border-radius: 8px;
}

.menu-item:hover {
  background: rgba(212, 175, 55, 0.05);
  padding-left: 10px;
  padding-right: 10px;
}

.menu-item h5 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  transition: color 0.3s ease;
}

.menu-item:hover h5 {
  color: var(--primary-gold) !important;
}

.menu-item span {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

/* Restaurant Package Animation */
.restaurant-package {
  animation: pulse-glow 2s ease-in-out infinite alternate;
}

@keyframes pulse-glow {
  0% {
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
  }
  100% {
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
  }
}

/* Responsive Design for Menu */
@media (max-width: 768px) {
  .menu-category {
    margin-bottom: 30px;
  }
  
  .menu-item {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 5px;
  }
  
  .menu-item span {
    margin-left: auto;
    margin-top: 5px;
  }
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */

@media (max-width: 768px) {
  .brand-title {
    font-size: 18px;
  }
  
  .brand-subtitle {
    font-size: 10px;
  }
  
  .premium-nav-link {
    padding: 1rem 0 !important;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-content {
    padding: 0 20px;
  }
  
  .hotel-search-form {
    padding: 20px;
  }
  
  .search-btn {
    margin-top: 10px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hotel-search-form {
    padding: 15px;
  }
  
  .booking-search-section {
    padding: 15px 0;
  }
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.luxury-fade-in {
  animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Fading animation for section */
.section-fade {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(.4,0,.2,1), transform 0.8s cubic-bezier(.4,0,.2,1);
}
.section-fade.visible {
  opacity: 1;
  transform: none;
}

/* --- Form Pencarian Interaktif --- */
.search-input:focus {
  outline: none;
  border-color: var(--primary-gold);
  box-shadow: 0 0 0 4px rgba(212,175,55,0.13);
  background: #fffbe9;
  transition: box-shadow 0.3s, background 0.3s;
}

#guestCount {
  transition: box-shadow 0.3s, background 0.3s;
}

#guestCount:focus {
  box-shadow: 0 0 0 4px rgba(212,175,55,0.13);
  background: #fffbe9;
}

.search-btn {
  position: relative;
  overflow: hidden;
  transition: background 0.3s, color 0.3s, box-shadow 0.3s;
}

.search-btn:active {
  background: var(--primary-gold);
  color: #fff;
  box-shadow: 0 4px 16px rgba(212,175,55,0.18);
}

.search-btn .spinner {
  display: none;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  width: 22px;
  height: 22px;
  border: 3px solid #fff;
  border-top: 3px solid var(--primary-gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.search-btn.loading .spinner {
  display: inline-block;
}

.search-btn.loading span {
  opacity: 0.3;
}

/* --- Overlay pada gambar kamar/fasilitas --- */
.room-img, .amenity-img {
  position: relative;
}

.room-img .img-overlay, .amenity-img .img-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(26,26,26,0.18);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 18px 18px 0 0;
  transition: opacity 0.35s cubic-bezier(.4,0,.2,1);
  pointer-events: none;
}

.hotel-room-item:hover .img-overlay,
.amenity-item:hover .img-overlay {
  opacity: 1;
  pointer-events: auto;
}

/* --- Tombol interaktif --- */
.btn-luxury-primary, .btn-luxury-secondary {
  transition: background 0.3s, color 0.3s, box-shadow 0.3s, transform 0.2s;
}

.btn-luxury-primary:hover, .btn-luxury-secondary:hover {
  box-shadow: 0 4px 18px rgba(212,175,55,0.18);
  transform: translateY(-2px) scale(1.04);
}

.btn-luxury-primary:active, .btn-luxury-secondary:active {
  transform: scale(0.97);
}

/* --- Ikon sosial & kontak --- */
.footer-social a {
  transition: background 0.3s, color 0.3s, border 0.3s, transform 0.3s;
}

.footer-social a:hover {
  background: var(--primary-gold);
  color: #fff;
  border-color: var(--primary-gold);
  transform: rotate(-12deg) scale(1.13);
}

/* --- Navbar sticky interaktif --- */
.premium-navbar {
  background: transparent;
  transition: background 0.4s cubic-bezier(.4,0,.2,1), box-shadow 0.4s cubic-bezier(.4,0,.2,1);
}

.premium-navbar.scrolled {
  background: rgba(24, 24, 24, 0.95) !important;
  box-shadow: 0 2px 16px rgba(26,26,26,0.10);
  backdrop-filter: blur(25px);
}

.premium-nav-link.active {
  color: var(--primary-gold) !important;
  font-weight: 700;
}

/* --- Tooltip --- */
[data-bs-toggle="tooltip"] {
  cursor: help;
}

/* Anchor offset for sticky navbar */
#rooms, #restaurant, #events, #facilities {
  scroll-margin-top: 100px;
  padding-top: 24px;
}

/* Collapsible booking form for mobile */
@media (max-width: 991.98px) {
  .collapsible-booking {
    display: none !important;
    transition: all 0.4s cubic-bezier(.4,0,.2,1);
  }
}

/* Booking form error message */
#bookingFormError {
  font-size: 1rem;
  color: #d9534f;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: opacity 0.3s;
}

/* Booking form smooth transition */
#quickBookingForm {
  transition: all 0.4s cubic-bezier(.4,0,.2,1);
}

/* Room detail modal styles */
#roomDetailModal .modal-content {
  border-radius: 18px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.18);
  overflow: hidden;
}
#roomDetailModal .luxury-badge {
  background: var(--primary-gold);
  color: #fff;
  font-size: 1.1rem;
}
#roomDetailModal .facility-badge {
  background: var(--primary-cream);
  color: var(--primary-dark);
  font-size: 1rem;
  border-radius: 16px;
  padding: 8px 16px;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
#roomDetailModal .facility-badge:hover {
  background: var(--primary-gold);
  color: #fff;
}
#roomDetailModal .carousel-inner img {
  max-height: 320px;
  object-fit: cover;
}

/* --- AOS Animations --- */
[data-aos="fade-up"] {
  opacity: 0;
  transform: translateY(40px);
  transition-property: opacity, transform;
}
[data-aos].aos-animate {
  opacity: 1 !important;
  transform: none !important;
}

/* Meeting & Events 3-column grid */
.event-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 991.98px) {
  .event-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575.98px) {
  .event-grid {
    grid-template-columns: 1fr;
  }
}
.event-item {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: box-shadow 0.25s, transform 0.25s;
  overflow: hidden;
}
.event-item:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  transform: translateY(-8px) scale(1.03);
  z-index: 2;
}
.event-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
}
.event-features .facility-badge {
  background: var(--primary-cream);
  color: var(--primary-dark);
  font-size: 1rem;
  border-radius: 16px;
  padding: 8px 16px;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  margin-right: 4px;
  margin-bottom: 4px;
  display: inline-block;
}
.event-features .facility-badge:hover {
  background: var(--primary-gold);
  color: #fff;
}

/* --- Overlay pada gambar kamar/fasilitas --- */
.room-img, .amenity-img {
  position: relative;
}

.room-img .img-overlay, .amenity-img .img-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(30,30,30,0.32);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  opacity: 0;
  pointer-events: none;
  border-radius: 12px;
  transition: opacity 0.2s;
  z-index: 2;
}
.room-img:hover .img-overlay {
  opacity: 1;
  pointer-events: auto;
}
.room-img {
  position: relative;
  overflow: hidden;
}

/* ==========================================================================
   MODAL IMPROVEMENTS
   ========================================================================== */

#productDetailModal .modal-content {
  border: none;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  border-radius: 20px;
  overflow: hidden;
  animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#productDetailModal .modal-header {
  background: var(--gradient-gold);
  border-bottom: none;
  padding: 25px 30px;
}

#productDetailModal .modal-body {
  background: #fafafa;
  padding: 30px;
}

#productDetailModal .carousel-item img {
  transition: transform 0.3s ease;
  border-radius: 15px;
}

#productDetailModal .carousel-item:hover img {
  transform: scale(1.02);
}

#productDetailModal .carousel-control-prev:hover,
#productDetailModal .carousel-control-next:hover {
  background: rgba(0,0,0,0.7) !important;
  transform: translateY(-50%) scale(1.1);
}

#productDetailModal .btn-luxury-primary {
  background: var(--gradient-gold);
  border: none;
  transition: all 0.3s ease;
}

#productDetailModal .btn-luxury-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
  background: linear-gradient(135deg, #b8941f, var(--primary-gold));
}

/* Room Features Styling */
#productDetailModal .room-feature-item {
  transition: all 0.3s ease;
  cursor: pointer;
}

#productDetailModal .room-feature-item:hover {
  background: rgba(212, 175, 55, 0.1) !important;
  transform: translateX(5px);
}

/* Pricing Box */
#productDetailModal .pricing-box {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
  border: 2px solid rgba(212, 175, 55, 0.2);
  transition: all 0.3s ease;
  border-radius: 12px;
}

#productDetailModal .pricing-box:hover {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.08) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.2);
}

/* Modal Responsive Improvements */
@media (max-width: 768px) {
  #productDetailModal .modal-dialog {
    max-width: 95%;
    margin: 10px auto;
  }
  
  #productDetailModal .modal-body {
    padding: 20px;
  }
  
  #productDetailModal .carousel-item img {
    height: 250px !important;
  }
  
  #productDetailModal .room-feature-item {
    font-size: 0.8rem !important;
  }
}

/* ==========================================================================
   WHATSAPP HELP BUTTON
   ========================================================================== */

.whatsapp-help-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1100;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  overflow: hidden;
  border: none;
  padding: 0;
}

.whatsapp-help-btn:hover {
  width: 200px;
  border-radius: 32px;
  background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
  color: white;
  text-decoration: none;
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
  justify-content: flex-start;
  padding-left: 20px;
}

.whatsapp-help-btn i {
  font-size: 26px;
  transition: all 0.3s ease;
  line-height: 1;
  flex-shrink: 0;
  margin-right: 0;
}

.whatsapp-help-btn:hover i {
  font-size: 24px;
  margin-right: 12px;
}

.whatsapp-help-btn .help-text {
  opacity: 0;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  transition: all 0.3s ease;
  transform: translateX(10px);
  margin-left: 0;
}

.whatsapp-help-btn:hover .help-text {
  opacity: 1;
  transform: translateX(0);
}
/* Pulse animation for attention */
.whatsapp-help-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.3);
  animation: whatsapp-pulse 2s infinite;
  z-index: -1;
}

.whatsapp-help-btn:hover::before {
  border-radius: 32px;
  animation: none;
}

@keyframes whatsapp-pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .whatsapp-help-btn {
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
  }
  
  .whatsapp-help-btn:hover {
    width: 150px;
    border-radius: 30px;
  }
  
  .whatsapp-help-btn i {
    font-size: 24px;
  }
  
  .whatsapp-help-btn:hover i {
    font-size: 20px;
  }
  
  .whatsapp-help-btn .help-text {
    font-size: 11px;
  }
}

/* ==========================================================================
   HERO BOOKING FORM ENHANCEMENTS - COMPACT VERSION
   ========================================================================== */

.hero-booking-form .search-btn:hover,
.hero-booking-form .compact-btn:hover {
  background: linear-gradient(135deg, #b8941f, #d4af37) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.35) !important;
}

.hero-booking-form .search-input:focus,
.hero-booking-form .compact-input:focus {
  border-color: var(--primary-gold) !important;
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2) !important;
  outline: none;
  transform: translateY(-1px);
}

.hero-booking-form .compact-input {
  transition: all 0.2s ease;
}

.hero-booking-form .compact-input:hover {
  border-color: #bbb !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.hero-booking-form .compact-btn {
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.hero-booking-form .compact-btn:active {
  transform: translateY(1px);
}

.hero-booking-form .compact-btn i {
  font-size: 0.75rem;
}

/* Subtle Animation for Form Container */
.hero-booking-form {
  animation: fadeInUp 0.8s ease-out 0.5s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Responsiveness for Compact Form */
@media (max-width: 768px) {
  .hero-booking-form {
    padding: 14px 18px !important;
    margin-top: 20px !important;
    border-radius: 8px !important;
  }
  
  .hero-booking-form .row.g-2 {
    gap: 6px !important;
  }
  
  .hero-booking-form .compact-input,
  .hero-booking-form .compact-btn {
    height: 36px !important;
    font-size: 0.85rem !important;
    padding: 6px 8px !important;
  }
  
  .hero-booking-form .compact-btn {
    font-size: 0.75rem !important;
    letter-spacing: 0.2px !important;
  }
  
  .hero-booking-form .compact-btn i {
    font-size: 0.7rem !important;
  }
  
  .form-label-mini {
    font-size: 0.65rem !important;
    margin-bottom: 2px !important;
  }
}

@media (max-width: 576px) {
  .hero-booking-form .col-md-3,
  .hero-booking-form .col-md-2 {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 8px;
  }
  
  .hero-booking-form .compact-btn {
    margin-top: 8px;
  }
}

.hero-booking-form .search-label {
  margin-bottom: 8px !important;
  display: block;
}

/* Form Mini Labels */
.form-label-mini {
  font-family: 'Open Sans', sans-serif;
  color: #666 !important;
  font-size: 0.7rem !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  margin-bottom: 3px !important;
  display: block !important;
  transition: color 0.2s ease;
}

.hero-booking-form .compact-input:focus + .form-label-mini,
.hero-booking-form .form-label-mini:has(+ .compact-input:focus) {
  color: var(--primary-gold) !important;
}

/* Mobile responsiveness for labels */
@media (max-width: 768px) {
  .form-label-mini {
    font-size: 0.65rem !important;
    margin-bottom: 2px !important;
  }
}

/* ======================
   RESERVATION FORM PAGE STYLES
   ====================== */

/* Body styling for reservation form page */
.reservation-body {
  background: var(--luxury-cream);
}

/* Logo and hotel name in header */
.logo-header {
  height: 40px;
  width: auto;
  margin-right: 12px;
}

.hotel-name-header {
  color: var(--primary-gold);
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
}

/* Hero section for reservation form */
.hero-section-premium {
  position: relative;
  background: linear-gradient(135deg, rgba(212,175,55,0.2), rgba(24,24,24,0.6)), url('../img/hero-img-1.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 120px 0 80px 0;
  margin-top: 76px;
  border-radius: 0 0 32px 32px;
  overflow: hidden;
  min-height: 50vh;
}

.hero-overlay-strong {
  position: absolute;
  inset: 0;
  background: rgba(24,24,24,0.5);
  z-index: 2;
  border-radius: 0 0 32px 32px;
}

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

.hero-title {
  color: var(--primary-cream) !important;
  text-shadow: 2px 2px 12px rgba(0,0,0,0.6);
  font-family: 'Playfair Display', serif;
  font-weight: 800;
}

.hero-subtitle {
  color: var(--primary-cream) !important;
  opacity: 0.9;
  text-shadow: 1px 1px 8px rgba(0,0,0,0.5);
  max-width: 600px;
  margin: 0 auto;
}

/* Form styling */
.reservation-form-card {
  border-radius: 20px;
  box-shadow: var(--shadow-luxury);
  border: 1px solid rgba(212,175,55,0.1);
  background: var(--primary-cream);
}

.section-subtitle {
  color: var(--primary-gold);
  font-family: 'Playfair Display', serif;
}

.summary-card {
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border: 1px solid rgba(212,175,55,0.15);
  background: var(--primary-cream);
}

.summary-card .card-header {
  background: var(--primary-gold);
  color: var(--primary-dark);
  border-radius: 16px 16px 0 0 !important;
  border-bottom: none;
}

/* Summary styling */
.summary-item {
  padding: 12px 0;
  border-bottom: 1px solid rgba(212,175,55,0.2);
}

.summary-item:last-child {
  border-bottom: none;
}

.summary-total {
  background: rgba(212,175,55,0.1);
  border-radius: 8px;
  padding: 16px;
  margin-top: 16px;
}

/* WhatsApp help button */
.whatsapp-help-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1060;
}

.whatsapp-help-link {
  background: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  font-size: 24px;
}

.whatsapp-help-link:hover {
  background: #1db454;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

/* Payment methods styling */
.payment-methods {
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 12px;
  padding: 20px;
  background: rgba(248,246,240,0.5);
}

.payment-option {
  border: none;
  margin-bottom: 0 !important;
}

.payment-option .form-check-input {
  display: none;
}

.payment-card {
  display: flex;
  align-items: center;
  padding: 16px;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  background: white;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 12px;
}

.payment-card:hover {
  border-color: var(--primary-gold);
  box-shadow: 0 4px 12px rgba(212,175,55,0.15);
  transform: translateY(-1px);
}

.payment-option input:checked + label .payment-card {
  border-color: var(--primary-gold);
  background: rgba(212,175,55,0.1);
  box-shadow: 0 4px 16px rgba(212,175,55,0.25);
}

.payment-icon {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
  font-size: 24px;
  background: var(--primary-gold);
  color: white;
}

.payment-option input:checked + label .payment-icon {
  background: var(--gradient-gold);
  color: white;
}

.payment-info h6 {
  margin: 0 0 4px 0;
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 1rem;
}

.payment-info small {
  color: #666;
  font-size: 0.875rem;
  line-height: 1.4;
}

.payment-option input:checked + label .payment-info h6 {
  color: var(--primary-gold);
}

/* Booking details form styling */
.booking-details-form {
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 12px;
  padding: 20px;
  background: rgba(248,246,240,0.3);
}

.booking-details-form .form-text {
  color: #666;
  font-size: 0.8rem;
  margin-top: 4px;
}

.booking-details-form .form-control[readonly] {
  background-color: #f8f9fa;
  border-color: #e0e0e0;
  cursor: not-allowed;
}

.booking-details-form .form-control[readonly]:focus {
  background-color: #f8f9fa;
  border-color: #e0e0e0;
  box-shadow: none;
}

/* Navigation Button Styles */
.btn-outline-gold {
  border: 2px solid var(--primary-gold) !important;
  color: var(--primary-gold) !important;
  background: transparent !important;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline-gold:hover {
  background: var(--primary-gold) !important;
  color: white !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-gold {
  background: var(--gradient-gold) !important;
  color: white !important;
  border: none !important;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-gold:hover {
  background: var(--primary-gold) !important;
  color: white !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}
