/* ============================================
   DARNOVA — Premium Real Estate Platform
   Design: Ultra-minimal white luxury
   Multi-language: FR / AR / EN
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Arabic:wght@300;400;500;600;700;800;900&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  --white: #ffffff;
  --off-white: #fafafa;
  --soft-grey: #f3f3f5;
  --mid-grey: #e0e0e4;
  --text-grey: #8a8a9a;
  --charcoal: #1a1a2e;
  --dark: #0d0d1a;
  --gold: #c9a84c;
  --gold-light: #e8d9a0;
  --brand-pink: #d4456a;
  --brand-pink-light: #f0c2cf;
  --success: #2ecc71;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-ar: 'Noto Sans Arabic', 'Inter', sans-serif;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.08);
  --shadow-gold: 0 8px 32px rgba(201, 168, 76, 0.15);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: all 0.25s ease;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

/* Arabic RTL */
body[dir="rtl"] {
  font-family: var(--font-ar);
}

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

ul {
  list-style: none;
}

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

button {
  cursor: pointer;
  border: none;
  font-family: inherit;
}

input,
select {
  font-family: inherit;
}

/* ---------- Utility ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 120px 0;
}

.text-center {
  text-align: center;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

.section-title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-grey);
  max-width: 560px;
  line-height: 1.7;
}

/* ---------- Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* ---------- Language Switcher ---------- */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  background: var(--soft-grey);
  border-radius: 50px;
  padding: 3px;
  margin-right: 12px;
}

.lang-btn {
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  background: transparent;
  color: var(--text-grey);
  transition: var(--transition-fast);
  letter-spacing: 0.5px;
}

.lang-btn.active {
  background: var(--white);
  color: var(--charcoal);
  box-shadow: var(--shadow-sm);
}

.lang-btn:hover:not(.active) {
  color: var(--charcoal);
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 0;
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.05);
}

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

.nav-logo img {
  height: 40px;
  width: auto;
}

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

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--charcoal);
  transition: var(--transition-fast);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition-fast);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--charcoal);
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 13px !important;
  font-weight: 600 !important;
  transition: var(--transition) !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--brand-pink);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  transition: var(--transition-fast);
  border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 24px 80px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--white) 0%, var(--soft-grey) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 69, 106, 0.04) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--mid-grey);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-grey);
  margin-bottom: 40px;
  animation: fadeInDown 0.8s ease;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.6;
    transform: scale(1.3);
  }
}

.hero h1 {
  font-size: clamp(36px, 6vw, 68px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -2px;
  color: var(--charcoal);
  max-width: 800px;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--brand-pink), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 20px;
  color: var(--text-grey);
  margin-bottom: 60px;
  font-weight: 400;
  animation: fadeInUp 0.8s ease 0.4s both;
}

/* Path Cards */
.path-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  width: 100%;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.path-card {
  background: var(--white);
  border: 1px solid var(--mid-grey);
  border-radius: var(--radius);
  padding: 40px 28px;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.path-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--brand-pink));
  opacity: 0;
  transition: var(--transition);
}

.path-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-light);
}

.path-card:hover::before {
  opacity: 1;
}

.path-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 24px;
  background: var(--soft-grey);
  transition: var(--transition);
}

.path-card:hover .path-card-icon {
  background: var(--charcoal);
  color: var(--white);
  transform: scale(1.05);
}

.path-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.path-card p {
  font-size: 14px;
  color: var(--text-grey);
  line-height: 1.6;
}

.path-card .arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--soft-grey);
  margin-top: 20px;
  transition: var(--transition);
  font-size: 16px;
}

.path-card:hover .arrow {
  background: var(--gold);
  color: var(--white);
  transform: translateX(4px);
}

/* ============================================
   GUEST — Property Browsing
   ============================================ */
#guest {
  background: var(--white);
}

.filters {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
  justify-content: center;
}

.filter-select {
  padding: 12px 20px;
  border: 1px solid var(--mid-grey);
  border-radius: 50px;
  font-size: 14px;
  color: var(--charcoal);
  background: var(--white);
  min-width: 180px;
  outline: none;
  transition: var(--transition-fast);
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%238a8a9a' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.filter-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

.property-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 80px;
}

.property-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--mid-grey);
  transition: var(--transition);
}

.property-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.property-card-img {
  position: relative;
  height: 240px;
  overflow: hidden;
}

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

.property-card:hover .property-card-img img {
  transform: scale(1.08);
}

.property-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--white);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  color: var(--charcoal);
  box-shadow: var(--shadow-sm);
}

/* Managed-by trust text */
.managed-by-text {
  font-size: 14px;
  color: var(--text-grey);
  margin-top: 12px;
  font-weight: 400;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.managed-by-text strong {
  color: var(--gold);
  font-weight: 700;
}

.property-badge-available {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(34, 197, 94, 0.4);
  animation: pulse-available 2s ease-in-out infinite;
}

@keyframes pulse-available {

  0%,
  100% {
    box-shadow: 0 2px 8px rgba(34, 197, 94, 0.4);
  }

  50% {
    box-shadow: 0 2px 16px rgba(34, 197, 94, 0.7);
  }
}

/* Portfolio Stats Bar */
.portfolio-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  margin: 32px auto 12px;
  padding: 24px 40px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  max-width: 600px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: var(--charcoal);
  line-height: 1;
}

.stat-plus {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
  color: var(--gold);
}

.stat-label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-grey);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
}

/* Fully Booked Banner */
.fully-booked-banner {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 40px auto 0;
  padding: 20px 28px;
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  border: 1px solid #f59e0b;
  border-radius: 14px;
  max-width: 640px;
}

.booked-icon {
  font-size: 28px;
  flex-shrink: 0;
}

.booked-text {
  font-size: 15px;
  font-weight: 500;
  color: #92400e;
  margin: 0;
}

.booked-text strong {
  font-weight: 800;
  color: #78350f;
}

.booked-subtext {
  font-size: 13px;
  color: #a16207;
  margin: 4px 0 0;
}

