/* ============================================
   SULIT - Philippines Property Rental Platform
   Theme: Filipino Tropical Vibes
   Colors: Sunset orange, ocean blue, tropical green, warm yellow
   ============================================ */

:root {
  /* Philippines Sunset Palette */
  --sunset-orange: #FF6B35;
  --sunset-gold: #F7B538;
  --sunset-red: #D62828;
  --ocean-blue: #1A936F;
  --ocean-deep: #0D5C63;
  --tropical-green: #2D6A4F;
  --warm-cream: #FFF8F0;
  --warm-sand: #F5E6D3;
  --warm-white: #FFFCF7;
  --jeepney-yellow: #FFD60A;
  --jeepney-red: #CE1126;
  --text-dark: #1A1A2E;
  --text-medium: #4A4A68;
  --text-light: #8B8BA7;
  --border-light: #E8E0D5;
  --shadow-warm: rgba(255, 107, 53, 0.12);
  --shadow-soft: rgba(0, 0, 0, 0.06);
  --shadow-medium: rgba(0, 0, 0, 0.12);
  --gradient-sunset: linear-gradient(135deg, #FF6B35 0%, #F7B538 50%, #FFD60A 100%);
  --gradient-ocean: linear-gradient(135deg, #0D5C63 0%, #1A936F 100%);
  --gradient-tropical: linear-gradient(135deg, #2D6A4F 0%, #1A936F 50%, #0D5C63 100%);
  --gradient-hero: linear-gradient(180deg, rgba(13,92,99,0.85) 0%, rgba(26,147,111,0.7) 50%, rgba(255,107,53,0.4) 100%);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-xl: 32px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--warm-cream);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--warm-white);
  border-bottom: 1px solid var(--border-light);
  transition: box-shadow 0.3s ease;
}

.navbar.scrolled {
  box-shadow: 0 2px 20px var(--shadow-soft);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.6rem;
  font-weight: 800;
  background: var(--gradient-sunset);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  cursor: pointer;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--gradient-sunset);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  -webkit-text-fill-color: white;
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-medium);
  cursor: pointer;
  transition: color 0.2s;
  position: relative;
}

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

.nav-link.active {
  color: var(--sunset-orange);
  font-weight: 600;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--sunset-orange);
  border-radius: 2px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-host {
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: background 0.2s;
  cursor: pointer;
  background: transparent;
  border: none;
}

.btn-host:hover { background: var(--warm-sand); }

.profile-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 6px 6px 14px;
  border: 1px solid var(--border-light);
  border-radius: 24px;
  cursor: pointer;
  transition: box-shadow 0.2s;
  background: var(--warm-white);
}

.profile-btn:hover { box-shadow: 0 2px 8px var(--shadow-soft); }

.profile-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gradient-ocean);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 0.8rem;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  height: 520px;
  background: url('https://images.unsplash.com/photo-1519046904884-53103b34b206?w=1920&q=80') center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 800px;
}

.hero-tagline {
  display: inline-block;
  padding: 6px 20px;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 20px;
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  color: white;
  line-height: 1.15;
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

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

.hero-subtitle {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 32px;
  font-weight: 400;
}

/* ============================================
   SEARCH BAR
   ============================================ */
.search-bar-wrapper {
  position: relative;
  z-index: 10;
  max-width: 900px;
  margin: -40px auto 0;
  padding: 0 24px;
}

.search-bar {
  background: var(--warm-white);
  border-radius: var(--radius-xl);
  box-shadow: 0 8px 40px var(--shadow-medium);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--border-light);
}

.search-field {
  flex: 1;
  padding: 0 20px;
  border-right: 1px solid var(--border-light);
}

.search-field:last-of-type { border-right: none; }

.search-field label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light);
  margin-bottom: 4px;
}

.search-field input,
.search-field select {
  width: 100%;
  border: none;
  outline: none;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text-dark);
  background: transparent;
  cursor: pointer;
}

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

.search-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  background: var(--gradient-sunset);
  color: white;
  font-size: 1.3rem;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: 12px;
}

.search-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 4px 20px rgba(255,107,53,0.4);
}

/* ============================================
   CATEGORY FILTERS
   ============================================ */
