/* DESIGN SYSTEM & TOKENS (8px Grid & Luxury HSL Colors) */
:root {
  --bg-dark: #09090b;
  --bg-card: #121215;
  --gold: #d4af37;
  --gold-dark: #aa8416;
  --light: #f4f4f5;
  --muted: #a1a1aa;
  --border: rgba(255, 255, 255, 0.05);
  --glass-bg: rgba(9, 9, 11, 0.75);
  --glass-border: rgba(212, 175, 55, 0.15);
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 24px;
  --spacing-lg: 32px;
  --spacing-xl: 48px;
  --spacing-xxl: 80px;
}

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

body {
  background-color: var(--bg-dark);
  color: var(--light);
  font-family: var(--font-body);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
}

a {
  color: inherit;
  text-decoration: none;
}

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

/* UTILITY STYLES */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

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

.gold-gradient {
  background: linear-gradient(135deg, #fff 0%, var(--gold) 50%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-gold {
  background-color: var(--gold);
  color: var(--bg-dark);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.2);
}

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

.btn-outline {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--light);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background-color: rgba(212, 175, 55, 0.05);
  transform: translateY(-2px);
}

.glass-card {
  background-color: rgba(18, 18, 21, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 24px;
  transition: all 0.3s ease;
}

.glass-card:hover {
  border-color: rgba(212, 175, 55, 0.2);
}

/* 1. NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: all 0.4s ease;
  border-bottom: 1px solid transparent;
  padding: var(--spacing-md) 0;
}

.navbar.scrolled {
  background-color: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: var(--spacing-sm) 0;
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-group {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
}

.logo-title {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--light);
}

.logo-sub {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
}

.logo-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--gold);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
  list-style: none;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: rgba(244, 244, 245, 0.8);
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--gold);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
}

.lang-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  border: 1px solid rgba(212, 175, 55, 0.2);
  padding: 6px 12px;
  border-radius: 20px;
  background-color: rgba(212, 175, 55, 0.05);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--light);
  cursor: pointer;
}

/* MOBILE DRAWER */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background-color: var(--bg-dark);
  z-index: 99;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: var(--spacing-xxl) var(--spacing-md) var(--spacing-xl);
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-drawer.open {
  right: 0;
}

.mobile-nav-menu {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  list-style: none;
}

.mobile-nav-link {
  font-size: 24px;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--light);
  border-b: 1px solid var(--border);
  padding-bottom: var(--spacing-sm);
  display: block;
}

.mobile-drawer-footer {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

/* 2. HERO */
.hero {
  height: 100vh;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('images/hero_bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.55;
  animation: zoomIn 20s ease-out infinite alternate;
}

@keyframes zoomIn {
  0% { transform: scale(1); }
  100% { transform: scale(1.1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 20%, var(--bg-dark) 90%),
              linear-gradient(to top, var(--bg-dark) 0%, rgba(9, 9, 11, 0.4) 60%, rgba(9, 9, 11, 0.2) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: var(--spacing-xxl);
}

.hero-tag {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: var(--spacing-md);
}

.hero-title {
  font-size: 64px;
  font-weight: 800;
  line-height: 1.1;
  color: var(--light);
  margin-bottom: var(--spacing-md);
}

.hero-desc {
  font-size: 18px;
  font-weight: 300;
  color: rgba(244, 244, 245, 0.8);
  max-width: 650px;
  margin-bottom: var(--spacing-xl);
}

.hero-ctas {
  display: flex;
  gap: var(--spacing-sm);
}

/* FLOATING SEARCH PANEL */
.search-panel {
  position: absolute;
  bottom: var(--spacing-xl);
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  max-width: 900px;
  z-index: 3;
  padding: var(--spacing-sm) var(--spacing-md);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--spacing-md);
}

.search-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  cursor: pointer;
  padding: var(--spacing-xs);
  border-radius: 12px;
  transition: background-color 0.2s ease;
}

.search-item:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

.search-icon {
  color: var(--gold);
}

.search-info span {
  display: block;
}

.search-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.search-val {
  font-size: 14px;
  font-weight: 500;
  color: var(--light);
}

.divider-v {
  width: 1px;
  height: 32px;
  background-color: rgba(212, 175, 55, 0.2);
}

/* Booking form inputs */
.booking-date-input {
  background: transparent;
  border: none;
  outline: none;
  color: var(--light);
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-sans);
  width: 100%;
  cursor: pointer;
  color-scheme: dark;
  padding: 0;
}

.booking-date-input option {
  background: #121215;
  color: var(--light);
}

.booking-date-input::-webkit-calendar-picker-indicator {
  filter: invert(1) sepia(1) saturate(3) hue-rotate(10deg);
  opacity: 0.7;
  cursor: pointer;
}

.booking-field {
  cursor: pointer;
}

.booking-field .search-label,
.booking-field .search-icon {
  cursor: pointer;
  pointer-events: none; /* Let clicks pass through to the JS handler */
  user-select: none;
  -webkit-user-select: none;
}


/* 3. FEATURES */
.features-section {
  padding: var(--spacing-xxl) 0;
  position: relative;
  z-index: 4;
}

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

.section-tag {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: var(--spacing-xs);
  display: block;
}

.section-title {
  font-size: 40px;
  font-weight: 700;
  color: var(--light);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xxl);
}

