/* ============================================================
   BOOTCAMP PAGE
   ============================================================ */

/* ---- Hero ---- */
.sfc-bc-hero {
    padding: 56px 0 40px;
    background: #fff;
    text-align: center;
}
.sfc-bc-hero-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 24px;
}
.sfc-bc-btn-solid {
    display: inline-flex;
    align-items: center;
    background: #1B3A2D;
    color: #fff;
    border-radius: 100px;
    padding: 13px 30px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
}
.sfc-bc-btn-solid:hover { background: #0f261d; color: #fff; transform: translateY(-1px); }
.sfc-bc-btn-outline {
    display: inline-flex;
    align-items: center;
    border: 2px solid #1B3A2D;
    color: #1B3A2D;
    border-radius: 100px;
    padding: 11px 28px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    background: transparent;
    transition: all 0.2s;
}
.sfc-bc-btn-outline:hover { background: #1B3A2D; color: #fff; }

/* ---- Feature Cards ---- */
.sfc-bc-features {
    background: #fff;
    padding: 48px 0 56px;
    border-top: 1px solid #E5E7EB;
    border-bottom: 1px solid #E5E7EB;
}
.sfc-bc-feat-card {
    text-align: center;
    padding: 32px 24px;
    height: 100%;
}
.sfc-bc-feat-icon {
    width: 56px;
    height: 56px;
    background: #E8F5EE;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #1B7A47;
    margin: 0 auto 16px;
}
.sfc-bc-feat-title {
    font-size: 15px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
}
.sfc-bc-feat-desc {
    font-size: 13px;
    color: #6B7280;
    line-height: 1.65;
    margin: 0;
}

/* ---- Listing Section ---- */
.sfc-bc-section {
    background: #F3F4F6;
    padding: 28px 0 80px;
}
.sfc-bc-section-title {
    font-size: 36px;
    font-weight: 800;
    color: #111827;
    letter-spacing: -0.5px;
    margin-bottom: 10px;
}
.sfc-bc-section-desc {
    font-size: 15px;
    color: #6B7280;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ---- Bootcamp Card ---- */
.sfc-bc-card {
    background: #fff;
    border-radius: 16px;
    border: 1.5px solid #E5E7EB;
    padding: 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s, border-color 0.2s;
}
.sfc-bc-card:hover {
    box-shadow: 0 8px 32px rgba(27,58,45,.10);
    border-color: #C9DDD4;
}
.sfc-bc-card--featured {
    border: 2px solid #F5A623;
    background: #FFFDF7;
}

/* ---- Card Top: status badge + featured tag ---- */
.sfc-bc-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
    gap: 8px;
}
.sfc-bc-status-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 100px;
    padding: 4px 12px;
}
.sfc-bc-badge--open     { background: #D1FAE5; color: #065F46; }
.sfc-bc-badge--coming   { background: #A7F0E1; color: #0F6B57; }
.sfc-bc-badge--ongoing  { background: #FEF3C7; color: #92400E; }
.sfc-bc-badge--closed   { background: #F3F4F6; color: #6B7280; }
.sfc-bc-feat-tag {
    font-size: 10px;
    font-weight: 700;
    color: #fff;
    background: #F5A623;
    border-radius: 100px;
    padding: 3px 10px;
    white-space: nowrap;
}

/* ---- Card Body ---- */
.sfc-bc-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
    line-height: 1.3;
}
.sfc-bc-card-desc {
    font-size: 13px;
    color: #6B7280;
    line-height: 1.65;
    margin-bottom: 16px;
}
.sfc-bc-meta-list {
    list-style: none;
    padding: 0;
    margin: 0 0 14px;
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.sfc-bc-meta-list li {
    font-size: 13px;
    color: #374151;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}
.sfc-bc-meta-list li i {
    color: #1B7A47;
    font-size: 12px;
    width: 14px;
    text-align: center;
    margin-top: 2px;
    flex-shrink: 0;
}
.sfc-bc-availability {
    color: #B45309 !important;
    font-weight: 600;
}
.sfc-bc-availability i { color: #F59E0B !important; }

/* ---- Skill Tags ---- */
.sfc-bc-skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
}
.sfc-bc-skill-tag {
    font-size: 11px;
    color: #374151;
    background: #F3F4F6;
    border-radius: 100px;
    padding: 3px 10px;
    border: 1px solid #E5E7EB;
}

/* ---- Divider ---- */
.sfc-bc-divider {
    border-color: #E5E7EB;
    margin: 16px 0;
}

/* ---- Price Section ---- */
.sfc-bc-price-section {
    margin-bottom: 16px;
}
.sfc-bc-price-old {
    font-size: 12px;
    color: #9CA3AF;
    text-decoration: line-through;
    display: block;
    margin-bottom: 2px;
}
.sfc-bc-price {
    font-size: 22px;
    font-weight: 800;
    color: #1B3A2D;
    display: block;
    line-height: 1.2;
}
.sfc-bc-price-note {
    font-size: 11px;
    color: #9CA3AF;
    display: block;
    margin-top: 4px;
}

/* ---- CTA Button ---- */
.sfc-bc-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    border-radius: 100px;
    padding: 13px 20px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    margin-top: auto;
    text-align: center;
}
.sfc-bc-cta-solid {
    background: #1B3A2D;
    color: #fff;
    border: 2px solid #1B3A2D;
}
.sfc-bc-cta-solid:hover { background: #0f261d; border-color: #0f261d; color: #fff; transform: translateY(-1px); }
.sfc-bc-cta-outline {
    background: transparent;
    color: #1B3A2D;
    border: 2px solid #1B3A2D;
}
.sfc-bc-cta-outline:hover { background: #1B3A2D; color: #fff; }
.sfc-bc-cta-disabled {
    background: #F3F4F6;
    color: #9CA3AF;
    border: 2px solid #E5E7EB;
    pointer-events: none;
    cursor: not-allowed;
}

/* ---- CTA Row (listing card: cart icon + main button) ---- */
.sfc-bc-cta-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
}
.sfc-bc-cta-row .sfc-bc-cta-btn {
    flex: 1;
    width: auto;
    margin-top: 0;
}
.sfc-bc-cart-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    min-width: 50px;
    height: 50px;
    border-radius: 100px;
    border: 2px solid #1B3A2D;
    background: #1B3A2D;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}
.sfc-bc-cart-icon-btn:hover,
.sfc-bc-cart-icon-btn.in-cart {
    background: transparent;
    color: #1B3A2D;
}

/* ---- Empty State ---- */
.sfc-bc-empty {
    text-align: center;
    padding: 60px 20px;
}
.sfc-bc-empty i {
    font-size: 48px;
    color: #D1FAE5;
    display: block;
    margin-bottom: 16px;
}
.sfc-bc-empty p {
    font-size: 16px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 4px;
}
.sfc-bc-empty small { font-size: 13px; color: #6B7280; }

/* ---- Bootcamp Responsive ---- */
@media (max-width: 991px) {
    .sfc-bc-section-title { font-size: 28px; }
}
@media (max-width: 767px) {
    .sfc-bc-hero { padding: 40px 0 28px; }
    .sfc-bc-hero-btns { flex-direction: column; }
    .sfc-bc-hero-btns a { width: 100%; justify-content: center; }
    .sfc-bc-section-title { font-size: 24px; }
    .sfc-bc-card { padding: 18px; }
}

