/* ============================================
   Nesta - MODERN CSS FRAMEWORK
   ============================================ */

/* CSS Variables - Design System */
:root {
  /* Primary Colors */
  --color-primary: #d4af37;
  --color-primary-dark: #b8941f;
  --color-primary-light: #e8d090;

  /* Secondary Colors */
  --color-secondary: #1a2332;
  --color-secondary-dark: #0f1419;
  --color-secondary-light: #2c3e50;

  /* Accent Colors */
  --color-accent: #20b2aa;
  --color-accent-dark: #188a84;
  --color-accent-light: #5dd4cc;

  /* Semantic Colors */
  --color-success: #10b981;
  --color-warning: #f59e0b;
  --color-danger: #ef4444;
  --color-info: #3b82f6;

  /* Neutral Colors */
  --color-white: #ffffff;
  --color-gray-50: #f9fafb;
  --color-gray-100: #f8f9fa;
  --color-gray-200: #e9ecef;
  --color-gray-300: #dee2e6;
  --color-gray-400: #ced4da;
  --color-gray-500: #adb5bd;
  --color-gray-600: #6b7280;
  --color-gray-700: #495057;
  --color-gray-800: #343a40;
  --color-gray-900: #1f2937;
  --color-black: #000000;

  /* Typography */
  --font-heading: "Playfair Display", serif;
  --font-body: "Inter", sans-serif;
  --font-accent: "Poppins", sans-serif;

  /* Font Sizes */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

  /* Transitions */
  --transition-fast: 150ms ease-in-out;
  --transition-base: 300ms ease-in-out;
  --transition-slow: 500ms ease-in-out;

  /* Z-index */
  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal-backdrop: 1040;
  --z-modal: 1050;
  --z-popover: 1060;
  --z-tooltip: 1070;
}

/* ============================================
   GLOBAL STYLES
   ============================================ */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--color-gray-800);
  background-color: var(--color-white);
  overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-secondary);
  margin-bottom: var(--space-4);
}

h1 {
  font-size: var(--text-5xl);
}
h2 {
  font-size: var(--text-4xl);
}
h3 {
  font-size: var(--text-3xl);
}
h4 {
  font-size: var(--text-2xl);
}
h5 {
  font-size: var(--text-xl);
}
h6 {
  font-size: var(--text-lg);
}

p {
  margin-bottom: var(--space-4);
  color: var(--color-gray-700);
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: var(--transition-fast);
}

a:hover {
  color: var(--color-primary-dark);
}

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

/* ============================================
   UTILITY CLASSES
   ============================================ */

.container-custom {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 var(--space-4);
}

.section-padding {
  padding: var(--space-20) 0;
}

.text-primary {
  color: var(--color-primary);
}
.text-secondary {
  color: var(--color-secondary);
}
.text-accent {
  color: var(--color-accent);
}
.text-white {
  color: var(--color-white);
}

.bg-primary {
  background-color: var(--color-primary);
}
.bg-secondary {
  background-color: var(--color-secondary);
}
.bg-accent {
  background-color: var(--color-accent);
}
.bg-gray-50 {
  background-color: var(--color-gray-50);
}
.bg-white {
  background-color: var(--color-white);
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar-custom {
  background-color: var(--color-white);
  box-shadow: var(--shadow-md);
  padding: var(--space-4) 0;
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
  transition: var(--transition-base);
}

.navbar-custom.scrolled {
  padding: var(--space-3) 0;
  box-shadow: var(--shadow-lg);
}

.navbar-brand-custom {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-secondary);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.navbar-brand-custom .logo-icon {
  color: var(--color-primary);
  font-size: var(--text-3xl);
}

.nav-link-custom {
  font-family: var(--font-accent);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-gray-700);
  padding: var(--space-2) var(--space-4);
  margin: 0 var(--space-1);
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
  position: relative;
}

.nav-link-custom:hover,
.nav-link-custom.active {
  color: var(--color-primary);
  background-color: var(--color-gray-50);
}

.nav-link-custom::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 80%;
  height: 2px;
  background-color: var(--color-primary);
  transition: var(--transition-base);
}

.nav-link-custom:hover::after,
.nav-link-custom.active::after {
  transform: translateX(-50%) scaleX(1);
}

/* Dropdown Menu Styles */
.nav-item.dropdown {
  position: relative;
}

.nav-link-custom.dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}