@media (max-width: 600px) {
  .portfolio-stats {
    gap: 20px;
    padding: 20px 24px;
  }

  .stat-number {
    font-size: 28px;
  }

  .fully-booked-banner {
    flex-direction: column;
    text-align: center;
    padding: 16px 20px;
  }
}

.property-fav {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition-fast);
  backdrop-filter: blur(8px);
}

.property-fav:hover {
  background: var(--brand-pink);
  color: var(--white);
  transform: scale(1.1);
}

.property-card-body {
  padding: 24px;
}

.property-location {
  font-size: 12px;
  color: var(--text-grey);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.property-card-body h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.4;
}

.property-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
  font-size: 13px;
  color: var(--text-grey);
}

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

.property-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  color: var(--gold);
  margin-bottom: 16px;
}

.property-rating .count {
  color: var(--text-grey);
  font-size: 13px;
  margin-left: 4px;
}

.property-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--soft-grey);
}

.property-price {
  font-size: 22px;
  font-weight: 800;
}

.property-price span {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-grey);
}

.btn-book {
  background: var(--charcoal);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-book:hover {
  background: var(--brand-pink);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Why Book */
.why-book {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
}

.why-card {
  text-align: center;
  padding: 40px 32px;
  border-radius: var(--radius);
  background: var(--soft-grey);
  transition: var(--transition);
}

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

.why-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
  border: 2px solid var(--gold-light);
}

.why-card h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.why-card p {
  font-size: 14px;
  color: var(--text-grey);
  line-height: 1.6;
}

/* ============================================
   OWNER — Revenue Calculator
   ============================================ */
#owner {
  background: var(--charcoal);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

#owner::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

#owner .section-label {
  color: var(--gold);
}

#owner .section-title {
  color: var(--white);
}

#owner .section-subtitle {
  color: rgba(255, 255, 255, 0.6);
}

.owner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-top: 60px;
}

.story-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 500px;
}

.story-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 32px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
}

.story-message {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 16px 24px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.story-message .icon {
  font-size: 24px;
}

.story-message .text {
  font-size: 15px;
  color: var(--white);
  font-weight: 500;
}

.story-message .amount {
  color: var(--gold);
  font-weight: 800;
  font-size: 20px;
}

.revenue-counter-anim {
  margin-top: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
}

.calculator {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 40px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.calculator h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 32px;
  color: var(--white);
}

.calc-group {
  margin-bottom: 20px;
}

.calc-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.calc-group select,
.calc-group input {
  width: 100%;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  font-size: 15px;
  outline: none;
  transition: var(--transition-fast);
}

.calc-group select option {
  background: var(--charcoal);
  color: var(--white);
}

.calc-group select:focus,
.calc-group input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}

.calc-group input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.btn-calculate {
  width: 100%;
  padding: 16px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--gold), #d4a843);
  color: var(--charcoal);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-calculate:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.calc-results {
  margin-top: 32px;
  display: none;
  animation: fadeInUp 0.6s ease;
}

.calc-results.active {
  display: block;
}

.calc-result-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.calc-result-item {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  padding: 20px;
  text-align: center;
}

.calc-result-item.highlight {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
  grid-column: 1 / -1;
}

.calc-result-item .label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.calc-result-item .value {
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
}

.calc-result-item.highlight .value {
  color: var(--gold);
  font-size: 36px;
}

.calc-result-item .suffix {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
}

.btn-start-earning {
  display: block;
  width: 100%;
  padding: 18px;
  margin-top: 24px;
  border-radius: var(--radius-sm);
  background: var(--brand-pink);
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-start-earning:hover {
  background: #c13a5d;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(212, 69, 106, 0.3);
}

/* ============================================
   SERVICES
   ============================================ */
#services {
  background: var(--soft-grey);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

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

.service-card.expanded {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.service-card-header {
  display: flex;
  align-items: center;
  gap: 20px;
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--soft-grey);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
  transition: var(--transition);
}

.service-card.expanded .service-icon,
.service-card:hover .service-icon {
  background: var(--charcoal);
  color: var(--white);
}

.service-card-header h3 {
  font-size: 18px;
  font-weight: 700;
}

.service-card-header p {
  font-size: 14px;
  color: var(--text-grey);
  margin-top: 4px;
}

.service-toggle {
  position: absolute;
  top: 36px;
  right: 36px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--soft-grey);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: var(--transition);
}

.service-card.expanded .service-toggle {
  transform: rotate(45deg);
  background: var(--gold);
  color: var(--white);
}

.service-detail {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.3s ease, padding 0.5s ease;
  opacity: 0;
}

.service-card.expanded .service-detail {
  max-height: 500px;
  opacity: 1;
  padding-top: 28px;
  margin-top: 28px;
  border-top: 1px solid var(--soft-grey);
}

.service-benefits {
  margin-bottom: 20px;
}

.service-benefits li {
  padding: 6px 0;
  font-size: 14px;
  color: var(--text-grey);
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-benefits li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  font-size: 13px;
}

.service-pricing {
  font-size: 14px;
  color: var(--text-grey);
  margin-bottom: 20px;
}

.service-pricing strong {
  font-size: 24px;
  color: var(--charcoal);
  font-weight: 800;
}

.btn-service {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  background: var(--charcoal);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
}

.btn-service:hover {
  background: var(--brand-pink);
  transform: translateY(-2px);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
#testimonials {
  background: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--mid-grey);
  border-radius: var(--radius);
  padding: 36px;
  transition: var(--transition);
}

.testimonial-card:hover {
  border-color: var(--gold-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
  color: var(--gold);
  font-size: 16px;
}

.testimonial-card blockquote {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-grey);
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--soft-grey);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
}

.testimonial-name {
  font-size: 14px;
  font-weight: 700;
}

.testimonial-role {
  font-size: 12px;
  color: var(--text-grey);
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid var(--mid-grey);
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.trust-badge .number {
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -1px;
}

.trust-badge .label {
  font-size: 13px;
  color: var(--text-grey);
  font-weight: 500;
}

/* ============================================
   FAQ
   ============================================ */
#faq {
  background: var(--soft-grey);
}

