/* --- RESET & VARIABLES --- */
:root {
  /* Brand Palette */
  --color-light-bg: #f2fcf5;
  --color-navy: #02283b;
  --color-green-start: #208963;
  --color-green-end: #05563a;
  --color-white: #ffffff;
  --color-gray: #4b5563;

  /* Gradients */
  --gradient-primary: linear-gradient(
    135deg,
    var(--color-green-start),
    var(--color-green-end)
  );

  /* New Light Gradient for CTA */
  --gradient-light: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);

  /* Spacing */
  --container-padding: 1.5rem;
  --max-width: 1200px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* border: 1px solid red; */
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Inter", sans-serif;
  color: var(--color-navy);
  line-height: 1.6;
  background-color: var(--color-light-bg);
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
}

/* --- TYPOGRAPHY --- */
h1,
h2,
h3,
h4,
h5 {
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--color-navy);
}
h1 {
  font-size: 2.5rem;
}
h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
h5 {
  font-size: 1rem;
}
p {
  margin-bottom: 1rem;
  color: var(--color-gray);
}

/* --- UTILITY CLASSES --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}
.section {
  padding: 4rem 0;
}
.sub-heading {
  color: var(--color-green-start);
  font-size: 0.85rem;
  letter-spacing: 3px;
  margin-bottom: 0.5rem;
  font-weight: 700;
  text-transform: uppercase;
}
.text-highlight {
  color: var(--color-green-start);
}
.mt-4 {
  margin-top: 1.5rem;
}
.mt-8 {
  margin-top: 2rem;
}
.mb-8 {
  margin-bottom: 2rem;
}
.bg-white {
  background-color: white;
}
.bg-navy {
  background-color: var(--color-navy);
}
.text-white {
  color: white !important;
}
.text-gray-300 {
  color: #d1d5db !important;
}
.text-sm {
  font-size: 0.875rem;
}
.w-full {
  width: 100%;
}

/* --- BUTTONS --- */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 4px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}
.btn:active {
  transform: scale(0.98);
}
.btn-primary {
  background: var(--gradient-primary);
  color: white;
  border: none;
  box-shadow: 0 4px 15px rgba(32, 137, 99, 0.3);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(32, 137, 99, 0.5);
}
.btn-outline {
  border: 2px solid white;
  color: white;
}
.btn-secondary {
  background-color: var(--color-navy);
  color: white;
}
.btn-white {
  background-color: white;
  color: var(--color-navy);
}
/* --- VISIBILITY UTILITIES --- */
.desktop-only {
  display: none;
}

.mobile-only {
  display: block;
}

.center-btn {
  text-align: center;
  margin-top: 2rem;
}

/* --- ICONS & GRADIENTS --- */
.fa-solid,
.fa-brands {
  background: -webkit-linear-gradient(
    135deg,
    var(--color-green-start),
    var(--color-green-end)
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--color-green-start);
}
.btn .fa-solid,
.btn .fa-brands,
.icon-wrap .fa-solid,
.card-icon-wrap .fa-solid,
.card-icon-wrap .fa-brands,
.hero-pill .fa-solid,
.newsletter-form .fa-solid,
.quote-box .fa-solid,
.check-list .fa-solid,
.c-arrow .fa-solid,
.input-with-icon .fa-solid,
.mv-icon-box .fa-solid,
.floating-icon-only .fa-solid,
.cta-link-alt .fa-solid {
  background: none;
  -webkit-text-fill-color: initial;
  color: inherit;
}

/* =========================================
   NAVIGATION
   ========================================= */
.navbar {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  height: 80px;
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
.logo {
  font-size: 1.6rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--color-green-start);
  letter-spacing: -1px;
}
.logo img {
  height: 50px;
  width: auto;
  display: block;
}
.logo span {
  color: var(--color-navy);
}

.menu-toggle {
  display: block;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--color-navy);
  cursor: pointer;
  z-index: 1001;
}
.nav-menu {
  position: absolute;
  top: 80px;
  left: 0;
  width: 100%;
  background: white;
  flex-direction: column;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: none;
  border-top: 1px solid #eee;
}
.nav-menu.active {
  display: flex;
  gap: 1.5rem;
}
.nav-links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
}
.nav-item {
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--color-navy);
}
.nav-menu .btn-nav {
  width: 100%;
  text-align: center;
}
.dropdown-menu {
  display: none;
}

