/* assets/css/network-maintenance-v2.css - PERFECT RESPONSIVE WITH PX FONTS ONLY */

:root {
  --primary: #012970;
  --accent: #fcb614;
  --bg-light: #f8fafc;
  --white: #ffffff;
  --text-dark: #1e293b;
  --text: #475569;
  --text-light: #64748b;
  --border: #e2e8f0;
}

/* Hero Section - PERFECT MOBILE */
.network-dashboard-hero {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, var(--white) 0%, var(--bg-light) 100%);
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.stat-card {
  background: var(--white);
  padding: 24px 20px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border-top: 4px solid var(--border);
  transition: all 0.3s ease;
  font-family: sans-serif;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.stat-card.uptime {
  border-top-color: var(--accent);
}
.stat-card.devices {
  border-top-color: #10b981;
}
.stat-card.response {
  border-top-color: #3b82f6;
}

.stat-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 20px;
  font-family: sans-serif;
}

.stat-card.uptime .stat-icon {
  background: rgba(252, 182, 20, 0.1);
  color: var(--accent);
}
.stat-card.devices .stat-icon {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
}
.stat-card.response .stat-icon {
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
}

.stat-value {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 6px;
  line-height: 1.1;
  font-family: sans-serif;
}

.stat-label {
  font-size: 13px;
  color: var(--text-light);
  font-weight: 600;
  font-family: sans-serif;
}

.hero-content {
  padding-left: 20px;
  margin-top: 30px;
}

.service-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--primary);
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
  font-family: sans-serif;
}

.main-title {
  color: var(--primary);
  font-size: 30px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 18px;
  font-family: sans-serif;
}

.hero-subtitle {
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
  font-family: sans-serif;
}

.cta-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent), #f59e0b);
  color: var(--primary);
  padding: 14px 32px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(252, 182, 20, 0.3);
  transition: all 0.3s ease;
  font-family: sans-serif;
}

.cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(252, 182, 20, 0.4);
  color: var(--primary);
}

/* Sections */
.capabilities-grid,
.coverage-map,
.metrics-dashboard,
.network-cta {
  padding: 20px 0;
}

.capabilities-grid {
  background: var(--bg-light);
}

.coverage-map {
  background: var(--white);
}