.category-bar {
  max-width: 1400px;
  margin: 0 auto;
  padding: 24px 24px 0;
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}

.category-bar::-webkit-scrollbar { height: 4px; }
.category-bar::-webkit-scrollbar-thumb { background: var(--border-light); border-radius: 4px; }

.category-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1px solid var(--border-light);
  border-radius: 24px;
  background: var(--warm-white);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-medium);
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}

.category-chip:hover {
  border-color: var(--sunset-orange);
  color: var(--sunset-orange);
  transform: translateY(-1px);
}

.category-chip.active {
  background: var(--text-dark);
  color: white;
  border-color: var(--text-dark);
}

.category-chip .chip-icon { font-size: 1.1rem; }

/* ============================================
   FILTER BAR
   ============================================ */
.filter-bar {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.results-info {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
}

.results-info span { color: var(--sunset-orange); }

.filter-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.filter-select {
  padding: 10px 16px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  background: var(--warm-white);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-dark);
  cursor: pointer;
  outline: none;
  font-family: inherit;
  transition: border-color 0.2s;
}

.filter-select:hover { border-color: var(--sunset-orange); }

.price-filter {
  display: flex;
  align-items: center;
  gap: 8px;
}

.price-input {
  width: 90px;
  padding: 10px 12px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-family: inherit;
  outline: none;
  color: var(--text-dark);
}

.price-input:focus { border-color: var(--sunset-orange); }

.toggle-map-btn {
  padding: 10px 20px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  background: var(--warm-white);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
  display: flex;
  align-items: center;
  gap: 6px;
}

.toggle-map-btn:hover {
  border-color: var(--sunset-orange);
  color: var(--sunset-orange);
}

/* ============================================
   PROPERTY GRID
   ============================================ */
.properties-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px 60px;
}

.properties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.property-card {
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-light);
}

.property-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px var(--shadow-medium);
}

.property-image-wrapper {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--warm-sand);
}

.property-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.property-card:hover .property-image-wrapper img {
  transform: scale(1.05);
}

.property-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 14px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--sunset-orange);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.heart-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: transform 0.2s;
  color: var(--text-dark);
}

.heart-btn:hover { transform: scale(1.2); }
.heart-btn.liked { color: var(--sunset-red); }

.image-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 4px;
}

.image-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  transition: background 0.2s;
}

.image-dot.active { background: white; width: 16px; border-radius: 3px; }

.property-info {
  padding: 16px;
}

.property-top-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 6px;
}

.property-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.property-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  flex-shrink: 0;
}

.star { color: var(--sunset-gold); }

.property-location {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 10px;
}

.property-details {
  display: flex;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--text-medium);
  margin-bottom: 10px;
}

.property-details span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.property-price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
}

.property-price span {
  font-weight: 400;
  font-size: 0.85rem;
  color: var(--text-medium);
}

.superhost-badge {
  display: inline-block;
  padding: 3px 10px;
  background: var(--warm-sand);
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--ocean-deep);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

/* ============================================
   PROPERTY DETAIL MODAL
   ============================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: none;
  align-items: flex-start;
  justify-content: center;
  overflow-y: auto;
  padding: 40px 20px;
}

.modal-overlay.active {
  display: flex;
}

.modal-content {
  background: var(--warm-white);
  border-radius: var(--radius-xl);
  max-width: 1000px;
  width: 100%;
  overflow: hidden;
  position: relative;
  animation: slideUp 0.3s ease;
}

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

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.modal-close:hover { background: white; transform: scale(1.1); }

.modal-image {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.modal-body {
  padding: 32px;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
  gap: 20px;
}

.modal-title h2 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-dark);
}

.modal-title .location {
  font-size: 0.95rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 6px;
}

.modal-rating-box {
  text-align: right;
  flex-shrink: 0;
}

.modal-rating-box .rating-big {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--sunset-orange);
}

.modal-rating-box .reviews-count {
  font-size: 0.8rem;
  color: var(--text-light);
}

.modal-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.modal-tag {
  padding: 6px 14px;
  background: var(--warm-sand);
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ocean-deep);
}

.modal-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 32px;
  margin-top: 24px;
}

.modal-left h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-dark);
  border-bottom: 2px solid var(--border-light);
  padding-bottom: 8px;
}

.modal-description {
  font-size: 0.95rem;
  color: var(--text-medium);
  line-height: 1.7;
  margin-bottom: 28px;
}

.amenities-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.amenity-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-medium);
  padding: 8px 0;
}

.amenity-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--warm-sand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.host-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--warm-cream);
  border-radius: var(--radius-md);
  margin-top: 24px;
}

.host-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gradient-tropical);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
  font-weight: 700;
}

.host-info h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
}

.host-info p {
  font-size: 0.8rem;
  color: var(--text-light);
}

.host-badge {
  display: inline-block;
  padding: 2px 8px;
  background: var(--ocean-blue);
  color: white;
  border-radius: 8px;
  font-size: 0.7rem;
  font-weight: 600;
  margin-left: 8px;
}

/* ============================================
   BOOKING WIDGET
   ============================================ */
