/* ---------- VLAN TECHS - CLICKANERD.COM USA ---------- */
/* ---------- TECH CONTACT - ROUTING OUTBOUND TEAMVIEWER RULES ---------- */
/* ---------- COPYRIGHT 2025 NERDSOFT LLC ---------- */


/* ---------- GLOBAL ---------- */
* { box-sizing:border-box; margin:0; padding:0; }
body {
  background:#111;
  color:#fff;
  font-family:Arial,Helvetica,sans-serif;
  line-height:1.6;
  min-height:100vh;
}
#page-wrapper { display:flex; flex-direction:column; min-height:100vh; }

/* ---------- HEADER ---------- */
header {
  background:rgba(20,20,20,0.85);
  border-bottom:1px solid #333;
  text-align:center;
  padding:15px 0 10px;
  backdrop-filter:blur(8px);
  box-shadow:0 4px 20px rgba(0,0,0,0.8);
  position:sticky;
  top:0;
  z-index:1000;
}
header a.logo-link {
  display:inline-block;
  cursor:pointer;
  text-decoration:none;
}
header a.logo-link img {
  height:65px;
  filter:drop-shadow(0 0 6px rgba(0,212,255,0.6));
  transition:transform .3s, filter .3s;
}
header a.logo-link:hover img {
  transform:scale(1.05);
  filter:drop-shadow(0 0 10px rgba(0,212,255,0.9));
}

