﻿:root {
  --eco-bg: #070d1b;
  --eco-bg-2: #0e1528;
  --eco-text: #e9eef9;
  --eco-muted: #a4b0c7;
  --eco-accent: #68f0ff;
  --eco-accent-2: #9f7bff;
  --eco-glass: rgba(255, 255, 255, 0.08);
  --eco-border: rgba(104, 240, 255, 0.22);
  --eco-shadow: 0 18px 48px rgba(0, 0, 0, 0.35);
  --eco-radius: 16px;
}

.eco-topbar {
  position: relative;
  z-index: 30;
  backdrop-filter: blur(14px);
  background: linear-gradient(120deg, rgba(6, 10, 24, 0.86), rgba(14, 20, 40, 0.88));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.eco-shell {
  width: min(1200px, calc(100% - 2rem));
  margin: 0 auto;
}

.eco-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 0;
}

.eco-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: var(--eco-text);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.eco-brand img {
  height: 34px;
  width: auto;
  object-fit: contain;
}

.eco-route-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.45rem;
}

.eco-route-chip {
  color: var(--eco-muted);
  text-decoration: none;
  font-size: 0.78rem;
  line-height: 1;
  padding: 0.42rem 0.72rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.eco-route-chip:hover,
.eco-route-chip.eco-active {
  color: #ffffff;
  border-color: rgba(104, 240, 255, 0.56);
  background: linear-gradient(140deg, rgba(104, 240, 255, 0.22), rgba(159, 123, 255, 0.24));
  transform: translateY(-1px);
}

.eco-contact-strip {
  margin-top: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(125deg, rgba(14, 21, 40, 0.84), rgba(11, 17, 32, 0.9));
  border-radius: var(--eco-radius);
  padding: 0.95rem 1rem;
  color: #d4deef;
  font-size: 0.86rem;
  box-shadow: var(--eco-shadow);
}

.eco-contact-strip a {
  color: #ffffff;
  text-decoration: none;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.35);
}

.eco-contact-strip a:hover {
  border-bottom-color: rgba(104, 240, 255, 0.8);
}

.eco-contact-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.45rem 1rem;
}

.eco-divider {
  opacity: 0.5;
}

.eco-icon-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 0.38rem 0.7rem;
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff !important;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none !important;
  border-bottom: none !important;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.eco-icon-link:hover {
  transform: translateY(-1px);
  border-color: rgba(104, 240, 255, 0.72);
  background: rgba(104, 240, 255, 0.12);
}

.eco-icon-link svg {
  width: 15px;
  height: 15px;
  display: block;
}

.eco-footer {
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(180deg, rgba(6, 10, 20, 0.92), rgba(4, 8, 16, 0.96));
  color: #cad6eb;
}

.eco-footer-inner {
  width: min(1200px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1.15rem 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.eco-footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
}

.eco-footer-brand img {
  height: 34px;
  width: auto;
}

.eco-footer-links {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.eco-footer-links a {
  color: #dbe5f8;
  text-decoration: none;
  font-size: 0.82rem;
}

.eco-footer-links a:hover {
  color: #ffffff;
}

.eco-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.eco-reveal.eco-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .eco-topbar-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .eco-route-chips {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .eco-brand img,
  .eco-footer-brand img {
    height: 30px;
  }

  .eco-route-chip {
    font-size: 0.74rem;
    padding: 0.4rem 0.64rem;
  }
}
