/* Global Design System - All pages follow this */

/* Screen-reader-only text */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Top bar */
.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  height: 56px;
  min-width: 0;
  overflow-x: hidden;
  overflow-y: hidden;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--border);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.topbar-inner {
  position: relative;
  display: flex;
  flex: 1;
  flex-flow: row nowrap;
  align-items: center;
  gap: 8px;
  min-width: 0;
  height: 100%;
  padding: 8px 12px;
  overflow-x: hidden;
  overflow-y: hidden;
}

@media (min-width: 640px) {
  .topbar-inner {
    gap: 12px;
    padding: 8px 16px;
  }
}

.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  flex-shrink: 0;
}

.topbar-divider {
  width: 1px;
  height: 16px;
  background: var(--border);
  flex-shrink: 0;
}

.topbar-center {
  display: flex;
  flex: 1;
  align-items: center;
  min-width: 0;
}

.topbar-center-inner {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  width: 100%;
  min-width: 0;
  height: 100%;
  padding: 0 4px;
}

@media (min-width: 640px) {
  .topbar-center-inner {
    padding: 0 8px;
  }
}

@media (min-width: 768px) {
  .topbar-center-inner {
    justify-content: space-between;
  }
}

/* Icon buttons */
.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  padding: 0;
  color: var(--text-secondary);
  background: transparent;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.icon-btn:hover {
  color: var(--text-primary);
  background: var(--background-alt);
}

.icon-btn:focus-visible {
  outline: 2px solid var(--accent-blue);
  outline-offset: 2px;
}

.icon-btn svg {
  pointer-events: none;
  flex-shrink: 0;
}

/* Search */
.search-wrap {
  position: relative;
  display: none;
  flex: 1;
  align-items: center;
  gap: 8px;
  min-width: 0;
  width: 100%;
  max-width: 380px;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .search-wrap {
    display: flex;
  }
}

.search-input-wrap {
  position: relative;
  flex: 1;
  min-width: 0;
}

.search-input {
  width: 100%;
  height: 36px;
  min-width: 0;
  padding: 6px 38px 6px 40px;
  font-family: inherit;
  font-size: 0.875rem;
  color: var(--text-primary);
  background: var(--background-alt);
  border: 1px solid transparent;
  border-radius: 6px;
  box-shadow: var(--shadow-sm);
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.search-input::placeholder {
  color: var(--text-secondary);
}

.search-input:focus {
  outline: none;
  background: var(--background);
  border-color: var(--accent-blue);
}

.search-icon {
  position: absolute;
  top: 50%;
  left: 12px;
  width: 16px;
  height: 16px;
  color: var(--text-secondary);
  transform: translateY(-50%);
  pointer-events: none;
}

.search-input-wrap .sparkles-btn,
.mobile-search-inner .sparkles-btn {
  position: absolute;
  top: 50%;
  right: 4px;
  width: 30px;
  height: 30px;
  transform: translateY(-50%);
}

.sparkle-gold-gradient {
  color: var(--warning);
}

/* Mobile search */
.mobile-search-toggle {
  display: flex;
  width: 32px;
  height: 32px;
}

@media (min-width: 768px) {
  .mobile-search-toggle {
    display: none;
  }
}

.mobile-search-overlay {
  position: fixed;
  top: 56px;
  right: 0;
  left: 0;
  z-index: 99;
  display: none;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--background);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.mobile-search-overlay.mobile-search-open {
  display: flex;
}

.mobile-search-inner {
  position: relative;
  flex: 1;
  min-width: 0;
}

.mobile-search-inner .search-input {
  height: 40px;
  padding-left: 40px;
}

.mobile-search-close {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

/* Right-side actions */
.notification-btn {
  width: 32px;
  height: 32px;
}

@media (min-width: 1024px) {
  .notification-btn {
    width: 36px;
    height: 36px;
  }
}

.dashboard-cta {
  display: none;
  padding: 6px 14px;
  font-size: 0.75rem;
}

@media (min-width: 768px) {
  .dashboard-cta {
    display: inline-flex;
  }
}

.user-actions {
  display: none;
  align-items: center;
  gap: 8px;
}

@media (min-width: 768px) {
  .user-actions {
    display: flex;
  }
}

.avatar-placeholder {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-blue) 0%, var(--primary-navy) 100%);
}

