/* ========================================
   HERO SECTION STYLES
======================================== */

:root {
  /* Elegant Blue & White Color Scheme */
  --primary-light: #E3F2FD;    /* Light blue background */
  --primary-medium: #BBDEFB;   /* Medium light blue */
  --primary-main: #90CAF9;     /* Main blue */
  --primary-dark: #64B5F6;     /* Darker blue */
  --primary-darker: #1976D2;   /* Deep blue for text */

  --primary-gradient: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 50%, #90CAF9 100%);
  --secondary-gradient: linear-gradient(135deg, #F8FAFC 0%, #E2E8F0 100%);
  --accent-gradient: linear-gradient(135deg, #90CAF9 0%, #64B5F6 100%);

  --success-color: #4CAF50;
  --success-light: #E8F5E8;
  --warning-color: #FF9800;
  --warning-light: #FFF3E0;
  --error-color: #F44336;
  --error-light: #FFEBEE;

  --white: #FFFFFF;
  --gray-50: #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-300: #CBD5E1;
  --gray-400: #94A3B8;
  --gray-500: #64748B;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1E293B;
  --gray-900: #0F172A;

  --shadow-light: 0 4px 20px rgba(25, 118, 210, 0.08);
  --shadow-medium: 0 8px 30px rgba(25, 118, 210, 0.12);
  --shadow-strong: 0 12px 40px rgba(25, 118, 210, 0.15);
  --border-radius: 16px;
  --border-radius-small: 8px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-section {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-medium) 100%);
  overflow: hidden;
}

.hero-overlay {
  position: relative;
  z-index: 2;
  padding: 2rem 0;
}

.hero-content {
  animation: fadeInUp 0.8s ease-out;
}

.hero-badge {
  display: inline-block;
}

.badge-modern {
  background: var(--white);
  backdrop-filter: blur(20px);
  color: var(--primary-darker);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 2px solid var(--primary-main);
  box-shadow: var(--shadow-light);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--primary-darker);
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.highlight-text {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: var(--primary-darker);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--gray-600);
  font-weight: 400;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Search Container */
.search-container {
  max-width: 600px;
  margin: 0 auto;
}

.search-form {
  position: relative;
}

.search-input-wrapper {
  position: relative;
  background: var(--white);
  backdrop-filter: blur(20px);
  border-radius: var(--border-radius);
  padding: 0.5rem;
  box-shadow: var(--shadow-medium);
  border: 2px solid var(--primary-main);
  display: flex;
  align-items: center;
  transition: var(--transition);
}

.search-input-wrapper:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-strong);
}

.search-icon {
  color: var(--primary-darker);
  margin: 0 1rem;
  font-size: 1.2rem;
  transition: var(--transition);
}

.search-input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 1rem 0;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--gray-800);
  outline: none;
}

.search-input::placeholder {
  color: var(--gray-400);
  font-weight: 400;
}

.search-btn {
  background: var(--accent-gradient);
  color: var(--white);
  border: none;
  padding: 1rem 2rem;
  border-radius: var(--border-radius-small);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 15px rgba(25, 118, 210, 0.3);
}

.search-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(25, 118, 210, 0.4);
}

/* Hero Stats */
.hero-stats {
  margin-top: 3rem;
}

.stat-item {
  padding: 1rem;
  background: var(--white);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius-small);
  border: 1px solid var(--primary-light);
  transition: var(--transition);
  box-shadow: var(--shadow-light);
}

.stat-item:hover {
  transform: translateY(-5px);
  background: var(--primary-light);
  box-shadow: var(--shadow-medium);
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-darker);
  margin-bottom: 0.5rem;
  text-shadow: none;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--gray-600);
  margin: 0;
  font-weight: 500;
}

/* Floating Elements */
.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
}

.floating-circle {
  position: absolute;
  border-radius: 50%;
  background: var(--primary-light);
  backdrop-filter: blur(5px);
  animation: float 6s ease-in-out infinite;
  opacity: 0.7;
}