.faq-list {
  max-width: 720px;
  margin: 48px auto 0;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  border: 1px solid transparent;
  transition: var(--transition-fast);
}

.faq-item.active {
  border-color: var(--gold-light);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  font-size: 16px;
  font-weight: 600;
  color: var(--charcoal);
  text-align: left;
  cursor: pointer;
  transition: var(--transition-fast);
}

.faq-question:hover {
  color: var(--brand-pink);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--soft-grey);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: var(--transition);
  flex-shrink: 0;
  font-weight: 400;
  color: var(--text-grey);
}

.faq-item.active .faq-icon {
  background: var(--gold);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 250px;
}

.faq-answer p {
  padding: 0 28px 24px;
  font-size: 15px;
  color: var(--text-grey);
  line-height: 1.7;
}

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--dark) 100%);
  text-align: center;
  padding: 120px 24px;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.final-cta .section-label {
  color: var(--gold);
}

.final-cta h2 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  color: var(--white);
  max-width: 700px;
  margin: 0 auto 16px;
  letter-spacing: -1px;
  line-height: 1.15;
  position: relative;
}

.final-cta .subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 48px;
  position: relative;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  border-radius: 50px;
  background: #25D366;
  color: var(--white);
  font-size: 17px;
  font-weight: 700;
  transition: var(--transition);
  position: relative;
  text-decoration: none;
}

.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.5);
  padding: 60px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand img {
  height: 36px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  padding: 6px 0;
  transition: var(--transition-fast);
}

.footer-col a:hover {
  color: var(--gold);
  transform: translateX(4px);
}

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

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

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: var(--transition-fast);
  color: rgba(255, 255, 255, 0.5);
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

/* ============================================
   FLOATING WHATSAPP
   ============================================ */
/* Floating Owner Button */
.floating-owner {
  position: fixed;
  bottom: 100px;
  right: 28px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border: none;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--gold), #d4a843);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3px;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(196, 164, 60, 0.35);
  z-index: 999;
  transition: var(--transition);
  animation: pulse-owner 3s infinite;
  font-family: var(--font);
}

.floating-owner:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 32px rgba(196, 164, 60, 0.5);
}

.floating-owner-icon {
  font-size: 18px;
}

.floating-owner-text {
  white-space: nowrap;
}

@keyframes pulse-owner {

  0%,
  100% {
    box-shadow: 0 6px 24px rgba(196, 164, 60, 0.35);
  }

  50% {
    box-shadow: 0 6px 28px rgba(196, 164, 60, 0.55);
  }
}

.floating-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35);
  z-index: 999;
  transition: var(--transition);
  animation: pulse-wa 3s infinite;
  text-decoration: none;
}

.floating-wa:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
}

.floating-wa svg {
  width: 28px;
  height: 28px;
  fill: white;
}

@keyframes pulse-wa {

  0%,
  100% {
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35);
  }

  50% {
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.55), 0 0 0 12px rgba(37, 211, 102, 0.1);
  }
}

/* ============================================
   MID CTA (reusable)
   ============================================ */
.mid-cta {
  padding: 80px 24px;
  text-align: center;
}

.mid-cta.light {
  background: var(--soft-grey);
}

.mid-cta.dark {
  background: linear-gradient(135deg, var(--charcoal), var(--dark));
}

.mid-cta.dark h2 {
  color: var(--white);
}