.dropdown-menu-custom {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  min-width: 200px;
  padding: var(--space-2) 0;
  margin: 0;
  background-color: white;
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  list-style: none;
}

.dropdown-menu-custom.show {
  display: block;
}

.dropdown-item-custom {
  display: block;
  width: 100%;
  padding: var(--space-3) var(--space-5);
  clear: both;
  font-weight: 400;
  color: var(--color-gray-700);
  text-align: inherit;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
  transition: var(--transition-fast);
}

.dropdown-item-custom:hover,
.dropdown-item-custom:focus {
  color: var(--color-primary);
  background-color: var(--color-gray-50);
}

.dropdown-item-custom i {
  margin-right: var(--space-2);
  color: var(--color-primary);
  font-size: 1.1rem;
}

@media (max-width: 991px) {
  .dropdown-menu-custom {
    position: static;
    float: none;
    width: auto;
    margin-top: 0;
    background-color: var(--color-gray-50);
    border: 0;
    box-shadow: none;
  }

  .dropdown-item-custom {
    padding-left: var(--space-8);
  }
}

/* ============================================
   BUTTONS
   ============================================ */

.btn-custom {
  font-family: var(--font-accent);
  font-size: var(--text-base);
  font-weight: 600;
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-lg);
  border: none;
  cursor: pointer;
  transition: var(--transition-base);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-2);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-custom::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition:
    width 0.6s,
    height 0.6s;
}

.btn-custom:hover::before {
  width: 100%;
  height: 300px;
}

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

.btn-primary:hover {
  background-color: var(--color-primary-dark);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

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

.btn-secondary:hover {
  background-color: var(--color-secondary-light);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline-primary {
  background-color: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn-outline-primary:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn-outline-secondary {
  background-color: transparent;
  color: var(--color-secondary);
  border: 2px solid var(--color-secondary);
}

.btn-outline-secondary:hover {
  background-color: var(--color-secondary);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn-lg {
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-lg);
}

.btn-sm {
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-sm);
}

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

.card-custom {
  background-color: var(--color-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
  display: flex;
  flex-direction: column;
}

.card-custom:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-2xl);
}

.card-img-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

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

.card-img-overlay-custom {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(26, 35, 50, 0.3);
  opacity: 0;
  transition: var(--transition-base);
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-custom:hover .card-img-overlay-custom {
  opacity: 1;
}

.card-body-custom {
  padding: var(--space-6);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card-title-custom {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: var(--space-3);
}

.card-text-custom {
  color: var(--color-gray-600);
  font-size: var(--text-sm);
  line-height: 1.6;
  margin-bottom: var(--space-4);
  flex-grow: 1;
}

.card-badge {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
  font-family: var(--font-accent);
  z-index: 10;
}

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

.hero-section {
  position: relative;
  height: 90vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(26, 35, 50, 0.8) 0%, rgba(26, 35, 50, 0.4) 50%, rgba(26, 35, 50, 0.2) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: left;
  color: var(--color-white);
  max-width: 800px;
  padding: 0 var(--space-4);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.1;
  margin-bottom: var(--space-6);
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
  font-size: var(--text-xl);
  color: var(--color-gray-100);
  margin-bottom: var(--space-8);
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-buttons {
  display: flex;
  gap: var(--space-4);
  justify-content: flex-start;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background-color: rgba(212, 175, 55, 0.15);
  backdrop-filter: blur(10px);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--color-primary-light);
  font-family: var(--font-accent);
  font-size: var(--text-sm);
  font-weight: 600;
  margin-bottom: var(--space-6);
  animation: fadeInUp 1s ease-out;
}

.text-gradient {
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.btn-glass {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-glass:hover {
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--color-white);
  transform: translateY(-2px);
}

/* ============================================
   SEARCH WIDGET REDESIGN
   ============================================ */

.hero-container {
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding-top: var(--space-12);
}

.search-widget-wrapper {
  margin-top: auto;
  padding-bottom: var(--space-12);
  animation: fadeInUp 1s ease-out 0.6s both;
}

.search-widget-glass {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  padding: var(--space-8);
  border-radius: var(--radius-2xl);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.input-group-custom {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.input-group-custom label {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-weight: 600;
  color: var(--color-secondary);
  font-size: var(--text-sm);
  margin-bottom: 0;
}

.input-group-custom label i {
  color: var(--color-primary);
  font-size: 1.1rem;
}

.search-widget-glass .form-control-custom {
  background-color: var(--color-gray-50);
  border: 1px solid var(--color-gray-200);
  padding: var(--space-3) var(--space-4);
  font-weight: 500;
}

@media (max-width: 991px) {
  .hero-section {
    height: auto;
    min-height: 100vh;
    padding: var(--space-20) 0;
  }
  .hero-content {
    text-align: center;
    align-items: center;
    margin: 0 auto;
  }
  .hero-buttons {
    justify-content: center;
  }
  .hero-badge {
    margin-left: auto;
    margin-right: auto;
  }
  .search-widget-glass {
    padding: var(--space-6);
  }
}

.search-widget .form-control-custom {
  border: 2px solid var(--color-gray-200);
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-base);
  transition: var(--transition-fast);
}

.search-widget .form-control-custom:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.search-widget label {
  font-family: var(--font-accent);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-gray-700);
  margin-bottom: var(--space-2);
  display: block;
}

/* ============================================
   SECTION HEADERS
   ============================================ */

.section-header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.section-subtitle {
  font-family: var(--font-accent);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: var(--space-3);
}

.section-title {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: var(--space-4);
}

.section-description {
  font-size: var(--text-lg);
  color: var(--color-gray-600);
  max-width: 700px;
  margin: 0 auto;
}

/* ============================================
   FEATURES / AMENITIES
   ============================================ */

.feature-box {
  text-align: center;
  padding: var(--space-8);
  background-color: var(--color-white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
  height: 100%;
}

.feature-box:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-4);
  background-color: var(--color-gray-50);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-4xl);
  color: var(--color-primary);
  transition: var(--transition-base);
}

.feature-box:hover .feature-icon {
  background-color: var(--color-primary);
  color: var(--color-white);
  transform: scale(1.1);
}

.feature-title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: var(--space-3);
}

.feature-description {
  color: var(--color-gray-600);
  font-size: var(--text-sm);
  line-height: 1.6;
}

/* ============================================
   STATS SECTION
   ============================================ */

.stats-box {
  text-align: center;
  padding: var(--space-6);
}

.stats-number {
  font-family: var(--font-heading);
  font-size: var(--text-5xl);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--space-2);
  display: block;
}

