/* ===== STAYVIBES GLOBAL STYLES ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=DM+Sans:wght@300;400;500;600&family=Syne:wght@400;600;700;800&display=swap');

:root {
  --bg-dark: #ffffff;
  --bg-card: #f8f8f8;
  --bg-mid: #f3f3f3;
  --accent-red: #e84040;
  --accent-orange: #92422f;
  --accent-olive: #7cb842;
  --accent-warm: #ffc15e;
  --text-primary: #111111;
  --text-secondary: #3f3f3f;
  --text-muted: #5d5d5d;
  --border: rgba(17, 17, 17, 0.08);
  --border-bright: rgba(17, 17, 17, 0.15);
  --shadow: 0 16px 60px rgba(0,0,0,0.08);
  --radius: 12px;
  --radius-lg: 20px;
}



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

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

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg-dark);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; outline: none; font-family: inherit; }
ul { list-style: none; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--accent-orange); border-radius: 3px; }

/* ===== LOADING SCREEN ===== */
#loader {
  position: fixed; inset: 0;
  background: var(--bg-dark);
  z-index: 9999;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 24px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#loader.hidden { opacity: 0; visibility: hidden; }

.loader-logo { width: 140px; animation: loaderPulse 1.5s ease-in-out infinite; }

@keyframes loaderPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.8; }
}

.loader-bars {
  display: flex; gap: 6px; align-items: flex-end;
}
.loader-bar {
  width: 5px; border-radius: 3px;
  background: var(--accent-orange);
  animation: loaderBar 1.2s ease-in-out infinite;
}
.loader-bar:nth-child(1) { height: 20px; animation-delay: 0s; }
.loader-bar:nth-child(2) { height: 32px; animation-delay: 0.15s; background: var(--accent-red); }
.loader-bar:nth-child(3) { height: 24px; animation-delay: 0.3s; }
.loader-bar:nth-child(4) { height: 36px; animation-delay: 0.45s; background: var(--accent-olive); }
.loader-bar:nth-child(5) { height: 20px; animation-delay: 0.6s; }

@keyframes loaderBar {
  0%, 100% { transform: scaleY(0.5); opacity: 0.4; }
  50% { transform: scaleY(1); opacity: 1; }
}

.loader-text {
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-muted);
  animation: loaderFade 1.5s ease-in-out infinite;
}

@keyframes loaderFade {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 24px;
  height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  background: #FFFFFF;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
.navbar.scrolled {
  background: #FFFFFF;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img, .footer-logo img {
  background: transparent !important;
  background-color: transparent !important;
  display: block;
  width: auto;
}

.nav-logo img { height: 75px; }

.nav-links {
  display: flex; align-items: center; gap: 8px;
}
.nav-links a {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: #111;
  border-radius: 8px;
  transition: all 0.2s;
}
.nav-links a:hover, .nav-links a.active {
  color: #000;
  background: rgba(0, 0, 0, 0.05);
}

.nav-cta {
  display: flex; align-items: center; gap: 10px;
}

.btn-whatsapp {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 20px;
  background: #25D366;
  color: #fff !important;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s;
}
.btn-whatsapp:hover { background: #1ebe5d; transform: translateY(-1px); }
.btn-whatsapp svg { width: 18px; height: 18px; fill: #fff; }

.btn-outline {
  padding: 10px 20px;
  border: 1.5px solid rgba(0, 0, 0, 0.12);
  color: #111;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  background: transparent;
  transition: all 0.2s;
}
.btn-outline:hover {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.18);
}

.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: #111;
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===== MOBILE NAV ===== */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: rgba(250, 248, 240, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding: 20px 24px;
  z-index: 999;
  flex-direction: column; gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 12px 16px;
  font-size: 15px;
  color: #111;
  border-radius: 8px;
  transition: all 0.2s;
}
.mobile-menu a:hover { color: #000; background: rgba(0, 0, 0, 0.05); }
.mobile-menu .btn-whatsapp { margin-top: 12px; justify-content: center; }

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex; align-items: center;
  overflow: hidden;
  padding-top: 72px;
}

.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
}

.hero-grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(146,66,47,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(146,66,47,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  top: -100px; right: -100px;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 64, 64, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.hero-glow2 {
  position: absolute;
  bottom: -200px; left: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 184, 66, 0.14) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative; z-index: 2;
  width: 100%; max-width: 1300px;
  margin: 0 auto;
  padding: 60px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px;
  background: rgba(192, 57, 43, 0.15);
  border: 1px solid rgba(192, 57, 43, 0.3);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-red);
  margin-bottom: 24px;
}
.hero-badge::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent-red);
  animation: blink 1.5s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.08;
  font-weight: 700;
  margin-bottom: 22px;
  letter-spacing: -0.01em;
}

