/* NeighborhoodPro — Global Neon Cyberpunk Theme */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;600;700;800;900&family=Rajdhani:wght@400;500;600;700&family=DM+Sans:wght@400;500;600&display=swap');

:root {
  --bg-deep: #060b14;
  --bg-card: #0d1527;
  --bg-elevated: #111e35;
  --neon-cyan: #00f5ff;
  --neon-pink: #ff2d78;
  --neon-green: #39ff14;
  --neon-yellow: #ffd600;
  --neon-purple: #bf00ff;
  --neon-cyan-dim: rgba(0,245,255,0.12);
  --neon-pink-dim: rgba(255,45,120,0.15);
  --neon-green-dim: rgba(57,255,20,0.1);
  --text-primary: #e8f4ff;
  --text-secondary: #7a9cc0;
  --text-muted: #4a6785;
  --border: rgba(0,245,255,0.08);
  --border-green: rgba(57,255,20,0.35);
  --border-pink: rgba(255,45,120,0.35);
}

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

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

body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: 
    radial-gradient(ellipse 80% 50% at 20% 0%, rgba(0,245,255,0.04) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 100%, rgba(255,45,120,0.04) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* === TYPOGRAPHY === */
.neon-title {
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.neon-cyan { color: var(--neon-cyan); }
.neon-pink { color: var(--neon-pink); }
.neon-green { color: var(--neon-green); }
.neon-yellow { color: var(--neon-yellow); }

/* === LAYOUT === */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

/* === NAV === */
.neon-nav {
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0,245,255,0.08);
  flex-wrap: wrap;
  gap: 12px;
}
.neon-logo {
  font-family: 'Orbitron', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}
.neon-logo .logo-icon { font-size: 1.2rem; }
.neon-logo span { color: var(--neon-cyan); }
.neon-nav-phone {
  font-size: 0.8rem;
  color: var(--neon-green);
  text-decoration: none;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.neon-nav-links { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.neon-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: var(--neon-pink);
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: none;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(255,45,120,0.4);
  transition: box-shadow 0.2s, transform 0.1s;
}
.neon-btn-primary:hover {
  box-shadow: 0 0 30px rgba(255,45,120,0.6);
  transform: translateY(-1px);
}
.neon-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  background: transparent;
  color: var(--neon-green);
  text-decoration: none;
  border-radius: 6px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: 1px solid var(--border-green);
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
}
.neon-btn-secondary:hover {
  background: var(--neon-green-dim);
  box-shadow: 0 0 15px rgba(57,255,20,0.2);
}

/* === HERO PILL BADGE === */
.neon-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--neon-green);
  border: 1px solid var(--border-green);
  padding: 6px 16px;
  border-radius: 100px;
  background: var(--neon-green-dim);
  margin-bottom: 24px;
}
.neon-pill .dot {
  width: 7px; height: 7px;
  background: var(--neon-green);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--neon-green);
  animation: neon-pulse 2s infinite;
}
@keyframes neon-pulse {
  0%,100% { opacity: 1; box-shadow: 0 0 8px var(--neon-green); }
  50% { opacity: 0.5; box-shadow: 0 0 3px var(--neon-green); }
}

/* === PROMO BANNER === */
.promo-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  background: var(--bg-card);
  border: 1px solid var(--neon-green);
  border-radius: 8px;
  margin-bottom: 28px;
  gap: 12px;
  box-shadow: 0 0 20px rgba(57,255,20,0.1), inset 0 0 20px rgba(57,255,20,0.03);
}
.promo-banner .promo-left {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--neon-yellow);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.promo-banner .promo-bar {
  flex: 1; max-width: 140px;
  height: 4px;
  background: rgba(255,214,0,0.15);
  border-radius: 2px;
  overflow: hidden;
}
.promo-banner .promo-fill {
  height: 100%; width: 80%;
  background: var(--neon-yellow);
  border-radius: 2px;
  box-shadow: 0 0 8px var(--neon-yellow);
}
.promo-banner .promo-right {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.8rem;
  color: var(--text-secondary);
  white-space: nowrap;
}
.promo-banner .promo-arrow {
  color: var(--neon-yellow);
  margin-left: 4px;
}

/* === SERVICE CARDS GRID === */
.services-section {
  margin: 32px 0;
}
.services-section h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  color: var(--neon-pink);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.services-section h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.4rem, 4vw, 2.2rem);
  font-weight: 900;
  color: white;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.services-section .services-sub {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 24px;
}
.service-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.1s;
  text-decoration: none;
  position: relative;
  min-height: 90px;
}
.service-card::before,
.service-card::after {
  content: '';
  position: absolute;
  width: 12px; height: 12px;
  border-color: var(--neon-cyan);
  border-style: solid;
  border-width: 0;
}
.service-card::before { top: 6px; left: 6px; border-top-width: 2px; border-left-width: 2px; border-top-left-radius: 2px; }
.service-card::after { bottom: 6px; right: 6px; border-bottom-width: 2px; border-right-width: 2px; border-bottom-right-radius: 2px; }
.service-card:hover {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 20px rgba(0,245,255,0.15);
  transform: translateY(-2px);
}
.service-card .service-emoji {
  font-size: 2rem;
  margin-bottom: 8px;
  line-height: 1;
}
.service-card .service-name {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-primary);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* === ADDRESS INPUT === */
.address-form {
  margin: 28px 0;
}
.neon-input-wrap {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1.5px solid var(--border-green);
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-card);
  box-shadow: 0 0 15px rgba(57,255,20,0.08);
}
.neon-input-wrap .input-icon {
  padding: 0 14px;
  color: var(--neon-green);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.neon-input-wrap input {
  flex: 1;
  padding: 14px 12px;
  background: transparent;
  border: none;
  outline: none;
  color: var(--text-primary);
  font-size: 0.95rem;
  font-family: 'DM Sans', sans-serif;
}
.neon-input-wrap input::placeholder { color: var(--text-muted); }

/* === TRUST BADGES === */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0;
  justify-content: center;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.78rem;
  color: var(--text-secondary);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  letter-spacing: 0.03em;
}