.feature-card {
  padding: var(--spacing-lg);
  position: relative;
  overflow: hidden;
}

.feature-icon-wrapper {
  padding: var(--spacing-sm);
  border-radius: 16px;
  background-color: rgba(212, 175, 55, 0.1);
  display: inline-block;
  margin-bottom: var(--spacing-md);
}

.feature-card-title {
  font-size: 20px;
  color: var(--light);
  margin-bottom: var(--spacing-sm);
}

.feature-card-desc {
  font-size: 14px;
  color: var(--muted);
  font-weight: 300;
}

/* ROOMS SHOWCASE */
.rooms-header {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.filter-tabs {
  display: flex;
  justify-content: center;
  gap: var(--spacing-xs);
  flex-wrap: wrap;
  margin-bottom: var(--spacing-xl);
}

.tab-btn {
  padding: 10px 24px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  color: var(--light);
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-btn.active, .tab-btn:hover {
  background-color: var(--gold);
  color: var(--bg-dark);
  border-color: var(--gold);
}

.rooms-list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xl);
}

.room-item-card {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: var(--spacing-lg);
  padding: var(--spacing-md);
}

.room-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 350px;
}

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

.room-item-card:hover .room-img {
  transform: scale(1.05);
}

.room-size-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background-color: rgba(9, 9, 11, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  color: var(--gold);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.room-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.room-content-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border);
  padding-bottom: var(--spacing-sm);
  margin-bottom: var(--spacing-sm);
}

.room-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--light);
}

.room-meta-info {
  display: flex;
  gap: var(--spacing-sm);
}

.room-meta-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  background-color: rgba(255, 255, 255, 0.05);
  padding: 6px 12px;
  border-radius: 20px;
  color: rgba(244, 244, 245, 0.8);
}

.room-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-xs);
  margin-bottom: var(--spacing-md);
}

.room-tag {
  font-size: 12px;
  background-color: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.15);
  color: var(--gold);
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: 500;
}

.room-attributes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
}

.attr-column-title {
  font-size: 12px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--spacing-xs);
}

.attr-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.attr-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(244, 244, 245, 0.7);
}

.room-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  padding-top: var(--spacing-sm);
}

.room-footer span {
  font-size: 12px;
  color: var(--muted);
  font-weight: 300;
}

/* 4. SOCIAL PROOF */
.social-proof-section {
  padding: var(--spacing-xxl) 0;
  background-color: var(--bg-dark);
  position: relative;
  z-index: 4;
}

.trust-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-xxl);
}

.trust-badge-card {
  padding: var(--spacing-md);
  text-align: center;
  border-color: rgba(212, 175, 55, 0.1);
}

.stars-row {
  display: flex;
  justify-content: center;
  gap: 4px;
  color: var(--gold);
  margin-bottom: var(--spacing-xs);
}

.trust-badge-title {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: var(--spacing-xs);
}