/* ---------- CONTACT WRAPPER ---------- */
.contact-wrapper {
  max-width:900px;
  margin:40px auto;
  background:#1b1b1b;
  border-radius:14px;
  padding:25px 30px;
  box-shadow:0 0 25px rgba(0,0,0,0.7);
}
.contact-wrapper h2 {
  background:linear-gradient(145deg,#1f1f1f,#2b2b2b);
  box-shadow:inset 0 2px 4px rgba(255,255,255,0.1), 0 3px 8px rgba(0,0,0,0.7);
  border-radius:10px;
  padding:18px;
  text-align:center;
  color:#4db8ff;
  font-weight:bold;
  letter-spacing:1px;
  text-transform:uppercase;
  margin-bottom:25px;
}
.contact-block { margin-bottom:20px; }
.contact-block p { color:#ccc; }

/* ---------- LINKS ---------- */
a { color:#4db8ff; }
a:hover { text-decoration:underline; }

/* ---------- HOURS TABLE ---------- */
.hours-table {
  width:100%;
  border-collapse:collapse;
  text-align:left;
  margin-top:10px;
}
.hours-table th, .hours-table td {
  padding:10px;
  border:1px solid #333;
  color:#fff;
}

/* ---------- MOBILE ---------- */
.mobile-buttons {
  display:none;
  margin:25px auto;
  text-align:center;
}
.mobile-buttons a {
  display:inline-block;
  background:#007bff;
  color:white;
  padding:14px 20px;
  margin:10px;
  border-radius:8px;
  text-decoration:none;
  font-size:1.1em;
  font-weight:bold;
}
.mobile-buttons a.map-btn { background:#dc3545; }
.mobile-buttons a.text-btn { background:#28a745; }
@media (max-width:768px) {
  .contact-block, .hours-table { display:none; }
  .mobile-buttons { display:block; }
}

/* ---------- NATIONAL OPERATIONS MAP PANEL ---------- */
.ops-panel {
  background:linear-gradient(145deg,#171717,#222);
  border-radius:14px;
  border:1px solid rgba(77,184,255,0.25);
  box-shadow:
    0 0 20px rgba(0,0,0,0.8),
    0 0 25px rgba(0,212,255,0.15),
    inset 0 1px 3px rgba(255,255,255,0.05);
  padding:20px 20px 18px;
  margin:30px auto 10px;
  max-width:700px;
}
.ops-header {
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:10px;
}
.ops-title {
  font-size:0.95em;
  letter-spacing:1px;
  text-transform:uppercase;
  color:#7fd0ff;
}
.ops-status {
  font-size:0.8em;
  color:#9fe8ff;
  opacity:0.85;
}
.ops-status::before {
  content:"";
  display:inline-block;
  width:8px;
  height:8px;
  border-radius:50%;
  background:#00ff8a;
  box-shadow:0 0 8px rgba(0,255,138,0.9);
  margin-right:6px;
}

/* Map container */
.ops-map {
  position:relative;
  width:100%;
  padding-top:56%; /* aspect ratio roughly 16:9 */
  background:
    radial-gradient(circle at 0% 0%, rgba(0,212,255,0.10), transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(0,212,255,0.06), transparent 55%),
    #111;
  border-radius:10px;
  overflow:hidden;
  border:1px solid #333;
  box-shadow:inset 0 0 18px rgba(0,0,0,0.8);
}

/* Subtle grid overlay */
.ops-map::before {
  content:"";
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size:24px 24px;
  opacity:0.6;
  pointer-events:none;
}

/* Stylized US “blob” silhouette */
.ops-blob {
  position:absolute;
  left:8%;
  top:18%;
  width:84%;
  height:64%;
  background:
    radial-gradient(circle at 15% 40%, rgba(0,212,255,0.35), transparent 62%),
    radial-gradient(circle at 60% 25%, rgba(0,212,255,0.28), transparent 65%),
    radial-gradient(circle at 70% 80%, rgba(0,212,255,0.25), transparent 65%);
  filter:blur(4px);
  opacity:0.55;
}

/* Dots = “regional hubs” */
.map-dot {
  position:absolute;
  width:10px;
  height:10px;
  border-radius:50%;
  background:#00e1ff;
  box-shadow:
    0 0 6px rgba(0,225,255,0.8),
    0 0 14px rgba(0,225,255,0.7);
  transition:transform .3s, opacity .3s, box-shadow .3s;
  cursor:default;
}
.map-dot::after {
  content:"";
  position:absolute;
  left:-6px;
  top:-6px;
  width:22px;
  height:22px;
  border-radius:50%;
  border:1px solid rgba(0,225,255,0.4);
  box-shadow:0 0 10px rgba(0,225,255,0.45);
}

/* HQ stronger glow */
.map-dot.hq {
  background:#00ff8a;
  box-shadow:
    0 0 8px rgba(0,255,138,0.95),
    0 0 20px rgba(0,255,138,0.85);
}

/* Active vs inactive states */
.map-dot.active {
  transform:scale(1.6);
  opacity:1;
  animation:pulseDot 1.6s infinite ease-in-out;
}
.map-dot.inactive {
  opacity:0.35;
  animation:none;
}

/* Connector lines from HQ */
.map-line {
  position:absolute;
  height:2px;
  background:linear-gradient(90deg, rgba(0,212,255,0.3), rgba(0,212,255,0.9));
  transform-origin:left center;
  opacity:0.55;
  transition:opacity .3s, box-shadow .3s;
}
.map-line.active-line {
  opacity:1;
  box-shadow:0 0 12px rgba(0,212,255,0.9);
}
.map-line.inactive-line {
  opacity:0.25;
}

/* Legend & info text */
.ops-legend {
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:8px 18px;
  margin-top:10px;
  font-size:0.78em;
  color:#cfd6dd;
}
.ops-legend span {
  white-space:nowrap;
}
.ops-legend-dot {
  display:inline-block;
  width:8px;
  height:8px;
  border-radius:50%;
  background:#00e1ff;
  box-shadow:0 0 6px rgba(0,225,255,0.8);
  margin-right:5px;
}
.ops-legend-main {
  background:#00ff8a;
  box-shadow:0 0 6px rgba(0,255,138,0.9);
}
.ops-footnote {
  margin-top:6px;
  font-size:0.7em;
  color:#888;
  text-align:center;
}
#regionDisplay {
  margin-top:10px;
  font-size:0.88em;
  color:#ddd;
  text-align:center;
}

/* Tooltip style (simple) */
.dot-label {
  position:absolute;
  font-size:0.7em;
  color:#b9e6ff;
  text-shadow:0 0 4px rgba(0,0,0,0.9);
  pointer-events:none;
}

/* Animations */
@keyframes pulseDot {
  0%   { transform:scale(1.0); box-shadow:0 0 8px rgba(0,212,255,0.8); }
  50%  { transform:scale(1.7); box-shadow:0 0 18px rgba(0,212,255,1); }
  100% { transform:scale(1.0); box-shadow:0 0 8px rgba(0,212,255,0.8); }
}
/* ======================================================
   ROOT-STYLE HEADER + SLIDE MENU (CONTACT PAGE)
   ====================================================== */

/* Match root header layout */
#header {
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 18px;
}

/* Logo bar from root */
#header .logo-bar img {
  height:58px;
  filter:drop-shadow(0 0 6px rgba(0,212,255,0.6));
}

/* Menu toggle button */
.menuToggle {
  cursor:pointer;
  color:#fff;
  font-weight:bold;
  letter-spacing:1px;
  user-select:none;
  display:flex;
  align-items:center;
  gap:6px;
}

.menuToggle .icon {
  font-size:22px;
  line-height:1;
}

.menuToggle .label {
  font-size:12px;
  opacity:0.85;
}

/* Slide-out menu panel */
#menu {
  position:fixed;
  top:0;
  right:-320px;
  width:300px;
  height:100vh;
  background:#111;
  border-left:1px solid #333;
  box-shadow:-8px 0 25px rgba(0,0,0,0.9);
  padding:90px 18px 20px;
  transition:right .35s ease;
  z-index:2000;
}

/* Menu open */
#menu.active {
  right:0;
}

/* Menu list reset */
#menu ul {
  list-style:none;
  padding:0;
  margin:0;
}

/* Menu links */
#menu a {
  display:block;
  padding:10px 6px;
  color:#4db8ff;
  text-decoration:none;
  font-size:15px;
  border-bottom:1px solid rgba(255,255,255,0.06);
}

#menu a:hover {
  background:rgba(77,184,255,0.08);
}

/* Menu section labels */
.menu-group {
  margin-top:18px;
}

.menu-label {
  font-size:11px;
  letter-spacing:1px;
  color:#888;
  text-transform:uppercase;
}

/* Divider */
.menu-divider {
  height:1px;
  background:#333;
  margin:12px 0;
}

/* Dim page when menu open */
body.menu-open {
  overflow:hidden;
}

/* Dim background WITHOUT blurring menu */
body.menu-open::before {
  content:"";
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.55);
  z-index:1500;
}

/* Ensure menu is above overlay */
#menu {
  z-index:2000;
}