.stats-label {
  font-family: var(--font-accent);
  font-size: var(--text-base);
  color: var(--color-gray-700);
  font-weight: 500;
}

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonial-card {
  background-color: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-md);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.testimonial-rating {
  color: var(--color-primary);
  font-size: var(--text-lg);
  margin-bottom: var(--space-4);
}

.testimonial-text {
  font-size: var(--text-base);
  color: var(--color-gray-700);
  line-height: 1.8;
  margin-bottom: var(--space-6);
  flex-grow: 1;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-full);
  overflow: hidden;
  border: 3px solid var(--color-primary);
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-info h5 {
  font-family: var(--font-accent);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-secondary);
  margin-bottom: var(--space-1);
}

.testimonial-info p {
  font-size: var(--text-sm);
  color: var(--color-gray-500);
  margin: 0;
}

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

.footer-custom {
  background-color: var(--color-secondary);
  color: var(--color-gray-300);
  padding: var(--space-16) 0 var(--space-6);
}

.footer-brand {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--space-4);
}

.footer-description {
  color: var(--color-gray-400);
  font-size: var(--text-sm);
  line-height: 1.6;
  margin-bottom: var(--space-6);
}

.footer-title {
  font-family: var(--font-accent);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: var(--space-4);
}

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

.footer-links li {
  margin-bottom: var(--space-3);
}

.footer-links a {
  color: var(--color-gray-400);
  font-size: var(--text-sm);
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}

.footer-links a:hover {
  color: var(--color-primary);
  padding-left: var(--space-2);
}

.footer-social {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background-color: var(--color-secondary-light);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-lg);
  transition: var(--transition-base);
}

.social-icon:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-4px);
}

.footer-bottom {
  border-top: 1px solid var(--color-secondary-light);
  margin-top: var(--space-12);
  padding-top: var(--space-6);
  text-align: center;
  color: var(--color-gray-500);
  font-size: var(--text-sm);
}

/* ============================================
   FORMS
   ============================================ */

.form-group-custom {
  margin-bottom: var(--space-5);
}

