/*!
Theme Name: ila-local
*/

:root{
      /* --- ILA 1422 Brand Palette (logo-inspired) --- */
      --ila-blue: #1F88C9;
      --ila-navy: #0E2A47;
      --ila-white: #FFFFFF;
      --ila-gray: #F4F6F8;
      --ila-dark: #111111;

      --max: 1120px;
      --pad: 20px;
      --radius: 18px;
    }

    *{ box-sizing:border-box }
    body{
      margin:0;
      font-family: system-ui,-apple-system,Segoe UI,Roboto,Arial;
      line-height:1.4;
      color: var(--ila-dark);
      background: var(--ila-white);
    }
    a{ color:inherit }

    /* Header / Nav */
   /*  Header */

.site-header {
  background: var(--color-white);
}

.container.header-main-inner {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    height: 100px;
}
.container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
}
/* Main header: logo, nav, CTA */
.header-main {
  border-bottom: 1px solid #e2e8f0;
}

.header-main-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: var(--header-main-height);
}

.logo {
  text-decoration: none;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 1.3rem;
  white-space: nowrap;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.site-branding img {
    height: 46px;
    width: auto;
    max-width: 220px;
    display: block;
    transition: transform .22s ease, opacity .22s ease;
}
.logo-text {
  letter-spacing: -0.02em;
}

.logo-img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}
.nav-container {
    display: flex;
    align-items: center;
    gap: 24px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-nav a {
  color: var(--color-text);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 8px 14px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}

.main-nav a:hover {
  color: var(--color-primary);
  background: rgba(26, 54, 93, 0.06);
}

.btn-cta {
    border: 1px solid rgb(32 139 211);
    border-radius: 14px;
    padding: 8px 12px;
    font-weight: 800;
    text-decoration: none;
    color: rgb(32 139 211);
    transition: background .18s ease, color .18s ease, border-color .18s ease;
}

.btn-cta:hover {
    background: rgb(32 139 211);
    transform: translateY(-1px);
    color: #fff;
}

/* Mobile menu toggle (hidden on desktop) */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 6px;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #000;
    border-radius: 1px;
    margin-left: 9px;
}

/* Mobile sidebar & overlay (hidden on desktop) */
.nav-overlay,
.nav-sidebar {
  display: none;
}

/* ========== Responsive ========== */

@media (max-width: 992px) {
  .header-main-inner {
    gap: 16px;
  }

  .main-nav,
  .header-main .btn-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  /* Sidebar: slide in from left, smooth */
  .nav-overlay {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 1001;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease-out;
  }

.nav-sidebar {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    max-width: 85vw;
    height: 100vh;
    z-index: 1002;
    background: #fff;
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.15);
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 24px 20px;
    overflow-y: auto;
}

  .nav-sidebar[hidden] {
    display: none;
  }

  body.sidebar-open .nav-overlay {
    opacity: 1;
    pointer-events: auto;
  }

  body.sidebar-open .nav-sidebar {
    transform: translateX(0);
  }

  .nav-sidebar-close {
    align-self: flex-end;
    width: 40px;
    height: 40px;
    margin: -8px -8px 24px 0;
    padding: 0;
    border: none;
    background: transparent;
    font-size: 1.75rem;
    line-height: 1;
    color: var(--color-text);
    cursor: pointer;
    border-radius: 6px;
    transition: color 0.2s, background 0.2s;
  }

  .nav-sidebar-close:hover {
    color: var(--color-primary);
    background: rgba(26, 54, 93, 0.08);
  }

  .sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 24px;
  }

  .sidebar-nav a {
    display: block;
    padding: 12px 16px;
    color: var(--color-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    border-radius: 6px;
    transition: color 0.2s, background 0.2s;
  }

  .sidebar-nav a:hover {
    color: var(--color-primary);
    background: rgba(26, 54, 93, 0.08);
  }

  .sidebar-cta {
    margin-top: auto;
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 14px 24px;;
    color: rgb(32 139 211);;
    font-weight: 700;
    /* font-size: 0.95rem; */
    border-radius: 15px;
    border: 1px solidrgb(32 139 211);;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }

  .sidebar-cta:hover {
    background: rgb(32 139 211);;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    color: #fff;
  }
}
.wb-gate-outer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
span.wb-number {
    font-weight: 1000;
    color: #ffc311;
    white-space: nowrap;
    letter-spacing: .01em;
    font-size: 26px;
    text-decoration: underline;
}
@media (max-width: 768px) {

  .header-main-inner {
    min-height: 64px;
    padding: 0 16px;
  }
}

