/* =========================================
   PREMIUM DARK THEME FOR LANDING PAGES
   ========================================= */
:root {
  --bg-dark: #08090b;
  --bg-gradient: radial-gradient(circle at 70% 30%, #151b24 0%, #08090b 80%);
  --card-bg: rgba(255, 255, 255, 0.03);
  --card-border: rgba(255, 255, 255, 0.06);
  --primary-color: #0b84ff;
  --primary-dark: #0056b3;
  --text-main: #ffffff;
  --text-muted: #a0aec0;
}

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

body {
  background-color: var(--bg-dark);
  background-image: var(--bg-gradient);
  color: var(--text-main);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow-x: hidden;
  /* Added small padding so nothing hugs the screen edge on very tiny phones */
  padding: 16px; 
}

.ambient-glow {
  position: absolute;
  width: 70vw;
  height: 70vw;
  max-width: 600px;
  max-height: 600px;
  background: radial-gradient(circle, rgba(11, 132, 255, 0.08) 0%, rgba(0,0,0,0) 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  pointer-events: none;
}

.brand-logo {
  margin-bottom: 16px;
  animation: fadeDown 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
.brand-logo img {
  width: 70px;
  border-radius: 18px;
  box-shadow: 0 16px 32px rgba(11, 132, 255, 0.15), inset 0 1px 1px rgba(255, 255, 255, 0.1);
  transition: transform 0.4s ease;
}
.brand-logo img:hover {
  transform: scale(1.05) translateY(-2px);
}

.neighborhood-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 28px;
  padding: 32px 28px;
  max-width: 580px;
  width: 100%;
  text-align: center;
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.5);
  animation: fadeUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.1s both;
}

.category-badge {
  display: inline-block;
  background: rgba(11, 132, 255, 0.15);
  color: #4facfe;
  padding: 4px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

.neighborhood-title {
  font-size: 32px;
  font-weight: 800;
  margin: 0 0 16px 0;
  background: linear-gradient(135deg, #ffffff, #b0bec5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.bilingual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.bilingual-col {
  background: rgba(0, 0, 0, 0.2);
  padding: 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bilingual-col.ku {
  direction: rtl;
  text-align: justify;
}

.bilingual-col.en {
  direction: ltr;
  text-align: justify;
}

.bilingual-col p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
}

.bilingual-col strong {
  color: #ffffff;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
  color: #ffffff;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 999px;
  font-size: 17px;
  font-weight: 700;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: 0 8px 24px rgba(11, 132, 255, 0.3), inset 0 1px 1px rgba(255, 255, 255, 0.2);
  position: relative;
  /* Margin reduced to keep things tight */
  margin-top: 4px;
}

.cta-button:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 32px rgba(11, 132, 255, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.2);
}
.cta-button:active {
  transform: translateY(1px);
}
.cta-button svg { width: 20px; height: 20px; transition: transform 0.3s ease; }
.cta-button:hover svg { transform: translateX(-6px); }

.page-footer {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.3);
  font-size: 13px;
  animation: fadeUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.3s both;
  font-weight: 500;
  display: flex;
  gap: 12px;
}
.page-footer a { color: rgba(255, 255, 255, 0.5); text-decoration: none; transition: color 0.2s; }
.page-footer a:hover { color: #ffffff; }

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

@media (max-width: 480px) {
  .neighborhood-card { padding: 24px 20px; border-radius: 24px; }
  .neighborhood-title { font-size: 26px; margin: 0 0 12px 0; }
  .bilingual-grid { 
    /* Force horizontal to save vertical height as requested */
    grid-template-columns: 1fr 1fr; 
    gap: 10px; 
    margin-bottom: 16px; 
  }
  .bilingual-col { padding: 14px; }
  .bilingual-col p { font-size: 13.5px; line-height: 1.5; }
  .cta-button { font-size: 16px; padding: 12px 24px; width: 100%; }
}
