/* ══════════════════════════════════════
       DESIGN TOKENS
    ══════════════════════════════════════ */
    :root {
      --navy:    #0a1540;
      --navy-m:  #1B2A4A;
      --gold:    #C9A84C;
      --gold-l:  rgba(201,168,76,.12);
      --gold-b:  rgba(201,168,76,.35);
      --red:     #9b1c1c;
      --grey:    #f5f7fc;
      --fs:      'Playfair Display', Georgia, serif;
      --radius:  12px;
    }

    /* ══════════════════════════════════════
       BASE
    ══════════════════════════════════════ */
    body {
      font-family: 'Manrope', 'Helvetica Neue', Arial, sans-serif;
      color: #3d3d3d;
      padding-top: 42px; /* offset for fixed marquee */
      overflow-x: hidden;
    }
    h1,h2,h3,h4 { font-family: var(--fs); }
    a { text-decoration: none; color: inherit; }
    img { max-width: 100%; }

    .section-title {
      font-family: var(--fs);
      font-weight: 700;
      font-size: clamp(24px, 3.2vw, 38px);
      color: var(--navy);
      text-align: center;
      margin-bottom: 12px;
    }
    .section-title.light { color: #fff; }
    .section-sub {
      text-align: center;
      color: #666;
      font-size: clamp(14px, 1.5vw, 16px);
      max-width: 700px;
      margin: 0 auto 16px;
      line-height: 1.75;
    }
    .section-sub.light { color: rgba(255,255,255,.72); }
    .gold-rule {
      width: 48px; height: 3px;
      background: var(--gold);
      border-radius: 2px;
      margin: 0 auto 44px;
    }
    .bg-navy  { background: var(--navy); }
    .bg-grey  { background: var(--grey); }
    .text-gold { color: var(--gold) !important; }
    .text-navy { color: var(--navy) !important; }
    .text-red  { color: var(--red)  !important; }
    .section-pad { padding: 80px 0; }

    /* ══════════════════════════════════════
       0 — MARQUEE (fixed)
    ══════════════════════════════════════ */
    #iilm-marquee {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 9999;
      background: var(--red);
      overflow: hidden;
      white-space: nowrap;
      padding: 10px 0;
    }
    .mq-inner {
      display: inline-block;
      animation: mq-scroll 32s linear infinite;
      white-space: nowrap;
    }
    .mq-inner:hover { animation-play-state: paused; }
    .mq-txt {
      display: inline-block;
      color: #fff;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: .05em;
      padding: 0 60px;
    }
    .mq-txt strong { color: #ffd700; }
    @keyframes mq-scroll {
      0%   { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    /* ══════════════════════════════════════
       1 — LOGO BAR
    ══════════════════════════════════════ */
    #iilm-logobar {
      background: #fff;
      border-bottom: 1px solid #e8eaf0;
      padding: 14px 24px;
    }
    #iilm-logobar img { width: auto; }
    .logobar-campus {
      font-size: 12px;
      color: #777;
      font-weight: 600;
      letter-spacing: .06em;
      margin-top: 3px;
    }

    /* ══════════════════════════════════════
       2 — HERO
    ══════════════════════════════════════ */
    #iilm-hero {
      position: relative;
      min-height: 88vh;
      display: flex;
      align-items: center;
      overflow: hidden;
    }
    .hero-bg {
      position: absolute;
      inset: 0;
      background: url('../images/student-image-iilm.jpg') center/cover no-repeat;
      z-index: 0;
    }
    .hero-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(108deg, rgba(8,14,38,.88) 0%, rgba(8,14,38,.76) 52%, rgba(8,14,38,.44) 100%);
    }
    .hero-inner {
      position: relative;
      z-index: 2;
      width: 100%;
      padding: 72px 0;
    }

    /* BCI badge */
    .bci-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      border: 1.5px solid var(--gold-b);
      border-radius: 50px;
      padding: 7px 18px;
      margin-bottom: 20px;
      background: rgba(201,168,76,.1);
    }
    .bci-badge span {
      font-size: 12px;
      font-weight: 700;
      color: #d4ae58;
      letter-spacing: .07em;
      text-transform: uppercase;
    }

    /* Admissions open badge */
    .adm-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: linear-gradient(135deg, #9b1c1c 0%, #c0001e 100%);
      border: 2px solid rgba(255,255,255,.25);
      border-radius: 6px;
      padding: 10px 20px;
      margin-bottom: 24px;
      box-shadow: 0 6px 28px rgba(155,28,28,.55), 0 0 0 4px rgba(155,28,28,.18);
      animation: adm-pulse 2.8s ease-in-out infinite;
      position: relative;
      overflow: hidden;
    }
    .adm-badge::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,.14), transparent);
      transform: translateX(-100%);
      animation: adm-shine 2.8s ease-in-out infinite;
    }
    .adm-dot {
      width: 9px; height: 9px;
      border-radius: 50%;
      background: #fff;
      animation: adm-blink 1.1s ease-in-out infinite;
      box-shadow: 0 0 0 3px rgba(255,255,255,.25);
      flex-shrink: 0;
    }
    .adm-txt {
      font-size: 14px;
      font-weight: 800;
      color: #fff;
      letter-spacing: .06em;
      text-transform: uppercase;
      line-height: 1;
    }
    .adm-txt strong { color: #ffd700; }
    @keyframes adm-pulse {
      0%,100% { box-shadow: 0 6px 28px rgba(155,28,28,.55), 0 0 0 4px rgba(155,28,28,.18); }
      50%      { box-shadow: 0 8px 36px rgba(155,28,28,.8),  0 0 0 7px rgba(155,28,28,.1); }
    }
    @keyframes adm-shine {
      0%      { transform: translateX(-100%); }
      60%,100%{ transform: translateX(200%); }
    }
    @keyframes adm-blink {
      0%,100% { opacity:1; transform: scale(1); }
      50%     { opacity:.4; transform: scale(.75); }
    }

    .hero-h1 {
      font-family: var(--fs);
      font-weight: 700;
      font-size: clamp(30px, 4.8vw, 56px);
      line-height: 1.12;
      color: #fff;
      margin-bottom: 18px;
    }
    .hero-h1 em { font-style: normal; color: var(--gold); }
    .hero-sub {
      font-size: 15px;
      font-weight: 600;
      color: rgba(255,255,255,.82);
      margin-bottom: 16px;
      line-height: 1.55;
    }
    .hero-body {
      font-size: 14px;
      line-height: 1.85;
      color: rgba(255,255,255,.62);
      margin-bottom: 36px;
    }
    .hero-stats {
      display: flex;
      flex-wrap: wrap;
      gap: 12px 32px;
      padding-top: 24px;
      border-top: 1px solid rgba(255,255,255,.14);
    }
    .stat-num {
      font-family: var(--fs);
      font-size: 28px;
      font-weight: 700;
      color: #fff;
      display: block;
      line-height: 1;
      margin-bottom: 4px;
    }
    .stat-lbl {
      font-size: 12px;
      color: rgba(255,255,255,.58);
      line-height: 1.4;
      max-width: 110px;
    }
    .stat-check { display: flex; align-items: center; gap: 8px; }
    .stat-check-ic {
      width: 22px; height: 22px;
      border-radius: 50%;
      background: rgba(201,168,76,.18);
      border: 1.5px solid var(--gold);
      display: flex; align-items: center; justify-content: center;
      font-size: 11px;
      color: var(--gold);
      flex-shrink: 0;
    }
    .stat-check-txt {
      font-size: 13px;
      font-weight: 600;
      color: rgba(255,255,255,.8);
      line-height: 1.35;
    }

    /* form card */
    .form-card {
      background: #fff;
      border-radius: 16px;
      padding: 32px 28px 24px;
      box-shadow: 0 28px 72px rgba(0,0,0,.38);
    }
    .form-card-title {
      font-family: var(--fs);
      font-size: 18px;
      font-weight: 700;
      color: var(--navy);
      text-align: center;
      margin-bottom: 22px;
    }
    .form-placeholder {
      background: #f5f7fc;
      border: 2px dashed #c8ceda;
      border-radius: 10px;
      padding: 40px 20px;
      text-align: center;
      color: #8a94a6;
      font-size: 13px;
      line-height: 1.65;
    }
    .form-placeholder strong { display: block; font-size: 14px; color: #4a5568; margin-bottom: 6px; }
    .form-consent {
      font-size: 11px;
      color: #aaa;
      line-height: 1.55;
      margin-top: 14px;
      text-align: center;
    }

    /* ══════════════════════════════════════
       3 — LEGAL LUMINARIES
    ══════════════════════════════════════ */
    .luminary-img {
      width: 100px;
      height: 100px;
      border-radius: 50%;
      object-fit: cover;
      border: 3px solid #e4ddc9;
      box-shadow: 0 6px 20px rgba(0,0,0,.13);
      transition: transform .25s, box-shadow .25s;
      margin: 0 auto 14px;
      display: block;
    }
    .luminary-img:hover {
      transform: scale(1.06);
      box-shadow: 0 10px 28px rgba(0,0,0,.18);
    }
    .luminary-name {
      color: var(--red);
      font-size: 15px;
      font-weight: 700;
      line-height: 1.35;
      margin-bottom: 5px;
    }
    .luminary-role {
      color: #555;
      font-size: 13px;
      line-height: 1.55;
    }

    /* ══════════════════════════════════════
       4 — CAMPUS TABS
    ══════════════════════════════════════ */
    #campus-tabs-bar {
      position: sticky;
      top: 42px; /* sits below fixed marquee */
      z-index: 80;
      background: var(--navy);
      box-shadow: 0 4px 24px rgba(8,14,38,.4);
    }
    #campus-tabs-bar .nav-link {
      color: rgba(255,255,255,.5);
      font-weight: 700;
      font-size: 14px;
      border: none;
      border-bottom: 3px solid transparent;
      border-radius: 0;
      padding: 16px 32px;
      transition: color .18s, border-color .18s, background .18s;
      letter-spacing: .02em;
    }
    #campus-tabs-bar .nav-link:hover {
      color: #fff;
      background: rgba(255,255,255,.06);
    }
    #campus-tabs-bar .nav-link.active {
      color: var(--gold);
      background: rgba(201,168,76,.12);
      border-bottom-color: var(--gold);
    }

    .prog-badge {
      display: inline-block;
      background: var(--gold-l);
      color: #9a7a30;
      font-size: 11px;
      font-weight: 700;
      padding: 5px 16px;
      border-radius: 50px;
      margin-bottom: 14px;
      letter-spacing: .6px;
      border: 1px solid var(--gold-b);
      text-transform: uppercase;
    }
    .prog-title {
      font-family: var(--fs);
      font-size: 26px;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 14px;
    }
    .prog-desc { color: #555; font-size: 14px; line-height: 1.85; }
    .prog-card {
      background: #fff;
      border-top: 3px solid var(--gold);
      border-radius: var(--radius);
      padding: 22px 18px;
      box-shadow: 0 4px 18px rgba(0,0,0,.07);
      height: 100%;
    }
    .prog-card h5 { color: var(--navy); font-weight: 700; margin-bottom: 6px; }
    .prog-dur { font-weight: 700; color: #9a7a30; font-size: 13px; margin-bottom: 8px; }
    .prog-info { font-size: 13px; color: #666; line-height: 1.65; margin-bottom: 0; }
    .campus-switch-btn {
      border: 1.5px solid var(--navy);
      color: var(--navy);
      background: none;
      border-radius: 50px;
      font-size: 13px;
      font-weight: 700;
      padding: 10px 24px;
      transition: background .2s, color .2s;
    }
    .campus-switch-btn:hover {
      background: var(--navy);
      color: #fff;
    }

    /* ══════════════════════════════════════
       5 — FEATURE CARDS (Courtroom section)
    ══════════════════════════════════════ */
    .feat-card {
      background: var(--grey);
      border-left: 4px solid var(--gold);
      border-radius: var(--radius);
      padding: 28px 24px;
      height: 100%;
      transition: box-shadow .2s, transform .2s;
    }
    .feat-card:hover {
      box-shadow: 0 10px 32px rgba(0,0,0,.1);
      transform: translateY(-3px);
    }
    .feat-ic { font-size: 30px; margin-bottom: 12px; line-height: 1; display: block; }
    .feat-ttl { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 9px; }
    .feat-desc { font-size: 14px; color: #555; line-height: 1.72; margin-bottom: 0; }

    /* ══════════════════════════════════════
       6 — PLACEMENTS & LOGOS
    ══════════════════════════════════════ */
    .rec-label {
      text-align: center;
      font-size: 12px;
      font-weight: 700;
      color: #999;
      text-transform: uppercase;
      letter-spacing: .1em;
      margin-bottom: 20px;
    }
    .rec-tile {
      display: inline-block;
      background: #fff;
      border: 1.5px solid #dde0e8;
      border-radius: 8px;
      padding: 8px 18px;
      font-size: 13px;
      font-weight: 600;
      color: var(--navy);
      transition: border-color .2s, background .2s, transform .15s;
    }
    .rec-tile:hover {
      border-color: var(--gold);
      background: var(--gold-l);
      transform: translateY(-2px);
    }
    .logo-tile {
      background: #fff;
      border: 1px solid #e4e6ee;
      border-radius: 10px;
      padding: 14px 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      height: 60px;
      transition: box-shadow .2s, border-color .2s;
      min-width: 100px;
    }
    .logo-tile:hover {
      box-shadow: 0 6px 20px rgba(0,0,0,.1);
      border-color: var(--gold);
    }
    .logo-tile img {
      height: 30px;
      width: auto;
      max-width: 110px;
      object-fit: contain;
      filter: grayscale(40%);
      transition: filter .2s;
    }
    .logo-tile:hover img { filter: grayscale(0%); }
    .logo-tile-txt {
      font-size: 12px;
      font-weight: 700;
      color: var(--navy);
      text-align: center;
      line-height: 1.3;
    }

    /* ══════════════════════════════════════
       7 — LEARN FROM THE BEST
    ══════════════════════════════════════ */
    .quote-photo {
      width: 130px;
      height: 130px;
      border-radius: 50%;
      object-fit: cover;
      border: 4px solid rgba(201,168,76,.55);
      box-shadow: 0 8px 28px rgba(0,0,0,.35);
      display: block;
      margin: 0 auto 16px;
    }
    .quote-name { color: #fff; font-weight: 700; font-size: 17px; margin-bottom: 5px; }
    .quote-role { color: rgba(255,255,255,.55); font-size: 13px; line-height: 1.55; }
    .sec-eyebrow {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: var(--gold);
      display: block;
      margin-bottom: 18px;
    }
    .blockquote-law {
      color: rgba(255,255,255,.88);
      font-size: 15px;
      line-height: 1.9;
      font-style: italic;
      border-left: 3px solid var(--gold);
      padding-left: 22px;
      margin: 0;
    }

    /* ══════════════════════════════════════
       8 — GET INSPIRED
    ══════════════════════════════════════ */
    .insp-card img {
      width: 100%;
      border-radius: var(--radius);
      object-fit: cover;
      aspect-ratio: 4/3;
      margin-bottom: 14px;
      box-shadow: 0 6px 20px rgba(0,0,0,.12);
      transition: transform .25s, box-shadow .25s;
    }
    .insp-card img:hover {
      transform: scale(1.025);
      box-shadow: 0 12px 32px rgba(0,0,0,.18);
    }
    .insp-name { color: var(--navy); font-size: 15px; font-weight: 700; margin-bottom: 4px; }
    .insp-role { color: #666; font-size: 13px; line-height: 1.55; }

    /* ══════════════════════════════════════
       9 — TESTIMONIALS
    ══════════════════════════════════════ */
    .test-slide { display: none; }
    .test-slide.active { display: block; }
    .test-quote {
      font-size: clamp(15px, 2vw, 18px);
      line-height: 1.88;
      color: #333;
      font-style: italic;
      margin-bottom: 28px;
    }
    .test-photo {
      width: 76px;
      height: 76px;
      border-radius: 50%;
      object-fit: cover;
      border: 3px solid #ddd;
      filter: grayscale(50%);
      display: block;
      margin: 0 auto 14px;
    }
    .test-name { font-weight: 700; font-size: 16px; color: var(--navy); margin-bottom: 3px; }
    .test-batch { color: #999; font-size: 13px; margin-bottom: 24px; }
    .test-arr {
      width: 40px; height: 40px;
      border-radius: 50%;
      border: 1.5px solid #ccc;
      background: #fff;
      font-size: 17px;
      color: var(--navy);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: border-color .2s, background .2s, color .2s;
    }
    .test-arr:hover { border-color: var(--navy); background: var(--navy); color: #fff; }
    .test-dot {
      width: 10px; height: 10px;
      border-radius: 50%;
      background: #ccc;
      border: none;
      cursor: pointer;
      transition: background .2s;
      padding: 0;
    }
    .test-dot.active { background: var(--navy); }
    .btn-advisor {
      background: var(--red);
      color: #fff;
      font-weight: 700;
      font-size: 14px;
      letter-spacing: .05em;
      text-transform: uppercase;
      border: none;
      border-radius: 8px;
      padding: 13px 36px;
      transition: background .2s, transform .15s;
    }
    .btn-advisor:hover { background: #7a1515; transform: translateY(-2px); color: #fff; }

    /* ══════════════════════════════════════
       10 — CTA STRIP
    ══════════════════════════════════════ */
    #iilm-cta {
      background: #111827;
      padding: 72px 24px;
      position: relative;
      overflow: hidden;
    }
    #iilm-cta::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(201,168,76,.07), transparent);
      pointer-events: none;
    }
    .cta-box {
      max-width: 780px;
      margin: 0 auto;
      background: var(--navy);
      border-radius: 20px;
      padding: 56px 48px;
      text-align: center;
      box-shadow: 0 24px 72px rgba(0,0,0,.5);
      border: 1px solid rgba(201,168,76,.18);
      position: relative;
      z-index: 1;
    }
    .cta-h {
      font-family: var(--fs);
      font-size: clamp(22px, 3.2vw, 34px);
      font-weight: 700;
      color: #fff;
      margin-bottom: 14px;
    }
    .cta-sub { color: rgba(255,255,255,.68); font-size: 15px; line-height: 1.75; margin-bottom: 30px; }
    .btn-apply {
      background: var(--red);
      color: #fff;
      font-weight: 700;
      font-size: 15px;
      letter-spacing: .05em;
      border: none;
      border-radius: 8px;
      padding: 15px 44px;
      box-shadow: 0 6px 20px rgba(155,28,28,.4);
      transition: background .2s, transform .15s, box-shadow .2s;
    }
    .btn-apply:hover {
      background: #7a1515;
      transform: translateY(-2px);
      box-shadow: 0 10px 30px rgba(155,28,28,.5);
      color: #fff;
    }
    @media (max-width: 576px) {
      .cta-box { padding: 36px 22px; }
      #campus-tabs-bar .nav-link { padding: 14px 16px; font-size: 13px; }
    }