.mid-cta.dark p {
  color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .property-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .owner-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .story-card {
    height: 350px;
  }

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

@media (max-width: 768px) {
  .section {
    padding: 80px 0;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 32px;
    z-index: 998;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    font-size: 24px;
    font-weight: 600;
  }

  .menu-toggle {
    display: flex;
    z-index: 999;
  }

  .lang-switcher {
    margin-right: 8px;
  }

  .lang-btn {
    padding: 5px 10px;
    font-size: 11px;
  }

  .hero {
    padding: 120px 20px 60px;
  }

  .path-cards {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 400px;
  }

  .path-card {
    padding: 28px 24px;
  }

  .property-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .why-book {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .filters {
    flex-direction: column;
    align-items: stretch;
  }

  .filter-select {
    min-width: unset;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .trust-badges {
    gap: 32px;
  }

  .calc-result-grid {
    grid-template-columns: 1fr;
  }

  .final-cta {
    padding: 80px 20px;
  }
}

/* ============================================
   FORMS
   ============================================ */
.form-section {
  margin-top: 80px;
  padding: 60px 0;
  border-top: 1px solid var(--mid-grey);
}

.premium-form {
  max-width: 640px;
  margin: 0 auto;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.premium-form input,
.premium-form select,
.premium-form textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--mid-grey);
  border-radius: var(--radius-sm);
  font-size: 15px;
  color: var(--charcoal);
  background: var(--white);
  outline: none;
  transition: var(--transition-fast);
  font-family: inherit;
}

.premium-form input:focus,
.premium-form select:focus,
.premium-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

.premium-form textarea {
  resize: vertical;
  min-height: 80px;
}

.premium-form input::placeholder,
.premium-form textarea::placeholder {
  color: var(--text-grey);
}

/* Dark form variant (inside dark sections) */
.dark-form input,
.dark-form select,
.dark-form textarea {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

.dark-form input::placeholder,
.dark-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.dark-form input:focus,
.dark-form select:focus,
.dark-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}

.dark-form select option {
  background: var(--charcoal);
  color: var(--white);
}

.dark-form label {
  color: rgba(255, 255, 255, 0.6);
}

/* Contact final form (dark bg) */
.contact-final-form input,
.contact-final-form select,
.contact-final-form textarea {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

.contact-final-form input::placeholder,
.contact-final-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.contact-final-form input:focus,
.contact-final-form select:focus,
.contact-final-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}

.contact-final-form select option {
  background: var(--charcoal);
  color: var(--white);
}

.btn-form-submit {
  width: 100%;
  padding: 16px;
  border: none;
  border-radius: var(--radius-sm);
  background: var(--charcoal);
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: inherit;
}

.btn-form-submit:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  background: var(--brand-pink);
}

.btn-form-submit.gold {
  background: linear-gradient(135deg, var(--gold), #d4a843);
  color: var(--charcoal);
}

.btn-form-submit.gold:hover {
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
  background: linear-gradient(135deg, #d4a843, var(--gold));
}

.form-success {
  display: none;
  text-align: center;
  padding: 24px;
  margin-top: 20px;
  border-radius: var(--radius-sm);
  background: rgba(46, 204, 113, 0.08);
  border: 1px solid rgba(46, 204, 113, 0.2);
  animation: fadeInUp 0.5s ease;
}

.form-success.visible {
  display: block;
}

.form-success span {
  font-size: 36px;
  display: block;
  margin-bottom: 12px;
}

.form-success p {
  font-size: 15px;
  color: var(--charcoal);
  line-height: 1.6;
}

.contact-final-form .form-success p,
.dark-form~.form-success p {
  color: var(--white);
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 32px;
    letter-spacing: -1px;
  }

  .hero-sub {
    font-size: 16px;
  }

  .section-title {
    font-size: 28px;
  }

  .calculator {
    padding: 28px 20px;
  }
}

/* ============================================
   DARK MODE
   ============================================ */
[data-theme="dark"] {
  --white: #0d0d1a;
  --off-white: #131328;
  --soft-grey: #1a1a2e;
  --mid-grey: #2a2a40;
  --text-grey: #9a9ab0;
  --charcoal: #e8e8f0;
  --dark: #ffffff;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.4);
}

[data-theme="dark"] body {
  background: #0d0d1a;
  color: #e8e8f0;
}

[data-theme="dark"] .navbar.scrolled {
  background: rgba(13, 13, 26, 0.92);
}

[data-theme="dark"] .hero {
  background: linear-gradient(180deg, #0d0d1a 0%, #131328 100%);
}

[data-theme="dark"] .path-card,
[data-theme="dark"] .property-card,
[data-theme="dark"] .why-card,
[data-theme="dark"] .calculator,
[data-theme="dark"] .faq-item {
  background: #1a1a2e;
  border-color: #2a2a40;
}

[data-theme="dark"] .property-badge,
[data-theme="dark"] .hero-badge {
  background: #1a1a2e;
  border-color: #2a2a40;
  color: #e8e8f0;
}

[data-theme="dark"] .property-fav {
  background: rgba(26, 26, 46, 0.9);
}

[data-theme="dark"] .filter-select {
  background: #1a1a2e;
  border-color: #2a2a40;
  color: #e8e8f0;
}

[data-theme="dark"] .portfolio-stats {
  background: #1a1a2e;
}

[data-theme="dark"] .fully-booked-banner {
  background: linear-gradient(135deg, #2a1f00, #3d2b00);
  border-color: #a16207;
}

[data-theme="dark"] .booked-text,
[data-theme="dark"] .booked-text strong {
  color: #fde68a;
}

[data-theme="dark"] .booked-subtext {
  color: #f59e0b;
}

[data-theme="dark"] .mid-cta {
  background: linear-gradient(135deg, #1a1a2e, #131328);
}

[data-theme="dark"] input,
[data-theme="dark"] select,
[data-theme="dark"] textarea {
  background: #1a1a2e;
  border-color: #2a2a40;
  color: #e8e8f0;
}

[data-theme="dark"] .footer {
  background: #080812;
}

[data-theme="dark"] .lang-switcher {
  background: #1a1a2e;
}

[data-theme="dark"] .lang-btn.active {
  background: #2a2a40;
  color: #e8e8f0;
}

[data-theme="dark"] .service-card {
  background: #1a1a2e;
  border-color: #2a2a40;
}

[data-theme="dark"] .testimonial-card {
  background: #1a1a2e;
  border-color: #2a2a40;
}

[data-theme="dark"] .story-card img {
  opacity: 0.85;
}

[data-theme="dark"] .form-success {
  background: rgba(46, 204, 113, 0.12);
}

/* Dark Mode Toggle Button */
.dark-mode-toggle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--soft-grey);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: var(--transition-fast);
  border: 1px solid var(--mid-grey);
  cursor: pointer;
  margin-right: 4px;
}

.dark-mode-toggle:hover {
  transform: scale(1.1);
  background: var(--gold);
  border-color: var(--gold);
}

/* ============================================
   TRUST BADGES
   ============================================ */
.trust-badges {
  padding: 60px 0;
  background: var(--soft-grey);
  overflow: hidden;
}

.trust-badges-inner {
  text-align: center;
}

.trust-badges-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-grey);
  margin-bottom: 32px;
  display: block;
}

.trust-badges-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}

.trust-badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0.7;
  transition: var(--transition);
}

.trust-badge-item:hover {
  opacity: 1;
  transform: translateY(-4px);
}

.trust-badge-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--mid-grey);
  transition: var(--transition);
}

.trust-badge-item:hover .trust-badge-icon {
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.trust-badge-text {
  font-size: 12px;
  font-weight: 600;
  color: var(--charcoal);
  text-align: center;
  line-height: 1.3;
}

.trust-badge-sub {
  font-size: 11px;
  color: var(--text-grey);
  font-weight: 400;
}

/* ============================================
   INTERACTIVE MAP
   ============================================ */
.map-section {
  padding: 80px 0 0;
  background: var(--off-white);
}

.map-container {
  position: relative;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-width: 1200px;
  margin: 0 auto;
}

.map-container iframe {
  width: 100%;
  height: 450px;
  border: none;
  display: block;
}

.map-overlay-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--white);
  padding: 12px 20px;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 10;
}