.circle-1 {
  width: 80px;
  height: 80px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.circle-2 {
  width: 120px;
  height: 120px;
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.circle-3 {
  width: 60px;
  height: 60px;
  bottom: 20%;
  left: 20%;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

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

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

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

  .hero-subtitle {
    font-size: 1rem;
    padding: 0 1rem;
  }

  .search-input-wrapper {
    flex-direction: column;
    gap: 0.5rem;
  }

  .search-input {
    padding: 0.75rem 1rem;
    text-align: center;
  }

  .search-btn {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    margin-top: 2rem;
  }

  .stat-item {
    margin-bottom: 1rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-section {
    min-height: auto;
    padding: 4rem 0;
  }

  .hero-overlay {
    padding: 1rem 0;
  }
}

/* ========================================
   LEGACY STYLES
======================================== */

.datepicker td, .datepicker th {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 0.85rem;
}

#datepicker{
  width: 70%;
  font-size: medium;
}

#tampil {
  display: none;
}

#show {
  display: none;
}

/* ========================================
   SEARCH RESULTS PAGE STYLES
======================================== */

/* Search Results Header */
.search-results-header {
  background: var(--gray-50);
  padding: 3rem 0 2rem;
  border-bottom: 1px solid var(--gray-200);
}

.search-results-info .page-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gray-800);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.search-term {
  color: var(--primary-darker);
  position: relative;
}

.search-term::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent-gradient);
  border-radius: 2px;
}

.results-count {
  color: var(--gray-600);
  font-size: 1.1rem;
  margin: 0;
  font-weight: 500;
}

.search-refine {
  text-align: right;
}

.search-input-compact {
  position: relative;
  max-width: 400px;
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.search-icon-compact {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-400);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-size: 1.1rem;
  pointer-events: none;
}

.search-input-compact-field {
  padding-left: 3rem;
  padding-right: 1rem;
  height: 48px;
  line-height: 1.5;
  border-radius: var(--border-radius);
  border: 2px solid var(--gray-300);
  font-size: 1rem;
  transition: var(--transition);
  display: block;
  flex: 1;
}

.search-input-compact-field:focus {
  border-color: var(--primary-main);
  box-shadow: 0 0 0 3px rgba(25, 118, 210, 0.1);
}

.search-btn-compact {
  position: relative;
  height: 48px;
  padding: 0 1.5rem;
  background: var(--accent-gradient);
  border: none;
  border-radius: var(--border-radius-small);
  color: var(--white);
  font-weight: 600;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  white-space: nowrap;
  flex-shrink: 0;
}

.search-btn-compact:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(25, 118, 210, 0.3);
}

/* Filters Section */
.filters-section {
  padding: 2rem 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
}

.filters-container {
  background: var(--gray-50);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow-light);
}

.filters-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.filters-title i {
  color: var(--primary-main);
}

.province-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.province-filter-btn {
  padding: 0.75rem 1.5rem;
  background: var(--white);
  color: var(--gray-600);
  border: 2px solid var(--gray-300);
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
  display: inline-block;
}

.province-filter-btn:hover,
.province-filter-btn.active {
  background: var(--accent-gradient);
  color: var(--white);
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

/* Results Section */
.results-section {
  padding: 3rem 0;
}

.rooms-grid {
  margin-bottom: 3rem;
}

/* Modern Room Cards */
.room-card-modern {
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
  position: relative;
}

.room-card-modern:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-strong);
}

.room-card-image {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.room-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.room-card-modern:hover .room-image {
  transform: scale(1.05);
}

.promo-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--warning-gradient);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.8rem;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.room-overlay {
  position: absolute;
  top: 0;
  right: 0;
  padding: 1rem;
  opacity: 0;
  transition: var(--transition);
}

.room-card-modern:hover .room-overlay {
  opacity: 1;
}

.btn-favorite {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e53e3e;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-light);
}

.btn-favorite:hover {
  background: #e53e3e;
  color: white;
  transform: scale(1.1);
}

.btn-favorite.active {
  background: #e53e3e;
  color: white;
}

/* Room Card Content */
.room-card-content {
  padding: 1.5rem;
}

.room-header {
  margin-bottom: 1rem;
}

.room-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 0.25rem;
  line-height: 1.3;
}

.room-title a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

.room-title a:hover {
  color: var(--primary-darker);
}

.room-location {
  color: var(--gray-600);
  font-weight: 500;
  font-size: 0.9rem;
}

.room-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  gap: 0.5rem;
}

.badge {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  display: inline-block;
}

.badge-type {
  background: var(--accent-gradient);
  color: var(--white);
}