.trust-badge-score {
  font-size: 32px;
  font-weight: 800;
  color: var(--light);
  margin-bottom: var(--spacing-xs);
}

.trust-badge-desc {
  font-size: 12px;
  color: var(--gold);
  font-weight: 500;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
}

.review-card {
  padding: var(--spacing-lg);
  background-color: rgba(18, 18, 21, 0.4);
  border: 1px solid var(--border);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-stars {
  display: flex;
  gap: 4px;
  color: var(--gold);
  margin-bottom: var(--spacing-sm);
}

.review-text {
  font-size: 14px;
  font-style: italic;
  color: rgba(244, 244, 245, 0.85);
  font-weight: 300;
  margin-bottom: var(--spacing-md);
}

.review-author-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  padding-top: var(--spacing-sm);
}

.author-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--light);
  display: block;
}

.review-date {
  font-size: 10px;
  text-transform: uppercase;
  color: var(--muted);
  letter-spacing: 0.05em;
}

.verified-badge {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: var(--gold);
  background-color: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.2);
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: 500;
}

/* 5. ABOUT & MAP */
.about-section {
  padding: var(--spacing-xxl) 0;
  position: relative;
  z-index: 4;
}

.about-row {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: var(--spacing-xl);
  align-items: center;
  margin-bottom: var(--spacing-xxl);
}

.about-story {
  font-size: 16px;
  font-weight: 300;
  color: rgba(244, 244, 245, 0.8);
  line-height: 1.7;
  margin-bottom: var(--spacing-lg);
}

.values-list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.value-item {
  display: flex;
  gap: var(--spacing-sm);
}

.value-icon-wrapper {
  padding: var(--spacing-xs);
  border-radius: 12px;
  background-color: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  shrink: 0;
}

.value-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--light);
  margin-bottom: 4px;
}

.value-desc {
  font-size: 13px;
  color: var(--muted);
  font-weight: 300;
}

.about-image-card {
  border-radius: 40px;
  padding: 8px;
}

.about-image-inner {
  border-radius: 34px;
  overflow: hidden;
  position: relative;
  min-height: 450px;
}

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

/* MAP SECTION */
.map-header {
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.map-header-desc {
  font-size: 14px;
  color: var(--muted);
  font-weight: 300;
  max-width: 500px;
  margin: var(--spacing-xs) auto 0;
}

.map-grid {
  display: grid;
  grid-template-columns: 8fr 4fr;
  gap: var(--spacing-lg);
}

.map-frame-wrapper {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 400px;
  position: relative;
}

.map-iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1) contrast(1.2) brightness(0.9);
  transition: all 0.5s ease;
}

.map-iframe:hover {
  filter: none;
}

.contact-card {
  padding: var(--spacing-lg);
  border-color: rgba(212, 175, 55, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-card-title {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--spacing-md);
  display: block;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.contact-info-item {
  display: flex;
  gap: var(--spacing-sm);
}

.contact-info-item-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--light);
  margin-bottom: 2px;
}

.contact-info-item-desc {
  font-size: 12px;
  color: var(--muted);
  font-weight: 300;
}

.contact-info-item-desc a:hover {
  color: var(--gold);
}

/* 6. PRICING (TEKLIF AL) */
.pricing-section {
  padding: var(--spacing-xxl) 0;
  position: relative;
  z-index: 4;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
  align-items: stretch;
}

.pricing-card {
  padding: var(--spacing-lg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.pricing-card.popular {
  border: 2px solid var(--gold);
  box-shadow: 0 10px 40px rgba(212, 175, 55, 0.05);
  background-color: var(--bg-card);
  transform: scale(1.03);
}

.popular-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--gold);
  color: var(--bg-dark);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 16px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.pricing-card-title {
  font-size: 20px;
  color: var(--light);
  margin-bottom: var(--spacing-xs);
}

.pricing-card-meta {
  font-size: 12px;
  color: var(--gold);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: var(--spacing-md);
}

.price-display-wrapper {
  border-bottom: 1px solid var(--border);
  padding-bottom: var(--spacing-md);
  margin-bottom: var(--spacing-md);
}

.price-display-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  display: block;
  margin-bottom: 4px;
}