.map-overlay-badge .map-dot {
  width: 10px;
  height: 10px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

.map-overlay-badge span {
  font-size: 13px;
  font-weight: 600;
  color: var(--charcoal);
}

@media (max-width: 768px) {
  .map-container iframe {
    height: 300px;
  }

  .trust-badges-grid {
    gap: 24px;
  }

  .trust-badge-icon {
    width: 52px;
    height: 52px;
    font-size: 22px;
  }
}

/* ============================================
   PWA INSTALL PROMPT
   ============================================ */
.pwa-install-banner {
  display: none;
  position: fixed;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--charcoal);
  color: var(--white);
  padding: 14px 24px;
  border-radius: 50px;
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  animation: fadeInUp 0.5s ease;
}

.pwa-install-banner.visible {
  display: flex;
}

.pwa-install-btn {
  background: var(--gold);
  color: var(--charcoal);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: var(--transition-fast);
}

.pwa-install-btn:hover {
  background: var(--gold-light);
}

.pwa-install-close {
  background: none;
  border: none;
  color: var(--text-grey);
  font-size: 18px;
  cursor: pointer;
  padding: 0 4px;
}

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */
.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--charcoal);
  color: var(--white);
  padding: 20px 24px;
  z-index: 10000;
  animation: slideUp 0.5s ease;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.cookie-banner.visible {
  display: block;
}

.cookie-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-banner-text {
  font-size: 14px;
  line-height: 1.6;
  flex: 1;
  min-width: 280px;
}

.cookie-banner-text a {
  color: var(--gold);
  text-decoration: underline;
}

.cookie-banner-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-accept {
  background: var(--gold);
  color: var(--charcoal);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: var(--transition-fast);
}

.cookie-accept:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.cookie-decline {
  background: transparent;
  color: var(--text-grey);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: var(--transition-fast);
}

.cookie-decline:hover {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ============================================
   IMAGE LIGHTBOX
   ============================================ */
.lightbox-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 10001;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}

.lightbox-overlay.visible {
  display: flex;
}

.lightbox-overlay img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 12px;
  object-fit: contain;
  animation: zoomIn 0.3s ease;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  backdrop-filter: blur(8px);
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  backdrop-filter: blur(8px);
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.25);
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

.lightbox-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 500;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* ============================================
   EMAIL CAPTURE POPUP
   ============================================ */
.email-popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 10002;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}

.email-popup-overlay.visible {
  display: flex;
}

.email-popup {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  max-width: 440px;
  width: 90%;
  text-align: center;
  position: relative;
  animation: zoomIn 0.4s ease;
  box-shadow: var(--shadow-lg);
}

.email-popup-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: none;
  border: none;
  font-size: 22px;
  color: var(--text-grey);
  cursor: pointer;
  padding: 4px;
}

.email-popup-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.email-popup h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.email-popup p {
  font-size: 14px;
  color: var(--text-grey);
  margin-bottom: 24px;
  line-height: 1.6;
}

.email-popup-form {
  display: flex;
  gap: 8px;
}

.email-popup-form input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid var(--mid-grey);
  border-radius: 50px;
  font-size: 14px;
  outline: none;
}

.email-popup-form input:focus {
  border-color: var(--gold);
}

.email-popup-form button {
  padding: 12px 20px;
  background: var(--gold);
  color: var(--charcoal);
  border: none;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition-fast);
}

.email-popup-form button:hover {
  background: var(--gold-light);
}

.email-popup-discount {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--brand-pink));
  color: #fff;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 16px;
}

/* ============================================
   SOCIAL PROOF TOASTS
   ============================================ */
.social-proof-toast {
  display: none;
  position: fixed;
  bottom: 24px;
  left: 24px;
  background: var(--white);
  border: 1px solid var(--mid-grey);
  border-radius: 14px;
  padding: 14px 20px;
  box-shadow: var(--shadow-md);
  z-index: 9998;
  max-width: 320px;
  animation: slideInLeft 0.5s ease;
}

.social-proof-toast.visible {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-proof-toast.hiding {
  animation: slideOutLeft 0.4s ease forwards;
}

.social-proof-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--brand-pink));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.social-proof-content {
  flex: 1;
}

.social-proof-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--charcoal);
}

.social-proof-action {
  font-size: 12px;
  color: var(--text-grey);
  margin-top: 2px;
}

.social-proof-time {
  font-size: 11px;
  color: var(--success);
  font-weight: 600;
  margin-top: 2px;
}

@keyframes slideInLeft {
  from {
    transform: translateX(-120%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOutLeft {
  from {
    transform: translateX(0);
    opacity: 1;
  }

  to {
    transform: translateX(-120%);
    opacity: 0;
  }
}

/* ============================================
   SCROLL PROGRESS BAR
   ============================================ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--brand-pink));
  z-index: 10001;
  width: 0%;
  transition: width 0.1s linear;
}

/* ============================================
   PROPERTY CARD CLICKABLE CURSOR
   ============================================ */
.property-card-img {
  cursor: pointer;
}

@media (max-width: 768px) {
  .cookie-banner-inner {
    flex-direction: column;
    text-align: center;
  }

  .cookie-banner-actions {
    width: 100%;
    justify-content: center;
  }

  .email-popup-form {
    flex-direction: column;
  }

  .social-proof-toast {
    left: 12px;
    right: 12px;
    max-width: none;
  }
}

/* ============================================
   PHASE 1 — HERO PATH SELECTOR
   ============================================ */
.hero-paths {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 48px auto 0;
  padding: 0 16px;
}

.hero-path-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  cursor: pointer;
  transition: transform 0.35s cubic-bezier(.4,0,.2,1), box-shadow 0.35s ease, border-color 0.35s ease;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: block;
  color: inherit;
}

.hero-path-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 50% 100%, rgba(197, 165, 114, 0.12), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.hero-path-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(197, 165, 114, 0.2), 0 0 40px rgba(197, 165, 114, 0.08);
  border-color: rgba(197, 165, 114, 0.35);
}

.hero-path-card:hover::before {
  opacity: 1;
}

.hero-path-icon {
  font-size: 48px;
  margin-bottom: 16px;
  display: block;
  filter: grayscale(0);
  transition: transform 0.3s ease;
}

.hero-path-card:hover .hero-path-icon {
  transform: scale(1.15);
}

.hero-path-title {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}

.hero-path-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
  margin-bottom: 20px;
}

