/* ============================================================
   ARKADIA RENT — Premium Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,600;0,9..144,700;0,9..144,800;0,9..144,900;1,9..144,700&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --primary:       #0066CC;
  --primary-dark:  #004999;
  --primary-light: #0099FF;
  --sea:           #00B4D8;
  --sea-light:     #90E0EF;
  --accent:        #FF6B35;
  --gold:          #FFB703;
  --white:         #FFFFFF;
  --dark:          #0A1628;
  --dark2:         #0F2040;
  --text:          #1E293B;
  --text-muted:    #64748B;
  --gray-light:    #F8FAFC;
  --border:        #E2E8F0;
  --success:       #10B981;
  --danger:        #EF4444;
  --shadow-sm:     0 2px 8px rgba(0,0,0,0.06);
  --shadow:        0 8px 32px rgba(0,102,204,0.12);
  --shadow-lg:     0 20px 60px rgba(0,0,0,0.15);
  --radius:        16px;
  --radius-sm:     10px;
  --transition:    0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
section, header, footer, main { max-width: 100vw; overflow-x: hidden; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100vw;
  font-size: 16px;
  letter-spacing: 0.01em;
}

/* ---- Scroll animations ---- */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.65s cubic-bezier(.22,.61,.36,1), transform 0.65s cubic-bezier(.22,.61,.36,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left  { opacity: 0; transform: translateX(-40px); transition: opacity 0.65s cubic-bezier(.22,.61,.36,1), transform 0.65s cubic-bezier(.22,.61,.36,1); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px);  transition: opacity 0.65s cubic-bezier(.22,.61,.36,1), transform 0.65s cubic-bezier(.22,.61,.36,1); }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; }
input, select, textarea { font-family: inherit; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.hidden { display: none !important; }
.section { padding: 88px 0; }
.section-light { background: var(--gray-light); }

.section-head { text-align: center; margin-bottom: 52px; }
.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, #E0F2FE, #BAE6FD);
  color: var(--primary);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 800;
  text-align: center;
  color: var(--dark);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
  line-height: 1.2;
}
.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}
.btn-hero-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 24px rgba(255,107,53,0.35);
  font-size: 1rem;
}
.btn-hero-primary:hover { background: #e55a27; transform: translateY(-2px); box-shadow: 0 12px 32px rgba(255,107,53,0.45); }
.btn-hero-ghost {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border-color: rgba(255,255,255,0.35);
  backdrop-filter: blur(8px);
}
.btn-hero-ghost:hover { background: rgba(255,255,255,0.2); transform: translateY(-2px); }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline { background: transparent; border-color: var(--primary); color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--accent) 0%, #FF8C5A 100%);
  color: #fff;
  padding: 16px;
  border-radius: var(--radius-sm);
  font-size: 1.05rem;
  font-weight: 700;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(255,107,53,0.3);
  transition: var(--transition);
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(255,107,53,0.4); }
.btn-sm { padding: 8px 18px; font-size: 0.82rem; border-radius: 50px; }
.btn-share { background: transparent; border-color: var(--border); color: var(--text-muted); padding: 8px 12px; }
.btn-share:hover { background: var(--gray-light); color: var(--dark); }
.btn-share-modal {
  width: 52px; flex-shrink: 0; position: relative;
  background: var(--gray-light); border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); font-size: 1.2rem;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.btn-share-modal:hover { background: var(--border); }
.share-popup {
  position: absolute; bottom: calc(100% + 10px); right: 0;
  background: #fff; border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.18); border: 1px solid var(--border);
  overflow: hidden; min-width: 180px;
  opacity: 0; pointer-events: none; transform: scale(0.9) translateY(6px);
  transform-origin: bottom right;
  transition: opacity .2s, transform .2s;
  z-index: 100;
}
.share-popup.open { opacity: 1; pointer-events: all; transform: scale(1) translateY(0); }
.share-opt {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px; font-size: 0.9rem; font-weight: 600;
  color: var(--dark); text-decoration: none; cursor: pointer;
  border: none; background: none; width: 100%; text-align: left;
  font-family: 'Plus Jakarta Sans', sans-serif;
  transition: background .15s; border-bottom: 1px solid var(--border);
}
.share-opt:last-child { border-bottom: none; }
.share-opt:hover { background: var(--gray-light); }
.btn-white { background: #fff; color: var(--primary); }
.btn-white:hover { background: var(--gray-light); }

/* ---- Gradient text ---- */
.gradient-text {
  background: linear-gradient(135deg, #90E0EF, #00D4FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================================
   HEADER
   ============================================================ */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: all var(--transition);
  background: linear-gradient(to bottom, rgba(2,11,24,0.75) 0%, transparent 100%);
}
#header.scrolled {
  background: rgba(10, 22, 40, 0.96);
  backdrop-filter: blur(16px);
  box-shadow: 0 4px 24px rgba(0,0,0,0.2);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
}
.nav-logo { display: flex; align-items: center; gap: 8px; }
.logo-icon { font-size: 1.6rem; }
.logo-text {
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.3px;
}
.logo-accent { color: var(--sea-light); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: rgba(255,255,255,0.8);
  padding: 8px 14px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 500;
  transition: var(--transition);
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,0.1); }
.nav-cta {
  display: inline-block !important;
  background: var(--accent) !important;
  color: #fff !important;
  font-weight: 700 !important;
  padding: 10px 22px !important;
  border-radius: 50px !important;
  box-shadow: 0 4px 16px rgba(255,107,53,0.4);
  margin-left: 8px;
  transition: var(--transition) !important;
}
.nav-cta:hover { background: #e55a27 !important; transform: translateY(-2px) !important; box-shadow: 0 8px 24px rgba(255,107,53,0.5) !important; }
.lang-switcher { display: flex; align-items: center; gap: 4px; }
.lang-btn {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.6);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.5px;
}
.lang-btn:hover, .lang-btn.active { background: rgba(255,255,255,0.15); color: #fff; border-color: rgba(255,255,255,0.5); }
.nav-burger {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}
.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--dark2);
  padding: 8px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  color: rgba(255,255,255,0.8);
  padding: 14px 24px;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: var(--transition);
}
.nav-mobile a:hover { color: #fff; background: rgba(255,255,255,0.06); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 80px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #020B18 0%, #041E3A 30%, #0A3A6B 60%, #0066CC 100%);
}
.hero-bg img.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  animation: kenBurns 16s ease-in-out infinite alternate;
  transform-origin: center center;
}
@keyframes kenBurns {
  from { transform: scale(1); }
  to   { transform: scale(1.08); }
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(2,11,24,0.82) 0%, rgba(4,30,58,0.65) 50%, rgba(2,11,24,0.45) 100%),
    linear-gradient(to bottom, rgba(2,11,24,0.3) 0%, transparent 40%, rgba(2,11,24,0.5) 100%);
  z-index: 1;
}
.hero-overlay { z-index: 2; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 80px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--sea-light);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 22px;
  backdrop-filter: blur(8px);
}
.badge-dot {
  width: 8px; height: 8px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}