.badge-available {
  background: var(--success-color);
  color: var(--white);
}

.badge-full {
  background: var(--error-light);
  color: var(--error-color);
}

.room-location-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gray-600);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.room-location-info i {
  color: var(--primary-main);
}

.room-price {
  margin-bottom: 1rem;
}

.price-original {
  color: var(--gray-400);
  text-decoration: line-through;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.price-discount {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--warning-color);
  line-height: 1.2;
}

.price-regular {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gray-800);
  line-height: 1.2;
}

.price-period {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-600);
}

.room-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
}

.room-actions-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: auto;
}

.room-category {
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.category-kost {
  background: var(--warning-gradient);
  color: white;
}

.category-apartemen {
  background: var(--secondary-gradient);
  color: white;
}

.room-booking {
  color: var(--success-color);
  font-size: 0.85rem;
  font-weight: 600;
  background: var(--success-light);
  padding: 0.5rem 1rem;
  border-radius: 20px;
}

/* Pagination */
.pagination-container {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

/* Empty State */
.empty-state {
  text-align: center;
  padding: 5rem 2rem;
}

.empty-state-content {
  max-width: 500px;
  margin: 0 auto;
}

.empty-icon {
  font-size: 4rem;
  color: var(--gray-300);
  margin-bottom: 2rem;
}

.empty-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 1rem;
}

.empty-description {
  color: var(--gray-600);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

/* ========================================
   HOMEPAGE SECTION STYLES
======================================== */

.section-header {
  margin-bottom: 2rem;
}

.section-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gray-800);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.section-title i {
  color: var(--primary-main);
  font-size: 1.5rem;
}

.section-subtitle {
  color: var(--gray-600);
  font-size: 1.1rem;
  margin: 0;
  font-weight: 500;
}

.btn-view-all {
  background: var(--accent-gradient);
  color: var(--white);
  border: none;
  padding: 0.875rem 1.5rem;
  border-radius: var(--border-radius-small);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(25, 118, 210, 0.3);
}

.btn-view-all:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(25, 118, 210, 0.4);
  color: var(--white);
  text-decoration: none;
}

/* ========================================
   RESPONSIVE DESIGN FOR SEARCH RESULTS
======================================== */