.metrics-dashboard {
  background: linear-gradient(135deg, var(--bg-light) 0%, #f1f5f9 100%);
}

.section-title {
  text-align: center;
  margin-bottom: 10px;
}

.section-title h2 {
  color: var(--primary);
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.2;
  font-family: sans-serif;
}

.section-title p {
  color: var(--text);
  font-size: 15px;
  max-width: 550px;
  margin: 0 auto;
  font-family: sans-serif;
}

/* Capabilities */
.capabilities-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.capability-card {
  background: var(--white);
  border-radius: 20px;
  padding: 35px 25px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-top: 4px solid transparent;
  font-family: sans-serif;
}

.capability-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.capability-card.proactive {
  border-top-color: rgba(252, 182, 20, 0.2);
}
.capability-card.optimization {
  border-top-color: rgba(16, 185, 129, 0.2);
}
.capability-card.security {
  border-top-color: rgba(59, 130, 246, 0.2);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 18px;
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.card-icon.proactive {
  background: rgba(252, 182, 20, 0.1);
  color: var(--accent);
}
.card-icon.optimization {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
}
.card-icon.security {
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
}

.card-header h3 {
  color: var(--primary);
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  font-family: sans-serif;
}

.card-body p {
  color: var(--text);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 18px;
  font-family: sans-serif;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.features-list li {
  color: var(--text);
  font-size: 13px;
  padding: 6px 0 6px 22px;
  position: relative;
  line-height: 1.5;
  font-family: sans-serif;
}

.features-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 6px;
  color: var(--accent);
  font-weight: bold;
  font-size: 11px;
}

/* Vendor Stack */
.coverage-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.coverage-text {
  text-align: center;
  margin-bottom: 50px;
}

.coverage-text h2 {
  color: var(--primary);
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 12px;
  font-family: sans-serif;
}

.coverage-text p {
  color: var(--text);
  font-size: 15px;
  font-family: sans-serif;
}

.vendor-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.vendor-item {
  background: linear-gradient(135deg, var(--white), #f8fafc);
  padding: 24px 20px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
  border-left: 4px solid var(--accent);
  transition: all 0.3s ease;
  font-family: sans-serif;
}

.vendor-item:hover {
  transform: translateX(6px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.vendor-item i {
  font-size: 24px;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(252, 182, 20, 0.1);
  color: var(--accent);
  flex-shrink: 0;
}

.vendor-item.cisco i {
  background: rgba(252, 182, 20, 0.1);
}
.vendor-item.juniper i {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
}
.vendor-item.arista i {
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
}
.vendor-item.fortinet i {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}

.vendor-item span {
  font-size: 15px;
  font-weight: 600;
  color: var(--primary);
  flex: 1;
  font-family: sans-serif;
}

.expertise {
  font-size: 13px;
  color: var(--text-light);
  font-weight: 500;
  white-space: nowrap;
  font-family: sans-serif;
}

/* Metrics - FIXED SIZING */
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.metric-card {
  background: var(--white);
  padding: 24px 18px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border-top: 4px solid var(--accent);
  font-family: sans-serif;
}

.metric-value {
  font-size: 24px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
  line-height: 1.1;
  font-family: sans-serif;
}

.metric-label {
  font-size: 13px;
  color: var(--text);
  font-weight: 600;
  margin-bottom: 4px;
  font-family: sans-serif;
}

.metric-description {
  font-size: 12px;
  color: var(--text-light);
  font-family: sans-serif;
}

/* CTA + Contact Form */
.cta-container {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 20px;
}

.cta-container h2 {
  color: var(--primary);
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.2;
  font-family: sans-serif;
}

.cta-container p {
  color: var(--text);
  font-size: 15px;
  margin-bottom: 40px;
  font-family: sans-serif;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.contact-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  font-size: 15px;
}

.contact-inline span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-weight: 500;
  font-family: sans-serif;
}

/* ========================================
   MOBILE RESPONSIVE - PERFECTLY FIXED
   ======================================== */
@media (max-width: 1024px) {
  .dashboard-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .hero-content {
    padding-left: 0;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .network-dashboard-hero {
    padding: 80px 0 20px 0;
  }

  .dashboard-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    justify-items: center;
  }

  .stat-card {
    padding: 20px 16px;
  }

  .stat-value {
    font-size: 24px;
  }

  .main-title {
    font-size: 26px;
    padding: 20px 0;
  }

  .capabilities-container {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .metrics-grid {
    :root {
      --primary: #012970;
      --accent: #fcb614;
      --bg-light: #f8fafc;
      --white: #ffffff;
      --text-dark: #1e293b;
      --text: #475569;
      --text-light: #64748b;
      --border: #e2e8f0;
    }

    /* Dashboard Hero - PERFECT MOBILE FIX */
    .network-dashboard-hero {
      padding: 140px 0 100px;
      background: linear-gradient(
        135deg,
        var(--white) 0%,
        var(--bg-light) 100%
      );
      position: relative;
    }

    .dashboard-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start;
    }

    .dashboard-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-bottom: 0;
    }

    .stat-card {
      background: var(--white);
      padding: 28px 20px;
      border-radius: 20px;
      text-align: center;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
      border-top: 4px solid var(--border);
      transition: all 0.3s ease;
    }

    .stat-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    }

    .stat-card.uptime {
      border-top-color: var(--accent);
    }
    .stat-card.devices {
      border-top-color: #10b981;
    }
    .stat-card.response {
      border-top-color: #3b82f6;
    }

    .stat-icon {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 12px;
      font-size: 24px;
    }

    .stat-card.uptime .stat-icon {
      background: rgba(252, 182, 20, 0.1);
      color: var(--accent);
    }
    .stat-card.devices .stat-icon {
      background: rgba(16, 185, 129, 0.1);
      color: #10b981;
    }
    .stat-card.response .stat-icon {
      background: rgba(59, 130, 246, 0.1);
      color: #3b82f6;
    }

    .stat-value {
      font-size: 32px;
      font-weight: 800;
      color: var(--primary);
      margin-bottom: 4px;
      line-height: 1.1;
      font-family: sans-serif;
    }

    .stat-label {
      font-size: 14px;
      color: var(--text-light);
      font-weight: 500;
      font-family: sans-serif;
    }

    .service-badge {
      display: inline-block;
      background: var(--accent);
      color: var(--primary);
      padding: 10px 24px;
      border-radius: 50px;
      font-size: 16px;
      font-weight: 700;
      margin-bottom: 24px;
      font-family: sans-serif;
    }

    .main-title {
      color: var(--primary);
      font-size: 30px;
      font-weight: 800;
      line-height: 1.1;
      margin-bottom: 20px;
      font-family: sans-serif;
    }

    .hero-subtitle {
      color: var(--text);
      font-size: 18px;
      line-height: 1.7;
      margin-bottom: 32px;
      max-width: 450px;
      font-family: sans-serif;
    }

    .cta-primary {
      display: inline-block;
      background: linear-gradient(135deg, var(--accent), #f59e0b);
      color: var(--primary);
      padding: 18px 36px;
      border-radius: 16px;
      font-size: 16px;
      font-weight: 700;
      text-decoration: none;
      box-shadow: 0 12px 35px rgba(252, 182, 20, 0.4);
      transition: all 0.3s ease;
      font-family: sans-serif;
    }

    .cta-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 20px 50px rgba(252, 182, 20, 0.5);
      color: var(--primary);
    }

    /* Capabilities Grid */
    .capabilities-grid {
      padding: 100px 0;
      background: var(--bg-light);
    }

    .section-title {
      text-align: center;
      margin-bottom: 20px;
    }

    .section-title h2 {
      color: var(--primary);
      font-size: 26px;
      font-weight: 800;
      margin-bottom: 16px;
      line-height: 1.2;
      font-family: sans-serif;
    }

    .section-title p {
      color: var(--text);
      font-size: 16px;
      max-width: 600px;
      margin: 0 auto;
      font-family: sans-serif;
    }

    .capabilities-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 32px;
    }

    .capability-card {
      background: var(--white);
      border-radius: 24px;
      padding: 32px 24px;
      box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
      transition: all 0.3s ease;
      border-top: 5px solid transparent;
      overflow: hidden;
      position: relative;
    }

    .capability-card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--accent), #f59e0b);
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .capability-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
    }

    .capability-card:hover::before {
      opacity: 1;
    }

    .capability-card.proactive {
      border-top-color: rgba(252, 182, 20, 0.2);
    }
    .capability-card.optimization {
      border-top-color: rgba(16, 185, 129, 0.2);
    }
    .capability-card.security {
      border-top-color: rgba(59, 130, 246, 0.2);
    }

    .card-header {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 20px;
    }

    .card-icon {
      width: 56px;
      height: 56px;
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      flex-shrink: 0;
    }

    .card-icon.proactive {
      background: rgba(252, 182, 20, 0.1);
      color: var(--accent);
    }
    .card-icon.optimization {
      background: rgba(16, 185, 129, 0.1);
      color: #10b981;
    }
    .card-icon.security {
      background: rgba(59, 130, 246, 0.1);
      color: #3b82f6;
    }

    .card-header h3 {
      color: var(--primary);
      font-size: 18px;
      font-weight: 700;
      margin: 0;
      font-family: sans-serif;
    }

    .card-body p {
      color: var(--text);
      font-size: 15px;
      line-height: 1.7;
      margin-bottom: 20px;
      font-family: sans-serif;
    }

    .features-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .features-list li {
      color: var(--text);
      font-size: 14px;
      padding: 8px 0 8px 24px;
      position: relative;
      line-height: 1.5;
      font-family: sans-serif;
    }

    .features-list li::before {
      content: "✓";
      position: absolute;
      left: 0;
      top: 8px;
      color: var(--accent);
      font-weight: bold;
      font-size: 12px;
    }

    /* Coverage Stack */
    .coverage-map {
      padding: 100px 0;
      background: var(--white);
    }

    .coverage-content {
      max-width: 1000px;
      margin: 0 auto;
    }

    .coverage-text {
      text-align: center;
      margin-bottom: 50px;
    }

    .coverage-text h2 {
      color: var(--primary);
      font-size: 26px;
      font-weight: 800;
      margin-bottom: 16px;
      font-family: sans-serif;
    }

    .coverage-text p {
      color: var(--text);
      font-size: 16px;
      font-family: sans-serif;
    }

    .vendor-stack {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .vendor-item {
      background: linear-gradient(135deg, var(--white), #f8fafc);
      padding: 24px 20px;
      border-radius: 16px;
      display: flex;
      align-items: center;
      gap: 16px;
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
      border-left: 4px solid var(--accent);
      transition: all 0.3s ease;
    }

    .vendor-item:hover {
      transform: translateX(8px);
      box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12);
    }

    .vendor-item i {
      font-size: 24px;
      width: 48px;
      height: 48px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(252, 182, 20, 0.1);
      color: var(--accent);
      flex-shrink: 0;
    }

    .vendor-item.cisco i {
      background: rgba(252, 182, 20, 0.1);
    }
    .vendor-item.juniper i {
      background: rgba(16, 185, 129, 0.1);
      color: #10b981;
    }
    .vendor-item.arista i {
      background: rgba(59, 130, 246, 0.1);
      color: #3b82f6;
    }
    .vendor-item.fortinet i {
      background: rgba(239, 68, 68, 0.1);
      color: #ef4444;
    }

    .vendor-item span {
      font-size: 16px;
      font-weight: 600;
      color: var(--primary);
      flex: 1;
      font-family: sans-serif;
    }

    .expertise {
      font-size: 14px;
      color: var(--text-light);
      font-weight: 500;
      white-space: nowrap;
      font-family: sans-serif;
    }

    /* Metrics Dashboard - FIXED SIZING */
    .metrics-dashboard {
      padding: 100px 0;
      background: linear-gradient(135deg, var(--bg-light) 0%, #f1f5f9 100%);
    }

    .metrics-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 24px;
    }

    .metric-card {
      background: var(--white);
      padding: 24px 16px;
      border-radius: 20px;
      text-align: center;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
      border-top: 4px solid var(--accent);
    }

    .metric-value {
      font-size: 24px;
      font-weight: 800;
      color: var(--primary);
      margin-bottom: 8px;
      line-height: 1.1;
      font-family: sans-serif;
    }

    .metric-label {
      font-size: 14px;
      color: var(--text);
      font-weight: 600;
      margin-bottom: 4px;
      font-family: sans-serif;
    }

    .metric-description {
      font-size: 13px;
      color: var(--text-light);
      font-family: sans-serif;
    }

    /* CTA Section + Contact Form */
    .network-cta {
      padding: 100px 0;
      background: var(--white);
    }

    .cta-container {
      text-align: center;
      max-width: 800px;
      margin: 0 auto;
    }

    .cta-container h2 {
      color: var(--primary);
      font-size: 26px;
      font-weight: 800;
      margin-bottom: 16px;
      line-height: 1.2;
      font-family: sans-serif;
    }

    .cta-container p {
      color: var(--text);
      font-size: 16px;
      margin-bottom: 40px;
      font-family: sans-serif;
    }

    .cta-actions {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 24px;
    }

    .contact-inline {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
      font-size: 16px;
    }

    .contact-inline span {
      display: flex;
      align-items: center;
      gap: 8px;
      color: var(--text);
      font-weight: 500;
      font-family: sans-serif;
    }

    /* ========================================
   MOBILE RESPONSIVE - PERFECTLY FIXED
   ======================================== */

    /* Tablet */
    @media (max-width: 992px) {
      .dashboard-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
      }

      .dashboard-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        justify-items: center;
      }
    }

    /* Mobile Large */
    @media (max-width: 768px) {
      .network-dashboard-hero {
        padding: 80px 20px 60px;
      }

      .dashboard-grid {
        gap: 40px;
      }

      .dashboard-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
        margin-bottom: 30px;
      }

      .stat-card {
        padding: 20px 12px;
      }

      .stat-value {
        font-size: 26px;
      }

      .main-title {
        font-size: 28px;
      }

      .section-title h2,
      .coverage-text h2,
      .cta-container h2 {
        font-size: 24px;
      }

      .capabilities-container {
        grid-template-columns: 1fr;
        gap: 24px;
      }

      .vendor-item {
        flex-direction: row;
        padding: 20px 16px;
      }

      .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
      }

      .metric-card {
        padding: 20px 12px;
      }
    }

    /* Mobile Small */
    @media (max-width: 480px) {
      .network-dashboard-hero {
        padding: 60px 16px 40px;
      }

      .dashboard-stats {
        grid-template-columns: 1fr;
        gap: 16px;
      }

      .stat-card {
        padding: 24px 16px;
      }

      .stat-value {
        font-size: 24px;
      }

      .main-title {
        font-size: 26px;
      }

      .service-badge {
        font-size: 14px;
        padding: 8px 20px;
      }

      .hero-subtitle {
        font-size: 16px;
      }

      .section-title {
        margin-bottom: 40px;
      }

      .section-title h2 {
        font-size: 22px;
      }

      .capabilities-container {
        gap: 20px;
      }

      .capability-card {
        padding: 24px 20px;
      }

      .vendor-stack {
        gap: 12px;
      }

      .vendor-item {
        flex-direction: column;
        text-align: center;
        gap: 12px;
        padding: 20px 16px;
      }

      .metrics-grid {
        grid-template-columns: 1fr;
        gap: 16px;
      }

      .metric-card {
        padding: 20px 16px;
      }

      .metric-value {
        font-size: 22px;
      }

      .cta-actions {
        gap: 20px;
      }

      .contact-inline {
        flex-direction: column;
        align-items: center;
        gap: 12px;
      }
    }

    /* Extra Small Mobile */
    @media (max-width: 360px) {
      .dashboard-stats {
        gap: 12px;
      }

      .stat-card {
        padding: 20px 12px;
      }

      .main-title {
        font-size: 24px;
      }
    }
  }
}
/* Just the updated media query - REVERSE COLUMNS ORDER */

@media (max-width: 992px) {
  .dashboard-grid {
    grid-template-columns: 1fr;
    gap: 0px;
    order: 2; /* Content moves BELOW stats */
  }

  .dashboard-stats {
    order: 1; /* Stats move to TOP */
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    justify-items: center;
    margin-bottom: 30px;
  }

  .network-maint-title {
    font-size: 25px !important;
    background-color: none !important;
    background: none !important;
  }
}
.network-maint-title {
  font-size: 22px !important;
  background-color: none !important;
  background: none !important;
}
