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

:root {
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  /* Colors */
  --bg-dark: #070a13;
  --bg-card: rgba(13, 20, 38, 0.6);
  --bg-card-hover: rgba(22, 34, 64, 0.85);
  --border-color: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.16);

  --primary: #0066ff; /* Electric Blue */
  --primary-glow: rgba(0, 102, 255, 0.15);
  --secondary: #2af598; /* Mint Green */
  --secondary-glow: rgba(42, 245, 152, 0.15);
  --accent: #00ffd2; /* Cyan/Teal */
  --accent-glow: rgba(0, 253, 210, 0.15);

  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;

  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.3), 0 8px 10px -6px rgba(0, 0, 0, 0.3);
  --shadow-glow: 0 0 30px rgba(0, 102, 255, 0.25);

  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
  
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  background-color: var(--bg-dark);
  color: var(--text-primary);
  font-family: var(--font-body);
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(0, 102, 255, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(42, 245, 152, 0.08) 0%, transparent 40%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
}

/* Layout Shell */
.page-shell {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  padding: 20px 0 60px;
}

/* Header & Nav */
.site-header {
  position: sticky;
  top: 20px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  margin-bottom: 40px;
  background: rgba(13, 20, 38, 0.7);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-color);
  border-radius: 100px;
  box-shadow: var(--shadow-lg);
  transition: var(--transition-smooth);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-primary);
}

.brand-logo {
  width: 38px;
  height: 38px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(0, 102, 255, 0.25));
}

.brand-copy strong {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--text-primary), #cbd5e1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.site-nav {
  display: flex;
  gap: 24px;
}

.site-nav a {
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition-smooth);
}

.site-nav a:hover {
  color: var(--primary);
}

/* Hero Section */
.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  padding: 60px 40px;
  background: radial-gradient(circle at top right, rgba(0, 102, 255, 0.1), transparent 50%), var(--bg-card);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  margin-bottom: 50px;
  overflow: hidden;
  position: relative;
}

.hero-copy {
  z-index: 2;
}

.hero-copy .eyebrow {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: var(--primary);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.hero-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--text-primary) 30%, var(--text-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-copy .hero-text {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 30px;
  max-width: 52ch;
}

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

/* Button Styles */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 100px;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: 1px solid transparent;
}

.button-solid {
  background: var(--primary);
  color: var(--bg-dark);
  box-shadow: 0 4px 14px var(--primary-glow);
}

.button-solid:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.button-ghost {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  border-color: var(--border-color);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

/* Phone Mockup */
.phone-mockup-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}

.phone-mockup-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
  z-index: -1;
  filter: blur(20px);
}