.glow-btn {
  background: var(--gradient-primary);
  color: white !important;
  border-radius: 50px;
  padding: 0.7rem 2rem;
  font-size: 0.95rem;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(32, 137, 99, 0.4);
  border: none;
  transition: all 0.3s ease;
}
.glow-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(32, 137, 99, 0.6);
}

/* --- SELLING HERO DESIGN --- */
.main-selling-hero {
  height: 100vh;
  min-height: 750px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-navy); /* Fallback */
}

.hero-overlay-advanced {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(2, 40, 59, 0.95) 0%,
    rgba(2, 40, 59, 0.8) 40%,
    rgba(2, 40, 59, 0.2) 100%
  );
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 10;
  width: 100%;
}

.hero-split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 4rem;
}

/* Left Content */
.hero-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 16px;
  background: rgba(32, 137, 99, 0.15);
  border: 1px solid rgba(32, 137, 99, 0.3);
  border-radius: 50px;
  color: var(--color-green-start);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2rem;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--color-green-start);
  border-radius: 50%;
  animation: pulse-green 2s infinite;
}

.selling-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.text-glow {
  color: var(--color-green-start);
  text-shadow: 0 0 30px rgba(32, 137, 99, 0.5);
}

.hero-description {
  font-size: 1.2rem;
  color: #cbd5e1;
  max-width: 550px;
  margin-bottom: 3rem;
}

/* Action Group */
.hero-action-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  margin-bottom: 4rem;
}

.hero-whatsapp-link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
  font-weight: 700;
  transition: 0.3s;

  border: 1px solid var(--color-green-start);
  padding: 8px;
  border-radius: 6px;
}

.wa-icon-circle {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

/* Trust Elements */
.hero-trust-row {
  display: flex;
  gap: 3rem;
  align-items: center;
  justify-content: center;
}

.trust-item {
  display: flex;
  flex-direction: column;
}

.trust-item strong {
  font-size: 1.5rem;
  color: white;
}

.trust-item span {
  font-size: 0.85rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.trust-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
}

/* Right Visuals */
.hero-visual-right {
  position: relative;
  height: 400px;
}

.glass-stat-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: white;
  width: 240px;
}

.glass-stat-card i {
  font-size: 1.5rem;
  color: var(--color-green-start);
}

.card-val {
  display: block;
  font-size: 1.2rem;
  font-weight: 800;
}

.card-lab {
  font-size: 0.75rem;
  color: #94a3b8;
  text-transform: uppercase;
}

.floating-card-1 {
  top: 10%;
  right: 0;
}
.floating-card-2 {
  bottom: 20%;
  left: 0;
}

@keyframes pulse-green {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(32, 137, 99, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(32, 137, 99, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(32, 137, 99, 0);
  }
}

@media (max-width: 992px) {
  .hero-split {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-content-left {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-action-group {
    flex-direction: column;
    gap: 1.5rem;
  }
  .hero-visual-right {
    display: none;
  }
  .hero-overlay-advanced {
    background: radial-gradient(
      circle at center,
      rgba(2, 40, 59, 0.8) 0%,
      rgba(2, 40, 59, 0.95) 100%
    );
  }
}

/* =========================================
   HERO SECTIONS
   ========================================= */
.hero,
.page-hero {
  background-image: url("images/trash-cans.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  text-align: center;
  margin-top: 80px;
}
.hero {
  height: 90vh;
}
.page-hero {
  height: 60vh;
}
.hero .overlay,
.page-hero .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(2, 40, 59, 0.9), rgba(2, 40, 59, 0.7));
}
.hero-content {
  position: relative;
  z-index: 10;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 25px;
  border: 1px solid rgba(32, 137, 99, 0.8);
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(5px);
  color: #fff;
  box-shadow: 0 0 20px rgba(32, 137, 99, 0.4);
  margin-bottom: 25px;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  animation: float 3s ease-in-out infinite;
}
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(0px);
  }
}