.hero-title .line1 { display: block; color: var(--text-primary); }
.hero-title .line2 {
  display: block;
  color: var(--accent-orange);
  -webkit-text-stroke: 0;
  font-style: normal;
}

.hero-title .line3 { display: block; color: var(--text-primary); }

.hero-subtitle {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 32px;
}

.hero-tagline {
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--accent-orange);
  margin-bottom: 40px;
}

.hero-stats {
  display: flex; gap: 24px; flex-wrap: wrap;
  margin-bottom: 40px;
}
.stat-item {
  text-align: center;
  padding: 18px 22px;
  background: rgba(255, 248, 238, 0.95);
  border: 1px solid rgba(255, 183, 77, 0.24);
  border-radius: calc(var(--radius) * 1.2);
  min-width: 110px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
}
.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--accent-orange);
  display: block;
  line-height: 1.05;
  letter-spacing: 0.02em;
}
.stat-num .star {
  font-size: 18px;
  vertical-align: middle;
}
.stat-label {
  font-size: 11px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 6px;
  display: block;
}

.hero-actions {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px;
  background: var(--accent-red);
  color: #fff;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s;
  border: none;
}
.btn-primary:hover {
  background: #a93226;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(192, 57, 43, 0.4);
}

.btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 28px;
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--border-bright);
  border-radius: 50px;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s;
}
.btn-secondary:hover {
  background: rgba(212, 129, 58, 0.1);
  border-color: var(--accent-orange);
  color: var(--accent-warm);
}

.hero-residents {
  display: flex; align-items: center; gap: 12px;
  margin-top: 28px;
}
.resident-avatars {
  display: flex;
}
.resident-avatars span {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 2px solid var(--bg-dark);
  background: var(--accent-orange);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-left: -8px;
}
.resident-avatars span:first-child { margin-left: 0; }
.resident-avatars span:nth-child(2) { background: var(--accent-red); }
.resident-avatars span:nth-child(3) { background: var(--accent-olive); }
.resident-avatars span:nth-child(4) { background: #7a5c3a; }
.resident-text { font-size: 13px; color: var(--text-secondary); }
.resident-text strong { color: var(--accent-warm); }

/* ===== HERO SEARCH CARD ===== */
.hero-search-side { position: relative; }

.hero-visual-card { position: relative; display: flex; justify-content: center; }
.hero-image-wrap {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-height: 420px;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 40px 90px rgba(17,17,17,0.16);
  background: #f7f3ee;
}
.hero-image-wrap img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.hero-image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.0) 0%, rgba(255,255,255,0.24) 100%);
  pointer-events: none;
}
.hero-image-wrap img:hover {
  transform: scale(1.02);
}

.search-card {
  background: rgba(17,17,17,0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(17,17,17,0.12);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
}
.search-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-red), var(--accent-orange), var(--accent-olive));
}

.search-card-title {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
}
.search-card-sub {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 28px;
}

.form-group { margin-bottom: 16px; }
.form-label {
  display: flex; align-items: center; gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 8px;
}
.form-label svg { width: 14px; height: 14px; }

