/* ==============================================================================
   DISPATCHFUSE - NORTHPOINTE AT VISTANCIA (LAYOUT B)
   High-Contrast Desert Modern Architectural Theme
============================================================================== */

:root {
  --bg-dark: #090e17;
  --bg-card: #111827;
  --bg-card-hover: #172033;
  --border-color: rgba(56, 189, 248, 0.15);
  --border-bright: rgba(56, 189, 248, 0.4);
  --cyan-accent: #38bdf8;
  --cyan-glow: rgba(56, 189, 248, 0.25);
  --gold-accent: #f59e0b;
  --gold-hover: #d97706;
  --text-primary: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'Space Grotesk', monospace;
  --container-w: 1200px;
}

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

body {
  font-family: var(--font-main);
  background-color: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 70px; /* Space for mobile sticky bar */
}

@media (min-width: 769px) {
  body {
    padding-bottom: 0;
  }
}

.container {
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 20px;
}

/* 1. TOP DISPATCH STRIP */
.top-dispatch-strip {
  background: #030712;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.85rem;
  padding: 8px 0;
}

.strip-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.strip-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--cyan-accent);
  font-weight: 700;
  letter-spacing: 0.5px;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 8px #22c55e;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
  70% { transform: scale(1.1); box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.strip-text {
  color: var(--text-muted);
}

.strip-code {
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid var(--border-color);
  padding: 2px 10px;
  border-radius: 4px;
  color: var(--text-primary);
  font-family: var(--font-mono);
}

.strip-code strong {
  color: var(--cyan-accent);
}

/* 2. NAVIGATION */
.main-nav {
  background: rgba(11, 17, 32, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 14px 0;
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: flex;
  flex-direction: column;
}

.brand-sub {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--cyan-accent);
}

.brand-title {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #fff;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.service-tag {
  display: none;
  font-size: 0.85rem;
  color: var(--text-muted);
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  padding-right: 15px;
}

@media (min-width: 768px) {
  .service-tag {
    display: inline-block;
  }
}

.nav-btn {
  background: var(--gold-accent);
  color: #000;
  text-decoration: none;
  padding: 8px 18px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.nav-btn:hover {
  background: var(--gold-hover);
  transform: translateY(-1px);
}

/* 3. HERO SECTION (Layout B) */
.hero-section {
  padding: 60px 0 70px 0;
  background: radial-gradient(circle at 50% 20%, rgba(56, 189, 248, 0.08) 0%, rgba(9, 14, 23, 0) 70%);
  text-align: center;
}

.hero-badge-pill {
  display: inline-block;
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid var(--border-bright);
  padding: 6px 16px;
  border-radius: 50px;
  color: var(--cyan-accent);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}

.hero-h1 {
  font-size: 2.3rem;
  font-weight: 800;
  line-height: 1.2;
  max-width: 950px;
  margin: 0 auto 20px auto;
  color: #fff;
}

@media (min-width: 768px) {
  .hero-h1 {
    font-size: 3.2rem;
  }
}

.highlight {
  color: var(--cyan-accent);
  text-shadow: 0 0 20px rgba(56, 189, 248, 0.3);
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 800px;
  margin: 0 auto 40px auto;
}

/* Dual Hub */
.dual-hub {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  max-width: 1050px;
  margin: 0 auto;
  text-align: left;
}

@media (min-width: 850px) {
  .dual-hub {
    grid-template-columns: 1fr 1fr;
  }
}

/* Hub Call Card */
.hub-call-card {
  background: linear-gradient(145deg, #111827 0%, #0c1322 100%);
  border: 1px solid var(--border-bright);
  border-radius: 12px;
  padding: 35px 30px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.card-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: #38bdf8;
  font-weight: 600;
  margin-bottom: 12px;
}

.status-live {
  width: 7px;
  height: 7px;
  background-color: #38bdf8;
  border-radius: 50%;
  box-shadow: 0 0 6px #38bdf8;
}

.hub-call-title {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: #fff;
}

.hub-call-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 25px;
  flex-grow: 1;
}

.hub-primary-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #000;
  text-decoration: none;
  padding: 18px 24px;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.35);
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

.hub-primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(245, 158, 11, 0.5);
}

.phone-ico {
  font-size: 1.6rem;
}

.btn-copy {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.btn-copy strong {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.btn-copy small {
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.75);
  text-transform: uppercase;
}

.hub-meta-row {
  display: flex;
  justify-content: space-between;
  margin-top: 18px;
  font-size: 0.78rem;
  color: var(--text-dim);
}

/* Hub Form Card */
.hub-form-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 30px;
  display: flex;
  flex-direction: column;
}

.form-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.form-header h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
}

.code-pill {
  background: rgba(56, 189, 248, 0.12);
  color: var(--cyan-accent);
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-family: var(--font-mono);
  font-weight: 700;
}

