  :root{
    --navy: #16233F;
    --navy-light: #2A3B63;
    --brass: #C7A24C;
    --brass-soft: #E4CD8C;
    --cream: #FBF7EE;
    --ink: #1C1E22;
    --maroon: #7A2E2E;
    --card-radius: 4px;
  }

  .courses-section{
    padding: 50px 0px;
  }
  .h-course-title{color: #3e3f95; margin: 15px 0px; }
  .hotel-list li{font-size: 15px; color: #fc5655; list-style: disc;}
  .hotel-list{margin-left: 17px;}
  .eyebrow{
    
    font-size: 0.78rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--maroon);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
  }
  .eyebrow::before{
    content: "";
    width: 26px;
    height: 1px;
    background: var(--maroon);
    display: inline-block;
  }

  .section-title{
    
    font-weight: 600;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    color: var(--navy);
    margin: 0.75rem 0 0.5rem;
    letter-spacing: -0.01em;
  }

  .section-subtitle{
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    color: #5b6478;
    max-width: 46ch;
  }

  /* ---------- Boarding pass / ticket stub card ---------- */
  .ticket{
    background: #fff;
    border-radius: var(--card-radius);
    position: relative;
    overflow: visible;
    box-shadow: 0 1px 2px rgba(22,35,63,0.06), 0 12px 24px -12px rgba(22,35,63,0.18);
    transition: transform .35s ease, box-shadow .35s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  .ticket:hover{
    transform: translateY(-6px);
    box-shadow: 0 4px 10px rgba(22,35,63,0.08), 0 24px 36px -14px rgba(22,35,63,0.28);
  }

  .ticket__image-wrap{
    position: relative;
    border-radius: var(--card-radius) var(--card-radius) 0 0;
    overflow: hidden;
    aspect-ratio: 4 / 3;
  }

  .ticket__image-wrap img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
  }

  .ticket:hover .ticket__image-wrap img{
    transform: scale(1.05);
  }

  /* course code stamp */
  .ticket__stamp{
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(22,35,63,0.88);
    color: var(--brass-soft);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    padding: 0.35rem 0.6rem;
    border: 1px solid var(--brass);
    border-radius: 2px;
    transform: rotate(2deg);
  }

  /* perforation divider with cut notches */
  .ticket__perforation{
    position: relative;
    height: 0;
    border-top: 2px dashed #d8d2c4;
    margin: 0 0;
  }
  .ticket__perforation::before,
  .ticket__perforation::after{
    content: "";
    position: absolute;
    top: -10px;
    width: 20px;
    height: 20px;
    background: var(--cream);
    border-radius: 50%;
  }
  .ticket__perforation::before{ left: -10px; }
  .ticket__perforation::after{ right: -10px; }

  .ticket__body{
    padding: 1.75rem 1.6rem 1.9rem;
    display: flex;
    flex-direction: column;
    flex: 1;
  }

  .ticket__meta{
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--brass);
    font-weight: 600;
    margin-bottom: 0.6rem;
    display: flex;
    justify-content: space-between;
  }

  .ticket__title{
    
    font-weight: 600;
    font-size: 1.35rem;
    color: var(--navy);
    line-height: 1.25;
    margin-bottom: 0.85rem;
  }

  .ticket__desc{
    font-size: 0.94rem;
    line-height: 1.6;
    color: #464c58;
    flex: 1;
  }

  /* duration / format detail strip - boarding-pass style fields */
  .ticket__details{
    display: flex;
    margin-top: auto;
    padding-top: 1.1rem;
  }

  .ticket__field{
    flex: 1;
    padding-right: 1rem;
  }
  .ticket__field + .ticket__field{
    padding-left: 1rem;
    border-left: 1px dashed #e2dccb;
  }

  .ticket__field-label{
    display: block;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.62rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #3e3f95;
    margin-bottom: 0.25rem;
  }

  .ticket__field-value{
    display: block;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--navy);
    letter-spacing: 0.01em;
  }

  /* tear-off stub: barcode + Read More */
  .ticket__stub{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.9rem;
    padding: 1rem 1.6rem 1.3rem;
    background: #FCFAF4;
  }

  .ticket__barcode{
    flex: 1;
    height: 30px;
    background-image: repeating-linear-gradient(
      90deg,
      var(--ink) 0px, var(--ink) 2px,
      transparent 2px, transparent 5px,
      var(--ink) 5px, var(--ink) 6px,
      transparent 6px, transparent 10px,
      var(--ink) 10px, var(--ink) 13px,
      transparent 13px, transparent 16px,
      var(--ink) 16px, var(--ink) 17px,
      transparent 17px, transparent 22px
    );
    opacity: 0.55;
    max-width: 110px;
  }

  .ticket__more{
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
   
    font-size:17px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: capitalize;
    color: #fff;
    background:#3e3f95;
    border: 1px solid var(--navy);
    border-radius: 2px;
    padding:7px 21px;
    text-decoration: none;
    transition: background .25s ease, color .25s ease, transform .25s ease, border-color .25s ease;
    white-space: nowrap;
  }
.ser-btn{margin-top: 60px;}
  .ticket__more svg{
    width: 13px;
    height: 13px;
    transition: transform .25s ease;
  }

  .ticket__more:hover{
    background: #fc5655;
    border-color: #fc5655;
    color: #fff;
  }

  .ticket__more:hover svg{
    transform: translateX(3px);
  }

  @media (max-width: 767px){
    .courses-section{ padding: 3.5rem 0 4rem; }
    .ticket__stub{ padding: 1rem 1.4rem 1.25rem; }
  }
