
  :root {
    --footer-top-bg: #2e7491;   /* new top color */
    --footer-bottom-bg: #1f6987;/* new bottom color */
    --footer-text-light: #ffffff;
    --footer-text-dark: #0f1724;
  }

  /* Base footer container (keeps original layout) */
  .ys-footer {
    background: var(--footer-top-bg);
    color: var(--footer-text-light);
    padding: 36px 16px;
    border-top: 1px solid rgba(0,0,0,0.05);
    font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    box-sizing: border-box;
    width: 100%;
    left: 0;
    bottom: 0;
    position: static; /* will be toggled to fixed by JS when needed */
    z-index: 110;
  
      
  }

  .ys-container { max-width: 1200px; margin: 0 auto; }

  /* keep original grid & spacing exactly the same */
  .ys-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 28px; align-items: start; }
  .ys-brand { display: flex; gap: 12px; align-items: center; }
  .ys-logo { width: 90px; height: 90px; object-fit: contain; border-radius: 8px; flex-shrink: 0; background: rgba(255,255,255,0.06); padding: 6px; }
  .ys-company-name { text-align: center; font-weight: 700; font-size: 16px; color: var(--footer-text-light); }
  .ys-company-id { text-align: center; font-size: 13px; color: rgba(255,255,255,0.9); margin-top: 4px; }

  .ys-col { min-width: 0; }
  .ys-heading { font-size: 14px; margin: 0 0 8px 0; color: rgba(255,255,255,0.95); }
  .ys-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
  .ys-links a { color: rgba(255,255,255,0.95); text-decoration: none; font-size: 14px; opacity: 0.98; }
  .ys-links a:hover { text-decoration: underline; color: #dff6ff; }

  .ys-contact .ys-contact-item { display: block; color: rgba(255,255,255,0.95); text-decoration: none; margin-bottom: 6px; }
  .ys-contact .ys-contact-item:hover { text-decoration: underline; color: #dff6ff; }

  .ys-social { display: flex; gap: 8px; margin-top: 8px; }
  .ys-social-btn {
    display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 8px;
    background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.06); color: var(--footer-text-light); text-decoration: none;
  }
  .ys-social-btn:hover { background: #ffffff; color: var(--footer-top-bg); transform: translateY(-2px); }

  .ys-payments { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 6px; }
  .ys-pay {
    display: inline-flex; align-items: center; justify-content: center; width: 56px; height: 36px; border-radius: 6px;
    background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.06); color: var(--footer-text-light); font-weight:700; font-size:10px;
  }
  .ys-address { font-style: normal; color: rgba(255,255,255,0.92); font-size: 13px; line-height: 1.4; margin-top: 6px; }

  /* Bottom row kept same spacing but different background color */
  .ys-bottom {
    display: flex; justify-content: space-between; align-items: center; margin-top: 20px; padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,0.04); gap: 12px;
    background: var(--footer-bottom-bg); /* bottom strip color */
    padding: 14px 16px;
    margin-left: -16px; margin-right: -16px; /* keep section edge-to-edge like original look */
  }
  .ys-copy { font-size: 13px; color: rgba(230,246,255,0.95); }
  .ys-legal { font-size: 13px; color: rgba(230,246,255,0.92); }

.transport-line-footer{color:#FFF;}

  /* Preserve responsive rules exactly as before */
  @media (max-width:880px){
    .ys-grid{grid-template-columns:1fr;gap:18px}
    .ys-bottom{flex-direction:column;align-items:flex-start;gap:8px}
    .ys-social-btn{width:40px;height:40px}
    .ys-pay{width:48px;height:32px}
  }

  /* Sticky helper: when class applied, make footer fixed and add subtle shadow */
  .ys-footer.ys-footer--fixed {
    position: fixed;
    right: 0;
    left: 0;
    box-shadow: 0 -6px 20px rgba(0,0,0,0.08);
  }

  /* ensure focus outlines are visible on the darker backgrounds */
  a:focus, button:focus { outline: 3px solid rgba(255,255,255,0.14); outline-offset: 3px; }