.form-select, .form-input {
  width: 100%;
  padding: 12px 16px;
  background: rgba(17,17,17,0.04);
  border: 1px solid rgba(17,17,17,0.12);
  border-radius: var(--radius);
  color: var(--text-primary);
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  transition: border-color 0.2s;
}
.form-select:focus, .form-input:focus {
  outline: none;
  border-color: var(--accent-orange);
}
.form-select option { background: #ffffff; color: #111111; }

.select-wrapper { position: relative; }
.select-arrow {
  position: absolute; right: 14px; top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--text-secondary);
}

.btn-search {
  width: 100%;
  padding: 14px;
  background: var(--accent-red);
  color: #fff;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  margin-top: 8px;
  transition: all 0.3s;
}
.btn-search:hover {
  background: #a93226;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(192, 57, 43, 0.4);
}

.popular-tags {
  margin-top: 20px;
}
.popular-label {
  font-size: 11px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}
.tag-list { display: flex; gap: 8px; flex-wrap: wrap; }
.tag {
  padding: 5px 12px;
  background: rgba(146,66,47,0.12);
  border: 1px solid rgba(146,66,47,0.3);
  border-radius: 20px;
  font-size: 12px;
  color: var(--accent-orange);
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex; align-items: center; gap: 5px;
}
.tag:hover { background: rgba(146,66,47,0.25); border-color: var(--accent-orange); }

/* floating property cards */
.hero-float-cards {
  position: absolute;
  bottom: -20px; right: -30px;
  display: flex; flex-direction: column; gap: 10px;
  pointer-events: none;
}
.float-card {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px;
  background: rgba(22, 12, 5, 0.9);
  border: 1px solid var(--border-bright);
  border-radius: 12px;
  font-size: 13px;
  backdrop-filter: blur(10px);
  animation: floatUp 3s ease-in-out infinite;
}
.float-card:nth-child(2) { animation-delay: 1.5s; }
.float-card-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(212,129,58,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.float-card-info strong { display: block; font-size: 13px; color: var(--text-primary); }
.float-card-info span { font-size: 11px; color: var(--accent-warm); }

@keyframes floatUp {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ===== TRUST STRIP ===== */
.trust-strip {
  padding: 16px 40px;
  background: rgba(17,17,17,0.02);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
}

.trust-inner {
  max-width: 1300px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  gap: 40px; flex-wrap: wrap;
}

/* dividers are kept for markup, but hidden for the upgraded grid layout */
.trust-divider { display: none; }

.trust-item { justify-content: center; padding: 18px 16px; }
.trust-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-secondary);
}

.trust-item svg { width: 16px; height: 16px; color: var(--accent-orange); }

/* trust-divider kept for existing markup */
.trust-divider {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(17,17,17,0.12);
}





/* ===== SECTION STYLES ===== */
.section { padding: var(--section-pad) 40px; }

.section-inner { max-width: 1300px; margin: 0 auto; }

.section-header { margin-bottom: 48px; }
.section-label {
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-orange);
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}
.section-title span { color: var(--accent-orange); -webkit-text-stroke: 0; font-style: normal; }

.section-desc {
  font-size: 15px;
  color: var(--text-secondary);
  margin-top: 14px;
  max-width: 580px;
  line-height: 1.7;
}

/* ===== PROPERTIES SECTION ===== */
.properties-section { background: var(--bg-dark); }

.filter-bar {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 9px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  background: rgba(17,17,17,0.04);
  border: 1px solid rgba(17,17,17,0.12);
  color: var(--text-primary);
  cursor: pointer;
  transition: all 0.2s;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--accent-red);
  border-color: var(--accent-red);
  color: #fff;
}

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

.property-card {
  background: #ffffff;
  border: 1px solid rgba(17, 17, 17, 0.10);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
  box-shadow: 0 0 0 rgba(0,0,0,0);
}
.property-card:hover {
  border-color: rgba(17, 17, 17, 0.18);
  transform: translateY(-6px);
  box-shadow: 0 22px 60px rgba(0,0,0,0.14);
}