.hero-path-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 24px;
  background: rgba(197, 165, 114, 0.15);
  border: 1px solid rgba(197, 165, 114, 0.3);
  border-radius: 50px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.hero-path-card:hover .hero-path-btn {
  background: var(--gold);
  color: var(--charcoal);
  border-color: var(--gold);
}

@media (max-width: 768px) {
  .hero-paths {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 32px;
  }

  .hero-path-card {
    padding: 24px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
  }

  .hero-path-icon {
    font-size: 36px;
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .hero-path-desc {
    display: none;
  }

  .hero-path-btn {
    margin-left: auto;
    padding: 8px 16px;
  }
}

body[dir="rtl"] .hero-path-card {
  text-align: right;
}

body[dir="rtl"] .hero-path-btn {
  direction: ltr;
}

@media (max-width: 768px) {
  body[dir="rtl"] .hero-path-card {
    text-align: right;
  }

  body[dir="rtl"] .hero-path-btn {
    margin-left: 0;
    margin-right: auto;
  }
}

/* ============================================
   AUTH MODAL
   ============================================ */
.auth-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 10003;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}

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

.auth-modal {
  background: var(--white);
  border: 1px solid var(--mid-grey);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  max-width: 440px;
  width: 92%;
  position: relative;
  animation: zoomIn 0.35s ease;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.25);
}

.auth-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 22px;
  color: var(--text-grey);
  cursor: pointer;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.auth-close:hover {
  background: var(--soft-grey);
  color: var(--charcoal);
}

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

.auth-logo img {
  height: 28px;
}

.auth-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--charcoal);
  text-align: center;
  margin-bottom: 4px;
}

.auth-subtitle {
  font-size: 14px;
  color: var(--text-grey);
  text-align: center;
  margin-bottom: 28px;
}

.auth-tabs {
  display: flex;
  background: var(--soft-grey);
  border-radius: 10px;
  padding: 4px;
  margin-bottom: 24px;
}

.auth-tab {
  flex: 1;
  padding: 10px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  background: none;
  border-radius: 8px;
  cursor: pointer;
  color: var(--text-grey);
  transition: all 0.25s ease;
}

.auth-tab.active {
  background: var(--white);
  color: var(--charcoal);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.auth-form {
  display: none;
}

.auth-form.active {
  display: block;
}

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

.auth-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 6px;
}

.auth-field input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--mid-grey);
  border-radius: var(--radius);
  font-size: 14px;
  transition: border-color 0.2s;
  background: var(--off-white);
  color: var(--charcoal);
  box-sizing: border-box;
}

.auth-field input:focus {
  outline: none;
  border-color: var(--gold);
}

.auth-submit {
  width: 100%;
  padding: 14px;
  background: var(--gold);
  color: var(--charcoal);
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.25s ease;
  margin-top: 4px;
}

.auth-submit:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.auth-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0;
  color: var(--text-grey);
  font-size: 13px;
}

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

.auth-google {
  width: 100%;
  padding: 12px;
  background: var(--off-white);
  border: 1px solid var(--mid-grey);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  color: var(--charcoal);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.25s ease;
}

.auth-google:hover {
  background: var(--soft-grey);
  border-color: var(--gold);
}

.auth-google svg {
  width: 18px;
  height: 18px;
}

.auth-forgot {
  display: block;
  text-align: right;
  font-size: 13px;
  color: var(--gold);
  margin-top: -8px;
  margin-bottom: 16px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.auth-forgot:hover {
  text-decoration: underline;
}

.auth-error {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  padding: 10px 14px;
  border-radius: var(--radius);
  font-size: 13px;
  margin-bottom: 16px;
  display: none;
}

.auth-error.visible {
  display: block;
}

/* User menu in navbar */
.nav-user {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
}

.nav-user-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--brand-pink));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  transition: transform 0.2s ease;
  border: 2px solid transparent;
}

.nav-user-avatar:hover {
  transform: scale(1.08);
  border-color: var(--gold);
}

.nav-user-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: var(--white);
  border: 1px solid var(--mid-grey);
  border-radius: var(--radius);
  min-width: 200px;
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  display: none;
  animation: fadeInUp 0.25s ease;
  overflow: hidden;
}

.nav-user-dropdown.visible {
  display: block;
}

.nav-user-dropdown-header {
  padding: 14px 16px;
  border-bottom: 1px solid var(--mid-grey);
}

.nav-user-dropdown-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--charcoal);
}

.nav-user-dropdown-email {
  font-size: 12px;
  color: var(--text-grey);
  margin-top: 2px;
}

.nav-user-dropdown a,
.nav-user-dropdown button {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  font-size: 14px;
  color: var(--charcoal);
  text-decoration: none;
  border: none;
  background: none;
  width: 100%;
  cursor: pointer;
  transition: background 0.2s;
}

.nav-user-dropdown a:hover,
.nav-user-dropdown button:hover {
  background: var(--soft-grey);
}

.nav-auth-btn {
  padding: 8px 20px;
  background: var(--gold);
  color: var(--charcoal);
  border: none;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.nav-auth-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* ============================================
   ADVANCED FILTERS
   ============================================ */
.filters-advanced {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 32px;
}

.filter-group {
  position: relative;
}

.filter-group label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-grey);
  margin-bottom: 6px;
}

.filter-group select,
.filter-group input[type="number"] {
  padding: 10px 14px;
  border: 1px solid var(--mid-grey);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--charcoal);
  font-size: 14px;
  font-family: inherit;
  min-width: 140px;
  transition: border-color 0.2s;
}

.filter-group select:focus,
.filter-group input:focus {
  outline: none;
  border-color: var(--gold);
}