.form-label-custom {
  font-family: var(--font-accent);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-gray-700);
  margin-bottom: var(--space-2);
  display: block;
}

.form-control-custom {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-base);
  font-family: var(--font-body);
  color: var(--color-gray-800);
  background-color: var(--color-white);
  border: 2px solid var(--color-gray-300);
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
}

.form-control-custom:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-control-custom::placeholder {
  color: var(--color-gray-400);
}

textarea.form-control-custom {
  resize: vertical;
  min-height: 120px;
}

.form-select-custom {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23343A40' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--space-4) center;
  padding-right: var(--space-10);
}

/* ============================================
   BADGES
   ============================================ */

.badge-custom {
  font-family: var(--font-accent);
  font-size: var(--text-xs);
  font-weight: 600;
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-full);
  display: inline-block;
}

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

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

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

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

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

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

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

.slide-in-left {
  animation: slideInLeft 0.8s ease-out;
}

.slide-in-right {
  animation: slideInRight 0.8s ease-out;
}

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

@media (max-width: 991px) {
  :root {
    --text-6xl: 2.5rem;
    --text-5xl: 2rem;
    --text-4xl: 1.75rem;
  }

  .hero-section {
    height: 70vh;
    min-height: 500px;
  }

  .section-padding {
    padding: var(--space-12) 0;
  }
}

@media (max-width: 767px) {
  :root {
    --text-6xl: 2rem;
    --text-5xl: 1.75rem;
    --text-4xl: 1.5rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .search-widget {
    padding: var(--space-4);
  }

  .section-padding {
    padding: var(--space-10) 0;
  }
}

/* ============================================
   BREADCRUMB
   ============================================ */

.breadcrumb-custom {
  background-color: var(--color-gray-50);
  padding: var(--space-4) 0;
}

.breadcrumb-custom ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin: 0;
  padding: 0;
}

.breadcrumb-custom li {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--color-gray-600);
}

.breadcrumb-custom li:not(:last-child)::after {
  content: "/";
  color: var(--color-gray-400);
}

.breadcrumb-custom a {
  color: var(--color-gray-600);
  transition: var(--transition-fast);
}

.breadcrumb-custom a:hover {
  color: var(--color-primary);
}

.breadcrumb-custom li.active {
  color: var(--color-primary);
  font-weight: 600;
}

/* ============================================
   PRICE TAG
   ============================================ */

.price-tag {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--color-primary);
}

.price-tag .currency {
  font-size: var(--text-xl);
}

.price-tag .period {
  font-size: var(--text-sm);
  font-weight: 400;
  color: var(--color-gray-600);
  font-family: var(--font-body);
}

/* ============================================
   RATING STARS
   ============================================ */

.rating-stars {
  display: inline-flex;
  gap: var(--space-1);
  color: var(--color-primary);
  font-size: var(--text-base);
}

.rating-stars.lg {
  font-size: var(--text-xl);
}

.rating-stars.sm {
  font-size: var(--text-sm);
}

/* ============================================
   LOADING SPINNER
   ============================================ */

.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid var(--color-gray-200);
  border-top-color: var(--color-primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ============================================
   PAGE HEADER
   ============================================ */

.page-header {
  background-color: var(--color-secondary);
  color: var(--color-white);
  padding: var(--space-16) 0 var(--space-12);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%23ffffff" fill-opacity="0.05"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
  opacity: 0.5;
}

.page-header-content {
  position: relative;
  z-index: 1;
}

.page-header h1 {
  color: var(--color-white);
  margin-bottom: var(--space-4);
}

.page-header p {
  color: var(--color-gray-300);
  font-size: var(--text-lg);
  max-width: 700px;
  margin: 0 auto;
}

/* ============================================
   LIST VIEW
   ============================================ */

#rooms-container.list-view .room-card {
  width: 100%;
}

#rooms-container.list-view .card-custom {
  flex-direction: row;
}

#rooms-container.list-view .card-img-wrapper {
  width: 40%;
  aspect-ratio: auto;
  min-height: 250px;
}

#rooms-container.list-view .card-body-custom {
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 767px) {
  #rooms-container.list-view .card-custom {
    flex-direction: column;
  }
  #rooms-container.list-view .card-img-wrapper {
    width: 100%;
    aspect-ratio: 16 / 10;
  }
  #rooms-container.list-view .card-body-custom {
    width: 100%;
  }
}