@media (min-width: 1024px) {
  .avatar-placeholder {
    width: 36px;
    height: 36px;
  }
}

/* Sidebar drawer */
.sidebar {
  position: fixed;
  inset: 0;
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.sidebar.sidebar-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.sidebar-overlay {
  position: fixed;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.sidebar.sidebar-open .sidebar-overlay {
  opacity: 1;
}

.sidebar-panel {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  width: 280px;
  max-width: 85vw;
  height: 100%;
  background: var(--background);
  border-right: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.sidebar.sidebar-open .sidebar-panel {
  transform: translateX(0);
}

.sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
  border-bottom: 1px solid var(--border);
}

.sidebar-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.sidebar-logo img {
  height: 32px;
}

.sidebar-logo-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-navy);
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px;
  overflow-y: auto;
}

.sidebar-nav a {
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.875rem;
  padding: 10px 12px;
  border-radius: 6px;
  transition: color 0.2s ease, background-color 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}

.sidebar-nav a:hover {
  color: var(--primary-navy);
  background: var(--background-alt);
}

.sidebar-nav .btn {
  margin-top: 8px;
  text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
  .results-grid {
    grid-template-columns: 1fr;
  }

  #search-form {
    grid-template-columns: 1fr;
  }

  .footer .container {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom .container {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-links {
    flex-direction: column;
    gap: 12px;
  }
}

/* Hero Section */
.hero {
  background: #ffffff;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(30, 64, 175, 0.03) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(59, 130, 246, 0.03) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(30, 64, 175, 0.02) 0%, transparent 50%);
  color: var(--text-primary);
  padding: 100px 0 80px;
  text-align: center;
}

.hero h1 {
  background: var(--primary-gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  color: var(--text-secondary);
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}

.hero-stats div strong {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--primary-gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-stats div span {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.hero-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

/* Scoring Showcase */
.scoring-showcase {
  background: #ffffff;
  padding: 100px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title h2 {
  color: #0f172a;
  margin-bottom: 16px;
  font-weight: 700;
  font-size: 2.5rem;
}

.section-title p {
  color: #334155;
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.scoring-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 60px;
}

.scoring-card {
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-sm);
}

.scoring-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.scoring-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  color: var(--accent-blue);
}

.scoring-card h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.scoring-card p {
  font-size: 0.875rem;
  margin-bottom: 12px;
  color: var(--text-secondary);
}

.scoring-weight {
  display: inline-block;
  background: var(--background-alt);
  padding: 6px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-blue);
  border: 1px solid var(--border);
}

/* CTA Section */
.cta-section {
  background: #ffffff;
  color: var(--text-primary);
  text-align: center;
  padding: 100px 0;
  border-top: 1px solid var(--border);
}

.cta-section h2 {
  background: var(--primary-gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-section p {
  color: var(--text-secondary);
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

.cta-buttons .btn-secondary {
  background: var(--background);
  color: var(--text-primary);
  border: 2px solid var(--primary);
  box-shadow: var(--shadow-sm);
}

.cta-buttons .btn-secondary:hover {
  background: var(--background-alt);
  box-shadow: var(--shadow-md);
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  margin-top: 60px;
}

.service-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-sm);
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  color: var(--accent-blue);
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--text);
}

.service-card p {
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.service-card .price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin: 8px 0 12px;
}

.service-card .delivery {
  color: var(--success);
  font-size: 0.875rem;
  margin: 12px 0;
}

/* Footer */
.footer {
  background: #0f172a;
  color: #e2e8f0;
  padding: 80px 0 0;
}

.footer .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 48px;
  margin-bottom: 60px;
}

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

.footer-brand h3 {
  color: #ffffff;
  margin: 0 0 12px;
  font-size: 1.25rem;
  font-weight: 700;
}

.footer-brand p {
  color: #94a3b8;
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0;
}

.footer-links h4 {
  color: #ffffff;
  margin: 0 0 20px;
  font-size: 1rem;
  font-weight: 600;
}

.footer-links a {
  color: #94a3b8;
  display: block;
  margin-bottom: 12px;
  transition: color var(--transition-fast);
  text-decoration: none;
  font-size: 0.875rem;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-contact h4 {
  color: #ffffff;
  margin: 0 0 20px;
  font-size: 1rem;
  font-weight: 600;
}

.footer-contact a {
  color: #94a3b8;
  display: block;
  margin-bottom: 12px;
  transition: color var(--transition-fast);
  text-decoration: none;
  font-size: 0.875rem;
}

.footer-contact a:hover {
  color: #ffffff;
}

.footer-contact p {
  color: #94a3b8;
  font-size: 0.875rem;
  margin: 0;
}

.footer-bottom {
  border-top: 1px solid #1e293b;
  padding: 30px 0;
  background: #0f172a;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 0;
}

.footer-bottom p {
  color: #64748b;
  font-size: 0.875rem;
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: #64748b;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color var(--transition-fast);
}

.footer-bottom-links a:hover {
  color: #94a3b8;
}

/* Contribution Section */
.contribution-section {
  background: #ffffff;
  padding: 100px 0;
}

.contribution-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.contribution-card {
  background: var(--background-alt);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  transition: all var(--transition-normal);
}

.contribution-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.contribution-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.contribution-card h3 {
  margin: 0 0 8px;
  color: #0f172a;
  font-size: 1.125rem;
}

.contribution-card p {
  color: #334155;
  margin: 0 0 12px;
  font-size: 0.875rem;
  line-height: 1.5;
}

.credit-badge {
  background: var(--accent-blue);
  color: white;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  display: inline-block;
}

.how-it-works {
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.05) 0%, rgba(59, 130, 246, 0.03) 100%);
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  border: 1px solid var(--border);
}