.hero h1,
.page-hero h1 {
  color: white;
  margin-bottom: 1.5rem;
}
.hero p,
.page-hero p {
  color: #e0e0e0;
  max-width: 600px;
  margin: 0 auto 2rem auto;
  font-size: 1.1rem;
}
.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  align-items: center;
}

/* =========================================
   GENERAL SECTIONS
   ========================================= */
.grid-2 {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.grid-3 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.image-col img {
  border-radius: 8px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.text-link {
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--color-green-start);
  text-underline-offset: 4px;
}
.check-list li {
  margin-bottom: 0.8rem;
  font-weight: 600;
  color: var(--color-navy);
  display: flex;
  align-items: center;
  gap: 10px;
}
.check-list i {
  color: var(--color-green-start);
}

.value-prop,
.philosophy-section {
  background-color: var(--color-navy);
  color: white;
}
.value-prop h2,
.philosophy-section h2 {
  color: white;
}
.value-prop p,
.philosophy-section p {
  color: #cbd5e1;
}

.grid-4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}
.grid-3 {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 3rem;
}

.service-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}
.card-image {
  height: 200px;
  background-size: cover;
  background-position: center;
}
.card-content {
  padding: 1.5rem;
}
.card-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.card-content a {
  color: var(--color-green-start);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.card {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 8px;
  border-bottom: 4px solid var(--color-green-start);
}
.icon-box {
  font-size: 2rem;
  color: var(--color-green-start);
  margin-bottom: 1rem;
}
.card h3 {
  color: white;
}

.how-it-works {
  background-color: var(--color-light-bg);
}
.center-text {
  text-align: center;
  margin-bottom: 3rem;
}
.section-desc {
  max-width: 600px;
  margin: 1.5rem auto 0 auto;
  color: var(--color-gray);
  font-size: 1.05rem;
}
.divider {
  width: 80px;
  height: 4px;
  background: var(--gradient-primary);
  margin: 0.5rem auto;
}
.steps-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.step-item {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}
.step-number {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem auto;
  border-radius: 50%;
  border: 3px solid var(--color-green-start);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-navy);
}
.step-number.check {
  background: var(--color-navy);
  border: none;
  color: white;
}

.quote-box {
  margin-top: 2rem;
  padding-left: 1.5rem;
  border-left: 4px solid var(--color-green-start);
}
.quote-box i {
  font-size: 1.5rem;
  color: var(--color-green-start);
  margin-bottom: 0.5rem;
  display: block;
}
.quote-box p {
  font-style: italic;
  font-weight: 600;
  color: var(--color-navy);
  font-size: 1.1rem;
  margin: 0;
}

.stacked-images {
  position: relative;
}
.floating {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: white;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 4px solid var(--color-green-start);
  min-width: 200px;
}
.card-icon-wrap {
  width: 45px;
  height: 45px;
  background: rgba(32, 137, 99, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-green-start);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.card-text {
  display: flex;
  flex-direction: column;
}
.stat-num {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--color-green-start);
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--color-navy);
}

.material-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  transition: background 0.3s;
}
.material-card:hover {
  background: rgba(255, 255, 255, 0.1);
}
.material-icon {
  font-size: 2.5rem;
  color: var(--color-green-start);
  margin-bottom: 1rem;
  display: block;
}
.material-card h3 {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.material-card p {
  color: #d1d5db;
  font-size: 0.9rem;
  margin: 0;
}

.map-frame {
  height: 300px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.map-frame iframe {
  filter: grayscale(100%) invert(100%) contrast(90%);
}

/* --- COMPACT DARK CTA SECTION --- */
.cta-section {
  position: relative;
  background: linear-gradient(
    135deg,
    var(--color-green-end) 0%,
    var(--color-green-start) 100%
  );
  padding: 3.5rem 0; /* Compact height */
  overflow: hidden;
  color: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15); /* Lift it slightly */
}

/* Flex Layout for Desktop */
.cta-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
  z-index: 5; /* Above decoration */
}

/* Text Side */
.cta-text h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: white;
}