.booking-widget {
  background: var(--warm-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 4px 20px var(--shadow-soft);
  position: sticky;
  top: 90px;
}

.booking-price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 20px;
}

.booking-price {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-dark);
}

.booking-price-label {
  font-size: 0.85rem;
  color: var(--text-light);
}

.booking-dates {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 12px;
}

.booking-input-group {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  cursor: pointer;
  transition: border-color 0.2s;
}

.booking-input-group:hover { border-color: var(--sunset-orange); }

.booking-input-group label {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light);
}

.booking-input-group input {
  border: none;
  outline: none;
  width: 100%;
  font-size: 0.85rem;
  font-family: inherit;
  color: var(--text-dark);
  background: transparent;
}

.guests-select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-family: inherit;
  outline: none;
  cursor: pointer;
  color: var(--text-dark);
  background: var(--warm-white);
  margin-bottom: 20px;
}

.book-btn {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: var(--radius-sm);
  background: var(--gradient-sunset);
  color: white;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  font-family: inherit;
}

.book-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,107,53,0.4);
}

.booking-summary {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}

.booking-line {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-medium);
  margin-bottom: 8px;
}

.booking-total {
  display: flex;
  justify-content: space-between;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid var(--border-light);
}

.booking-note {
  font-size: 0.75rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 12px;
  font-style: italic;
}

/* ============================================
   MAP VIEW
   ============================================ */
.map-view {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1500;
  background: var(--warm-cream);
}

.map-view.active { display: block; }

.map-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  background: var(--warm-white);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 2px 8px var(--shadow-soft);
  z-index: 10;
}

.map-close-btn {
  padding: 10px 20px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  background: var(--warm-white);
  cursor: pointer;
  font-weight: 600;
  font-size: 0.85rem;
  font-family: inherit;
  transition: all 0.2s;
}

.map-close-btn:hover { border-color: var(--sunset-orange); color: var(--sunset-orange); }

.map-container {
  width: 100%;
  height: calc(100vh - 64px);
  background: linear-gradient(180deg, #A8D8B9 0%, #67B5C7 50%, #4A90A4 100%);
  position: relative;
  overflow: hidden;
}

.map-pin {
  position: absolute;
  transform: translate(-50%, -100%);
  cursor: pointer;
  z-index: 5;
  transition: z-index 0s;
}

.map-pin:hover { z-index: 10; }

.pin-bubble {
  background: var(--warm-white);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
  white-space: nowrap;
  box-shadow: 0 4px 12px var(--shadow-soft);
  transition: transform 0.2s, background 0.2s;
}

.map-pin:hover .pin-bubble {
  background: var(--sunset-orange);
  color: white;
  transform: scale(1.1);
}

.map-pin.active .pin-bubble {
  background: var(--text-dark);
  color: white;
  transform: scale(1.15);
}

.map-info-card {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 320px;
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 40px var(--shadow-medium);
  z-index: 20;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.7);
  padding: 48px 24px 24px;
  margin-top: 40px;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  color: white;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--sunset-gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  font-size: 0.9rem;
}

.social-icon:hover { background: var(--sunset-orange); }

.footer-tagline {
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  margin-top: 20px;
  font-style: italic;
}

/* ============================================
   NO RESULTS
   ============================================ */