.how-it-works h3 {
  margin: 0 0 24px;
  color: var(--primary-navy);
  font-size: 1.25rem;
}

.steps {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.step {
  text-align: center;
}

.step-number {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.step-text {
  font-weight: 600;
  color: #0f172a;
}

/* Map Section */
#map {
  height: 500px;
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--background-alt);
  margin-top: 24px;
}

.map-search {
  display: flex;
  gap: 12px;
  max-width: 600px;
  margin: 0 auto 24px;
}

.map-search input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  background: #ffffff;
}

.map-search button {
  background: var(--primary-navy);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 12px 24px;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.map-search button:hover {
  background: var(--primary-navy-secondary);
}

.map-search-results {
  max-width: 600px;
  margin: 0 auto 24px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  max-height: 200px;
  overflow-y: auto;
  display: none;
}

.map-search-results a {
  display: block;
  padding: 12px 16px;
  color: var(--text-primary);
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  transition: background var(--transition-fast);
}

.map-search-results a:hover {
  background: var(--background-alt);
}

/* Property Listing Cards */
.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

.card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-sm);
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.card .photo {
  height: 200px;
  background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  font-size: 0.875rem;
  font-weight: 500;
  position: relative;
  overflow: hidden;
}

.card .photo::before {
  content: '🏠';
  font-size: 3rem;
  opacity: 0.3;
}

.card .card-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.card .body {
  padding: 24px;
}

.card h3 {
  margin: 0 0 12px;
  color: #0f172a;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.4;
}

.card .price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 12px;
  display: block;
}

.card .meta {
  color: #64748b;
  font-size: 0.875rem;
  margin-bottom: 16px;
  line-height: 1.6;
  display: flex;
  align-items: center;
  gap: 8px;
}

.card .meta .type {
  font-weight: 500;
  color: #0f172a;
}

.card .meta .separator {
  color: #cbd5e1;
}

.card .meta .location {
  color: #64748b;
}

.card .features {
  margin-bottom: 16px;
}

.card .badge {
  display: inline-block;
  background: #f1f5f9;
  color: #475569;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-right: 8px;
  margin-bottom: 8px;
  border: 1px solid #e2e8f0;
}