.price-display-val {
  font-size: 24px;
  font-weight: 700;
}

.pricing-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-lg);
}

.pricing-feature-item {
  display: flex;
  align-items: start;
  gap: 12px;
  font-size: 13px;
  color: rgba(244, 244, 245, 0.8);
  font-weight: 300;
}

.pricing-feature-item svg {
  margin-top: 2px;
}

/* 7. FAQ */
.faq-section {
  padding: var(--spacing-xxl) 0;
  position: relative;
  z-index: 4;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.faq-item {
  border-radius: 16px;
  border: 1px solid var(--border);
  background-color: rgba(18, 18, 21, 0.3);
  overflow: hidden;
}

.faq-question-btn {
  width: 100%;
  background: none;
  border: none;
  padding: var(--spacing-md);
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--light);
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 500;
  transition: background-color 0.2s ease;
}

.faq-question-btn:hover {
  background-color: rgba(255, 255, 255, 0.02);
}

.faq-icon-wrapper {
  padding: 4px;
  border-radius: 50%;
  background-color: rgba(212, 175, 55, 0.1);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-icon-wrapper {
  transform: rotate(180deg);
}

.faq-answer {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease;
}

.faq-answer-inner {
  padding: 0 var(--spacing-md) var(--spacing-md);
  font-size: 14px;
  font-weight: 300;
  color: rgba(244, 244, 245, 0.75);
  line-height: 1.6;
  border-top: 1px solid var(--border);
  padding-top: var(--spacing-md);
}

/* 8. FOOTER */
.footer {
  background-color: var(--bg-dark);
  border-top: 1px solid var(--border);
  padding: var(--spacing-xxl) 0 var(--spacing-md);
  position: relative;
  z-index: 4;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
}

.footer-desc {
  font-size: 14px;
  color: var(--muted);
  font-weight: 300;
  max-width: 350px;
  line-height: 1.7;
  margin-bottom: var(--spacing-md);
}

.footer-social-links {
  display: flex;
  gap: var(--spacing-xs);
}

.footer-social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: all 0.3s ease;
}

.footer-social-btn:hover {
  background-color: var(--gold);
  color: var(--bg-dark);
  border-color: var(--gold);
}

.footer-column-title {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--light);
  margin-bottom: var(--spacing-md);
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link-item a {
  font-size: 14px;
  color: var(--muted);
  font-weight: 300;
  transition: color 0.2s ease;
}

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

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.footer-contact-item {
  display: flex;
  gap: 10px;
  font-size: 14px;
  color: var(--muted);
  font-weight: 300;
}

.footer-contact-item svg {
  color: var(--gold);
  shrink: 0;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: var(--spacing-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--muted);
  font-weight: 300;
}

.footer-heart {
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* RESPONSIVE MEDIA QUERIES (8px Mobile Grid) */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 48px;
  }
  .features-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }
  .room-item-card {
    grid-template-columns: 1fr;
  }
  .trust-badges {
    grid-template-columns: 1fr;
    gap: var(--spacing-sm);
  }
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }
  .about-row {
    grid-template-columns: 1fr;
  }
  .map-grid {
    grid-template-columns: 1fr;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }
  .pricing-card.popular {
    transform: none;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
  }
}

@media (max-width: 768px) {
  .navbar {
    background-color: var(--bg-dark);
    border-bottom: 1px solid var(--border);
  }
  .nav-menu {
    display: none;
  }
  .nav-cta {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .search-panel {
    display: none;
  }
  .hero-title {
    font-size: 36px;
  }
  .hero-desc {
    font-size: 15px;
  }
  .hero-ctas {
    flex-direction: column;
    width: 100%;
    padding: 0 var(--spacing-md);
  }
  .hero-ctas .btn {
    width: 100%;
  }
  .room-attributes-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-sm);
  }
  .room-footer {
    flex-direction: column;
    gap: var(--spacing-sm);
    align-items: center;
  }
  .room-footer .btn {
    width: 100%;
  }
  .footer-bottom {
    flex-direction: column;
    gap: var(--spacing-sm);
    text-align: center;
  }
}