.cta-text p {
  color: #94a3b8; /* Muted blue-grey for elegance */
  margin-bottom: 0;
  font-size: 1.1rem;
  max-width: 500px;
}

/* Action Side */
.cta-action {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-shrink: 0;
}

/* Custom Button Tweak for this section */
.cta-btn {
  padding: 1rem 2.5rem;
  font-size: 1rem;
  box-shadow: 0 0 20px rgba(32, 137, 99, 0.4); /* Stronger glow */
}
.cta-btn:hover {
  box-shadow: 0 0 30px rgba(32, 137, 99, 0.6);
  transform: translateY(-2px);
}

/* Secondary Link */
.cta-link-alt {
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.8;
  transition: opacity 0.3s;
}
.cta-link-alt:hover {
  opacity: 1;
  text-decoration: underline;
}

/* --- DECORATIVE ELEMENTS (The "Enticing" Part) --- */

/* 1. Background Watermark Icon */
.cta-watermark {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%) rotate(-15deg);
  font-size: 15rem;
  color: white;
  opacity: 0.03; /* Very faint */
  pointer-events: none;
  display: none;
}

/* 2. Green Glow Blob */
.cta-glow {
  position: absolute;
  left: 20%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  background: var(--color-green-start);
  filter: blur(120px);
  opacity: 0.15;
  pointer-events: none;
  border-radius: 50%;
}

/* --- MOBILE RESPONSIVENESS FOR CTA --- */
@media (max-width: 768px) {
  .cta-layout {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .cta-text p {
    margin: 0 auto; /* Center text block */
  }

  .cta-action {
    flex-direction: column;
    width: 100%;
  }

  .cta-btn {
    width: 100%;
  }

  .cta-watermark {
    right: -20%;
    font-size: 10rem;
  }
}

.mv-box {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}
.mv-icon-box {
  width: 50px;
  height: 50px;
  background: rgba(32, 137, 99, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-green-start);
  font-size: 1.5rem;
  flex-shrink: 0;
}
.mv-content h5 {
  color: var(--color-navy);
  margin-bottom: 0.5rem;
}
.mv-content p {
  font-size: 0.95rem;
  margin: 0;
}

/* --- LIGHT CTA SECTION (About Page) --- */
.cta-light {
  background: var(--gradient-light);
  position: relative;
  overflow: hidden;
  padding: 2rem 0;
}
.cta-light h2 {
  color: var(--color-navy);
}
.cta-light p {
  color: var(--color-gray);
}

.floating-icon-only {
  position: absolute;
  width: 60px;
  height: 60px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-green-start);
  font-size: 1.5rem;
  animation: float 4s ease-in-out infinite;
  z-index: 2;
}
.icon-pos-1 {
  top: 10%;
  right: -20px;
  /* right: 15%; */
  animation-delay: 0s;
}
.icon-pos-2 {
  bottom: 10%;
  left: -20px;
  animation-delay: 2s;
}

/* =========================================
   CONTACT PAGE SPECIFICS
   ========================================= */
.contact-cards-stack {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.contact-card {
  display: flex;
  align-items: center;
  background: white;
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}
.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-left: 4px solid var(--color-green-start);
}
.contact-card .card-icon-wrap {
  background: var(--color-light-bg);
  color: var(--color-green-start);
  width: 40px;
  height: 40px;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.contact-card:hover .card-icon-wrap {
  background: var(--gradient-primary);
  color: white;
}
.card-details {
  flex: 1;
  margin-left: 1rem;
  display: flex;
  flex-direction: column;
}
.c-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 700;
  color: #9ca3af;
}
.c-value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-navy);
}
.c-arrow {
  color: #d1d5db;
  transition: transform 0.3s ease;
}
.contact-card:hover .c-arrow {
  color: var(--color-green-start);
  transform: translateX(5px);
}