.fast-quote-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-row input,
.form-row select {
  width: 100%;
  background: #090e17;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  padding: 12px 14px;
  color: #fff;
  font-family: var(--font-main);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
}

.form-row input:focus,
.form-row select:focus {
  border-color: var(--cyan-accent);
}

.submit-btn {
  background: transparent;
  border: 2px solid var(--cyan-accent);
  color: var(--cyan-accent);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 13px;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 5px;
  transition: all 0.2s;
}

.submit-btn:hover {
  background: var(--cyan-accent);
  color: #000;
}

.form-privacy {
  font-size: 0.72rem;
  color: var(--text-dim);
  text-align: center;
  margin-top: 8px;
}

.form-success-box {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid #22c55e;
  border-radius: 6px;
  padding: 20px;
  color: #22c55e;
  text-align: center;
}

.form-success-box h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.form-success-box p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* 4. TECH GRID SECTION */
.tech-grid-section {
  padding: 80px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.section-title-wrap {
  text-align: center;
  margin-bottom: 50px;
}

.sub-heading {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--cyan-accent);
  font-weight: 700;
  letter-spacing: 1.5px;
  display: block;
  margin-bottom: 10px;
}

.section-title-wrap h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  max-width: 750px;
  margin: 0 auto;
}

.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}

@media (min-width: 768px) {
  .cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.tech-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 30px;
  transition: transform 0.25s, border-color 0.25s;
}

.tech-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-bright);
}

.highlight-card {
  border-color: var(--border-bright);
  background: linear-gradient(180deg, #131c2e 0%, #111827 100%);
}

.card-icon {
  font-size: 2rem;
  margin-bottom: 15px;
}

.tech-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
}

.tech-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.spec-list {
  list-style: none;
}

.spec-list li {
  font-size: 0.82rem;
  color: #cbd5e1;
  margin-bottom: 8px;
  position: relative;
  padding-left: 18px;
}

.spec-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--cyan-accent);
  font-weight: 800;
}

/* 5. MATERIALS SHOWCASE */
.materials-section {
  padding: 80px 0;
  background: #060910;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.materials-flex {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .materials-flex {
    grid-template-columns: repeat(3, 1fr);
  }
}

.material-item {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 25px;
}

.mat-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gold-accent);
  background: rgba(245, 158, 11, 0.12);
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 12px;
}

.material-item h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: #fff;
}

.material-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* 6. VICINITY GROUNDING */
.vicinity-section {
  padding: 70px 0;
}

.vicinity-box {
  background: linear-gradient(135deg, #111827 0%, #1e293b 100%);
  border: 1px solid var(--border-bright);
  border-radius: 12px;
  padding: 35px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

@media (min-width: 800px) {
  .vicinity-box {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.vicinity-kicker {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--cyan-accent);
  font-weight: 700;
  letter-spacing: 1px;
}

.vicinity-text h3 {
  font-size: 1.5rem;
  margin: 6px 0 10px 0;
  color: #fff;
}

.vicinity-text p {
  color: var(--text-muted);
  font-size: 0.92rem;
  max-width: 650px;
  margin-bottom: 15px;
}

.coords-bar {
  display: flex;
  gap: 20px;
  font-size: 0.8rem;
  color: var(--text-dim);
}

.coords-bar strong {
  color: #cbd5e1;
}

.vicinity-btn {
  background: var(--gold-accent);
  color: #000;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 24px;
  border-radius: 6px;
  white-space: nowrap;
  display: inline-block;
  transition: all 0.2s;
}

.vicinity-btn:hover {
  background: var(--gold-hover);
  transform: translateY(-2px);
}

/* 7. FOOTER */
.main-footer {
  background: #030712;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 35px 0;
  font-size: 0.85rem;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (min-width: 768px) {
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer-brand {
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.footer-left p {
  color: var(--text-dim);
}

.footer-right {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

@media (min-width: 768px) {
  .footer-right {
    text-align: right;
  }
}

.footer-code-tag {
  color: var(--cyan-accent);
  font-family: var(--font-mono);
}

.copyright {
  color: var(--text-dim);
  font-size: 0.78rem;
}

/* 8. MOBILE STICKY BAR */
.mobile-sticky-bar {
  display: block;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #090e17;
  border-top: 1px solid var(--border-bright);
  padding: 10px 15px;
  z-index: 999;
}

@media (min-width: 769px) {
  .mobile-sticky-bar {
    display: none;
  }
}

.sticky-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.sticky-code {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
}

.sticky-code strong {
  display: block;
  font-size: 0.95rem;
  color: var(--cyan-accent);
}

.sticky-call-btn {
  background: var(--gold-accent);
  color: #000;
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 800;
  font-size: 0.9rem;
  flex-grow: 1;
  text-align: center;
}