@media (max-width: 600px) {

    .logo-text {
    font-size: 1rem;
  }

  .container {
    padding: 0 16px;
  }

  .header-main .container {
    padding: 0 12px;
  }
}

@media (max-width: 400px) {
  .header-top-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 12px;
  }

  .header-top-right {
    width: 100%;
  }
}

    /* HERO VIDEO */
    .hero{
      position:relative;
      min-height:72vh;
      display:flex;
      align-items:flex-end;
      overflow:hidden;
      background:#000;
      border-bottom:1px solid #e6e6e6;
    }
    .hero video{
      position:absolute; inset:0;
      width:100%; height:100%;
      object-fit:cover;
      opacity:.92;
    }
    .hero::after{
      content:"";
      position:absolute; inset:0;
      background: linear-gradient(
        180deg,
        rgba(14,42,71,.22) 0%,
        rgba(14,42,71,.42) 40%,
        rgba(14,42,71,.86) 100%
      );
      pointer-events:none;
    }
    .hero-inner{
      position:relative;
      width:100%;
      padding: 0 var(--pad) 44px;
    }
.hero-card {
    max-width: var(--max);
    margin: 0 auto;
    padding: 22px 22px;
    border-radius: var(--radius);
    background: rgb(5 19 34 / 88%);
    border: 1px solid rgba(255,255,255,.22);
    color: var(--ila-white);
}
    .kicker{
      font-size:12px;
      letter-spacing:.16em;
      text-transform:uppercase;
      opacity:.92;
      margin-bottom:8px;
    }
    h1{ margin:0 0 8px; font-size:44px; line-height:1.05; }
    .sub{
      margin:0 0 14px;
      font-size:16px;
      max-width: 820px;
      opacity:.95;
    }
    .btnrow{ display:flex; gap:12px; flex-wrap:wrap; margin-top:14px; }
    .btn{
      display:inline-block;
      padding:12px 14px;
      border-radius: 16px;
      font-weight:900;
      text-decoration:none;
      border: 1px solid rgba(255,255,255,.55);
      color: var(--ila-white);
      transition: transform .18s ease, opacity .18s ease, background .18s ease, border-color .18s ease;
    }
    .btn:hover{ transform: translateY(-1px); opacity:.98; }
    .btn.primary{
      background: var(--ila-blue);
      border-color: var(--ila-blue);
      color: var(--ila-white);
    }
    .btn.primary:hover{
      background: #1875AD;
      border-color: #1875AD;
    }
    .btn.secondary{
      background: rgba(255,255,255,.10);
    }

    /* Sections */
    section{
      padding: 42px 0;
      border-bottom: 1px solid #eaeaea;
      background: var(--ila-white);
    }
    section.alt{ background: var(--ila-gray); }

    h2{ margin:0 0 10px; font-size:24px; color: var(--ila-navy); }
    .muted {
    color: #4b5563;
    font-size: 14px;
}
.hero p.muted {
    color: #fff;
}

    .grid{
      display:grid;
      grid-template-columns: 1.2fr .8fr;
      gap: 16px;
    }
    .card{
      border: 1px solid #e6e6e6;
      border-radius: var(--radius);
      padding: 16px;
      background: var(--ila-white);
    }
    .pill{
      display:inline-block;
      font-size:12px;
      padding:6px 10px;
      border-radius:999px;
      color: var(--ila-blue);
      border: 1px solid rgba(31,136,201,.28);
      background: rgba(31,136,201,.08);
      margin-bottom: 10px;
      font-weight: 700;
    }
    ul{ margin:10px 0 0 18px; }

    footer {
    padding: 30px 0;
    background: var(--ila-white);
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
}

    /* Responsive tweaks */
    @media (max-width: 860px){
      .grid{ grid-template-columns: 1fr; }
      h1{ font-size: 34px; }
      .hero{ min-height: 78vh; }
      .logo img{ height: 40px; max-width: 190px; }
    }
    @media (max-width: 480px){
      .logo img{ height: 36px; max-width: 160px; }
      .links a{ padding: 7px 9px; }
    }

    /* Prototype Preview block */
    .proto-preview{ padding: 18px 0 0; background: var(--ila-white); }
    .proto-card{
      border-radius: var(--radius);
      border: 1px solid rgba(14,42,71,.12);
      background: rgba(31,136,201,.06);
      padding: 14px 16px;
      display: flex;
      gap: 12px;
      align-items: flex-start;
    }
    .proto-badge{
      flex: 0 0 auto;
      font-size: 12px;
      font-weight: 800;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--ila-navy);
      background: rgba(255,255,255,.85);
      border: 1px solid rgba(14,42,71,.14);
      padding: 7px 10px;
      border-radius: 999px;
      line-height: 1;
    }
    .proto-text{
      margin: 0;
      font-size: 14px;
      color: rgba(14,42,71,.88);
      line-height: 1.45;
    }
    .proto-sep{ margin: 0 6px; color: rgba(14,42,71,.35); }
    @media (max-width: 560px){
      .proto-card{ flex-direction: column; }
      .proto-text{ font-size: 13.5px; }
    }

    /* --- Work Orders Board (Index) --- */
    .workboard{ padding: 0; overflow: hidden; }
    .workboard-head{
      padding: 14px 16px;
      border-bottom: 1px solid #e6e6e6;
      background: #fafafa;
      display:flex;
      justify-content: space-between;
      align-items: baseline;
      gap: 12px;
    }
    .workboard-date{
      font-weight: 900;
      letter-spacing: .04em;
      color: var(--ila-navy);
    }
    .workboard-note{ font-size: 12px; color:#6b7280; }

    .wb-group{ margin: 0; padding: 14px 16px 6px; }

    /* PILL HEADERS (left aligned) */
    .wb-title{
      display:inline-flex;
      align-items:center;
      gap:10px;
      padding: 10px 14px;
      border-radius: 999px;
      font-weight: 1000;
      letter-spacing:.08em;
      text-transform: uppercase;
      color:#0b1f33;
      border: 1px solid rgba(14,42,71,.10);
      box-shadow: 0 1px 0 rgba(0,0,0,.08);
      background: rgba(255,255,255,.9);
      margin-bottom: 12px;
    }
    .wb-title::before{
      content:"";
      width:12px;height:12px;border-radius:50%;
      background: rgba(14,42,71,.35);
    }

    /* Location pill colors */
    .wb-gate .wb-title{
      background: #cfe9f6; /* light blue (requested) */
      border-color: rgba(31,136,201,.30);
    }
    .wb-gate .wb-title::before{ background: #1F88C9; }

.wb-stevedore .wb-title {
    background: #16d6e6;
    border-color: rgba(14,42,71,.10);
    font-size: 14px;
}
    .wb-stevedore .wb-title::before{ background: rgba(14,42,71,.55); }

    .wb-marine .wb-title{
      background: #97d64d;
      border-color: rgba(14,42,71,.10);
    }
    .wb-marine .wb-title::before{ background: rgba(14,42,71,.55); }

    /* Rows */
    .wb-row{
      padding: 10px 12px;
      border: 1px solid #eef2f5;
      border-radius: 14px;
      display: grid;
      grid-template-columns: 200px 1fr;
      gap: 12px;
      align-items: start;
      margin-bottom: 10px;
      background: #fff;
    }
    .wb-time{
      font-weight: 1000;
      color: #111;
      white-space: nowrap;
      letter-spacing: .01em;
      font-size: 14px;
    }
    .wb-time-alert{ color: #d01919; }

    .wb-desc{ color:#111; font-weight: 800; }
    .wb-desc .subline{
      display:block;
      margin-top: 4px;
      font-size: 14px;
      font-weight: 700;
      color:#374151;
      font-size: 13px;
    }

    /* Status badges (Set Back / Cancelled) */
    .wb-status{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding: 4px 10px;
      border-radius: 999px;
      font-size: 12px;
      font-weight: 1000;
      letter-spacing: .06em;
      text-transform: uppercase;
      border: 1px solid rgba(14,42,71,.12);
      background: rgba(17,24,39,.04);
      margin-right: 8px;
      white-space: nowrap;
    }
    .wb-status::before{
      content:"";
      width:9px;height:9px;border-radius:50%;
      background: rgba(14,42,71,.40);
    }
    .wb-setback{
      background: rgba(255,193,7,.16);
      border-color: rgba(255,193,7,.28);
    }
    .wb-setback::before{ background: rgba(255,193,7,.95); }

    .wb-cancelled{
      background: rgba(255,59,48,.14);
      border-color: rgba(255,59,48,.22);
    }
    .wb-cancelled::before{ background: rgba(255,59,48,.95); }

    .wb-row.is-setback{
      border-color: rgba(255,193,7,.28);
      background: rgba(255,193,7,.06);
    }
    .wb-row.is-cancelled{
      border-color: rgba(255,59,48,.24);
      background: rgba(255,59,48,.05);
      opacity: .95;
    }
    .wb-row.is-cancelled .wb-desc{
      text-decoration-thickness: 2px;
      text-decoration-color: rgba(255,59,48,.55);
    }

    /* Two-column roster rows */
    .wb-two-col{
      grid-template-columns: 1fr 1fr;
    }
    .wb-col{
      font-weight: 900;
      color:#111;
    }

    /* Small badge (Re-Hire, etc.) */
    .wb-badge{
      display:inline-block;
      padding: 4px 10px;
      border-radius: 999px;
      font-size: 12px;
      font-weight: 1000;
      border: 1px solid rgba(14,42,71,.14);
      background: rgba(255,255,255,.9);
      color: var(--ila-navy);
      margin-right: 8px;
      white-space: nowrap;
    }

    /* Responsive */
    @media (max-width: 640px){
      .wb-row{ grid-template-columns: 1fr; }
      .wb-two-col{ grid-template-columns: 1fr; }
		/* Announcements (matches display mode content) */
.announce-list{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  gap:10px;
}

.announce-list li{
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid #e6e6e6;
  background: #fff;
  font-weight: 800;
  color:#111;
}

.announce-list li.priority{
  background: rgba(31,136,201,.10);
  border-color: rgba(31,136,201,.35);
  font-weight: 900;
}
    }


    /* Scroll Container */
.wb-scroll{
  position:relative;
  height:300px; /* adjust visible height */
  overflow:hidden;
}
.wb-scroll:hover .wb-track{
  animation-play-state: paused;
}

/* Track */
.wb-track{
  display:flex;
  flex-direction:column;
  animation: scrollUp 20s linear infinite;
}

/* Row Styling (keep yours if already defined) */
.wb-row{
  padding:14px 16px;
  border-bottom:1px solid #eaeaea;
  background:#fff;
}

/* Infinite Smooth Animation */
@keyframes scrollUp{
  0%{
    transform: translateY(0);
  }
  100%{
    transform: translateY(-50%);
  }
}

.wb-marine .wb-scroll{
  height:170px; /* adjust as needed */
}

    /* Page header */
    .pagehead{
      padding: 36px 0 22px;
      border-bottom:1px solid #eaeaea;
      background: linear-gradient(180deg, rgba(31,136,201,.08), rgba(31,136,201,0));
    }
    .leadership-sec .pill{
      display:inline-block;
      font-size:12px;
      padding:6px 10px;
      border-radius:999px;
      font-weight:900;
      letter-spacing:.10em;
      text-transform:uppercase;
      color:var(--ila-blue);
      border:1px solid rgba(31,136,201,.28);
      background:rgba(31,136,201,.08);
      margin-bottom:10px;
    }
    h1{ margin:0 0 6px; font-size:32px; color:var(--ila-navy); }
    .sub{ margin:0; color:#4b5563; max-width:900px; }

    /* Grid */
    .leadership-sec{
      max-width:var(--max);
      margin:0 auto;
      padding:32px var(--pad) 52px;
      display:grid;
      grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
      gap:16px;
    }

    .leadership-sec .card{
      border:1px solid #e6e6e6;
      border-radius:var(--radius);
      background:#fff;
      padding:16px;
      display:flex;
      gap:14px;
      align-items:flex-start;
      position:relative;
    }

    /* Headshot placeholder */
      .member-profile img {
    width: 100%;
    border-radius: 50%;
    padding: 1px;
}

.member-profile {
    width: 83px;
    height: 83px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #ffffff, #e8eef5);
    border: 1px solid rgba(14, 42, 71, .18);
    flex: 0 0 auto;
    position: relative;
}

    .leadership-sec .info strong{
      display:block;
      font-size:16px;
      font-weight:1000;
      color:#111;
    }
    .leadership-sec .role{
      font-size:13px;
      font-weight:900;
      color:var(--ila-blue);
      margin: 2px 0 8px;
    }

    .leadership-sec .contact{
      font-size:13px;
      color:#374151;
      line-height:1.55;
    }
    .leadership-sec .contact span{ display:block; }
    .leadership-sec .contact b{ font-weight:900; color:#111; }

    /* Hover Bio Overlay (desktop) — fade in + slight blue */
    .leadership-sec .person-card{
      overflow:hidden;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .leadership-sec .person-card:hover{
      transform: translateY(-2px);
      box-shadow: 0 14px 28px rgba(14,42,71,.10);
      border-color: rgba(31,136,201,.26);
    }

    /* Subtle blue wash across the base card on hover */
    .person-card::before{
      content:"";
      position:absolute;
      inset:0;
      background: rgba(31,136,201,.08);
      opacity:0;
      transition: opacity .18s ease;
      pointer-events:none;
    }
    .leadership-sec .person-card:hover::before{ opacity:1; }

    .leadership-sec .bio-overlay{
      position:absolute;
      inset:0;
      padding: 16px;
      background: linear-gradient(
        180deg,
        rgba(14,42,71,.10) 0%,
        rgba(14,42,71,.80) 55%,
        rgba(14,42,71,.92) 100%
      );
      color:#fff;
      border-radius: var(--radius);

      /* FADE IN ONLY */
      opacity:0;
      pointer-events:none;
      transition: opacity .18s ease;
      display:flex;
      flex-direction:column;
      justify-content:flex-end;
      gap:8px;
    }
    .leadership-sec .person-card:hover .bio-overlay{
      opacity:1;
      pointer-events:auto;
    }

    .leadership-sec .bio-meta{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
    }
    .leadership-sec .bio-chip{
      font-size:12px;
      font-weight:1000;
      padding:6px 10px;
      border-radius:999px;
      background: rgba(31,136,201,.18);
      border: 1px solid rgba(31,136,201,.30);
      white-space: nowrap;
    }
    .leadership-sec .bio-text{
      margin:0;
      font-size:13px;
      line-height:1.45;
      opacity:.96;
    }

    /* Mobile/Tablet: Tap to expand (details) */
    .leadership-sec .bio-details{
      display:none;
      margin-top:10px;
      border-top:1px solid #e6e6e6;
      padding-top:10px;
    }
    .leadership-sec .bio-details summary{
      cursor:pointer;
      font-weight:1000;
      color: var(--ila-navy);
      list-style:none;
      user-select:none;
    }
    .leadership-sec .bio-details summary::-webkit-details-marker{ display:none; }
    .leadership-sec .bio-details p{
      margin:8px 0 0;
      color:#4b5563;
      font-size:13px;
      line-height:1.45;
    }
    .hero-inner h1 {
    color: #fff;
}
.hero-inner p.sub {
    color: #fff;
}

/*pay for card */
    /* Page header */
    .pagehead{
      border-bottom:1px solid #eaeaea;
      background: linear-gradient(180deg, rgba(31,136,201,.08), rgba(31,136,201,0));
      padding: 28px 0 18px;
    }
    .pagehead.woc .kicker{
      display:inline-block;
      font-size:12px;
      padding:6px 10px;
      border-radius:999px;
      color: var(--ila-blue);
      border: 1px solid rgba(31,136,201,.28);
      background: rgba(31,136,201,.08);
      font-weight:900;
      letter-spacing:.10em;
      text-transform:uppercase;
      margin-bottom: 10px;
    }
    h1{ margin:0 0 8px; font-size:34px; color:var(--ila-navy); }
    .sub{ margin:0; color:#4b5563; max-width: 900px; }

    /* Layout */
    .grid{
      max-width: var(--max);
      margin: 0 auto;
      padding: 18px var(--pad) 42px;
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 16px;
    }

    .card{
      border:1px solid #e6e6e6;
      border-radius: var(--radius);
      padding: 16px;
      background: #fff;
          margin-bottom: 12px;
    }

    /* Card preview block */
    .cardmock{
      border-radius: 16px;
      border: 1px dashed rgba(14,42,71,.22);
      background: rgba(14,42,71,.04);
      padding: 16px;
      display:flex;
      gap: 14px;
      align-items:center;
      margin-bottom: 14px;
      flex-wrap: wrap;
    }

    .cardwrap{
      position: relative;
      display:inline-block;
    }

    .cardimg{
      width: 360px;
      max-width: 92vw;
      height: auto;
      border-radius: 14px;
      border: 1px solid rgba(31,136,201,.30);
      background: #fff;
      box-shadow: 0 10px 22px rgba(14,42,71,.12);
      display:block;
    }

    /* Shared live-text styling */
    .cardtext{
      position:absolute;
      font-weight: 900;
      letter-spacing: .04em;
      color: #0E2A47;
      text-transform: uppercase;
      text-shadow: 0 1px 0 rgba(255,255,255,.9);
      pointer-events:none;
    }

    /* NAME — above silhouette photo */
    .cardtext.name{
      top: 52px;
      left: 22px;
      font-size: 14px;
      max-width: 170px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    /* ID — above barcode */
    .cardtext.id{
      bottom: 40px;
      right: 24px;
      font-size: 12px;
      opacity: .95;
      white-space: nowrap;
    }

    .sil-label{
      font-size:12px;
      font-weight:900;
      letter-spacing:.08em;
      text-transform:uppercase;
      color: rgba(14,42,71,.72);
      margin-bottom:6px;
    }
    .sil-note{
      font-size:13px;
      color:#4b5563;
      margin:0;
      max-width: 420px;
    }

    /* Form */
    form{ display:grid; gap: 12px; margin-top: 8px; }
    .row2{ display:grid; grid-template-columns: 1fr 1fr; gap: 12px; }

    label{
      display:block;
      font-size: 12px;
      font-weight: 900;
      letter-spacing:.06em;
      text-transform: uppercase;
      color: rgba(14,42,71,.86);
      margin-bottom: 6px;
    }

    input, select, textarea{
      width:100%;
      padding: 12px 12px;
      border-radius: 14px;
      border: 1px solid #e6e6e6;
      background:#fff;
      font-size: 15px;
      outline:none;
      transition: border-color .15s ease, box-shadow .15s ease;
    }
    input:focus, select:focus, textarea:focus{
      border-color: rgba(31,136,201,.55);
      box-shadow: 0 0 0 4px rgba(31,136,201,.12);
    }
    textarea{ min-height: 90px; resize: vertical; }

    .help{
      font-size: 13px;
      color:#4b5563;
      margin: 0;
    }

    /* Buttons */
    .btnrow{ display:flex; gap: 10px; flex-wrap:wrap; margin-top: 6px; }
    .btn{
      display:inline-block;
      padding: 12px 14px;
      border-radius: 16px;
      font-weight: 1000;
      text-decoration:none;
      border: 1px solid rgba(14,42,71,.18);
      color: var(--ila-navy);
      background: #fff;
      cursor:pointer;
      transition: transform .14s ease, background .14s ease, border-color .14s ease;
    }
    .btn:hover{
      transform: translateY(-1px);
      background: rgba(31,136,201,.06);
      border-color: rgba(31,136,201,.28);
    }
    .btn.primary{
      background: var(--ila-blue);
      border-color: var(--ila-blue);
      color: #fff;
    }
    .btn.primary:hover{
      background:#1875AD;
      border-color:#1875AD;
    }
.hero-inner a.btn.secondary {
    display: inline-block;
    padding: 12px 14px;
    border-radius: 16px;
    font-weight: 900;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, .55);
    color: var(--ila-white);
    transition: transform .18s ease, opacity .18s ease, background .18s ease, border-color .18s ease;
}
    /* Notes block */
    .note{
      border-radius: 16px;
      border: 1px solid rgba(31,136,201,.22);
      background: rgba(31,136,201,.06);
      padding: 14px 14px;
    }
    .note strong{ color: var(--ila-navy); }
    .note ul{ margin: 10px 0 0 18px; color:#374151; }
    .note li{ margin: 6px 0; }

    /* Order status preview */
    .status{
      display:grid;
      gap: 10px;
      margin-top: 8px;
    }
    .step{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap: 12px;
      padding: 12px 12px;
      border-radius: 14px;
      border: 1px solid #e6e6e6;
      background: #fff;
      font-weight: 900;
      color: #111;
    }
    .chip{
      font-size: 12px;
      font-weight: 1000;
      padding: 6px 10px;
      border-radius: 999px;
      border: 1px solid rgba(14,42,71,.14);
      background: rgba(14,42,71,.04);
      color: rgba(14,42,71,.8);
      white-space: nowrap;
    }
    .chip.live{
      border-color: rgba(31,136,201,.28);
      background: rgba(31,136,201,.10);
      color: rgba(14,42,71,.9);
    }

    footer{ padding: 26px 0; border-top:1px solid #eaeaea; }
    .foot-muted{ color:#4b5563; font-size:14px; }

    @media (max-width: 900px){
      .grid{ grid-template-columns: 1fr; }
      .row2{ grid-template-columns: 1fr; }
      .cardimg{ width: 340px; }
    }
    @media (max-width: 520px){
      .cardimg{ width: 320px; }
      .cardtext.name{ max-width: 150px; }
    }

    /*display page*/

    .page-template-display-mode-templete{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial;
  background:#0b1624;
  color:#fff;
  overflow:hidden;
}
.page-template-display-mode-templete .site-header {
    background: var(--color-white);
    display: none;
}

/* TOP BAR */
.display_sec .topbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px var(--pad);
  background:rgba(14,42,71,.92);
  border-bottom:1px solid rgba(255,255,255,.10);
}

.display_sec .brand{
  display:flex;
  align-items:center;
  gap:14px;
}

.display_sec .brand img{
  height:42px;
  border-radius:10px;
  padding:6px;
  background:rgba(255,255,255,.06);
}

.display_sec .brand-title{
  font-weight:900;
  letter-spacing:.04em;
}

.display_sec .meta{
  text-align:right;
  font-weight:800;
  letter-spacing:.06em;
}

.display_sec .meta small{
  display:block;
  margin-top:2px;
}

/* LAYOUT */
.display_sec .screen{
  height:calc(100vh - 70px);
  padding:var(--pad);
  padding-bottom:72px;
}

.display_sec .panel{
  border-radius:var(--radius);
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  overflow:hidden;
}

/* LOCATION HEADER */
.display_sec .loc-head{
  padding:14px 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  background:rgba(255,255,255,.04);
  border-bottom:1px solid rgba(255,255,255,.10);
}

.display_sec .loc-pill{
  padding:10px 14px;
  border-radius:999px;
  font-weight:1000;
  text-transform:uppercase;
}

.display_sec .gate{background:#cfe9f6;color:#0b1f33;}
.display_sec .stevedore{background:#16d6e6;color:#000;}
.display_sec .marine{background:#97d64d;color:#000;}

.display_sec .rotate-note{
  font-size:14px;
  font-weight:800;
}

/* ROWS */
.display_sec .rows{
  padding:10px 14px 16px;
  display:grid;
  gap:10px;
  height: 400px;
  overflow-y: auto;
}
.display_sec .rows{
  overflow-y: auto;
}

/* Scrollbar width */
.display_sec .rows::-webkit-scrollbar{
  width: 8px;
}

/* Scrollbar background */
.display_sec .rows::-webkit-scrollbar-track{
  background: #eee;
  border-radius: 10px;
}

/* Scrollbar handle */
.display_sec .rows::-webkit-scrollbar-thumb{
  background: #0e2a47eb;
  border-radius: 10px;
}

/* Hover effect */
.display_sec .rows::-webkit-scrollbar-thumb:hover{
  background: #0e2a47eb;
}
span.wb-number.display-screen {
    position: absolute;
    top: 10%;
    left: 35%;
    display: none;
}

.active span.wb-number.display-screen {
    display: block;
}
.display_sec .row{
  display:grid;
  grid-template-columns:220px 1fr;
  gap:14px;
  padding:10px 12px;
  border-radius:14px;
  background:rgba(0,0,0,.22);
  border:1px solid rgba(255,255,255,.08);
}

.display_sec .time{
  font-size:30px;
  font-weight:1000;
}

.display_sec .time.alert{color:#ff3b30;}

.display_sec .desc{
  font-size:22px;
  font-weight:800;
}

.display_sec .muted{
  display:block;
  font-size:18px;
  margin-top:4px;
}

/* STATUS */
.display_sec .status-badge{
  display:inline-block;
  padding:6px 10px;
  border-radius:999px;
  font-size:14px;
  font-weight:1000;
  margin-right:10px;
  background:rgba(255,255,255,.16);
}

.display_sec .status-setback{
  background:rgba(255,193,7,.22);
}

.display_sec .status-cancelled{
  background:rgba(255,59,48,.22);
}

/* SLIDE ANIMATION */
@keyframes slideIn{
  from{opacity:0;transform:translateX(-14px);}
  to{opacity:1;transform:translateX(0);}
}

.display_sec .panel.is-animating{
  animation:slideIn .45s ease both;
}

/* TICKER */
.display_sec .ticker{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  padding:10px var(--pad);
  background:rgba(14,42,71,.92);
  border-top:1px solid rgba(255,255,255,.10);
  display:flex;
  gap:12px;
  align-items:center;
  font-weight:1000;
}

.display_sec .ticker-viewport{
  overflow:hidden;
  flex:1;
}

.display_sec .ticker-track{
  display:inline-block;
  animation:tickerScroll 18s linear infinite;
}

.display_sec .ticker-item{
  display:inline-block;
  padding-left:100%;
  white-space:nowrap;
}

@keyframes tickerScroll{
  0%{transform:translateX(0);}
  100%{transform:translateX(-100%);}
}

.display_sec .location{display:none;}
.display_sec .location.active{display:block;}
.display_sec .ticker-item {
  padding-left: 100%;
}
span.wb-status.display-screen {
    position: absolute;
    top: 64px;
    left: 25%;
}
img.loader-icon {
    width: 30px;
    position: absolute;
    right: 13px;
    top: 30px;
    display: none;
}

.member-input {
    position: relative;
}
.member-result {
    position: absolute;
    font-size: 12px;
    top: 0;
    left: 35%;
}

nav.woocommerce-breadcrumb {
    display: none;
}
main#primary {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
}
  .type-dropdown option:last-child {
    display: none;
}

    select.type-dropdown.member_already option:last-child {
        display: block;
    }

  /* select.qty-dropdown option {
    display: none;
}

select.qty-dropdown option:first-child {
    display: block;
}

select.qty-dropdown.member_qty option {
    display: block;
} */


/* ============================= */
/* MOBILE + TABLET RESPONSIVE */
/* ============================= */

@media (max-width: 1024px){

  .display_sec .screen{
    padding:16px;
    padding-bottom:90px;
  }

  .display_sec .row{
    grid-template-columns:180px 1fr;
  }

  .display_sec .time{
    font-size:24px;
  }

  .display_sec .desc{
    font-size:18px;
  }

  .display_sec .muted{
    font-size:15px;
  }
}


/* ============================= */
/* MOBILE (STACK LAYOUT) */
/* ============================= */

@media (max-width: 768px){

  .display_sec{
    overflow:auto; /* allow scroll on mobile */
  }

  .display_sec .topbar{
    flex-direction:column;
    align-items:flex-start;
    gap:10px;
  }

  .display_sec .brand{
    gap:10px;
  }

  .display_sec .brand img{
    height:34px;
  }

  .display_sec .brand-title{
    font-size:16px;
  }

  .display_sec .meta{
    text-align:left;
    font-size:14px;
  }

  .display_sec .screen{
    height:auto;
    padding:14px;
    padding-bottom:110px;
  }

  .display_sec .panel{
    border-radius:14px;
  }

  .display_sec .loc-head{
    flex-direction:column;
    align-items:flex-start;
    gap:8px;
  }

  .display_sec .rotate-note{
    font-size:13px;
  }

  /* STACK ROWS */
  .display_sec .row{
    grid-template-columns:1fr;
    gap:6px;
    padding:12px;
  }

  .display_sec .time{
    font-size:20px;
  }

  .display_sec .desc{
    font-size:16px;
  }

  .display_sec .muted{
    font-size:14px;
  }

  .display_sec .status-badge{
    font-size:12px;
    padding:5px 8px;
  }

  /* TICKER */
  .display_sec .ticker{
    padding:12px 14px;
    font-size:14px;
  }

 .display_sec .ticker-track{
    animation-duration:25s; /* slower for mobile readability */
  }
}


/* ============================= */
/* SMALL PHONES */
/* ============================= */

@media (max-width: 480px){

  .display_sec .brand-title{
    font-size:14px;
  }

  .display_sec .time{
    font-size:18px;
  }

 .display_sec  .desc{
    font-size:15px;
  }

 .display_sec .ticker{
    font-size:13px;
  }
}

:root{
  --ila-blue:#1F88C9;
  --ila-navy:#0E2A47;
  --ila-white:#FFFFFF;
  --ila-gray:#F4F6F8;
  --ila-dark:#111111;
  --radius:18px;
  --pad:24px;
}

ul#primary-menu {
    display: inline-flex;
    list-style: none;
    padding-left: 0px;
}
@media (max-width: 767px){
ul#primary-menu {
    display: block;
}
.btn {
    padding: 12px 14px;
    font-size: 14px;
}
.wb-title {
    font-size: 13px;
}
}