.no-results {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-light);
}

.no-results .icon { font-size: 3rem; margin-bottom: 16px; }
.no-results h3 { font-size: 1.2rem; color: var(--text-medium); margin-bottom: 8px; }
.no-results p { font-size: 0.9rem; }
.no-results button {
  margin-top: 20px;
  padding: 12px 28px;
  border: none;
  border-radius: var(--radius-sm);
  background: var(--gradient-sunset);
  color: white;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.9rem;
}

/* ============================================
   TOAST NOTIFICATION
   ============================================ */
.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--text-dark);
  color: white;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  z-index: 3000;
  opacity: 0;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.toast.success { background: var(--ocean-blue); }
.toast.error { background: var(--sunset-red); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .modal-grid { grid-template-columns: 1fr; }
  .booking-widget { position: static; }
  .hero h1 { font-size: 2.5rem; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hero h1 { font-size: 2rem; }
  .hero-subtitle { font-size: 1rem; }
  .search-bar {
    flex-direction: column;
    gap: 12px;
    border-radius: var(--radius-lg);
  }
  .search-field {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid var(--border-light);
    padding: 0 12px;
  }
  .search-field:last-of-type { border-bottom: none; }
  .search-btn {
    width: 100%;
    border-radius: var(--radius-sm);
    height: 48px;
    margin-left: 0;
  }
  .filter-bar { flex-direction: column; align-items: flex-start; }
  .filter-controls { flex-wrap: wrap; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .properties-grid { grid-template-columns: 1fr; }
  .modal-body { padding: 20px; }
  .modal-image { height: 240px; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; }
  .hero { height: 400px; }
  .hero h1 { font-size: 1.6rem; }
}

/* ============================================
   LOADING SKELETON
   ============================================ */
.skeleton-card {
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
}

.skeleton-img {
  aspect-ratio: 4/3;
  background: linear-gradient(90deg, var(--warm-sand) 25%, var(--warm-cream) 50%, var(--warm-sand) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

.skeleton-line {
  height: 12px;
  background: linear-gradient(90deg, var(--warm-sand) 25%, var(--warm-cream) 50%, var(--warm-sand) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 6px;
  margin: 8px 16px;
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* ============================================
   SCROLL TO TOP
   ============================================ */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--warm-white);
  border: 1px solid var(--border-light);
  box-shadow: 0 4px 16px var(--shadow-medium);
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--text-dark);
  z-index: 500;
  transition: transform 0.2s;
}

.scroll-top:hover { transform: scale(1.1); }
.scroll-top.show { display: flex; }

/* ============================================
   CARD CAROUSEL ARROWS
   ============================================ */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
  transition: transform 0.2s, opacity 0.2s;
  z-index: 5;
  line-height: 1;
  opacity: 0;
}

.property-card:hover .carousel-arrow { opacity: 1; }
.carousel-arrow:hover { transform: translateY(-50%) scale(1.15); background: white; }
.arrow-left { left: 10px; }
.arrow-right { right: 10px; }

/* ============================================
   MODAL GALLERY
   ============================================ */
.modal-gallery-wrapper {
  position: relative;
  width: 100%;
  height: 380px;
  overflow: hidden;
}

.modal-gallery-wrapper .modal-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(0,0,0,0.08);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-dark);
  z-index: 10;
  transition: transform 0.2s;
}

.modal-arrow:hover { transform: translateY(-50%) scale(1.1); }
.modal-arrow-left { left: 16px; }
.modal-arrow-right { right: 16px; }

.modal-image-counter {
  position: absolute;
  bottom: 16px;
  right: 16px;
  padding: 4px 14px;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  border-radius: 20px;
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 10;
}

.modal-share-btn {
  position: absolute;
  top: 16px;
  right: 64px;
  padding: 8px 16px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border: none;
  border-radius: 20px;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dark);
  z-index: 10;
  transition: transform 0.2s;
  font-family: inherit;
}

.modal-share-btn:hover { transform: scale(1.05); }