.hours-box {
  background: var(--color-navy);
  padding: 2rem;
  border-radius: 12px;
  color: white;
}
.hours-box h5 {
  color: var(--color-green-start);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hours-box ul li {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.5rem 0;
  font-size: 0.9rem;
}
.hours-box ul li:last-child {
  border: none;
}

.form-wrapper {
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}
.contact-form h3 {
  margin-bottom: 0.5rem;
}
.form-group {
  margin-bottom: 1.5rem;
}
.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--color-navy);
}
.input-with-icon {
  position: relative;
}
.input-with-icon i {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
}
.input-with-icon input,
.input-with-icon select {
  width: 100%;
  padding: 0.9rem 1rem 0.9rem 3rem;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  background: #f9fafb;
  transition: all 0.3s;
}
.input-with-icon input:focus,
.input-with-icon select:focus,
textarea:focus {
  outline: none;
  border-color: var(--color-green-start);
  background: white;
  box-shadow: 0 0 0 3px rgba(32, 137, 99, 0.1);
}
textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  background: #f9fafb;
  resize: vertical;
}
.map-section-full iframe {
  filter: grayscale(100%) invert(100%) contrast(90%);
  display: block;
}

/* =========================================
   FOOTER
   ========================================= */
footer {
  background-color: var(--color-navy);
  color: white;
  padding: 5rem 0 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand h3 {
  color: white;
  font-size: 1.8rem;
}
.footer-brand span {
  color: var(--color-green-start);
}
.footer-brand p {
  color: #9ca3af;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}
.social-icons {
  display: flex;
  gap: 1rem;
}
.social-icons a {
  font-size: 1.2rem;
  color: #9ca3af;
  transition: color 0.3s;
}
.social-icons a:hover {
  color: var(--color-green-start);
}
footer h4 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  letter-spacing: 1px;
}

.link-list li {
  margin-bottom: 0.8rem;
}
.link-list a {
  color: #d1d5db;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}
.link-list i {
  font-size: 0.7rem;
  color: var(--color-green-start);
  transition: transform 0.3s ease;
}
.link-list a:hover {
  color: white;
  transform: translateX(5px);
}
.link-list a:hover i {
  transform: translateX(3px);
}

.footer-contact li {
  display: flex;
  gap: 10px;
  margin-bottom: 1rem;
  color: #d1d5db;
}
.footer-contact i {
  color: var(--color-green-start);
  margin-top: 5px;
}

.footer-newsletter p {
  font-size: 0.9rem;
  color: #9ca3af;
}
.newsletter-form {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}
.newsletter-form input {
  flex: 1;
  padding: 0.8rem;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: white;
}
.newsletter-form button {
  background: var(--color-green-start);
  color: white;
  border: none;
  border-radius: 4px;
  padding: 0 1.2rem;
  cursor: pointer;
  transition: background 0.3s;
}
.newsletter-form button:hover {
  background: var(--color-green-end);
}
.footer-bottom {
  text-align: center;
  color: #6b7280;
  font-size: 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
}
.logo-footer {
  width: 8em;
  margin-left: 2em;
  margin-bottom: 1em;
}

/* =========================================
   MEDIA QUERY: TABLET (Min-width 768px)
   ========================================= */
@media (min-width: 768px) {
  h1 {
    font-size: 3.5rem;
  }
  h2 {
    font-size: 2.5rem;
  }
  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }
  .grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
  .grid-3 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
  .reverse-layout {
    direction: rtl;
  }
  .reverse-layout > * {
    direction: ltr;
  }

  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .steps-grid {
    flex-direction: row;
    justify-content: space-between;
  }
  .step-item {
    flex: 1;
  }
  .desktop-only {
    display: inline-block;
  }
  .mobile-only {
    display: none;
  }
  .section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    text-align: left;
  }
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  }
  /* Removed old CTA button flex direction rule to prevent conflicts */
  .contact-info,
  .form-wrapper {
    align-self: start;
  }
}

/* =========================================
   MEDIA QUERY: DESKTOP NAVIGATION (Min-width 992px)
   ========================================= */