.property-img-wrap {
  position: relative;
  height: 320px;
  overflow: hidden;
}

.property-img-wrap img {
  image-rendering: auto;
}

.property-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  transform: scale(1.001);
}
.property-card:hover .property-img-wrap img { transform: scale(1.08); }

.property-badge {
  position: absolute; top: 16px; left: 16px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}
.badge-live { background: rgba(39, 174, 96, 0.9); color: #fff; }
.badge-soon { background: rgba(245, 147, 50, 0.9); color: #fff; }

.property-wishlist {
  position: absolute; top: 16px; right: 16px;
  width: 40px; height: 40px;
  border-radius: 14px;
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(17, 17, 17, 0.12);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
}
.property-wishlist:hover { background: rgba(232, 64, 64, 0.12); transform: translateY(-2px); }
.property-wishlist svg { width: 16px; height: 16px; }

.property-body { padding: 30px 28px 26px; }

.property-name {
  font-family: 'Syne', sans-serif;
  font-size: 19px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}
.property-location {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 16px;
}
.property-location svg { width: 15px; height: 15px; color: var(--accent-orange); flex-shrink: 0; }

.property-amenities {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: 16px;
}
.amenity-chip {
  padding: 6px 10px;
  background: rgba(17,17,17,0.03);
  border: 1px solid rgba(17,17,17,0.10);
  border-radius: 999px;
  font-size: 11px;
  color: var(--text-secondary);
  display: flex; align-items: center; gap: 6px;
}

.property-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid rgba(17, 17, 17, 0.10);
  gap: 12px;
}
.property-price {
  padding-right: 8px;

  font-family: 'Syne', sans-serif;
}
.price-from { font-size: 11px; color: var(--text-secondary); }
.price-amount { font-size: 22px; font-weight: 800; color: var(--accent-orange); }
.price-period { font-size: 12px; color: var(--text-secondary); }

.btn-view {
  padding: 11px 18px;
  background: var(--accent-red);
  color: #fff;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
  transition: all 0.25s ease;
}
.btn-view:hover {
  background: #a93226;
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(232, 64, 64, 0.25);
}

/* ===== AMENITIES SECTION ===== */
.amenities-section {
  background: var(--bg-mid);
  position: relative;
  overflow: hidden;
}
.amenities-section::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background-image: radial-gradient(circle at 70% 50%, rgba(232,64,64,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
}
.amenity-card {
  padding: 28px 20px;
  background: rgba(17,17,17,0.04);
  border: 1px solid rgba(17,17,17,0.12);
  border-radius: var(--radius);
  text-align: center;
  transition: all 0.3s;
}
.amenity-card:hover {
  border-color: var(--border-bright);
  background: rgba(146,66,47,0.08);
  transform: translateY(-3px);
}
.amenity-icon {
  font-size: 36px;
  margin-bottom: 12px;
  display: block;
}
.amenity-name {
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
}
.amenity-desc {
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 4px;
}

/* ===== HOW IT WORKS ===== */
.how-section { background: var(--bg-dark); }

.steps-grid {
  padding: 14px 0;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 58px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(146,66,47,0.35), transparent);
  border-radius: 999px;
}
.step-card {
  text-align: center;
  padding: 40px 22px;
  border-radius: 20px;
  background: rgba(255,255,255,0.8);
  border: 1px solid rgba(17,17,17,0.08);
  box-shadow: 0 10px 28px rgba(0,0,0,0.05);
  backdrop-filter: blur(6px);
  position: relative;
}
.step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(232, 64, 64, 0.15);
  border: 1.5px solid rgba(232, 64, 64, 0.4);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--accent-red);
  position: relative; z-index: 1;
}
.step-icon { font-size: 22px; }
.step-title {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}
.step-desc { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: var(--bg-mid); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.testimonial-card {
  padding: 36px 32px;
  background: #ffffff;
  border: 1px solid rgba(17,17,17,0.10);
  border-radius: 18px;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  box-shadow: 0 12px 34px rgba(0,0,0,0.06);
}

.testimonial-card:hover {
  border-color: var(--border-bright);
  transform: translateY(-3px);
}
.testimonial-stars {
  display: flex; gap: 3px;
  margin-bottom: 14px;
}
.testimonial-stars span { color: #f1c40f; font-size: 16px; }
.testimonial-text {
  font-size: 14px;
  line-height: 1.85;
  color: var(--text-secondary);
  margin-bottom: 22px;
  font-style: normal;
  letter-spacing: -0.005em;
}

.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--accent-orange);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 16px;
  color: #fff;
  flex-shrink: 0;
}
.author-name { font-weight: 700; font-size: 14px; color: var(--text-primary); }
.author-role { font-size: 12px; color: var(--text-secondary); }