.phone-mockup {
  width: 280px;
  height: 560px;
  border: 12px solid #1e293b;
  border-radius: 40px;
  background: #0f172a;
  box-shadow: var(--shadow-lg), 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Inside Mockup Screen */
.phone-screen-header {
  height: 50px;
  padding: 10px 16px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #0f172a;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.phone-screen-header .time {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
}

.phone-screen-header .icons {
  display: flex;
  gap: 6px;
  width: 40px;
  height: 12px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 100px;
}

.phone-screen-app {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: #0b0f19;
  padding: 12px;
  position: relative;
}

.mock-search-bar {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  padding: 8px 12px;
  margin-bottom: 12px;
  font-size: 0.75rem;
  color: var(--text-secondary);
  gap: 8px;
}

.mock-map-bg {
  flex: 1;
  background: radial-gradient(circle at center, #1e293b 0%, #0f172a 100%);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.mock-map-lines {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.5) 1px, transparent 1px);
  background-size: 20px 20px;
}

.mock-map-pin {
  position: absolute;
  width: 24px;
  height: 24px;
  background: var(--primary);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  left: 60%;
  top: 40%;
  animation: pulsePin 2s infinite;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mock-map-pin::after {
  content: '';
  width: 8px;
  height: 8px;
  background: #0f172a;
  border-radius: 50%;
  transform: rotate(45deg);
}

.mock-popup-card {
  position: absolute;
  bottom: 8px;
  left: 8px;
  right: 8px;
  background: rgba(13, 20, 38, 0.95);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 10px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
}

.mock-popup-card h4 {
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.mock-popup-card p {
  font-size: 0.65rem;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.mock-rating-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(16, 185, 129, 0.15);
  color: var(--primary);
  padding: 2px 6px;
  border-radius: 100px;
  font-size: 0.65rem;
  font-weight: 700;
  gap: 3px;
}

@keyframes pulsePin {
  0% { transform: rotate(-45deg) scale(1); }
  50% { transform: rotate(-45deg) scale(1.1); box-shadow: 0 0 15px var(--primary); }
  100% { transform: rotate(-45deg) scale(1); }
}

/* Features Grid */
.features-title {
  text-align: center;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 30px;
  letter-spacing: -0.02em;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 60px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 30px;
  transition: var(--transition-smooth);
  cursor: default;
}

.feature-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  transform: translateY(-4px);
}

.feature-icon-wrapper {
  width: 50px;
  height: 50px;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: 1px solid rgba(16, 185, 129, 0.15);
}

.feature-card svg {
  width: 24px;
  height: 24px;
  fill: var(--primary);
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--text-secondary);
}

/* Interactive Map Demo section */
.interactive-section {
  margin-bottom: 60px;
}

.interactive-title {
  text-align: center;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.interactive-subtitle {
  text-align: center;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 35px;
  font-size: 1rem;
}

/* App Interface Container */
.map-demo-container {
  display: grid;
  grid-template-columns: 360px 1fr;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 600px;
  box-shadow: var(--shadow-lg);
}

/* Sidebar */
.map-sidebar {
  border-right: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  background: rgba(10, 15, 30, 0.5);
}

.sidebar-header {
  padding: 20px;
  border-bottom: 1px solid var(--border-color);
}

.points-counter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  margin-bottom: 16px;
  font-weight: 700;
  color: var(--primary);
  font-size: 0.9rem;
}

.points-counter-val {
  background: var(--primary);
  color: var(--bg-dark);
  padding: 2px 10px;
  border-radius: 100px;
  font-size: 0.85rem;
}

.city-select-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.city-select {
  width: 100%;
  padding: 12px 16px;
  background: #0b0f19;
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-weight: 600;
  outline: none;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.city-select:focus {
  border-color: var(--primary);
}

/* Toilet List */
.toilet-list {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.toilet-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 14px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.toilet-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--border-hover);
}

.toilet-item.is-selected {
  background: rgba(16, 185, 129, 0.06);
  border-color: var(--primary);
}

.toilet-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.toilet-item p {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.toilet-item-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.status-badge {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 100px;
}

.status-badge.operational {
  background: rgba(16, 185, 129, 0.15);
  color: var(--primary);
}

.status-badge.maintenance {
  background: rgba(244, 63, 94, 0.15);
  color: var(--accent);
}

/* Map Canvas */
.map-canvas-wrapper {
  position: relative;
  background: #0a0d16;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-svg-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.map-road {
  stroke: rgba(255, 255, 255, 0.06);
  stroke-width: 14px;
  fill: none;
  stroke-linecap: round;
}

.map-river {
  stroke: rgba(14, 165, 233, 0.12);
  stroke-width: 32px;
  fill: none;
}

.map-park {
  fill: rgba(16, 185, 129, 0.04);
}

/* Pins on Map */
.map-marker {
  position: absolute;
  transform: translate(-50%, -100%);
  cursor: pointer;
  z-index: 10;
  transition: var(--transition-smooth);
}

.map-marker-pin {
  width: 32px;
  height: 32px;
  background: var(--primary);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px rgba(0,0,0,0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition-smooth);
}

.map-marker-pin::after {
  content: '';
  width: 10px;
  height: 10px;
  background: #070a13;
  border-radius: 50%;
  transform: rotate(45deg);
}

.map-marker.maintenance .map-marker-pin {
  background: var(--accent);
}

.map-marker.is-active .map-marker-pin {
  transform: rotate(-45deg) scale(1.2);
  box-shadow: 0 0 15px var(--primary);
  background: var(--secondary);
}

.map-marker-label {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(7, 10, 19, 0.95);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
}

.map-marker:hover .map-marker-label {
  opacity: 1;
  top: -35px;
}

/* Detail overlay panel / Modal */
.detail-overlay {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 380px;
  max-height: calc(100% - 40px);
  background: rgba(13, 20, 38, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 24px;
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow-y: auto;
  transform: translateX(420px);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.detail-overlay.is-visible {
  transform: translateX(0);
}

.overlay-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: none;
  color: var(--text-secondary);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-weight: bold;
}

.overlay-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
}

.overlay-header h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 6px;
  padding-right: 20px;
}

.rating-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  padding: 12px;
  border-radius: var(--radius-sm);
}

.rating-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.rating-item span {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 700;
}

.rating-item strong {
  font-size: 0.95rem;
  color: var(--primary);
}

.amenities-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.amenity-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-color);
}

