/* Hero banner for inner pages */
    .page-hero {
      background: var(--dark);
      padding: 160px 5vw 90px;
      position: relative;
      overflow: hidden;
    }
    .page-hero::before {
      content: '';
      position: absolute; right: 0; top: 0;
      width: 42%; height: 100%;
      background: var(--green);
      clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
    }
    .page-hero-inner {
      position: relative; z-index: 2;
      max-width: 640px;
    }
    .page-hero-eyebrow {
      font-family: var(--font-head);
      font-size: .78rem; font-weight: 700;
      color: var(--gold); letter-spacing: .18em;
      text-transform: uppercase;
      display: flex; align-items: center; gap: .6rem;
      margin-bottom: 1.2rem;
    }
    .page-hero-eyebrow::before {
      content: ''; display: block; width: 32px; height: 2px; background: var(--gold);
    }
    .page-hero h1 {
      font-family: var(--font-display);
      font-size: clamp(2.4rem, 5vw, 3.8rem);
      color: var(--white); line-height: 1.08;
      margin-bottom: 1.4rem;
    }
    .page-hero h1 em { color: var(--gold); font-style: normal; }
    .page-hero p {
      font-size: 1.05rem; color: var(--silver); line-height: 1.75;
      max-width: 500px;
    }

    /* ── SERVICE DETAIL SECTIONS ── */
    .svc-section {
      padding: 96px 5vw;
      scroll-margin-top: 80px;
    }
    .svc-section:nth-child(odd) { background: var(--white); }
    .svc-section:nth-child(even) { background: var(--offwhite); }

    .svc-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
    }

    /* Flip layout for even sections */
    .svc-section:nth-child(even) .svc-inner { direction: rtl; }
    .svc-section:nth-child(even) .svc-inner > * { direction: ltr; }

    .svc-num {
      font-family: var(--font-display);
      font-size: clamp(1.6rem, 3vw, 2.2rem);
      color: var(--dark); line-height: 1.15;
      margin-bottom: 1rem;
    }
    .svc-num em { color: var(--gold); font-style: normal; }
    .svc-body {
      font-size: 1rem; color: #555; line-height: 1.8;
      margin-bottom: 1.8rem;
    }
    .svc-bullets {
      list-style: none; display: flex; flex-direction: column; gap: .65rem;
      margin-bottom: 1.8rem;
    }
    .svc-bullets li {
      font-size: .92rem; color: #444; line-height: 1.6;
      display: flex; align-items: flex-start; gap: .7rem;
    }
    .svc-bullets li::before {
      content: '';
      flex-shrink: 0;
      display: block; width: 8px; height: 8px; border-radius: 50%;
      background: var(--gold); margin-top: .42rem;
    }

    /* Visual panel */
    .svc-visual {
      border-radius: 6px;
      overflow: hidden;
      position: relative;
    }
    .svc-panel {
      background: var(--green);
      border-radius: 6px;
      padding: 2.8rem 2.4rem;
      position: relative;
      overflow: hidden;
      min-height: 320px;
      display: flex; flex-direction: column; justify-content: space-between;
    }
    .svc-panel::after {
      content: '';
      position: absolute; bottom: -40px; right: -40px;
      width: 180px; height: 180px;
      border-radius: 50%;
      background: rgba(255,255,255,.07);
    }
    .svc-panel::before {
      content: '';
      position: absolute; top: -20px; left: -20px;
      width: 100px; height: 100px;
      border-radius: 50%;
      background: rgba(204,144,53,.18);
    }
    .svc-panel-title {
      font-family: var(--font-head);
      font-size: 1.3rem; font-weight: 700;
      color: var(--white); line-height: 1.3;
      position: relative; z-index: 1;
      margin-bottom: .6rem;
    }
    .svc-panel-tag {
      display: inline-block;
      background: var(--gold); color: var(--dark);
      font-family: var(--font-head); font-size: .7rem; font-weight: 700;
      padding: .3rem .9rem; border-radius: 2px;
      letter-spacing: .1em; text-transform: uppercase;
      position: relative; z-index: 1;
    }

    /* Dark panel variant */
    .svc-panel.dark {
      background: var(--dark);
    }
    .svc-panel.dark::before {
      background: rgba(7,130,78,.2);
    }

    /* ── ALTERNATING PANEL COLORS (green - dark - green) ── */
    /* Pinned to service IDs so the pattern also holds inside the modal,
       overriding any .dark classes in the markup. Order:
       01 intl-freight  green
       02 customs       dark
       03 d2d           green
       04 marine        dark
       05 peza          green
       06 consultancy   dark */

    #intl-freight .svc-panel,
    #d2d .svc-panel,
    #peza .svc-panel {
      background: var(--green);
    }

    #intl-freight .svc-panel::before,
    #d2d .svc-panel::before,
    #peza .svc-panel::before {
      background: rgba(204, 144, 53, 0.18);
    }

    #customs .svc-panel,
    #marine .svc-panel,
    #consultancy .svc-panel {
      background: var(--dark);
    }

    #customs .svc-panel::before,
    #marine .svc-panel::before,
    #consultancy .svc-panel::before {
      background: rgba(7, 130, 78, 0.2);
    }

    /* ── QUICK OVERVIEW GRID ── */
    .overview { background: var(--dark); padding: 80px 5vw; }
    .overview-header { text-align: center; margin-bottom: 3rem; }
    .overview-header .section-title { color: var(--white); }
    .overview-header .section-title em { color: var(--gold); font-style: normal; }
    .overview-header .section-sub { color: var(--silver); margin: 0 auto; }
    .overview-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 1px;
      background: #333;
      border: 1px solid #333;
      border-radius: 4px;
      overflow: hidden;
    }
    .overview-item {
      background: #1a1a1a;
      padding: 1.8rem 1.4rem;
      display: flex; align-items: flex-start; gap: 1rem;
      transition: background .25s;
      cursor: pointer;
      text-decoration: none;
    }
    .overview-item:hover { background: #222; }
    .overview-num {
      font-family: var(--font-display);
      font-size: 1.6rem; font-weight: 800;
      color: var(--gold); opacity: .6;
      line-height: 1; flex-shrink: 0;
      min-width: 2rem;
    }
    .overview-name {
      font-family: var(--font-head);
      font-size: .88rem; font-weight: 700;
      color: var(--white); line-height: 1.4;
      letter-spacing: .02em;
    }
    .overview-arrow {
      margin-top: .15rem;
      color: var(--green); font-size: .9rem;
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      .svc-inner { grid-template-columns: 1fr; gap: 2.5rem; }
      .svc-section:nth-child(even) .svc-inner { direction: ltr; }
      .page-hero::before { display: none; }
      .overview-grid { grid-template-columns: 1fr 1fr; }
    }

    @media (max-width: 600px) {
      .page-hero {
        padding: 120px 24px 60px;
      }

      .page-hero p {
        font-size: 0.95rem;
      }

      .overview {
        padding: 56px 20px;
      }

      .overview-item {
        padding: 1.3rem 1.1rem;
      }

      .svc-panel {
        min-height: 220px;
        padding: 2rem 1.6rem;
      }

      .svc-body {
        font-size: 0.95rem;
      }

      .svc-text .btn-primary {
        display: block;
        text-align: center;
      }
    }

    @media (max-width: 520px) {
      .overview-grid { grid-template-columns: 1fr; }
    }

/* ── SERVICE MODAL ── */
    /* Detail sections stay in the HTML as modal content, hidden on the page */
    .svc-section { display: none; }

    .svc-modal {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.72);
      display: none;
      align-items: center;
      justify-content: center;
      z-index: 1000;
      padding: 24px;
    }

    .svc-modal.open { display: flex; }

    .svc-modal-inner {
      background: var(--white);
      border-radius: 10px;
      max-width: 960px;
      width: 100%;
      max-height: 90vh;
      overflow-y: auto;
      position: relative;
      padding: 3rem 2.6rem 2.6rem;
      animation: svcModalIn 0.22s ease;
    }

    @keyframes svcModalIn {
      from {
        opacity: 0;
        transform: translateY(16px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .svc-modal-close {
      position: absolute;
      top: 14px;
      right: 14px;
      background: var(--dark);
      color: var(--white);
      border: 0;
      width: 38px;
      height: 38px;
      border-radius: 50%;
      font-size: 1rem;
      cursor: pointer;
      z-index: 5;
      transition: background 0.2s;
    }

    .svc-modal-close:hover { background: var(--green); }

    /* Sections shown inside the modal */
    .svc-modal-inner .svc-section {
      display: block;
      padding: 0;
      background: none;
    }

    .svc-modal-inner .svc-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: center;
      direction: ltr;
    }

    .svc-modal-inner .svc-inner > * { direction: ltr; }

    @media (max-width: 760px) {
      .svc-modal { padding: 12px; }
      .svc-modal-inner { padding: 2.4rem 1.4rem 1.6rem; max-height: 94vh; }
      .svc-modal-inner .svc-inner {
        grid-template-columns: 1fr;
        gap: 1.8rem;
      }
      .svc-modal-inner .svc-panel { min-height: 160px; }
    }