@media (min-width: 992px) {
  .menu-toggle {
    display: none;
  }
  .nav-menu {
    display: flex;
    position: static;
    flex-direction: row;
    width: auto;
    background: none;
    box-shadow: none;
    padding: 0;
    border: none;
    align-items: center;
    gap: 2.5rem;
  }
  .nav-links {
    flex-direction: row;
    gap: 2rem;
    width: auto;
    align-items: center;
    margin: 0;
  }
  .nav-links li {
    margin: 0;
    display: flex;
    align-items: center;
  }
  .nav-menu .btn-nav {
    width: auto;
    margin: 0;
  }
  .nav-item {
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
    display: inline-block;
  }
  .nav-item::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
  }
  .nav-item:hover {
    color: var(--color-green-start);
  }
  .nav-item:hover::after {
    width: 100%;
  }
  .nav-item.active::after {
    width: 100%;
  }

  .dropdown-parent {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
  }
  .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border-top: 4px solid var(--color-green-start);
    width: 450px;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1100;
    display: block;
  }
  .dropdown-parent:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(15px);
  }
  .dropdown-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .dropdown-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px;
    border-radius: 8px;
    transition: background 0.2s ease;
  }
  .dropdown-item:hover {
    background-color: var(--color-light-bg);
  }
  .icon-wrap {
    width: 35px;
    height: 35px;
    background: rgba(32, 137, 99, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-green-start);
    font-size: 0.9rem;
  }
  .dropdown-item:hover .icon-wrap {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 10px rgba(32, 137, 99, 0.3);
  }
  .d-title {
    display: block;
    font-weight: 700;
    color: var(--color-navy);
    font-size: 0.9rem;
  }
  .d-desc {
    display: block;
    font-size: 0.75rem;
    color: #888;
    line-height: 1.3;
  }
}

/* --- HERO PARALLAX UPDATES --- */

/* 1. Remove static image from parent and ensure masking */
.hero {
  background-image: none;
  overflow: hidden;
  position: relative;
}

/* 2. Style the new background element */
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 115%; /* Extra height for parallax movement */
  background-image: url("images/trash-cans.jpg");
  background-size: cover;
  background-position: center;
  z-index: 0; /* Behind overlay */
  will-change: transform; /* Performance optimization */
}

/* 3. Ensure Overlay stays on top of bg but behind text */
.hero .overlay {
  z-index: 1;
}

/* --- GREEN BAG GALLERY & HUB EXTENSION --- */
.hub-extension {
  background: rgba(32, 137, 99, 0.05);
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid var(--color-green-start);
}

.hub-extension h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.green-bag-gallery {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.gallery-main img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 12px;
}

.gallery-sub {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.gallery-sub img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
}

.img-rounded {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.img-rounded:hover {
  transform: scale(1.02);
}

/* Responsive adjustment */
@media (max-width: 768px) {
  .gallery-main img {
    height: 250px;
  }
  .gallery-sub img {
    height: 130px;
  }
}

/* --- TAGLINE FLOW SECTION --- */
.tagline-flow-section {
  background: linear-gradient(135deg, var(--color-navy) 0%, #061a25 100%);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.flow-container {
  position: relative;
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  gap: 6rem;
}

.flow-line {
  position: absolute;
  left: 50%;
  top: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, var(--color-green-start), transparent);
  opacity: 0.3;
  z-index: 1;
}

.flow-step {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  position: relative;
  z-index: 2;
}

.flow-step.reverse {
  flex-direction: row-reverse;
}

.flow-content {
  flex: 1;
  color: white;
}

.flow-number {
  font-size: 4rem;
  font-weight: 900;
  color: rgba(32, 137, 99, 0.2);
  display: block;
  line-height: 1;
  margin-bottom: 1rem;
}

.flow-content h3 {
  color: var(--color-green-start);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.flow-main-msg {
  font-size: 1.25rem;
  font-weight: 600;
  color: white;
  margin-bottom: 1rem;
}

.flow-details small {
  color: #94a3b8;
  display: block;
  border-left: 2px solid var(--color-green-start);
  padding-left: 1rem;
}

.flow-image {
  flex: 1;
}

.tilted-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.5);
  transform: rotate(3deg);
  transition: transform 0.5s ease;
}

.tilted-img.tilt-left {
  transform: rotate(-3deg);
}

.flow-step:hover .tilted-img {
  transform: rotate(0deg) scale(1.05);
}