.filter-type-toggles {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-type-btn {
  padding: 8px 16px;
  border: 1px solid var(--mid-grey);
  border-radius: 50px;
  background: var(--off-white);
  color: var(--charcoal);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

.filter-type-btn:hover,
.filter-type-btn.active {
  background: var(--gold);
  color: var(--charcoal);
  border-color: var(--gold);
}

.filter-amenity-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-amenity-chip {
  padding: 6px 14px;
  border: 1px solid var(--mid-grey);
  border-radius: 50px;
  background: var(--off-white);
  font-size: 12px;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--text-grey);
}

.filter-amenity-chip:hover,
.filter-amenity-chip.active {
  background: rgba(197, 165, 114, 0.15);
  border-color: var(--gold);
  color: var(--gold);
}

.filter-sort select {
  padding: 10px 14px;
  min-width: 160px;
}

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

.filter-price-range input[type="number"] {
  width: 90px;
  padding: 10px 12px;
}

.filter-price-range span {
  color: var(--text-grey);
  font-size: 13px;
}

.filters-toggle {
  display: none;
  width: 100%;
  padding: 12px;
  background: var(--off-white);
  border: 1px solid var(--mid-grey);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  color: var(--charcoal);
  cursor: pointer;
  text-align: center;
  margin-bottom: 16px;
}

.filters-collapse {
  display: contents;
}

@media (max-width: 768px) {
  .filters-toggle {
    display: block;
  }

  .filters-collapse {
    display: none;
    width: 100%;
  }

  .filters-collapse.open {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .filter-group select,
  .filter-group input[type="number"] {
    width: 100%;
  }

  .filter-type-toggles,
  .filter-amenity-chips {
    width: 100%;
  }
}

/* ============================================
   SKELETON LOADING
   ============================================ */
.skeleton-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}

.skeleton-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--off-white);
  border: 1px solid var(--mid-grey);
}

.skeleton-img {
  width: 100%;
  height: 220px;
  background: linear-gradient(90deg, var(--soft-grey) 0%, var(--mid-grey) 50%, var(--soft-grey) 100%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

.skeleton-body {
  padding: 20px;
}

.skeleton-line {
  height: 14px;
  border-radius: 8px;
  background: linear-gradient(90deg, var(--soft-grey) 0%, var(--mid-grey) 50%, var(--soft-grey) 100%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  margin-bottom: 12px;
}

.skeleton-line.short {
  width: 40%;
}

.skeleton-line.medium {
  width: 70%;
}

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

/* Empty state */
.properties-empty {
  text-align: center;
  padding: 60px 20px;
  display: none;
}

.properties-empty.visible {
  display: block;
}

.properties-empty-icon {
  font-size: 56px;
  margin-bottom: 16px;
}

.properties-empty h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.properties-empty p {
  font-size: 14px;
  color: var(--text-grey);
  max-width: 360px;
  margin: 0 auto;
}

/* Load more */
.load-more-container {
  text-align: center;
  margin-top: 40px;
  display: none;
}

.load-more-container.visible {
  display: block;
}

.btn-load-more {
  padding: 14px 40px;
  background: var(--off-white);
  border: 1px solid var(--mid-grey);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: var(--charcoal);
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-load-more:hover {
  background: var(--gold);
  color: var(--charcoal);
  border-color: var(--gold);
}

/* ============================================
   TOAST NOTIFICATIONS
   ============================================ */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 10004;
  display: flex;
  flex-direction: column-reverse;
  gap: 10px;
}

.toast {
  padding: 14px 20px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  animation: slideInRight 0.4s ease;
  box-shadow: var(--shadow-md);
  min-width: 280px;
  max-width: 400px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.toast.success {
  background: #059669;
}

.toast.error {
  background: #dc2626;
}

.toast.info {
  background: #2563eb;
}

.toast.removing {
  animation: slideOutRight 0.3s ease forwards;
}

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

@keyframes slideOutRight {
  from { transform: translateX(0); opacity: 1; }
  to { transform: translateX(120%); opacity: 0; }
}

@media (max-width: 768px) {
  .toast-container {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }
  .toast {
    min-width: auto;
    max-width: none;
  }
}

/* ============================================
   PROPERTY DETAIL PAGE
   ============================================ */
.pd-header {
  padding: 100px 0 32px;
}

.pd-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 200px 200px;
  gap: 8px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  max-height: 420px;
}

.pd-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.pd-gallery img:hover {
  transform: scale(1.03);
}

.pd-gallery img:first-child {
  grid-row: 1 / 3;
}

.pd-gallery-more {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pd-gallery-more::after {
  content: attr(data-count);
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
}

.pd-info {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  padding: 32px 0 80px;
}

.pd-title {
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.pd-location {
  font-size: 15px;
  color: var(--text-grey);
  margin-bottom: 4px;
}

.pd-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 16px 0;
  font-size: 14px;
  color: var(--text-grey);
}

.pd-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.pd-badge {
  display: inline-block;
  padding: 4px 12px;
  background: linear-gradient(135deg, var(--gold), var(--brand-pink));
  color: #fff;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  margin-left: 8px;
}

.pd-section {
  margin-bottom: 32px;
}

.pd-section-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 16px;
}

.pd-description {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-grey);
}

.pd-amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
}

.pd-amenity {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--off-white);
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--charcoal);
}

.pd-amenity-icon {
  font-size: 18px;
}

/* Booking widget (sticky sidebar) */
.pd-booking-widget {
  position: sticky;
  top: 100px;
  background: var(--white);
  border: 1px solid var(--mid-grey);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-md);
}

.pd-price-main {
  font-size: 28px;
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.pd-price-main span {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-grey);
}

.pd-rating-line {
  font-size: 14px;
  color: var(--text-grey);
  margin-bottom: 24px;
}

.pd-date-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--mid-grey);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 12px;
}

.pd-date-input {
  padding: 12px 14px;
}

.pd-date-input:first-child {
  border-right: 1px solid var(--mid-grey);
}

.pd-date-input label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.pd-date-input input {
  border: none;
  background: transparent;
  font-size: 14px;
  color: var(--charcoal);
  width: 100%;
  padding: 4px 0;
  font-family: inherit;
}

.pd-date-input input:focus {
  outline: none;
}