.card a {
  display: inline-block;
  background: #1e40af;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  transition: background var(--transition-fast);
  margin-top: 16px;
  width: 100%;
  text-align: center;
  box-sizing: border-box;
  border: none;
}

.card a:hover {
  background: #2563eb;
}

/* Filters Section */
.filters {
  background: var(--background-alt);
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}

.filters .container {
  background: #ffffff;
  padding: 32px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

#search-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  align-items: end;
}

#search-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #0f172a;
  font-size: 0.875rem;
}

#search-form input,
#search-form select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  background: #ffffff;
  transition: border-color var(--transition-fast);
}

#search-form input:focus,
#search-form select:focus {
  outline: none;
  border-color: var(--primary-navy);
}

#search-form button {
  background: var(--primary-navy);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition-fast);
  font-size: 1rem;
}

#search-form button:hover {
  background: var(--primary-navy-secondary);
}

.no-results {
  text-align: center;
  padding: 60px 20px;
  background: var(--background-alt);
  border-radius: 12px;
}

.no-results h3 {
  color: #0f172a;
  margin-bottom: 12px;
}

.no-results p {
  color: #64748b;
}

.no-results a {
  color: var(--primary-navy);
  text-decoration: underline;
}

/* Room Detail Page Styles */
.room-detail {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}

.back {
  display: inline-block;
  margin-bottom: 24px;
  color: var(--primary-navy);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
}

.back:hover {
  text-decoration: underline;
}

.room-detail h1 {
  color: #0f172a;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.room-detail .price {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 16px;
}

.room-detail .meta {
  color: #64748b;
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.room-detail .badge {
  display: inline-block;
  background: var(--background-alt);
  color: #475569;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
  margin-right: 8px;
  border: 1px solid var(--border);
}

.room-detail .photo-placeholder {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  font-size: 1.125rem;
  border-radius: 12px;
  margin: 24px 0;
  position: relative;
}

.room-detail .photo-placeholder::before {
  content: '🏠';
  font-size: 4rem;
  opacity: 0.3;
}

.room-detail .property-photo {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  margin: 24px 0;
  box-shadow: var(--shadow-sm);
}

.room-detail p {
  color: #334155;
  line-height: 1.6;
  margin-bottom: 24px;
}

.room-detail .features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0;
}

.room-detail .feature {
  background: var(--background-alt);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.875rem;
  color: #475569;
  border: 1px solid var(--border);
}

.room-detail .cta {
  display: inline-block;
  background: var(--primary-navy);
  color: white;
  padding: 14px 28px;
  text-decoration: none;
  border-radius: 8px;
  margin: 24px 0;
  font-weight: 600;
  transition: background var(--transition-fast);
}

.room-detail .cta:hover {
  background: var(--primary-navy-secondary);
}

.room-detail .form {
  background: var(--background-alt);
  padding: 32px;
  border-radius: 12px;
  margin-top: 40px;
  border: 1px solid var(--border);
}

.room-detail .form h2 {
  color: #0f172a;
  margin-bottom: 24px;
  font-size: 1.5rem;
}

.room-detail .form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #0f172a;
  font-size: 0.875rem;
}

.room-detail .form input,
.room-detail .form textarea,
.room-detail .form select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  background: #ffffff;
  margin-bottom: 16px;
  transition: border-color var(--transition-fast);
}

.room-detail .form input:focus,
.room-detail .form textarea:focus,
.room-detail .form select:focus {
  outline: none;
  border-color: var(--primary-navy);
}

.room-detail .form button {
  background: var(--primary-navy);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition-fast);
  font-size: 1rem;
}

.room-detail .form button:hover {
  background: var(--primary-navy-secondary);
}

/* Why Section */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 48px;
  margin-top: 60px;
}

.why-item {
  text-align: center;
  padding: 0;
  transition: all var(--transition-normal);
}

.why-item:hover {
  transform: translateY(-2px);
}

.why-item .icon {
  font-size: 3rem;
  margin-bottom: 16px;
  display: block;
}

.why-item h3 {
  margin: 0 0 12px;
  color: #0f172a;
  font-size: 1.25rem;
  font-weight: 600;
}

.why-item p {
  color: #334155;
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0;
}