/* === STATS SECTION === */
.neon-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(0,245,255,0.06);
  border: 1px solid rgba(0,245,255,0.1);
  border-radius: 10px;
  overflow: hidden;
  margin: 32px 0;
}
.neon-stat {
  background: var(--bg-card);
  padding: 24px 16px;
  text-align: center;
}
.neon-stat .stat-val {
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  font-size: 1.6rem;
  margin-bottom: 4px;
}
.neon-stat .stat-lbl {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

/* === FLOAT BOOK NOW === */
.float-book-btn {
  display: none;
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 999;
}
@media (max-width: 768px) {
  .float-book-btn { display: flex; }
}

/* === SECTION HEADERS === */
.neon-section-tag {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--neon-pink);
  margin-bottom: 8px;
}
.neon-section-tag::before { content: '// '; }
.neon-h2 {
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  text-transform: uppercase;
  line-height: 1.1;
  color: white;
}
.neon-section-sub {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-top: 10px;
  line-height: 1.6;
}

/* === FEATURE CARDS === */
.neon-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.neon-feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px 20px;
  transition: border-color 0.2s;
}
.neon-feature-card:hover { border-color: rgba(0,245,255,0.3); }
.neon-feature-card .fc-icon { font-size: 1.5rem; margin-bottom: 12px; }
.neon-feature-card h3 {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--neon-cyan);
  margin-bottom: 8px;
}
.neon-feature-card p { color: var(--text-secondary); font-size: 0.88rem; line-height: 1.6; }

/* === FOOTER === */
.neon-footer {
  border-top: 1px solid rgba(0,245,255,0.08);
  padding: 28px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
}
.neon-footer .footer-copy {
  color: var(--text-muted);
  font-size: 0.8rem;
}
.neon-footer .footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.neon-footer .footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.78rem;
  transition: color 0.2s;
}
.neon-footer .footer-links a:hover { color: var(--neon-cyan); }

/* === NEON FORMS === */
.neon-form-group { margin-bottom: 20px; }
.neon-label {
  display: block;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--neon-cyan);
  margin-bottom: 6px;
}
.neon-input {
  width: 100%;
  padding: 12px 14px;
  background: var(--bg-card);
  border: 1.5px solid var(--border-green);
  border-radius: 6px;
  color: var(--text-primary);
  font-size: 0.95rem;
  font-family: 'DM Sans', sans-serif;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.neon-input:focus {
  border-color: var(--neon-green);
  box-shadow: 0 0 12px rgba(57,255,20,0.15);
}
.neon-input::placeholder { color: var(--text-muted); }
select.neon-input { cursor: pointer; }

/* === CHAT === */
.chat-messages { display: flex; flex-direction: column; gap: 12px; padding: 16px; overflow-y: auto; flex: 1; }
.chat-bubble { max-width: 75%; padding: 10px 14px; border-radius: 12px; font-size: 0.9rem; line-height: 1.5; }
.chat-bubble.outgoing {
  align-self: flex-end;
  background: var(--neon-pink);
  color: white;
  border-bottom-right-radius: 3px;
  box-shadow: 0 0 12px rgba(255,45,120,0.3);
}
.chat-bubble.incoming {
  align-self: flex-start;
  background: var(--bg-elevated);
  color: var(--text-primary);
  border: 1px solid var(--border);
  border-bottom-left-radius: 3px;
}
.chat-bubble.system-msg {
  align-self: center;
  background: transparent;
  border: 1px dashed rgba(0,245,255,0.2);
  color: var(--neon-cyan);
  font-size: 0.78rem;
  font-family: 'Rajdhani', sans-serif;
  padding: 6px 14px;
  border-radius: 100px;
  max-width: 90%;
  text-align: center;
}
.chat-input-bar {
  display: flex;
  gap: 10px;
  padding: 12px 16px;
  border-top: 1px solid var(--border);
  background: var(--bg-card);
}
.chat-input-bar input {
  flex: 1;
  padding: 10px 14px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-green);
  border-radius: 6px;
  color: var(--text-primary);
  font-size: 0.9rem;
  outline: none;
}
.chat-input-bar button {
  padding: 10px 18px;
  background: var(--neon-pink);
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  box-shadow: 0 0 12px rgba(255,45,120,0.35);
}

/* === TABLE === */
.neon-table { width: 100%; border-collapse: collapse; }
.neon-table th {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--neon-cyan);
  padding: 10px 12px;
  border-bottom: 1px solid rgba(0,245,255,0.15);
  text-align: left;
}
.neon-table td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
  color: var(--text-primary);
}
.neon-table tr:hover td { background: rgba(0,245,255,0.03); }

/* === MOBILE === */
@media (max-width: 768px) {
  .neon-feature-grid { grid-template-columns: 1fr; }
  .neon-stats { grid-template-columns: repeat(2, 1fr); }
  .neon-nav { padding: 14px 0; }
  .neon-btn-primary, .neon-btn-secondary { font-size: 0.78rem; padding: 8px 14px; }
}
@media (min-width: 768px) {
  .service-cards-grid { grid-template-columns: repeat(3, 1fr); }
  .neon-stats { grid-template-columns: repeat(4, 1fr); }
}