.amenity-tag.has {
  color: var(--primary);
  background: rgba(16, 185, 129, 0.05);
  border-color: rgba(16, 185, 129, 0.15);
}

.amenity-tag.no {
  color: var(--text-muted);
  text-decoration: line-through;
}

.reviews-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.reviews-section h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-secondary);
}

.review-item {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 10px;
}

.review-item:last-child {
  border-bottom: none;
}

.review-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  margin-bottom: 4px;
}

.review-author {
  font-weight: 700;
}

.review-rating {
  color: var(--primary);
}

.review-comment {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* Action buttons inside Overlay */
.overlay-actions {
  display: flex;
  gap: 10px;
}

.overlay-actions button {
  flex: 1;
  padding: 10px 14px;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition-smooth);
}

/* Add review / Submit Toilet forms */
.form-panel {
  display: none;
  flex-direction: column;
  gap: 12px;
}

.form-panel.is-active {
  display: flex;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 10px 14px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: inherit;
  font-size: 0.85rem;
}

.form-group select {
  cursor: pointer;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary);
  outline: none;
}

/* Submit bar at top right */
.add-toilet-trigger {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--primary);
  color: var(--bg-dark);
  border: none;
  padding: 12px 20px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  z-index: 40;
  transition: var(--transition-smooth);
}

.add-toilet-trigger:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(16, 185, 129, 0.4);
}

/* App Download banner */
.download-section {
  padding: 60px 40px;
  background: linear-gradient(135deg, rgba(13, 20, 38, 0.9), rgba(16, 185, 129, 0.15));
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  overflow: hidden;
}

.download-section h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.download-section p {
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto 30px;
  line-height: 1.5;
}

.app-badges {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.app-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #000;
  color: #fff;
  padding: 12px 24px;
  border-radius: 12px;
  text-decoration: none;
  font-family: var(--font-body);
  border: 1px solid rgba(255,255,255,0.1);
  transition: var(--transition-smooth);
}

.app-badge:hover {
  border-color: rgba(255,255,255,0.3);
  transform: translateY(-2px);
}

.app-badge svg {
  width: 24px;
  height: 24px;
  fill: #fff;
}

.app-badge-text {
  text-align: left;
}

.app-badge-text span {
  display: block;
  font-size: 0.65rem;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.app-badge-text strong {
  display: block;
  font-size: 0.95rem;
}

/* Footer styling */
.site-footer {
  border-top: 1px solid var(--border-color);
  padding: 40px 0 20px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
  max-width: 320px;
}

.footer-links-col h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-col a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}

.footer-links-col a:hover {
  color: var(--primary);
}

.footer-bottom {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Responsive adjust */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 40px 30px;
  }
  .phone-mockup-wrapper {
    order: -1;
  }
  .map-demo-container {
    grid-template-columns: 1fr;
    height: 800px;
  }
  .map-sidebar {
    height: 350px;
    border-right: none;
    border-bottom: 1px solid var(--border-color);
  }
  .site-footer {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
