/* =========================================================
   🔹 Flash Toast (animat sus/jos)
   ========================================================= */
	/* 🔔 Flash Toast (animat sus/jos) */
	.flash-toast {
		position: fixed;
		top: -120px;
		left: 50%;
		transform: translateX(-50%);
		z-index: 9999;
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 8px;
		transition: top 0.5s ease-in-out, opacity 0.5s ease-in-out;
		opacity: 0;
	}
	.flash-toast.show { top: 20px; opacity: 1; }

	.toast-item {
		display: flex;
		align-items: center;
		gap: 8px;
		padding: 12px 20px;
		border-radius: 8px;
		min-width: 240px;
		max-width: 420px;
		text-align: center;
		color: #fff;
		font-weight: 500;
		box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
		background-color: #2d3748;
	}
	.toast-item.success { background-color: #16a34a; }
	.toast-item.danger { background-color: #dc2626; }
	.toast-item.warning { background-color: #f59e0b; }
	.toast-item.info { background-color: #2563eb; }
	.toast-item i { width: 20px; height: 20px; }



    :root{
      --bb-primary:#111827;
      --bb-accent:#fbbf24;
      --bb-bg:#ffffff;
      --bb-muted:#6b7280;
      --bb-soft:#f5f7fb;
      --bb-border: rgba(17,24,39,.12);
      --bb-radius: 18px;
      --bb-shadow: 0 18px 50px rgba(17,24,39,.10);
    }

    html, body { height:100%; }
    body{
      font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
      background: var(--bb-bg);
      color: var(--bb-primary);
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    /* Navbar */
    .bb-navbar{
      background: #fff;
      border-bottom: 1px solid var(--bb-border);
    }
    .bb-brand{
      display:flex; align-items:center; gap:.65rem;
      text-decoration:none; color: var(--bb-primary);
    }
    .bb-brand img{ height:40px; width:auto; border-radius:10px; }
    .bb-brand .title{ font-weight:800; letter-spacing:-.02em; }
    .bb-brand .tagline{ color: var(--bb-muted); font-size:.78rem; margin-top:-.15rem; }
    .bb-navlink{
      font-weight:700;
      color: var(--bb-primary) !important;
      border-radius: 12px;
      padding: .55rem .85rem !important;
      transition: all .15s ease;
    }
    .bb-navlink:hover{
      background: rgba(251,191,36,.18);
      color: var(--bb-primary) !important;
    }
    .bb-navlink.active{
      background: rgba(17,24,39,.08);
      border: 1px solid rgba(17,24,39,.10);
    }
    .bb-cta{
      border-radius: 14px;
      font-weight:800;
      padding: .65rem 1rem;
      border: 1px solid rgba(251,191,36,.55);
      background: var(--bb-accent);
      color: #111827;
      box-shadow: 0 12px 30px rgba(251,191,36,.25);
    }
    .bb-cta:hover{ filter: brightness(.98); }

    /* Hero */
    .bb-hero{
      background:
        radial-gradient(1000px 500px at 20% 20%, rgba(251,191,36,.20), transparent 60%),
        radial-gradient(900px 420px at 90% 10%, rgba(17,24,39,.10), transparent 55%),
        linear-gradient(180deg, #ffffff, #f8fafc);
      border-bottom: 1px solid var(--bb-border);
    }
    .bb-pill{
      display:inline-flex; gap:.5rem; align-items:center;
      border: 1px solid rgba(17,24,39,.12);
      background: rgba(255,255,255,.75);
      backdrop-filter: blur(8px);
      padding: .35rem .65rem;
      border-radius: 999px;
      font-weight:700;
      font-size:.85rem;
      color: var(--bb-primary);
    }
    .bb-h1{
      font-weight: 900;
      letter-spacing: -0.04em;
      line-height: 1.05;
    }
    .bb-lead{
      color: var(--bb-muted);
      font-size: 1.05rem;
      line-height: 1.6;
    }
    .bb-card{
      border-radius: var(--bb-radius);
      border: 1px solid var(--bb-border);
      background:#fff;
      box-shadow: 0 10px 34px rgba(17,24,39,.06);
    }
    .bb-card:hover{ box-shadow: var(--bb-shadow); transform: translateY(-1px); transition: .2s ease; }
    .bb-soft{
      background: var(--bb-soft);
      border: 1px solid rgba(17,24,39,.08);
      border-radius: var(--bb-radius);
    }

    /* Sections */
    .bb-section{ padding: 72px 0; }
    .bb-section-title{ font-weight: 900; letter-spacing: -0.03em; }
    .bb-kicker{ color: var(--bb-muted); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; font-size: .78rem; }

    /* Tabs content areas */
    .page{ display:none; }
    .page.active{ display:block; }

    /* Gallery */
    .bb-gallery img{
      width:100%;
      height: 240px;
      object-fit: cover;
      border-radius: 16px;
      border: 1px solid rgba(17,24,39,.10);
    }

    /* Footer */
    .bb-footer{
      background: #0b1220;
      color: rgba(255,255,255,.85);
    }
    .bb-footer a{ color: rgba(255,255,255,.78); text-decoration:none; }
    .bb-footer a:hover{ color: #fff; text-decoration: underline; }
    .bb-footer .bb-foot-title{ color:#fff; font-weight: 900; }
    .bb-social a{
      display:inline-flex; align-items:center; justify-content:center;
      width: 42px; height:42px;
      border-radius: 14px;
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.10);
    }
    .bb-social a:hover{ background: rgba(251,191,36,.18); border-color: rgba(251,191,36,.35); }

    /* Helpers */
    .bb-badge{
      border-radius: 999px;
      padding: .25rem .6rem;
      font-weight: 800;
      border: 1px solid rgba(17,24,39,.12);
      background: rgba(255,255,255,.8);
    }
    .bb-divider{
      height: 1px;
      background: rgba(255,255,255,.14);
      margin: 22px 0;
    }
    .bb-mini{
      color: var(--bb-muted);
      font-size: .95rem;
    }


