.hero-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.4rem, 5vw, 3.9rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.08;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 32px;
  line-height: 1.7;
  max-width: 500px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-trust {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 7px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
}
.trust-icon { font-size: 0.95rem; }
.trust-divider { width: 1px; height: 16px; background: rgba(255,255,255,0.15); }

/* Hero right side */
.hero-cards-stack { display: flex; flex-direction: column; gap: 16px; }
.hero-card-float {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 20px 24px;
  animation: floatUp 3s ease-in-out infinite alternate;
}
@keyframes floatUp {
  from { transform: translateY(0); }
  to { transform: translateY(-8px); }
}
.float-label { color: var(--success); font-size: 0.8rem; font-weight: 600; margin-bottom: 6px; }
.float-name { color: #fff; font-weight: 700; font-size: 1rem; margin-bottom: 6px; }
.float-price { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.float-price strong { color: var(--gold); font-size: 1.1rem; }
.hero-stats-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  justify-content: space-around;
}
.hstat { text-align: center; }
.hstat-num {
  font-family: 'Fraunces', serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.hstat-label { font-size: 0.75rem; color: rgba(255,255,255,0.5); margin-top: 4px; }

.hero-wave {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  line-height: 0;
}
.hero-wave svg { width: 100%; height: 80px; }
.hero-wave svg path { animation: waveMove 6s ease-in-out infinite alternate; transform-origin: center bottom; }
@keyframes waveMove {
  from { d: path("M0,40 C240,80 480,0 720,40 C960,80 1200,0 1440,40 L1440,80 L0,80 Z"); }
  to   { d: path("M0,50 C240,10 480,70 720,30 C960,10 1200,60 1440,30 L1440,80 L0,80 Z"); }
}

/* Hero entrance animations */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroFadeRight {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-badge   { animation: heroFadeUp 0.7s cubic-bezier(.22,.68,0,1.2) 0.3s both; }
.hero-title   { animation: heroFadeUp 0.8s cubic-bezier(.22,.68,0,1.2) 0.55s both; }
.hero-desc    { animation: heroFadeUp 0.8s ease 0.75s both; }
.hero-actions { opacity: 0; animation: heroFadeIn 0.7s ease 0.95s forwards; }
.hero-trust   { opacity: 0; animation: heroFadeIn 0.7s ease 1.15s forwards; }
@keyframes heroFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.hero-card-float  { animation: heroFadeRight 0.85s cubic-bezier(.22,.68,0,1.2) 1s both, floatUp 3.5s ease-in-out 2s infinite alternate; }
.hero-stats-card  { animation: heroFadeRight 0.85s cubic-bezier(.22,.68,0,1.2) 1.2s both; }

/* Floating particles */
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}
.hero-particles span {
  position: absolute;
  bottom: -10px;
  border-radius: 50%;
  background: rgba(0, 180, 216, 0.55);
  box-shadow: 0 0 8px rgba(0,180,216,0.8);
  animation: particleRise linear infinite;
}
.hero-particles span:nth-child(1) { left:8%;  width:5px; height:5px; animation-duration:9s;  animation-delay:0s; }
.hero-particles span:nth-child(2) { left:22%; width:3px; height:3px; animation-duration:12s; animation-delay:2s; opacity:.6; }
.hero-particles span:nth-child(3) { left:38%; width:6px; height:6px; animation-duration:8s;  animation-delay:1s; background:rgba(255,184,0,.5); box-shadow:0 0 8px rgba(255,184,0,.7); }
.hero-particles span:nth-child(4) { left:55%; width:4px; height:4px; animation-duration:11s; animation-delay:3s; }
.hero-particles span:nth-child(5) { left:68%; width:3px; height:3px; animation-duration:10s; animation-delay:1.5s; opacity:.5; }
.hero-particles span:nth-child(6) { left:78%; width:5px; height:5px; animation-duration:14s; animation-delay:4s; }
.hero-particles span:nth-child(7) { left:88%; width:4px; height:4px; animation-duration:7s;  animation-delay:0.5s; background:rgba(255,255,255,.4); box-shadow:none; }
.hero-particles span:nth-child(8) { left:45%; width:3px; height:3px; animation-duration:15s; animation-delay:5s; opacity:.4; }
@keyframes particleRise {
  0%   { bottom:-10px; opacity:0;   transform: translateX(0)    scale(1); }
  10%  {               opacity:.9; }
  90%  {               opacity:.3; }
  100% { bottom:100%;  opacity:0;   transform: translateX(25px) scale(0.4); }
}

/* Hero shimmer on gradient-text */
.gradient-text {
  background: linear-gradient(90deg, var(--sea-light), #fff, var(--gold), var(--sea-light));
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmerText 4s linear 1.5s infinite;
}
@keyframes shimmerText {
  0%   { background-position: 0% center; }
  100% { background-position: 300% center; }
}

/* Hero stats counter pulse */
.hstat-num {
  animation: heroFadeUp 0.8s ease 1.4s both;
}

/* Badge dot stronger pulse */
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(34,197,94,0.5); }
  50% { opacity: 0.7; transform: scale(1.4); box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}

/* ============================================================
   URGENCY BAR
   ============================================================ */
.urgency-bar {
  background: linear-gradient(135deg, #1A1A2E, #16213E);
  padding: 12px 0;
  border-bottom: 2px solid var(--accent);
}
.urgency-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.urgency-fire { font-size: 1.2rem; }
.urgency-bar span { color: rgba(255,255,255,0.85); font-size: 0.88rem; font-weight: 500; }
.urgency-btn {
  background: var(--accent);
  color: #fff;
  padding: 5px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  transition: var(--transition);
}
.urgency-btn:hover { background: #e55a27; }

/* ============================================================
   SOCIAL PROOF
   ============================================================ */
.proof-section { padding: 40px 0; border-bottom: 1px solid var(--border); }
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.proof-item {
  text-align: center;
  padding: 20px;
  border-right: 1px solid var(--border);
}
.proof-item:last-child { border-right: none; }
.proof-num {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 4px;
}
.proof-label { font-size: 0.82rem; color: var(--text-muted); }

/* ============================================================
   APARTMENTS
   ============================================================ */
.filter-bar {
  display: flex; gap: 8px;
  margin-bottom: 36px;
  flex-wrap: wrap;
  justify-content: center;
}
.filter-btn {
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  background: var(--gray-light);
  color: var(--text-muted);
  border: 2px solid var(--border);
  transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active { background: var(--primary); color: #fff; border-color: var(--primary); }
.apartments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}
.apt-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
}
.apt-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.apt-card-img {
  position: relative;
  height: 230px;
  overflow: hidden;
}
.apt-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.apt-card:hover .apt-card-img img { transform: scale(1.08); }

/* Card thumbnail strip */
.card-thumb-strip {
  display: flex; gap: 6px; padding: 8px 10px;
  overflow-x: auto; background: #f8fafc;
  border-bottom: 1px solid var(--border);
  scrollbar-width: thin; scrollbar-color: var(--border) transparent;
}
.card-thumb-strip::-webkit-scrollbar { height: 4px; }
.card-thumb-strip::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }
.card-thumb {
  width: 64px; height: 48px; object-fit: cover; border-radius: 6px;
  cursor: pointer; flex-shrink: 0; opacity: 0.65;
  border: 2px solid transparent; transition: opacity .2s, border-color .2s;
}
.card-thumb:hover { opacity: 1; }
.card-thumb.active { opacity: 1; border-color: var(--primary); }
.apt-card-badge {
  position: absolute;
  top: 14px; right: 14px;
  background: rgba(10,22,40,0.85);
  backdrop-filter: blur(8px);
  color: var(--gold);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
}
.apt-card-tag {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--accent);
  color: #fff;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.apt-card-body { padding: 20px 22px; }
.apt-card-name {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.apt-card-meta {
  display: flex; gap: 14px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.apt-meta-item {
  display: flex; align-items: center; gap: 5px;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}
.apt-card-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 14px;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.apt-amenities { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.apt-amenity {
  background: #EFF6FF;
  color: var(--primary);
  font-size: 0.73rem;
  padding: 3px 10px;
  border-radius: 50px;
  font-weight: 600;
}
.apt-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.apt-price { font-family: 'Fraunces', serif; }
.apt-price-num { font-size: 1.35rem; font-weight: 900; color: var(--primary); }
.apt-price-sub { font-size: 0.72rem; color: var(--text-muted); }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0;
  justify-content: center;
}
.step-card {
  flex: 1;
  min-width: 140px;
  max-width: 220px;
  text-align: center;
  padding: 32px 20px;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  position: relative;
  transition: var(--transition);
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.step-num {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  width: 28px; height: 28px;
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.step-icon { font-size: 2.5rem; margin-bottom: 12px; }
.step-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.97rem;
  color: var(--dark);
  margin-bottom: 8px;
}
.step-desc { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; }
.step-arrow {
  font-size: 1.5rem;
  color: var(--sea);
  padding: 0 8px;
  margin-top: 40px;
  flex-shrink: 0;
}

/* ============================================================
   BOOKING SECTION
   ============================================================ */
.booking-section {
  background: linear-gradient(135deg, #020B18 0%, #0A3A6B 100%);
}
.booking-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
}
.booking-info { padding-top: 20px; }
.booking-info .section-tag { background: rgba(255,255,255,0.1); color: var(--sea-light); }
.booking-perks { margin-bottom: 28px; }
.perk {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.perk:last-child { border-bottom: none; }
.booking-contact { display: flex; flex-direction: column; gap: 10px; }
.bc-item {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  font-weight: 500;
}

/* Booking form card */
.booking-form {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.3);
}
.form-title {
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 22px;
  letter-spacing: -0.3px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 14px; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  background: var(--gray-light);
  font-size: 0.92rem;
  outline: none;
  transition: var(--transition);
  color: var(--text);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(0,102,204,0.1);
}
.form-group textarea { resize: none; }

/* Photo upload block */
.photo-upload-box {
  border: 2px dashed var(--border);
  border-radius: var(--radius-sm);
  padding: 12px;
  background: var(--gray-light);
  transition: border-color 0.2s;
}
.photo-upload-box:hover { border-color: var(--primary); }
.photo-drop-zone {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 6px; padding: 24px 12px;
  cursor: pointer; border-radius: 8px;
  transition: background 0.2s;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  position: relative; overflow: hidden;
}
.photo-drop-zone:hover,
.photo-drop-zone:active { background: rgba(0,102,204,0.07); }
.drop-hint { font-weight: 600; color: var(--primary); font-size: 0.9rem; }
.drop-sub { font-size: 0.75rem; color: #94A3B8; text-align: center; }

#photoQueueGrid, #currentGalleryGrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(88px, 1fr));
  gap: 8px;
  margin-top: 8px;
}
.gallery-thumb-wrap {
  position: relative; border-radius: 6px; overflow: hidden;
  aspect-ratio: 1; background: #e2e8f0;
}
.gallery-thumb-wrap img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.thumb-del {
  position: absolute; top: 3px; right: 3px;
  background: rgba(220,38,38,0.85); color: #fff;
  border: none; border-radius: 50%; width: 20px; height: 20px;
  font-size: 0.65rem; cursor: pointer; display: flex;
  align-items: center; justify-content: center; line-height: 1;
}
.thumb-main-badge {
  position: absolute; bottom: 3px; left: 3px;
  background: rgba(0,102,204,0.85); color: #fff;
  font-size: 0.6rem; padding: 1px 5px; border-radius: 4px; font-weight: 700;
}
.thumb-status {
  position: absolute; top: 3px; left: 3px;
  font-size: 0.8rem; line-height: 1;
}
.gallery-thumb-item { display: flex; flex-direction: column; gap: 4px; }
.thumb-arrows {
  display: flex; justify-content: space-between; gap: 2px;
}
.thumb-arrows button {
  flex: 1; background: #E2E8F0; color: #1E293B; border: none;
  border-radius: 4px; height: 24px; font-size: 0.85rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; -webkit-tap-highlight-color: transparent;
}
.thumb-arrows button:active { background: var(--primary); color: #fff; }
.thumb-arrows span { flex: 1; }

.form-error { font-size: 0.75rem; color: var(--danger); margin-top: 4px; display: none; }
.form-error.show { display: block; }
.booking-total-box {
  background: linear-gradient(135deg, #EFF6FF, #DBEAFE);
  border: 1px solid #BFDBFE;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  text-align: center;
  font-weight: 700;
  color: var(--primary);
  font-size: 1rem;
  margin-bottom: 14px;
}
.form-note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 12px;
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.review-card::before {
  content: '"';
  position: absolute;
  top: 16px; right: 20px;
  font-size: 5rem;
  color: var(--border);
  font-family: Georgia, serif;
  line-height: 1;
}
.review-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 12px; letter-spacing: 2px; }
.review-text {
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 18px;
  font-style: italic;
}
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--sea));
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1rem;
  flex-shrink: 0;
}
.review-name { font-weight: 700; font-size: 0.875rem; color: var(--dark); }
.review-date { font-size: 0.75rem; color: var(--text-muted); }

/* ============================================================
   CONTACTS
   ============================================================ */
.contacts-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.contact-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 22px;
  border: 1px solid var(--border);
  text-align: center;
  transition: var(--transition);
}
.contact-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.contact-card-icon { font-size: 1.8rem; margin-bottom: 8px; }
.contact-card-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 5px;
}
.contact-card-value { font-size: 0.875rem; font-weight: 600; color: var(--dark); line-height: 1.5; }
.map-block { height: 100%; }
.map-placeholder {
  background: linear-gradient(135deg, #E0F2FE, #BAE6FD);
  border-radius: var(--radius);
  padding: 40px 30px;
  text-align: center;
  min-height: 260px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 10px;
  border: 1px solid #93C5FD;
}
.map-pin { font-size: 3.5rem; }
.map-title { font-family: 'Fraunces', serif; font-size: 1.2rem; font-weight: 800; color: var(--primary); }
.map-sub { font-size: 0.875rem; color: var(--text-muted); }
.map-badges { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-top: 4px; }
.map-badges span {
  background: var(--primary);
  color: #fff;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer { background: var(--dark); color: rgba(255,255,255,0.65); padding: 56px 0 24px; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-logo {
  font-family: 'Fraunces', serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}
.footer-logo span { color: var(--sea-light); }
.footer-desc { font-size: 0.875rem; line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 8px; }
.social-btn {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255,255,255,0.65);
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.1);
}
.social-btn:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.footer-heading { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--sea-light); font-weight: 700; margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.875rem; transition: var(--transition); }
.footer-links a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}