.gallery-thumbs {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.gallery-thumb {
  width: 72px;
  height: 54px;
  border-radius: 8px;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s, transform 0.2s;
  flex-shrink: 0;
}

.gallery-thumb:hover { transform: scale(1.05); }
.gallery-thumb.active { border-color: var(--sunset-orange); }

/* ============================================
   REVIEWS
   ============================================ */
.reviews-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.review-item {
  padding: 20px;
  background: var(--warm-cream);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-ocean);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.review-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.review-date {
  font-size: 0.75rem;
  color: var(--text-light);
}

.review-stars {
  margin-left: auto;
  color: var(--sunset-gold);
  font-size: 0.8rem;
  flex-shrink: 0;
}

.review-text {
  font-size: 0.88rem;
  color: var(--text-medium);
  line-height: 1.6;
}

/* ============================================
   PROPERTY DETAIL GRID
   ============================================ */
.prop-detail-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 8px;
  margin-bottom: 8px;
}

.prop-detail-item {
  text-align: center;
}

.prop-detail-icon { font-size: 1.5rem; }
.prop-detail-val { font-weight: 700; color: var(--text-dark); }
.prop-detail-label { font-size: 0.8rem; color: var(--text-light); }

/* ============================================
   WISHLET OVERLAY
   ============================================ */
.wishlist-overlay {
  position: fixed;
  inset: 0;
  background: var(--warm-cream);
  z-index: 2000;
  display: none;
  overflow-y: auto;
}

.wishlist-overlay.active { display: block; }

.wishlist-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 32px 24px;
}

.wishlist-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  position: sticky;
  top: 0;
  background: var(--warm-cream);
  padding: 16px 0;
  z-index: 10;
}

.wishlist-header h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-dark);
}

.wishlist-count {
  background: var(--sunset-orange);
  color: white;
  font-size: 0.8rem;
  padding: 2px 10px;
  border-radius: 12px;
  font-weight: 700;
}

.wishlist-close-btn {
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 20;
  padding: 10px 20px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  background: var(--warm-white);
  cursor: pointer;
  font-weight: 600;
  font-size: 0.85rem;
  font-family: inherit;
  transition: all 0.2s;
}

.wishlist-close-btn:hover { border-color: var(--sunset-orange); color: var(--sunset-orange); }

.wishlist-clear-btn {
  padding: 8px 16px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  background: transparent;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-light);
  font-family: inherit;
  transition: all 0.2s;
}

.wishlist-clear-btn:hover { color: var(--sunset-red); border-color: var(--sunset-red); }

.wishlist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.wishlist-item {
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  border: 1px solid var(--border-light);
  transition: transform 0.2s, box-shadow 0.2s;
}

.wishlist-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px var(--shadow-soft);
}

.wishlist-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.wishlist-item-info {
  padding: 14px;
}

.wishlist-item-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.wishlist-item-loc {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 6px;
}

.wishlist-item-price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.wishlist-item-price span {
  font-weight: 400;
  font-size: 0.8rem;
  color: var(--text-light);
}

.wishlist-item-rating {
  font-size: 0.8rem;
  color: var(--text-medium);
  font-weight: 600;
}

.wishlist-remove-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--text-dark);
  z-index: 5;
  transition: transform 0.2s, background 0.2s;
}

.wishlist-remove-btn:hover {
  background: var(--sunset-red);
  color: white;
  transform: scale(1.15);
}

.wishlist-empty {
  text-align: center;
  padding: 80px 20px;
}

.wishlist-empty-icon {
  font-size: 4rem;
  margin-bottom: 20px;
}

.wishlist-empty h2 {
  font-size: 1.4rem;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.wishlist-empty p {
  color: var(--text-light);
  margin-bottom: 24px;
}

.wishlist-browse-btn {
  padding: 14px 32px;
  border: none;
  border-radius: var(--radius-sm);
  background: var(--gradient-sunset);
  color: white;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.2s;
}

.wishlist-browse-btn:hover { transform: translateY(-2px); }

/* ============================================
   AUTH MODAL
   ============================================ */
.auth-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  z-index: 2500;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.auth-overlay.active { display: flex; }

.auth-modal {
  background: var(--warm-white);
  border-radius: var(--radius-xl);
  max-width: 440px;
  width: 100%;
  padding: 40px;
  position: relative;
  animation: slideUp 0.3s ease;
}

.auth-logo {
  text-align: center;
  margin-bottom: 24px;
}

.auth-logo .logo-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 12px;
}

