.gd-courses__grid{
 display:grid;
 grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
 gap:16px;
}
.gd-course-card{
 border:1px solid #ddd;
 padding:16px;
 border-radius:12px;
}



:root{
  --gd-blue:#0b4f79;
  --gd-red:#c8102e;
  --gd-border:#e7e7e7;
  --gd-text:#1b1b1b;
  --gd-muted:#6b6b6b;
  --gd-green:#1aa353;
  --gd-bg:#ffffff;
  --gd-selected:#fdf3f5;
}

.gd-booking{
  max-width: 860px;
  margin: 0 auto;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--gd-text);
}

.gd-booking__top{
  display:flex;
  gap:14px;
  margin-bottom:14px;
}

.gd-btn{
  border:0;
  padding:14px 18px;
  border-radius:8px;
  font-weight:700;
  cursor:pointer;
  line-height:1;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  box-shadow: 0 6px 14px rgba(0,0,0,.10);
}

.gd-btn--ghost{
  background: #ED1B51;
  color:#fff;
  flex: 1;
}

.gd-btn--primary{
  background: var(--gd-red);
  color:#fff;
  min-width: 260px;
}

.gd-ico{font-size:18px}

/* Options container */
.gd-options{
  background: var(--gd-bg);
  border:1px solid var(--gd-border);
  border-radius:10px;
  overflow:hidden;
  box-shadow: 0 10px 20px rgba(0,0,0,.10);
}

/* Each row */
.gd-option{
  display:grid;
  grid-template-columns: 48px 1fr 220px;
  gap: 12px;
  padding: 16px 16px;
  border-top:1px solid var(--gd-border);
  align-items:center;
  cursor:pointer;
  position:relative;
}

.gd-option:first-child{border-top:0}

/* Hide native radio */
.gd-radio{
  position:absolute;
  opacity:0;
  pointer-events:none;
}

/* Custom radio circle */
.gd-dot{
  width:22px;
  height:22px;
  border-radius:50%;
  border: 3px solid #cfcfcf;
  display:inline-block;
  margin-left:6px;
  box-sizing:border-box;
  position:relative;
}

.gd-dot::after{
  content:"";
  position:absolute;
  inset:4px;
  border-radius:50%;
  background: transparent;
}

/* Selected state */
.gd-option:has(.gd-radio:checked){
  background: var(--gd-selected);
}

.gd-option:has(.gd-radio:checked) .gd-dot{
  border-color: var(--gd-red);
}

.gd-option:has(.gd-radio:checked) .gd-dot::after{
  background: var(--gd-red);
}

/* Left text area */
.gd-option__title{
  font-weight:800;
  font-size:18px;
  margin-bottom:2px;
}

.gd-option__sub{
  color: #ED1B51;
  font-weight:700;
  margin-bottom:8px;
}

.gd-option__meta{
  color: var(--gd-muted);
  font-size:13px;
  line-height:1.45;
}

/* Right price box */
.gd-option__price{
  border-left:1px solid var(--gd-border);
  padding-left:14px;
  text-align:right;
}

.gd-price__now{
  font-size:28px;
  font-weight:900;
  letter-spacing:.2px;
}

.gd-price__cur{
  font-size:12px;
  font-weight:800;
  margin-left:4px;
  vertical-align: super;
}

.gd-price__old{
  color:#9b9b9b;
  text-decoration: line-through;
  font-size:13px;
  margin-top:2px;
}

.gd-price__line{
  font-size:12px;
  color:#6a6a6a;
  margin-top:2px;
}

.gd-green{ color: var(--gd-green); font-weight:800; }

.gd-price__save{
  font-size:12px;
  color: var(--gd-red);
  margin-top:2px;
}

/* Last row looks a bit muted (optional) */
.gd-option--muted{
  background:#f6f6f6;
}
.gd-option--muted:has(.gd-radio:checked){
  background: #f1f1f1;
}

/* Responsive */
@media (max-width: 720px){
  .gd-booking__top{
    flex-direction:column;
  }
  .gd-btn--primary{
    min-width: unset;
    width:100%;
  }
  .gd-option{
    grid-template-columns: 40px 1fr;
    grid-template-rows: auto auto;
  }
  .gd-option__price{
    grid-column: 1 / -1;
    border-left:0;
    border-top:1px solid var(--gd-border);
    padding:12px 0 0;
    text-align:left;
  }
}
