.pd-guests-select {
  width: 100%;
  padding: 14px;
  border: 1px solid var(--mid-grey);
  border-radius: var(--radius);
  margin-bottom: 16px;
  font-size: 14px;
  background: var(--white);
  color: var(--charcoal);
}

.pd-book-btn {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--gold), #d4a855);
  color: var(--charcoal);
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 16px;
}

.pd-book-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(197, 165, 114, 0.3);
}

.pd-price-breakdown {
  display: none;
}

.pd-price-breakdown.visible {
  display: block;
}

.pd-price-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  padding: 8px 0;
  color: var(--text-grey);
}

.pd-price-row.total {
  border-top: 1px solid var(--mid-grey);
  padding-top: 12px;
  margin-top: 4px;
  font-weight: 700;
  color: var(--charcoal);
  font-size: 16px;
}

/* Calendar */
.pd-calendar {
  margin-bottom: 32px;
}

.pd-cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.pd-cal-month {
  font-size: 16px;
  font-weight: 700;
  color: var(--charcoal);
}

.pd-cal-nav {
  background: none;
  border: 1px solid var(--mid-grey);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--charcoal);
  transition: all 0.2s;
}

.pd-cal-nav:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.pd-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  text-align: center;
}

.pd-cal-day-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-grey);
  padding: 8px 0;
  text-transform: uppercase;
}

.pd-cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--charcoal);
}

.pd-cal-day:hover:not(.booked):not(.empty):not(.past) {
  background: rgba(197, 165, 114, 0.15);
}

.pd-cal-day.selected {
  background: var(--gold);
  color: var(--charcoal);
  font-weight: 700;
}

.pd-cal-day.in-range {
  background: rgba(197, 165, 114, 0.12);
}

.pd-cal-day.booked {
  color: var(--text-grey);
  opacity: 0.4;
  text-decoration: line-through;
  cursor: not-allowed;
}

.pd-cal-day.past {
  color: var(--mid-grey);
  cursor: default;
}

.pd-cal-day.empty {
  cursor: default;
}

/* Similar properties */
.pd-similar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

@media (max-width: 900px) {
  .pd-info {
    grid-template-columns: 1fr;
  }

  .pd-booking-widget {
    position: static;
  }

  .pd-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 150px;
    max-height: none;
  }

  .pd-gallery img:first-child {
    grid-column: 1 / -1;
    grid-row: auto;
    height: 220px;
  }
}

@media (max-width: 480px) {
  .pd-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .pd-gallery img:first-child {
    height: 240px;
  }

  .pd-gallery img:nth-child(n+3) {
    display: none;
  }
}

/* ============================================
   BOOKING CONFIRMATION
   ============================================ */
.confirm-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 20px 60px;
}

.confirm-card {
  background: var(--white);
  border: 1px solid var(--mid-grey);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  max-width: 520px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.confirm-check {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #059669, #10b981);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 36px;
  animation: bounceIn 0.6s cubic-bezier(.4,0,.2,1);
}

@keyframes bounceIn {
  0% { transform: scale(0); }
  60% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

.confirm-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.confirm-subtitle {
  font-size: 15px;
  color: var(--text-grey);
  margin-bottom: 32px;
}

.confirm-details {
  text-align: left;
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 28px;
}

.confirm-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 14px;
}

.confirm-row-label {
  color: var(--text-grey);
}

.confirm-row-value {
  font-weight: 600;
  color: var(--charcoal);
}

.confirm-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.confirm-actions a,
.confirm-actions button {
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s ease;
}

.confirm-btn-primary {
  background: var(--gold);
  color: var(--charcoal);
  border: none;
}

.confirm-btn-secondary {
  background: var(--off-white);
  color: var(--charcoal);
  border: 1px solid var(--mid-grey);
}

/* ============================================
   DARK MODE — PHASE 1 ADDITIONS
   ============================================ */
[data-theme="dark"] .hero-path-card {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .hero-path-card:hover {
  border-color: rgba(197, 165, 114, 0.3);
}

[data-theme="dark"] .auth-modal {
  background: #1a1a2e;
  border-color: #2a2a40;
}

[data-theme="dark"] .auth-tab {
  color: #9a9ab0;
}

[data-theme="dark"] .auth-tab.active {
  background: #2a2a40;
  color: #e8e8f0;
}

[data-theme="dark"] .auth-tabs {
  background: #131328;
}

[data-theme="dark"] .nav-user-dropdown {
  background: #1a1a2e;
  border-color: #2a2a40;
}

[data-theme="dark"] .nav-user-dropdown a,
[data-theme="dark"] .nav-user-dropdown button {
  color: #e8e8f0;
}

[data-theme="dark"] .nav-user-dropdown a:hover,
[data-theme="dark"] .nav-user-dropdown button:hover {
  background: #2a2a40;
}

[data-theme="dark"] .skeleton-img,
[data-theme="dark"] .skeleton-line {
  background: linear-gradient(90deg, #1a1a2e 0%, #2a2a40 50%, #1a1a2e 100%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

[data-theme="dark"] .filter-type-btn {
  background: #1a1a2e;
  border-color: #2a2a40;
  color: #e8e8f0;
}

[data-theme="dark"] .filter-amenity-chip {
  background: #1a1a2e;
  border-color: #2a2a40;
  color: #9a9ab0;
}

[data-theme="dark"] .pd-booking-widget {
  background: #1a1a2e;
  border-color: #2a2a40;
}

[data-theme="dark"] .pd-amenity {
  background: #131328;
}

[data-theme="dark"] .pd-cal-day {
  color: #e8e8f0;
}

[data-theme="dark"] .pd-cal-day.booked {
  color: #4a4a60;
}

[data-theme="dark"] .confirm-card {
  background: #1a1a2e;
  border-color: #2a2a40;
}

[data-theme="dark"] .confirm-details {
  background: #131328;
}

[data-theme="dark"] .btn-load-more {
  background: #1a1a2e;
  border-color: #2a2a40;
  color: #e8e8f0;
}

[data-theme="dark"] .filters-toggle {
  background: #1a1a2e;
  border-color: #2a2a40;
  color: #e8e8f0;
}