.auth-logo h2 {
  font-size: 1.5rem;
  font-weight: 800;
  background: var(--gradient-sunset);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.auth-logo p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 4px;
}

.auth-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--border-light);
}

.auth-tab {
  flex: 1;
  padding: 12px;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-light);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
  font-family: inherit;
  background: transparent;
  border-top: none;
  border-left: none;
  border-right: none;
}

.auth-tab:hover { color: var(--text-medium); }

.auth-tab.active {
  color: var(--sunset-orange);
  border-bottom-color: var(--sunset-orange);
}

.auth-field {
  margin-bottom: 16px;
}

.auth-field label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light);
  margin-bottom: 6px;
}

.auth-field input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  color: var(--text-dark);
  transition: border-color 0.2s;
}

.auth-field input:focus { border-color: var(--sunset-orange); }

.auth-submit-btn {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: var(--radius-sm);
  background: var(--gradient-sunset);
  color: white;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  margin-top: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.auth-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,107,53,0.4);
}

.auth-toggle-text {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 20px;
}

.auth-toggle-text a {
  color: var(--sunset-orange);
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 24px 0;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border-light);
}

.auth-divider span {
  font-size: 0.8rem;
  color: var(--text-light);
}

.auth-social {
  display: flex;
  gap: 12px;
}

.auth-social-btn {
  flex: 1;
  padding: 12px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  background: var(--warm-white);
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  font-family: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: border-color 0.2s;
}

.auth-social-btn:hover { border-color: var(--text-light); }

/* ============================================
   BOOKING CONFIRMATION MODAL
   ============================================ */
.booking-confirm-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(6px);
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.booking-confirm-overlay.active { display: flex; }

.booking-confirm-content {
  background: var(--warm-white);
  border-radius: var(--radius-xl);
  max-width: 480px;
  width: 100%;
  padding: 40px;
  position: relative;
  text-align: center;
  animation: slideUp 0.3s ease;
}

.confirm-icon {
  font-size: 3.5rem;
  margin-bottom: 16px;
}

.confirm-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.confirm-subtitle {
  font-size: 0.9rem;
  color: var(--text-medium);
  margin-bottom: 24px;
  line-height: 1.5;
}

.confirm-property {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: var(--warm-cream);
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  text-align: left;
}

.confirm-property img {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
}

.confirm-prop-title {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.confirm-prop-loc {
  font-size: 0.8rem;
  color: var(--text-light);
}

.confirm-details {
  text-align: left;
  padding: 20px;
  background: var(--warm-cream);
  border-radius: var(--radius-md);
  margin-bottom: 24px;
}

.confirm-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-medium);
  margin-bottom: 10px;
}

.confirm-total {
  display: flex;
  justify-content: space-between;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-top: 12px;
  padding-top: 12px;
  border-top: 2px solid var(--border-light);
}

.confirm-done-btn {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: var(--radius-sm);
  background: var(--gradient-sunset);
  color: white;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.2s;
}

.confirm-done-btn:hover { transform: translateY(-2px); }

.confirm-note {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 16px;
  font-style: italic;
}

/* ============================================
   WISHLIST BADGE
   ============================================ */
.wishlist-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  border-radius: 9px;
  background: var(--sunset-red);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
}

.wishlist-nav-btn {
  position: relative;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  transition: background 0.2s;
  background: transparent;
  border: none;
  font-family: inherit;
}

.wishlist-nav-btn:hover { background: var(--warm-sand); }

/* ============================================
   RESPONSIVE ADDITIONS
   ============================================ */
@media (max-width: 768px) {
  .modal-gallery-wrapper { height: 260px; }
  .modal-arrow { width: 36px; height: 36px; font-size: 1.3rem; }
  .auth-modal { padding: 28px 20px; }
  .booking-confirm-content { padding: 28px 20px; }
  .wishlist-grid { grid-template-columns: 1fr; }
  .nav-right { gap: 8px; }
  .btn-host { display: none; }
  .wishlist-nav-btn { padding: 8px 10px; font-size: 0.8rem; }
}