:root{
    --gd-blue:#0b3c57;
    --gd-blue2:#08324a;
    --gd-banner:#f5e8bb;
    --gd-border:#cfcfcf;
    --gd-shadow:0 18px 40px rgba(0,0,0,.18);
    --gd-green:#43a80f;
    --gd-muted:#6b7280;
  }

  /* page wrap */
  .gd-enroll-wrap{
    display:flex;
    justify-content:center;
    padding:24px;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color:#111;
  }

  /* card */
  .gd-enroll-card{
    width:min(980px, 100%);
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:var(--gd-shadow);
    position:relative;
  }

  /* subtle background shapes like screenshot */
  .gd-enroll-card::before,
  .gd-enroll-card::after{
    content:"";
    position:absolute;
    inset:auto;
    pointer-events:none;
    opacity:.25;
  }
  .gd-enroll-card::before{
    width:520px;height:520px;border-radius:50%;
    background: radial-gradient(circle, #e9eef5 0%, transparent 60%);
    right:-180px; top:160px;
  }
  .gd-enroll-card::after{
    width:520px;height:520px;border-radius:50%;
    background: radial-gradient(circle, #e9eef5 0%, transparent 60%);
    left:-220px; top:-220px;
  }

  /* header */
  .gd-enroll-header{
    padding:26px 22px 18px;
    text-align:center;
    position:relative;
    z-index:1;
  }
  .gd-enroll-icon{
    display:inline-flex;
    width:34px;height:34px;
    align-items:center;justify-content:center;
    margin-bottom:10px;
    filter:saturate(1.2);
  }
  .gd-enroll-title{
    margin:0;
    font-size:28px;
    letter-spacing:.4px;
    font-weight:900;
    color:var(--gd-blue);
  }

  /* banner */
  .gd-enroll-banner{
    background:var(--gd-banner);
    padding:18px 20px;
    text-align:center;
    position:relative;
    z-index:1;
  }
  .gd-enroll-date{
    font-size:30px;
    font-weight:900;
    margin-bottom:6px;
    color:#111;
  }
  .gd-enroll-line{
    font-size:15px;
    font-weight:600;
    margin:2px 0;
  }
  .gd-old{
    text-decoration:line-through;
    color:#444;
    opacity:.85;
    margin:0 6px;
    font-weight:700;
  }
  .gd-price{
    font-weight:900;
  }

  /* section */
  .gd-enroll-section{
    padding:26px 24px 8px;
    text-align:center;
    position:relative;
    z-index:1;
  }
  .gd-round-badge{
    width:36px;height:36px;border-radius:50%;
    background:var(--gd-blue2);
    color:#fff;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    font-weight:900;
    margin:4px auto 10px;
  }
  .gd-section-title{
    margin:0 0 10px;
    font-size:26px;
    font-weight:900;
    color:var(--gd-blue);
  }
  .gd-section-sub{
    margin:0 auto;
    max-width:760px;
    font-size:14px;
    line-height:1.45;
    color:#111;
  }
  
  .gd-application-form{
    padding: 0 15px 20px 15px;
  }  
  /* form grid */
  .gd-form{ padding: 16px 24px 26px; position:relative; z-index:1; }
  .gd-grid{
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap:12px 14px;
    margin-top:10px;
  }

  .gd-field input{
    width:100%;
    height:54px;
    border:1px solid var(--gd-border);
    border-radius:4px;
    padding:0 18px;
    font-size:18px;
    outline:none;
    background:#fff;
  }
  .gd-field input::placeholder{ color:#3b3b3b; opacity:.75; }

  .gd-field input:focus{
    border-color:#8aa6b6;
    box-shadow: 0 0 0 3px rgba(11,60,87,.10);
  }

  /* voucher row */
  .gd-field--voucher{ grid-column: 1 / 2; }
  .gd-btn-voucher{
    grid-column: 2 / 3;
    height:54px;
    border:0;
    border-radius:4px;
    background:#9b9b9b;
    color:#fff;
    font-weight:900;
    letter-spacing:.4px;
    cursor:pointer;
  }
  .gd-btn-voucher:hover{ filter:brightness(.97); }

  /* checks */
  .gd-checks{
    margin-top:18px;
    display:flex;
    flex-direction:column;
    gap:14px;
  }

  .gd-check{
    display:grid;
    grid-template-columns: 28px 1fr;
    gap:12px;
    align-items:flex-start;
    cursor:pointer;
  }

  .gd-check input{
    position:absolute;
    opacity:0;
    pointer-events:none;
  }

  .gd-check-ui{
    width:20px;height:20px;
    border-radius:50%;
    border:2px solid var(--gd-blue2);
    margin-top:2px;
    position:relative;
  }
  .gd-check-ui::after{
    content:"";
    position:absolute;
    inset:4px;
    border-radius:50%;
    background:transparent;
  }
  .gd-check input:checked + .gd-check-ui::after{
    background:var(--gd-blue2);
  }

  .gd-check-text{
    font-size:14px;
    line-height:1.45;
    color:#0f172a;
  }

  /* submit */
  .gd-btn-submit{
    width:100%;
    margin-top:16px;
    height:62px;
    border:0;
    border-radius:4px;
    background: #ED1B51;
    color:#fff;
    font-weight:900;
    font-size:22px;
    cursor:pointer;
  }
  .gd-btn-submit:hover{ filter:brightness(.98); }

  /* responsive */
  @media (max-width: 820px){
    .gd-enroll-title{ font-size:22px; }
    .gd-enroll-date{ font-size:24px; }
    .gd-grid{ grid-template-columns: 1fr; }
    .gd-field--voucher{ grid-column:auto; }
    .gd-btn-voucher{ grid-column:auto; }
  }
  
.gd-options{
    display: none;
}  


.choose_date_pulse {
    background: #FFCB0B;
    text-align: center;
    padding: 0;
    position: relative;
    top: 0;
    left: 0;
    margin-bottom: 20px;
    display: block;
    z-index: 10;
    width: calc(100% - 16px);
    margin-top: -19px;
    border-radius: 5px;
    font-weight: 500;
    animation: popout 0.5s ease;
    -webkit-animation: pulse 1s infinite linear;
    height: 34px;
    line-height: 34px;
    color: #212529;
}
@keyframes pulse {
  0% {
    transform: scaleX(1)
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05)
  }
  to {
    transform: scaleX(1)
  }
}
.choose_date_pulse::after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 100px 0 100px;
    position: absolute;
    bottom: -14px;
    margin-bottom: 8px;
    /* margin-left: -30px; */
    /* left: 50%; */
    /* -webkit-transform: translate(-50%); */
    -moz-transform: translate(-50%);
    -ms-transform: translate(-50%);
    -o-transform: translate(-50%);
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 15px solid #FFCB0B; /* triangle color */
    /* transform: translate(-50%); */
    margin: auto !important;
    left: 0;
    right: 0;
    transform: none !important;
}