@media (max-width: 768px) {
  .search-results-header {
    padding: 2rem 0 1.5rem;
  }

  .search-results-info .page-title {
    font-size: 2rem;
  }

  .results-count {
    font-size: 1rem;
  }

  .search-refine {
    text-align: left;
    margin-top: 1.5rem;
  }

  .search-input-compact {
    max-width: 100%;
    margin-left: 0;
  }

  .filters-container {
    padding: 1.5rem;
  }

  .province-filters {
    gap: 0.5rem;
  }

  .province-filter-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }

  .room-card-content {
    padding: 1.25rem;
  }

  .room-title {
    font-size: 1.1rem;
  }

  .room-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .room-actions {
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
  }

  .empty-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 576px) {
  .search-results-info .page-title {
    font-size: 1.75rem;
  }

  .room-card-image {
    height: 180px;
  }

  .results-section {
    padding: 2rem 0;
  }

  /* Homepage responsive */
  .section-title {
    font-size: 1.5rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .btn-view-all {
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
  }

  .section-header .d-flex {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .btn-view-all {
    align-self: center;
  }
}

/* ========================================
   ADDITIONAL ANIMATIONS & EFFECTS
======================================== */

/* Loading Animation */
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.loading {
  animation: pulse 1.5s ease-in-out infinite;
}

/* Stagger Animation for Cards */
.room-card-modern {
  animation: fadeInUp 0.6s ease-out forwards;
  opacity: 0;
}

.room-card-modern:nth-child(1) { animation-delay: 0.1s; }
.room-card-modern:nth-child(2) { animation-delay: 0.2s; }
.room-card-modern:nth-child(3) { animation-delay: 0.3s; }
.room-card-modern:nth-child(4) { animation-delay: 0.4s; }
.room-card-modern:nth-child(5) { animation-delay: 0.5s; }
.room-card-modern:nth-child(6) { animation-delay: 0.6s; }
.room-card-modern:nth-child(7) { animation-delay: 0.7s; }
.room-card-modern:nth-child(8) { animation-delay: 0.8s; }

/* Button Hover Effects */
.btn {
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

/* Image Loading Effect */
.room-image {
  transition: var(--transition);
  filter: brightness(1);
}

.room-card-modern:hover .room-image {
  filter: brightness(1.1) contrast(1.1);
}

/* Scale Animation for Interactive Elements */
.btn-favorite:active,
.search-btn:active,
.btn-view-all:active {
  transform: scale(0.95);
}

/* Focus States for Accessibility */
.search-input:focus,
.search-input-compact-field:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(25, 118, 210, 0.1), var(--shadow-medium);
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Page Load Animation */
body {
  animation: pageLoad 0.5s ease-out;
}

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

/* Enhanced Floating Animation */
@keyframes enhancedFloat {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  25% {
    transform: translateY(-10px) rotate(1deg);
  }
  50% {
    transform: translateY(-20px) rotate(0deg);
  }
  75% {
    transform: translateY(-10px) rotate(-1deg);
  }
}

.circle-1 {
  animation: enhancedFloat 8s ease-in-out infinite;
}

.circle-2 {
  animation: enhancedFloat 10s ease-in-out infinite reverse;
}

.circle-3 {
  animation: enhancedFloat 12s ease-in-out infinite;
}

/* ========================================
   FORM KAMAR LAYOUT IMPROVEMENTS
======================================== */

/* Improved spacing for form rows */
.form-body .row {
  margin-bottom: 1.5rem;
}

.form-body .row:last-child {
  margin-bottom: 0;
}

/* Better spacing between form groups */
.form-body .col-sm-3,
.form-body .col-sm-4,
.form-body .col-sm-6,
.form-body .col-sm-12 {
  margin-bottom: 0;
}

/* Consistent label styling */
.form-body .col-form-label {
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 0.5rem;
  display: block;
  font-size: 0.95rem;
}

/* Better input field styling */
.form-body .form-control {
  border-radius: var(--border-radius-small);
  border: 1px solid var(--gray-300);
  transition: var(--transition);
  padding: 0.75rem 1rem;
}

.form-body .form-control:focus {
  border-color: var(--primary-main);
  box-shadow: 0 0 0 3px rgba(25, 118, 210, 0.1);
  outline: none;
}

/* Visual grouping for related fields */
.form-body .row:not(:first-child):not(:last-child) {
  padding-top: 0.5rem;
}

/* ========================================
   MENU NAVIGATION IMPROVEMENTS
======================================== */

/* Remove box/border and add spacing for menu items */
.nav-item-custom {
  margin: 0 0.75rem !important;
}

.nav-link-custom {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0.75rem 1.25rem !important;
  color: var(--gray-600) !important;
  font-weight: 500 !important;
  font-size: 0.95rem !important;
  border-radius: 8px !important;
  transition: var(--transition) !important;
  text-decoration: none !important;
  display: flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
}

.nav-link-custom:hover {
  background: transparent !important;
  color: var(--primary-darker) !important;
  text-decoration: underline !important;
  text-underline-offset: 4px !important;
}

.nav-link-custom i {
  font-size: 1.1rem !important;
  color: inherit !important;
}

/* ========================================
   BACKGROUND PURE WHITE
======================================== */

body.horizontal-layout {
  background: #FFFFFF !important;
}

.content-wrapper {
  background: #FFFFFF !important;
}

.content-body {
  background: #FFFFFF !important;
}

/* ========================================
   BANNER TEXT COLOR - DARKER BLUE
======================================== */

.hero-title {
  color: #1e3a8a !important; /* Darker blue for mature audience */
}

.highlight-text {
  color: #1e40af !important; /* Darker blue */
  background: none !important;
  -webkit-background-clip: unset !important;
  -webkit-text-fill-color: #1e40af !important;
  background-clip: unset !important;
}

/* ========================================
   PROMO BADGE IMPROVEMENTS
======================================== */

.promo-badge {
  background: linear-gradient(135deg, #ef4444 0%, #f97316 100%) !important;
  color: white !important;
  padding: 0.6rem 1.2rem !important;
  border-radius: 8px !important;
  font-weight: 800 !important;
  font-size: 0.85rem !important;
  z-index: 2 !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4) !important;
  position: absolute !important;
  top: 1rem !important;
  left: 1rem !important;
  transform: rotate(-2deg) !important;
  border: 2px solid rgba(255, 255, 255, 0.3) !important;
  animation: pulse-promo 2s ease-in-out infinite !important;
}

@keyframes pulse-promo {
  0%, 100% {
    transform: rotate(-2deg) scale(1);
  }
  50% {
    transform: rotate(-2deg) scale(1.05);
  }
}

/* Promo card styling */
.swiper-slide {
  border: 2px solid transparent !important;
  transition: var(--transition) !important;
}

.swiper-slide:hover {
  border-color: #f97316 !important;
  box-shadow: 0 8px 24px rgba(249, 115, 22, 0.2) !important;
}

/* ========================================
   ROOM CARD IMPROVEMENTS
======================================== */

/* Move favorite button to bottom of card - LEFT SIDE */
.room-overlay {
  display: none !important; /* Hide overlay on image */
}

.room-card-content {
  position: relative;
}

.btn-favorite-left {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 2px solid #e2e8f0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e53e3e;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
  text-decoration: none;
  padding: 0;
  margin: 0;
}

.btn-favorite-left:hover {
  background: #e53e3e;
  color: white;
  border-color: #e53e3e;
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(229, 62, 62, 0.3);
  text-decoration: none;
}

.btn-favorite-left.active {
  background: #e53e3e;
  color: white;
  border-color: #e53e3e;
}

.btn-favorite-left i {
  font-size: 1.1rem;
}

/* Room info styling - type_room, lantai, nomor_room */
.room-info-details {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gray-600);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.room-info-details i {
  color: var(--primary-main);
  font-size: 1rem;
}

.room-info-item {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.5rem;
  background: var(--gray-50);
  border-radius: 6px;
  font-weight: 500;
}

.room-info-item:not(:last-child)::after {
  content: '|';
  margin: 0 0.5rem;
  color: var(--gray-400);
}

/* ========================================
   FOOTER IMPROVEMENTS
======================================== */

.footer {
  background: #FFFFFF !important;
  border-top: 1px solid var(--gray-200);
  padding: 3rem 0 2rem !important;
}

.footer h4 {
  color: var(--gray-800);
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.footer p {
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer ul li {
  margin-bottom: 0.75rem;
  color: var(--gray-600);
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--gray-50);
  border-radius: 50%;
  color: var(--gray-700);
  font-size: 1.25rem;
  transition: var(--transition);
  text-decoration: none;
}

.footer-social a:hover {
  background: var(--primary-main);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(25, 118, 210, 0.3);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--gray-600);
}

.footer-contact-item i {
  color: var(--primary-main);
  font-size: 1.1rem;
  margin-top: 0.25rem;
}

.footer ul li a:hover {
  color: var(--primary-darker) !important;
  text-decoration: underline !important;
}

/* ========================================
   PROMO CARD ENHANCED STYLING
======================================== */

.promo-card-enhanced {
  background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 100%) !important;
  border: 2px solid #E2E8F0 !important;
  padding: 2rem 1.5rem !important;
  text-align: center !important;
  transition: var(--transition) !important;
  position: relative !important;
  overflow: hidden !important;
}

.promo-card-enhanced::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ef4444 0%, #f97316 100%);
}

.promo-card-enhanced:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 12px 32px rgba(249, 115, 22, 0.25) !important;
  border-color: #f97316 !important;
}

.promo-icon-wrapper {
  margin-bottom: 1rem;
}

.promo-icon {
  font-size: 3rem !important;
  color: #f97316 !important;
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.2);
  transition: var(--transition);
}

.promo-card-enhanced:hover .promo-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.3);
}

.promo-room-name {
  font-size: 1.1rem !important;
  font-weight: 700 !important;
  color: var(--gray-800) !important;
  margin-bottom: 1rem !important;
  line-height: 1.4 !important;
}

.promo-price-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}

.promo-price-original {
  font-size: 0.9rem !important;
  color: var(--gray-400) !important;
  text-decoration: line-through !important;
  font-weight: 500 !important;
}

.promo-price-discount {
  font-size: 1.5rem !important;
  font-weight: 800 !important;
  color: #f97316 !important;
  line-height: 1.2 !important;
}

.promo-price-discount small {
  font-size: 0.9rem !important;
  font-weight: 600 !important;
  color: var(--gray-600) !important;
}