/* ===== LEAD FORM ===== */
.lead-section {
  background: linear-gradient(135deg, rgba(255,255,255,0.92) 0%, rgba(245,245,245,1) 60%);
  position: relative;
  overflow: hidden;
}
.lead-section::before {
  content: '';
  position: absolute; top: 0; right: 0; bottom: 0;
  width: 50%;
  background: radial-gradient(circle at right, rgba(212,129,58,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.lead-inner {
  max-width: 1300px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.lead-form-card {
  background: rgba(17,17,17,0.05);
  border: 1px solid rgba(17,17,17,0.12);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
}
.lead-form-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-red), var(--accent-orange));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.lead-form-card .search-card::before {
  display: none;
}
.lead-form-title {
  font-family: 'Syne', sans-serif;
  font-size: 22px; font-weight: 700;
  margin-bottom: 6px;
}
.lead-form-sub { font-size: 13px; color: var(--text-secondary); margin-bottom: 28px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-secondary);
  margin-bottom: 8px;
}
.form-group input, .form-group select {
  width: 100%;
  padding: 12px 16px;
  background: rgba(17,17,17,0.04);
  border: 1px solid rgba(17,17,17,0.12);
  border-radius: var(--radius);
  color: var(--text-primary);
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  transition: border-color 0.2s;
}
.form-group input:focus, .form-group select:focus {
  outline: none; border-color: var(--accent-orange);
}
.form-group input::placeholder { color: #8f7e64; }
.form-group select option { background: #ffffff; color: #111111; }

.btn-submit {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--accent-red), #a93226);
  color: #fff;
  border-radius: var(--radius);
  font-size: 15px; font-weight: 600;
  border: none; cursor: pointer;
  transition: all 0.3s;
  margin-top: 8px;
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(192,57,43,0.4); }

/* ===== LOCATIONS SECTION ===== */
.locations-section { background: var(--bg-dark); }
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}
.location-card {
  padding: 28px 20px;
  border: 1px solid rgba(17,17,17,0.12);
  border-radius: var(--radius-lg);
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  background: var(--bg-card);
  text-decoration: none; color: inherit;
}
.location-card:hover {
  border-color: var(--border-bright);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(17,17,17,0.08);
}
.location-card.coming-soon { opacity: 0.92; }
.coming-soon-badge {
  position: absolute; top: 14px; right: 14px;
  padding: 3px 9px;
  background: rgba(146,66,47,0.2);
  border: 1px solid rgba(146,66,47,0.4);
  border-radius: 20px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #92422f;
}
.location-icon { font-size: 32px; margin-bottom: 12px; }
.location-name {
  font-family: 'Syne', sans-serif;
  font-size: 16px; font-weight: 700;
  margin-bottom: 4px;
  color: var(--text-primary);
}
.location-count { font-size: 12px; color: var(--text-secondary); }

/* ===== FOOTER ===== */
.footer {
  background: #FFFFFF;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding: 60px 40px 32px;
  color: #111;
}
.footer-inner {
  max-width: 1300px; margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo { margin-bottom: 16px; }
.footer-logo img { height: 85px; }
.footer-tagline {
  font-size: 13px; color: #111;
  line-height: 1.7;
  max-width: 280px;
}
.footer-social {
  display: flex; gap: 10px; margin-top: 20px;
}
.social-link {
  width: 38px; height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  color: #111;
  transition: all 0.2s;
  text-decoration: none;
}
.social-link:hover { border-color: rgba(0, 0, 0, 0.18); color: #000; background: rgba(0, 0, 0, 0.04); }

.footer-heading {
  font-family: 'Syne', sans-serif;
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px;
  color: #111;
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-size: 14px; color: #111;
  transition: color 0.2s;
  text-decoration: none;
}
.footer-links a:hover { color: #000; }

.footer-contact { display: flex; flex-direction: column; gap: 14px; }
.contact-item { display: flex; align-items: flex-start; gap: 10px; }
.contact-item svg { width: 16px; height: 16px; color: #111; flex-shrink: 0; margin-top: 2px; }
.contact-item a, .contact-item span {
  font-size: 13px; color: #111;
  transition: color 0.2s; text-decoration: none;
}
.contact-item a:hover { color: #000; }

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 13px; color: #111; }
.footer-copy span { color: var(--accent-orange); }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px;
  z-index: 1000;
}
.whatsapp-float a {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s;
  text-decoration: none;
}
.whatsapp-float a:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
}
.whatsapp-float svg { width: 28px; height: 28px; fill: #fff; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  padding: 120px 40px 60px;
  background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background-image: linear-gradient(rgba(146,66,47,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(146,66,47,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.page-hero-inner { max-width: 1300px; margin: 0 auto; position: relative; z-index: 1; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--text-secondary);
  margin-bottom: 16px;
}
.breadcrumb a { color: var(--accent-orange); text-decoration: none; }
.breadcrumb span { color: var(--text-secondary); }
.page-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}
.page-subtitle { font-size: 16px; color: var(--text-secondary); line-height: 1.7; }

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual-card { width: 100%; }
  .hero-image-wrap { min-height: 360px; }
  .lead-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .section { padding: 60px 20px; }
  .hero-content { padding: 40px 20px; }
  .hero-stats { gap: 12px; }
  .stat-item { min-width: 70px; padding: 12px 14px; }
  .stat-num { font-size: 20px; }
  .trust-strip { padding: 12px 20px; }
  .trust-inner { gap: 20px; }
  .trust-divider { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer { padding: 40px 20px 24px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .properties-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn-primary, .hero-actions .btn-secondary { width: 100%; justify-content: center; }
  .page-hero { padding: 100px 20px 48px; }

  .hero-image-wrap { min-height: 280px; }
  .hero-left { padding-right: 0; }
  .search-card { padding: 24px; }
  .lead-form-card { padding: 24px; }
  .hero-title { font-size: clamp(28px, 7vw, 42px); }
  .hero-subtitle { font-size: 15px; }
  .hero-tagline { margin-bottom: 24px; }
  .popular-tags .tag-list { justify-content: flex-start; }
  .tag { flex: 1 1 calc(50% - 8px); }
  .lead-inner { gap: 32px; }
}

@media (max-width: 480px) {
  .hero-image-wrap { min-height: 220px; }
  .hero-title { font-size: 28px; }
  .hero-subtitle { font-size: 14px; }
  .hero-tagline { font-size: 13px; }
  .hero-content { padding: 30px 16px; }
  .section { padding: 50px 16px; }
  .hero-actions .btn-primary, .hero-actions .btn-secondary { padding: 14px 18px; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .locations-grid { grid-template-columns: 1fr; }
  .tag { flex: 1 1 100%; }
  .search-card, .lead-form-card { padding: 20px; }
  .navbar { padding: 0 16px; }
  .whatsapp-float { bottom: 20px; right: 16px; }
}