/* ============================================================
   MODAL
   ============================================================ */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity var(--transition);
  backdrop-filter: blur(4px);
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal-box {
  background: #fff;
  border-radius: var(--radius);
  max-width: 680px; width: 100%;
  max-height: 90vh;
  display: flex; flex-direction: column;
  transform: scale(0.9) translateY(30px);
  transition: transform var(--transition);
  box-shadow: 0 32px 100px rgba(0,0,0,0.4);
  overflow: hidden;
}
.modal-overlay.open .modal-box { transform: scale(1) translateY(0); }
.modal-gallery { position: relative; flex-shrink: 0; }
.modal-thumb-strip {
  display: flex; gap: 6px; padding: 8px 10px;
  overflow-x: auto; background: #f1f5f9; flex-shrink: 0;
  scrollbar-width: thin; scrollbar-color: var(--border) transparent;
}
.modal-thumb-strip::-webkit-scrollbar { height: 4px; }
.modal-thumb-strip::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }
.modal-thumb {
  width: 72px; height: 52px; object-fit: cover; border-radius: 6px;
  cursor: pointer; flex-shrink: 0; opacity: 0.6;
  border: 2px solid transparent; transition: opacity .2s, border-color .2s;
}
.modal-thumb:hover { opacity: 1; }
.modal-thumb.active { opacity: 1; border-color: var(--primary); }
.modal-img { height: 300px; width: 100%; object-fit: cover; border-radius: var(--radius) var(--radius) 0 0; display: block; transition: opacity 0.25s ease; }
.gallery-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,0.45); color: #fff; border: none;
  width: 38px; height: 38px; border-radius: 50%; font-size: 1rem;
  cursor: pointer; transition: background 0.2s; z-index: 5;
  display: flex; align-items: center; justify-content: center;
}
.gallery-arrow:hover { background: rgba(0,0,0,0.75); }
.gallery-prev { left: 10px; }
.gallery-next { right: 10px; }
.gallery-dots {
  position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 6px;
}
.gdot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,255,255,0.5); cursor: pointer; transition: background 0.2s;
}
.gdot.active { background: #fff; }
.gallery-counter {
  position: absolute; bottom: 10px; right: 12px;
  background: rgba(0,0,0,0.5); color: #fff;
  font-size: 0.75rem; padding: 2px 8px; border-radius: 20px;
}
.modal-body { padding: 28px 32px 32px; overflow-y: auto; overflow-x: hidden; flex: 1; }
.modal-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 12px; }
.modal-title { font-family: 'Fraunces', serif; font-size: 1.4rem; font-weight: 800; color: var(--dark); }
.modal-close {
  position: fixed; top: 16px; right: 16px; z-index: 3100;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(10,22,40,0.85); color: #fff;
  border: 2px solid rgba(255,255,255,0.3);
  font-size: 1.2rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(8px); transition: background .2s, transform .2s;
  flex-shrink: 0;
}
.modal-close:hover { background: rgba(10,22,40,1); transform: scale(1.1); }
.modal-price { font-family: 'Fraunces', serif; font-size: 1.5rem; font-weight: 900; color: var(--primary); margin-bottom: 14px; }
.modal-price span { font-size: 0.85rem; font-weight: 400; color: var(--text-muted); }
.modal-meta { display: flex; gap: 18px; flex-wrap: wrap; margin-bottom: 16px; }
.modal-meta-item { display: flex; align-items: center; gap: 6px; font-size: 0.875rem; color: var(--text-muted); font-weight: 500; }
.modal-desc { font-size: 0.9rem; color: var(--text); line-height: 1.7; margin-bottom: 18px; }
.modal-amenities { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.modal-amenity { background: #EFF6FF; color: var(--primary); padding: 5px 14px; border-radius: 50px; font-size: 0.8rem; font-weight: 600; }

/* Fullscreen button on gallery */
.gallery-fullscreen-btn {
  position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%);
  padding: 8px 20px; border-radius: 50px;
  background: rgba(0,0,0,0.62); color: #fff; border: 1.5px solid rgba(255,255,255,0.35);
  font-size: 0.85rem; font-weight: 600; cursor: pointer; white-space: nowrap;
  backdrop-filter: blur(6px); transition: background .2s, transform .2s;
  z-index: 6; font-family: 'Plus Jakarta Sans', sans-serif;
}
.gallery-fullscreen-btn:hover { background: rgba(0,0,0,0.85); transform: translateX(-50%) scale(1.04); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; background: rgba(0,0,0,0.96);
  z-index: 10000; display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .25s;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox-img {
  max-width: 94vw; max-height: 90vh;
  object-fit: contain; border-radius: 6px;
  user-select: none; -webkit-user-drag: none;
}
.lightbox-close {
  position: absolute; top: 18px; right: 18px;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.15); color: #fff; border: none;
  font-size: 1.1rem; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.lightbox-close:hover { background: rgba(255,255,255,0.3); }
.lightbox-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,0.15); color: #fff; border: none;
  font-size: 1.3rem; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.lightbox-arrow:hover { background: rgba(255,255,255,0.3); }
.lightbox-prev { left: 18px; }
.lightbox-next { right: 18px; }
.lightbox-counter {
  position: absolute; bottom: 90px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.7); font-size: 0.85rem;
}
.lightbox-thumb-strip {
  position: absolute; bottom: 0; left: 0; right: 0;
  display: flex; gap: 6px; padding: 10px 14px;
  overflow-x: auto; background: rgba(0,0,0,0.6);
  backdrop-filter: blur(6px);
  scrollbar-width: thin; scrollbar-color: rgba(255,255,255,0.3) transparent;
  justify-content: center;
}
.lightbox-thumb-strip::-webkit-scrollbar { height: 4px; }
.lightbox-thumb-strip::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.3); border-radius: 2px; }
.lb-thumb {
  width: 70px; height: 50px; object-fit: cover; border-radius: 6px;
  cursor: pointer; flex-shrink: 0; opacity: 0.5;
  border: 2px solid transparent; transition: opacity .2s, border-color .2s;
}
.lb-thumb:hover { opacity: 0.85; }
.lb-thumb.active { opacity: 1; border-color: #fff; }

/* ============================================================
   CHAT ASSISTANT
   ============================================================ */
#chatWidget {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.chat-bubble {
  display: flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--primary), var(--sea));
  color: #fff; padding: 14px 20px; border-radius: 50px; cursor: pointer;
  box-shadow: 0 8px 32px rgba(0,102,204,0.4);
  transition: all 0.3s cubic-bezier(.34,1.56,.64,1);
  user-select: none; position: relative;
  animation: chatEntrance 0.6s 1.5s cubic-bezier(.34,1.56,.64,1) both;
}
@keyframes chatEntrance {
  from { transform: scale(0) translateY(20px); opacity: 0; }
  to   { transform: scale(1) translateY(0); opacity: 1; }
}
.chat-bubble:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 12px 40px rgba(0,102,204,0.5); }
.chat-bubble.hidden { display: none; }
.chat-bubble-text { font-size: 0.9rem; font-weight: 700; }
.chat-badge {
  position: absolute; top: -6px; right: -6px;
  background: var(--accent); color: #fff;
  width: 20px; height: 20px; border-radius: 50%;
  font-size: 0.7rem; font-weight: 800;
  display: none; align-items: center; justify-content: center;
  animation: badgePulse 1.5s ease-in-out infinite;
}
@keyframes badgePulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.2); } }
.chat-window {
  position: fixed; top: 80px; right: 28px;
  width: 360px; background: #fff; border-radius: 20px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.18); overflow: hidden;
  display: flex; flex-direction: column; max-height: calc(100vh - 160px);
  transform: scale(0.88) translateY(-16px); opacity: 0; pointer-events: none;
  transform-origin: top right;
  transition: all 0.35s cubic-bezier(.34,1.56,.64,1);
}
.chat-window.open { transform: scale(1) translateY(0); opacity: 1; pointer-events: all; }
.chat-header {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 16px 18px; display: flex; align-items: center;
  justify-content: space-between; flex-shrink: 0;
}
.chat-agent { display: flex; align-items: center; gap: 12px; }
.chat-avatar {
  width: 42px; height: 42px; background: rgba(255,255,255,0.2);
  border: 2px solid rgba(255,255,255,0.4); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.1rem; color: #fff; position: relative;
}
.chat-avatar::after {
  content: ''; position: absolute; bottom: 1px; right: 1px;
  width: 10px; height: 10px; background: var(--success);
  border-radius: 50%; border: 2px solid var(--primary);
}
.chat-agent-name { font-weight: 700; color: #fff; font-size: 0.95rem; }
.chat-agent-status { font-size: 0.72rem; color: rgba(255,255,255,0.75); margin-top: 1px; }
.chat-close {
  background: rgba(255,255,255,0.15); border: none; color: #fff;
  width: 30px; height: 30px; border-radius: 50%; font-size: 0.8rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: var(--transition);
}
.chat-close:hover { background: rgba(255,255,255,0.25); }
.chat-messages {
  flex: 1; overflow-y: auto; padding: 16px 14px;
  display: flex; flex-direction: column; gap: 10px;
  background: #F8FAFC; scroll-behavior: smooth;
}
.chat-messages::-webkit-scrollbar { width: 4px; }
.chat-messages::-webkit-scrollbar-track { background: transparent; }
.chat-messages::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }
.chat-msg {
  display: flex; align-items: flex-end; gap: 8px;
  opacity: 0; transform: translateY(10px); transition: all 0.3s ease;
}
.chat-msg.visible { opacity: 1; transform: translateY(0); }
.chat-msg-user { flex-direction: row-reverse; }
.chat-avatar-sm {
  width: 28px; height: 28px;
  background: linear-gradient(135deg, var(--primary), var(--sea));
  color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 800; flex-shrink: 0;
}
.chat-bubble-msg {
  max-width: 78%; padding: 10px 14px; border-radius: 16px;
  font-size: 0.85rem; line-height: 1.55; word-break: break-word;
}
.chat-msg-bot .chat-bubble-msg {
  background: #fff; color: var(--text); border-bottom-left-radius: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.chat-msg-user .chat-bubble-msg {
  background: linear-gradient(135deg, var(--primary), #0088EE);
  color: #fff; border-bottom-right-radius: 4px;
}
.chat-typing { display: flex; align-items: center; gap: 4px; padding: 12px 16px !important; }
.chat-typing span {
  width: 7px; height: 7px; background: var(--text-muted); border-radius: 50%;
  animation: typingDot 1.2s ease-in-out infinite;
}
.chat-typing span:nth-child(2) { animation-delay: 0.2s; }
.chat-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingDot { 0%,80%,100% { transform:scale(0.7); opacity:.5; } 40% { transform:scale(1); opacity:1; } }
.chat-suggestions { padding: 0 12px 8px; display: flex; flex-wrap: wrap; gap: 6px; background: #F8FAFC; }
.chat-suggestion {
  background: #EFF6FF; color: var(--primary); border: 1.5px solid #BFDBFE;
  padding: 6px 14px; border-radius: 50px; font-size: 0.78rem; font-weight: 600;
  cursor: pointer; transition: var(--transition); font-family: 'Plus Jakarta Sans', sans-serif;
}
.chat-suggestion:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.chat-input-row {
  display: flex; align-items: center; gap: 8px; padding: 12px 14px;
  background: #fff; border-top: 1px solid var(--border); flex-shrink: 0;
}
.chat-input {
  flex: 1; border: 1.5px solid var(--border); border-radius: 50px; padding: 10px 16px;
  font-size: 0.875rem; outline: none; transition: var(--transition);
  font-family: 'Plus Jakarta Sans', sans-serif; background: var(--gray-light);
}
.chat-input:focus { border-color: var(--primary); background: #fff; box-shadow: 0 0 0 3px rgba(0,102,204,0.08); }
.chat-send {
  width: 38px; height: 38px; background: linear-gradient(135deg, var(--primary), var(--sea));
  color: #fff; border: none; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 0.85rem; flex-shrink: 0; transition: var(--transition);
  box-shadow: 0 4px 12px rgba(0,102,204,0.3);
}
.chat-send:hover { transform: scale(1.1); box-shadow: 0 6px 18px rgba(0,102,204,0.4); }
@media (max-width: 480px) {
  #chatWidget { bottom: 16px; right: 16px; }
  .chat-window { width: calc(100vw - 32px); right: 16px; top: 70px; }
}


/* ============================================================
   TOAST
   ============================================================ */
.toast {
  position: fixed; bottom: 28px; left: 28px;
  background: var(--dark);
  color: #fff;
  padding: 14px 22px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem; font-weight: 500;
  z-index: 3000;
  transform: translateY(80px); opacity: 0;
  transition: all var(--transition);
  max-width: 340px;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 10px;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast.success { background: #022C22; border-left: 4px solid var(--success); }
.toast.error { background: #450A0A; border-left: 4px solid var(--danger); }

/* ============================================================
   ADMIN STYLES (unchanged)
   ============================================================ */
.login-screen { min-height: 100vh; background: linear-gradient(135deg, #020B18 0%, #0066CC 100%); display: flex; align-items: center; justify-content: center; padding: 20px; }
.login-card { background: #fff; border-radius: var(--radius); padding: 44px 40px; width: 100%; max-width: 380px; box-shadow: var(--shadow-lg); text-align: center; }
.login-logo { font-size: 2rem; margin-bottom: 6px; }
.login-title { font-family: 'Fraunces', serif; font-size: 1.4rem; font-weight: 800; color: var(--dark); margin-bottom: 4px; }
.login-sub { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 28px; }
.login-form .form-group { text-align: left; margin-bottom: 14px; }
.login-form .form-group label { color: var(--text); text-transform: none; letter-spacing: 0; font-size: 0.85rem; }
.login-form input { background: #fff; border: 1.5px solid var(--border); }
.login-error { color: var(--danger); font-size: 0.8rem; margin-top: 4px; display: none; }
.login-error.show { display: block; }
.login-hint { font-size: 0.75rem; color: var(--text-muted); margin-top: 16px; }
.admin-app { display: flex; min-height: 100vh; background: var(--gray-light); }
.sidebar { width: 240px; background: var(--dark); display: flex; flex-direction: column; position: fixed; top: 0; left: 0; bottom: 0; z-index: 100; transition: transform var(--transition); }
.sidebar-logo { padding: 22px 20px; font-family: 'Fraunces', serif; font-size: 1rem; font-weight: 800; color: #fff; border-bottom: 1px solid rgba(255,255,255,0.07); }
.sidebar-logo span { color: var(--sea-light); }
.sidebar-nav { flex: 1; padding: 14px 10px; }
.sidebar-link { display: flex; align-items: center; gap: 12px; padding: 11px 14px; border-radius: var(--radius-sm); color: rgba(255,255,255,0.55); font-size: 0.875rem; font-weight: 500; transition: var(--transition); cursor: pointer; margin-bottom: 3px; }
.sidebar-link:hover { background: rgba(255,255,255,0.06); color: #fff; }
.sidebar-link.active { background: var(--primary); color: #fff; }
.sidebar-link .nav-icon { font-size: 1.1rem; width: 22px; text-align: center; }
.sidebar-footer { padding: 14px 10px; border-top: 1px solid rgba(255,255,255,0.07); }
.admin-main { margin-left: 240px; flex: 1; display: flex; flex-direction: column; min-height: 100vh; }
.admin-header { background: #fff; padding: 16px 28px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 50; box-shadow: var(--shadow-sm); }
.admin-header-title { font-family: 'Fraunces', serif; font-size: 1rem; font-weight: 800; color: var(--dark); }
.admin-content { padding: 28px; flex: 1; }
.page { display: none; }
.page.active { display: block; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 18px; margin-bottom: 28px; }
.stat-card { background: #fff; border-radius: var(--radius); padding: 20px 22px; border: 1px solid var(--border); display: flex; align-items: center; gap: 16px; box-shadow: var(--shadow-sm); }
.stat-icon { width: 50px; height: 50px; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; flex-shrink: 0; }
.stat-icon.blue { background: #EFF6FF; } .stat-icon.green { background: #F0FDF4; } .stat-icon.orange { background: #FFF7ED; } .stat-icon.purple { background: #F5F3FF; }
.stat-value { font-family: 'Fraunces', serif; font-size: 1.6rem; font-weight: 800; color: var(--dark); line-height: 1; }
.stat-label { font-size: 0.78rem; color: var(--text-muted); margin-top: 3px; }
.admin-table-wrap { background: #fff; border-radius: var(--radius); border: 1px solid var(--border); overflow: hidden; box-shadow: var(--shadow-sm); }
.table-toolbar { padding: 14px 18px; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; border-bottom: 1px solid var(--border); }
.table-toolbar-title { font-family: 'Fraunces', serif; font-size: 0.95rem; font-weight: 700; color: var(--dark); flex: 1; }
.table-search { padding: 8px 14px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-size: 0.85rem; outline: none; transition: var(--transition); width: 200px; }
.table-search:focus { border-color: var(--primary); }
.table-filter { padding: 8px 12px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-size: 0.85rem; outline: none; background: #fff; cursor: pointer; }
table { width: 100%; border-collapse: collapse; }
thead th { background: var(--gray-light); padding: 11px 16px; text-align: left; font-size: 0.75rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; border-bottom: 1px solid var(--border); }
tbody td { padding: 12px 16px; font-size: 0.85rem; border-bottom: 1px solid var(--border); vertical-align: middle; }
tbody tr:last-child td { border-bottom: none; }
tbody tr:hover { background: var(--gray-light); }
.table-empty { text-align: center; color: var(--text-muted); padding: 40px; }
.status-badge { display: inline-flex; align-items: center; gap: 5px; padding: 4px 12px; border-radius: 50px; font-size: 0.75rem; font-weight: 600; }
.status-new { background: #EFF6FF; color: #2563EB; } .status-confirmed { background: #F0FDF4; color: #16A34A; } .status-cancelled { background: #FFF1F2; color: #DC2626; } .status-completed { background: #F5F3FF; color: #7C3AED; }
.status-select { padding: 5px 10px; border-radius: var(--radius-sm); border: 1.5px solid var(--border); font-size: 0.8rem; cursor: pointer; background: #fff; outline: none; }
.calendar-controls { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; flex-wrap: wrap; }
.calendar-controls select, .calendar-controls input { padding: 8px 12px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-size: 0.875rem; outline: none; }
.cal-nav { display: flex; align-items: center; gap: 10px; }
.cal-nav button { width: 32px; height: 32px; border-radius: 50%; background: var(--gray-light); border: 1px solid var(--border); font-size: 0.9rem; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: var(--transition); }
.cal-nav button:hover { background: var(--primary); color: #fff; }
.cal-month-label { font-family: 'Fraunces', serif; font-weight: 700; font-size: 0.95rem; min-width: 150px; text-align: center; }
.calendar-grid { background: #fff; border-radius: var(--radius); border: 1px solid var(--border); overflow: hidden; }
.cal-header { display: grid; grid-template-columns: repeat(7, 1fr); background: var(--primary); }
.cal-header-cell { padding: 10px; text-align: center; font-size: 0.75rem; font-weight: 700; color: #fff; text-transform: uppercase; }
.cal-body { display: grid; grid-template-columns: repeat(7, 1fr); }
.cal-day { min-height: 80px; padding: 7px 5px; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.cal-day:nth-child(7n) { border-right: none; }
.cal-day.empty { background: var(--gray-light); }
.cal-day.today { background: #EFF6FF; }
.cal-day-num { font-weight: 600; color: var(--text-muted); font-size: 0.78rem; margin-bottom: 3px; }
.cal-booking { background: var(--primary); color: #fff; padding: 2px 6px; border-radius: 4px; font-size: 0.68rem; margin-bottom: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cal-booking.confirmed { background: #16A34A; } .cal-booking.cancelled { background: #DC2626; } .cal-booking.completed { background: #7C3AED; }
.apt-admin-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 18px; }
.apt-admin-card { background: #fff; border-radius: var(--radius); border: 1px solid var(--border); overflow: hidden; box-shadow: var(--shadow-sm); }
.apt-admin-img { height: 160px; width: 100%; object-fit: cover; }
.apt-admin-body { padding: 16px; }
.apt-admin-name { font-family: 'Fraunces', serif; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.apt-admin-price { color: var(--primary); font-weight: 700; font-size: 1rem; margin-bottom: 10px; }
.apt-admin-actions { display: flex; gap: 8px; }
.admin-modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.55); z-index: 2000; display: flex; align-items: center; justify-content: center; padding: 20px; opacity: 0; pointer-events: none; transition: opacity var(--transition); }
.admin-modal-overlay.open { opacity: 1; pointer-events: all; }
.admin-modal-box { background: #fff; border-radius: var(--radius); width: 100%; max-width: 580px; max-height: 90vh; overflow-y: auto; transform: scale(0.93); transition: transform var(--transition); box-shadow: 0 24px 80px rgba(0,0,0,0.25); }
.admin-modal-overlay.open .admin-modal-box { transform: scale(1); }
.admin-modal-header { display: flex; justify-content: space-between; align-items: center; padding: 18px 22px; border-bottom: 1px solid var(--border); }
.admin-modal-title { font-family: 'Fraunces', serif; font-size: 1.05rem; font-weight: 700; }
.admin-modal-body { padding: 22px; }
.admin-form input, .admin-form select, .admin-form textarea { background: #fff; border: 1.5px solid var(--border); }
.admin-form .form-group label { color: var(--text); text-transform: none; letter-spacing: 0; font-size: 0.84rem; }
.amenities-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 6px; }
.amenity-check { display: flex; align-items: center; gap: 6px; font-size: 0.84rem; cursor: pointer; }
.amenity-check input { width: auto; }
.analytics-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.chart-card { background: #fff; border-radius: var(--radius); border: 1px solid var(--border); padding: 22px; box-shadow: var(--shadow-sm); }
.chart-title { font-family: 'Fraunces', serif; font-size: 0.95rem; font-weight: 700; color: var(--dark); margin-bottom: 18px; }
.page-heading { display: flex; justify-content: space-between; align-items: center; margin-bottom: 22px; }
.page-title { font-family: 'Fraunces', serif; font-size: 1.3rem; font-weight: 800; color: var(--dark); }
.dash-tables-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

/* ---- Bottom nav bar (mobile only) ---- */
.bottom-nav { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 200; background: #fff; border-top: 1px solid var(--border); box-shadow: 0 -4px 20px rgba(0,0,0,0.08); }
.bnav-item { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 8px 4px calc(8px + env(safe-area-inset-bottom, 0px)); gap: 3px; color: var(--text-muted); font-size: 0.65rem; font-weight: 600; cursor: pointer; transition: color 0.2s; position: relative; -webkit-tap-highlight-color: transparent; }
.bnav-item.active { color: var(--primary); }
.bnav-icon { font-size: 1.25rem; line-height: 1; }
.bnav-label { letter-spacing: 0.2px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-cards-stack { flex-direction: row; }
  .hero-card-float, .hero-stats-card { flex: 1; }
  .booking-layout { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 900px) {
  .contacts-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { flex-wrap: wrap; justify-content: center; }
  .step-arrow { display: none; }
  .analytics-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-burger { display: block; }
  .section { padding: 60px 0; }
  .hero-inner { padding-top: 20px; padding-bottom: 60px; }
  .hero-cards-stack { display: none; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-item { border-right: none; border-bottom: 1px solid var(--border); }
  .proof-item:nth-child(2n) { border-right: none; }
  .contact-cards { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .sidebar { transform: translateX(-100%); }
  .sidebar.open { transform: translateX(0); }
  .admin-main { margin-left: 0; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  /* Admin mobile */
  #sidebarToggle { display: flex !important; }
  .admin-content { padding: 16px; padding-bottom: calc(70px + env(safe-area-inset-bottom, 0px)); }
  .admin-header { padding: 12px 16px; }
  .dash-tables-grid { grid-template-columns: 1fr; }
  .bottom-nav { display: flex; }
  .table-search { width: 100%; }
  .cal-day { min-height: 52px; padding: 4px 3px; }
  .cal-day-num { font-size: 0.72rem; }
  .cal-booking { font-size: 0.6rem; padding: 1px 4px; }
  .apt-admin-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .analytics-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 480px) {
  .apartments-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-cards { grid-template-columns: 1fr; }
  .hero-trust { flex-direction: column; align-items: flex-start; gap: 8px; }
  .trust-divider { display: none; }
  .stats-grid { grid-template-columns: 1fr; }
  .urgency-inner { flex-direction: column; text-align: center; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .apt-admin-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .step-card { min-width: calc(50% - 16px); max-width: 100%; }
  .container { padding: 0 16px; }
  .apt-card-body { padding: 16px; }
  .modal-body { padding: 20px 18px 24px; }
  .hero-title { font-size: clamp(1.8rem, 7vw, 2.8rem); }
  .section-title { font-size: clamp(1.4rem, 6vw, 2rem); }
}

/* ============================================================
   EXTRA ANIMATIONS & FONT POLISH
   ============================================================ */

/* Smooth number counter pulse */
.proof-num, .hstat-num {
  display: inline-block;
  animation: none;
}

/* Card shimmer on hover */
.apt-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.06) 50%, rgba(255,255,255,0) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.apt-card:hover::after { opacity: 1; }

/* Feature cards animate icon */
.feature-card .feature-icon {
  display: inline-block;
  transition: transform 0.4s cubic-bezier(.34,1.56,.64,1);
}
.feature-card:hover .feature-icon { transform: scale(1.25) rotate(-5deg); }

/* Step cards icon bounce */
.step-card .step-icon {
  display: inline-block;
  transition: transform 0.4s cubic-bezier(.34,1.56,.64,1);
}
.step-card:hover .step-icon { transform: translateY(-6px) scale(1.1); }

/* Review card subtle border glow on hover */
.review-card:hover { border-color: var(--sea-light); }

/* Contact card icon scale */
.contact-card:hover .contact-card-icon { transform: scale(1.15); }
.contact-card-icon { transition: transform 0.3s cubic-bezier(.34,1.56,.64,1); display: block; }

/* Proof counter accent */
.proof-num {
  background: linear-gradient(135deg, var(--primary), var(--sea));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Urgency bar scroll ticker */
@keyframes ticker {
  0% { opacity: 1; }
  50% { opacity: 0.7; }
  100% { opacity: 1; }
}
.urgency-fire { animation: ticker 1.5s ease-in-out infinite; }

/* Booking form inputs — smooth focus ring */
.booking-form .form-group input:focus,
.booking-form .form-group select:focus,
.booking-form .form-group textarea:focus {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,102,204,0.12);
}

/* Submit button pulse effect */
@keyframes btnPulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(255,107,53,0.3); }
  50% { box-shadow: 0 8px 36px rgba(255,107,53,0.55); }
}
.btn-submit { animation: btnPulse 2.5s ease-in-out infinite; }
.btn-submit:hover { animation: none; }

/* Floating card animation speed tweak */
@keyframes floatUp {
  from { transform: translateY(0) rotate(0deg); }
  to   { transform: translateY(-10px) rotate(0.5deg); }
}

/* Section tag pop-in */
.section-tag {
  animation: tagPop 0.5s cubic-bezier(.34,1.56,.64,1) both;
}
@keyframes tagPop {
  from { transform: scale(0.8); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

/* Nav link underline effect */
.nav-links a::after {
  content: '';
  display: block;
  height: 2px;
  width: 0;
  background: var(--sea-light);
  border-radius: 2px;
  transition: width 0.3s ease;
  margin: 0 auto;
}
.nav-links a:hover::after { width: 60%; }

/* ============================================================
   USABILITY IMPROVEMENTS
   ============================================================ */

/* ── Contact widget ── */
.cw { position:fixed; bottom:24px; right:24px; z-index:500; display:flex; flex-direction:column; align-items:flex-end; gap:12px; }

.cw-btn { width:60px; height:60px; border-radius:50%; background:var(--primary); color:#fff; border:none; font-size:1.5rem; cursor:pointer; display:flex; align-items:center; justify-content:center; box-shadow:0 6px 28px rgba(0,102,204,.4); transition:transform .25s,box-shadow .25s; position:relative; -webkit-tap-highlight-color:transparent; }
.cw-btn:hover { transform:scale(1.1); box-shadow:0 10px 36px rgba(0,102,204,.55); }
.cw-dot { position:absolute; top:3px; right:3px; width:13px; height:13px; background:#22C55E; border-radius:50%; border:2px solid #fff; animation:cwDot 2s ease-in-out infinite; }
@keyframes cwDot { 0%,100%{box-shadow:0 0 0 0 rgba(34,197,94,.4)} 50%{box-shadow:0 0 0 6px rgba(34,197,94,0)} }

.cw-menu { background:#fff; border-radius:20px; box-shadow:0 16px 56px rgba(0,0,0,.16); border:1px solid var(--border); overflow:hidden; width:260px; transform-origin:bottom right; transform:scale(.88) translateY(12px); opacity:0; pointer-events:none; transition:transform .28s cubic-bezier(.34,1.56,.64,1),opacity .2s; }
.cw-menu.open { transform:scale(1) translateY(0); opacity:1; pointer-events:all; }

.cw-header { padding:12px 18px 10px; font-size:.72rem; font-weight:700; color:var(--text-muted); text-transform:uppercase; letter-spacing:.8px; border-bottom:1px solid var(--border); }

.cw-item { display:flex; align-items:center; gap:14px; padding:13px 18px; border-bottom:1px solid var(--border); transition:background .15s; -webkit-tap-highlight-color:transparent; }
.cw-item:last-child { border-bottom:none; }
.cw-item:hover,.cw-item:active { background:var(--gray-light); }
.cw-item-icon { font-size:1.5rem; flex-shrink:0; }
.cw-item-name { font-size:.9rem; font-weight:700; color:var(--dark); }
.cw-item-sub { font-size:.75rem; color:var(--text-muted); margin-top:1px; }

/* Back to top */
.back-top { position:fixed; bottom:96px; right:24px; z-index:500; width:40px; height:40px; background:rgba(255,255,255,.92); color:var(--dark); border:1px solid var(--border); border-radius:50%; font-size:1rem; cursor:pointer; box-shadow:var(--shadow-sm); display:none; align-items:center; justify-content:center; transition:all .2s; backdrop-filter:blur(8px); }
.back-top.show { display:flex; }
.back-top:hover { background:var(--primary); color:#fff; border-color:var(--primary); }

/* Form — bigger touch targets on mobile */
@media (max-width: 768px) {
  .wa-float { bottom: 24px; right: 16px; width: 52px; height: 52px; }
  .back-top { bottom: 96px; right: 16px; }
  .booking-form input,
  .booking-form select,
  .booking-form textarea {
    font-size: 16px; /* prevents iOS zoom */
    padding: 13px 14px;
  }
  .filter-btn { padding: 8px 14px; font-size: .82rem; }
}