@media (max-width: 768px) {
  .flow-line {
    display: none;
  }
  .flow-step,
  .flow-step.reverse {
    flex-direction: column;
    text-align: center;
  }
  .flow-details small {
    border-left: none;
    border-top: 2px solid var(--color-green-start);
    padding: 1rem 0 0 0;
  }
}

/* --- PROCESS FLOW SECTION --- */
.process-flow-section {
  background-color: var(--color-white);
  overflow: hidden;
}

.process-stream {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 5rem;
  position: relative;
}

.process-node {
  position: relative;
  transition: transform 0.4s ease;
}

.node-image {
  position: relative;
  margin-bottom: 2rem;
}

.node-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  filter: grayscale(30%);
  transition: all 0.4s ease;
}

.node-number {
  position: absolute;
  top: -15px;
  left: -15px;
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.2rem;
  box-shadow: 0 5px 15px rgba(32, 137, 99, 0.4);
}

.node-icon {
  width: 45px;
  height: 45px;
  background: rgba(32, 137, 99, 0.1);
  color: var(--color-green-start);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.node-content h3 {
  font-size: 1.4rem;
  color: var(--color-navy);
  margin-bottom: 1rem;
}

.node-specs {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #eee;
}

.node-specs li {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-gray);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.node-specs i {
  color: var(--color-green-start);
  font-size: 0.8rem;
}

/* Hover Effects */
.process-node:hover .node-img {
  filter: grayscale(0%);
  transform: translateY(-10px);
}

/* Responsive */
@media (max-width: 992px) {
  .process-stream {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .process-stream {
    grid-template-columns: 1fr;
  }
}

/* --- WASTE TO IMPACT (Refined & Catchy) --- */
/* --- WASTE TO IMPACT HERO (Achievement Design) --- */
.wti-hero-achieve {
  min-height: 85vh;
  background-color: var(--color-navy);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  margin-top: 80px; /* Offset for fixed navbar */
  padding: 4rem 0;
}

.wti-hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  position: relative;
  z-index: 2;
  padding: 0 5rem;
}

/* Left Text Side */
.wti-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: #cbd5e1;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.wti-title-large {
  font-size: 4.5rem;
  line-height: 0.95;
  color: white;
  margin-bottom: 1.5rem;
  font-weight: 900;
  text-transform: uppercase;
}

.wti-lead {
  color: #94a3b8;
  font-size: 1.2rem;
  max-width: 500px;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.wti-lead strong {
  color: white;
}

.wti-stats-row {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  width: fit-content;
}

.wti-stat {
  display: flex;
  flex-direction: column;
}

.stat-val {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--color-green-start);
}

.stat-label {
  font-size: 0.8rem;
  color: #cbd5e1;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
}

/* Right Visual Side */
.wti-visual-side {
  position: relative;
  display: flex;
  justify-content: center;
}

/* The Impact Card */
.impact-card-main {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #cbd5e1;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.live-dot {
  width: 8px;
  height: 8px;
  background: #ef4444; /* Recording Red */
  border-radius: 50%;
  box-shadow: 0 0 10px #ef4444;
  animation: blink 2s infinite;
}

.transformation-flow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.flow-stage {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  padding: 1rem 1.5rem;
  border-radius: 12px;
  width: 100%;
  transition: transform 0.3s;
}

.active-stage {
  background: linear-gradient(
    135deg,
    var(--color-green-start),
    var(--color-green-end)
  );
  border: none;
  box-shadow: 0 10px 30px rgba(32, 137, 99, 0.3);
}

.stage-icon {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.input-icon {
  background: rgba(255, 255, 255, 0.1);
  color: #94a3b8;
}

.output-icon {
  background: white;
  color: var(--color-green-start);
}

.stage-info {
  display: flex;
  flex-direction: column;
}

.stage-info .label {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.stage-info .value {
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
}

.flow-arrow {
  color: rgba(255, 255, 255, 0.2);
  font-size: 1.5rem;
  animation: bounceArrow 2s infinite;
}

.card-footer {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-green-start);
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Background Glows */
.glow-blotch {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  opacity: 0.4;
}

.blotch-1 {
  width: 300px;
  height: 300px;
  background: var(--color-green-start);
  top: -50px;
  right: -50px;
}

.blotch-2 {
  width: 200px;
  height: 200px;
  background: #0ea5e9; /* Light blue for contrast */
  bottom: -50px;
  left: -50px;
}

/* Animations */
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
  100% {
    opacity: 1;
  }
}
@keyframes bounceArrow {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(5px);
  }
}

/* Responsive */
@media (max-width: 992px) {
  .wti-hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 0;
  }
  .wti-text-side {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .wti-title-large {
    font-size: 3rem;
  }
  .wti-stats-row {
    justify-content: center;
  }
  .impact-card-main {
    margin: 0 auto;
  }
}

/* --- IMPACT DASHBOARD SECTION --- */
.wti-impact-dashboard {
  background: linear-gradient(180deg, #0f172a 0%, #02283b 100%);
  color: white;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.dashboard-quote {
  font-size: 1.5rem;
  font-style: italic;
  color: var(--color-green-start);
  opacity: 0.9;
  margin-top: 1rem;
  font-family: "Inter", serif;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.dash-module {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1.5rem;
  transition: transform 0.3s ease;
}

.dash-module:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-5px);
  border-color: var(--color-green-start);
}

/* --- THE VISUAL SCREENS --- */
.module-screen {
  background: #000;
  height: 180px;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.module-info h3 {
  font-size: 1.5rem;
  color: white;
  margin-bottom: 0.5rem;
}

.module-info p {
  color: #94a3b8;
  font-size: 0.95rem;
  margin: 0;
}

/* 1. Radar Animation */
.radar-ui {
  width: 120px;
  height: 120px;
  position: relative;
}

.radar-circles {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(32, 137, 99, 0.3);
  border-radius: 50%;
}
.radar-circles::before {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(32, 137, 99, 0.3);
  border-radius: 50%;
}

.radar-sweep {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    rgba(32, 137, 99, 0.5) 360deg
  );
  animation: radarSpin 2s linear infinite;
  opacity: 0.2;
}

.center-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--color-green-start);
  font-size: 1.5rem;
  z-index: 2;
}

/* 2. Data Bars Animation */
.bars-ui {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 60px;
}

.data-bar {
  width: 15px;
  background: var(--color-green-start);
  border-radius: 2px 2px 0 0;
  animation: barGrow 1.5s ease-in-out infinite alternate;
}
.b1 {
  height: 30%;
  animation-delay: 0s;
}
.b2 {
  height: 70%;
  animation-delay: 0.2s;
}
.b3 {
  height: 50%;
  animation-delay: 0.4s;
}
.b4 {
  height: 90%;
  animation-delay: 0.6s;
}

.screen-overlay-val {
  position: absolute;
  top: 10px;
  right: 15px;
  font-family: monospace;
  color: var(--color-green-start);
  font-weight: 700;
}

/* 3. Trace Path Animation */
.trace-ui {
  width: 80%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.node {
  width: 12px;
  height: 12px;
  background: #334155;
  border: 2px solid var(--color-green-start);
  border-radius: 50%;
  z-index: 2;
}

.connection-line {
  flex: 1;
  height: 2px;
  background: #334155;
  position: relative;
  margin: 0 -2px;
}

.packet {
  width: 40px;
  height: 4px;
  background: var(--color-green-start);
  border-radius: 2px;
  position: absolute;
  top: -1px;
  left: 0;
  box-shadow: 0 0 10px var(--color-green-start);
  animation: dataFlow 2s linear infinite;
}

.screen-overlay-icon {
  position: absolute;
  bottom: 10px;
  right: 15px;
  color: rgba(255, 255, 255, 0.2);
  font-size: 1.5rem;
}

/* Keyframes */
@keyframes radarSpin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes barGrow {
  0% {
    opacity: 0.5;
    transform: scaleY(0.8);
  }
  100% {
    opacity: 1;
    transform: scaleY(1.2);
  }
}
@keyframes dataFlow {
  0% {
    left: 0;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    left: 100%;
    opacity: 0;
  }
}

/* Responsive */
@media (max-width: 992px) {
  .dashboard-grid {
    grid-template-columns: 1fr;
  }
}
