/* =====================================================================
   EventPro public website
   ===================================================================== */
:root {
    --ink: #17132b;
    --ink-2: #2a2349;
    --primary: #5b3cc4;
    --primary-dark: #4527a0;
    --gold: #e9a23b;
    --gold-soft: #fbefd9;
    --cream: #faf8f4;
    --muted: #6f6c85;
    --radius: 16px;
}
body.site { font-family: 'Poppins', system-ui, -apple-system, 'Segoe UI', sans-serif; color: #2b2840; background: #fff; font-size: 15.5px; line-height: 1.7; }
.site h1, .site h2, .site h3, .site .display-font { font-family: 'Playfair Display', Georgia, serif; font-weight: 700; color: var(--ink); letter-spacing: -.01em; }
.site h4, .site h5, .site h6 { font-weight: 600; color: var(--ink); }
.site a { color: var(--primary); }
.site a:hover { color: var(--primary-dark); text-decoration: none; }
.text-gold { color: var(--gold) !important; }
.bg-cream { background: var(--cream); }
.bg-ink { background: var(--ink); color: #d7d3ea; }
.bg-ink h1, .bg-ink h2, .bg-ink h3, .bg-ink h4, .bg-ink h5 { color: #fff; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.eyebrow { display: inline-block; font-size: .78rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: .75rem; }
.section-title { font-size: clamp(1.9rem, 3.2vw, 2.7rem); margin-bottom: 1rem; }
.section-lead { color: var(--muted); max-width: 640px; margin: 0 auto 3rem; }

/* Buttons */
.btn { border-radius: 50px; font-weight: 500; padding: .7rem 1.6rem; transition: all .2s ease; }
.btn-lg { padding: .9rem 2.1rem; font-size: 1rem; }
.btn-sm { padding: .35rem 1rem; }
.btn-gold { background: linear-gradient(135deg, var(--gold), #f5c46b); color: var(--ink); border: 0; box-shadow: 0 10px 24px rgba(233, 162, 59, .35); }
.btn-gold:hover { color: var(--ink); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(233, 162, 59, .45); }
.btn-primary { background: var(--primary); border-color: var(--primary); }
.btn-primary:hover, .btn-primary:focus { background: var(--primary-dark); border-color: var(--primary-dark); }
.btn-outline-light:hover { color: var(--ink); }
.btn-outline-primary { color: var(--primary); border-color: var(--primary); }
.btn-outline-primary:hover { background: var(--primary); border-color: var(--primary); }

/* Navbar */
.site-nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1030; padding: 1.1rem 0; transition: all .3s ease; }
.site-nav.scrolled, .site-nav.solid { background: rgba(23, 19, 43, .96); backdrop-filter: blur(10px); padding: .6rem 0; box-shadow: 0 6px 24px rgba(0,0,0,.15); }
.site-nav .navbar-brand { color: #fff; font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.35rem; display: flex; align-items: center; }
.site-nav .navbar-brand img { max-height: 42px; margin-right: .6rem; }
.site-nav .brand-mark { width: 38px; height: 38px; border-radius: 10px; background: linear-gradient(135deg, var(--gold), #f5c46b); color: var(--ink); display: inline-flex; align-items: center; justify-content: center; margin-right: .6rem; font-size: 1rem; }
.site-nav .nav-link { color: rgba(255,255,255,.85) !important; font-weight: 500; font-size: .92rem; padding: .5rem .9rem !important; }
.site-nav .nav-link:hover, .site-nav .nav-link.active { color: var(--gold) !important; }
.site-nav .navbar-toggler { border: 0; color: #fff; font-size: 1.4rem; }
@media (max-width: 991.98px) {
    .site-nav { background: rgba(23, 19, 43, .97); padding: .6rem 0; }
    .site-nav .navbar-collapse { padding: 1rem 0; }
}

/* Hero */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; color: #fff; background-size: cover; background-position: center; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(110deg, rgba(23,19,43,.92) 0%, rgba(23,19,43,.65) 50%, rgba(91,60,196,.35) 100%); }
.hero .container { position: relative; z-index: 2; padding-top: 90px; padding-bottom: 60px; }
.hero h1 { color: #fff; font-size: clamp(2.5rem, 5.5vw, 4.4rem); line-height: 1.1; margin-bottom: 1.5rem; }
.hero h1 em { font-style: italic; color: var(--gold); }
.hero .lead { font-size: 1.15rem; color: rgba(255,255,255,.85); max-width: 600px; margin-bottom: 2.2rem; font-weight: 300; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 1.5rem; margin-top: 3rem; }
.hero-badges .hb { display: flex; align-items: center; gap: .6rem; font-size: .9rem; color: rgba(255,255,255,.8); }
.hero-badges .hb i { color: var(--gold); }
.scroll-hint { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); z-index: 2; color: rgba(255,255,255,.7); animation: bob 2s infinite; }
@keyframes bob { 50% { transform: translate(-50%, 8px); } }

.page-hero { position: relative; padding: 170px 0 90px; color: #fff; background-size: cover; background-position: center; text-align: center; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(23,19,43,.85), rgba(23,19,43,.7)); }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; font-size: clamp(2.2rem, 4.5vw, 3.4rem); }
.page-hero p { color: rgba(255,255,255,.8); max-width: 640px; margin: 0 auto; }
.page-hero .breadcrumb { background: transparent; justify-content: center; margin: 0 0 .8rem; padding: 0; font-size: .85rem; }
.page-hero .breadcrumb a { color: var(--gold); }
.page-hero .breadcrumb-item.active { color: rgba(255,255,255,.7); }
.page-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.5); }

/* Stats strip */
.stats-strip { margin-top: -60px; position: relative; z-index: 5; }
.stats-strip .inner { background: #fff; border-radius: var(--radius); box-shadow: 0 20px 50px rgba(23,19,43,.12); padding: 2rem 1rem; }
.stat { text-align: center; }
.stat .num { font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 700; color: var(--primary); line-height: 1; }
.stat .lbl { color: var(--muted); font-size: .85rem; margin-top: .4rem; }

/* Cards */
.svc-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: 0 10px 30px rgba(23,19,43,.07); transition: all .3s ease; height: 100%; display: flex; flex-direction: column; border: 1px solid #f0edf8; }
.svc-card:hover { transform: translateY(-6px); box-shadow: 0 22px 44px rgba(23,19,43,.14); }
.svc-card .img { position: relative; height: 220px; overflow: hidden; }
.svc-card .img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.svc-card:hover .img img { transform: scale(1.07); }
.svc-card .price-tag { position: absolute; bottom: 14px; left: 14px; background: rgba(23,19,43,.85); color: #fff; padding: .3rem .85rem; border-radius: 30px; font-size: .8rem; }
.svc-card .price-tag b { color: var(--gold); }
.svc-card .body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.svc-card h3 { font-size: 1.3rem; margin-bottom: .5rem; }
.svc-card p { color: var(--muted); font-size: .93rem; flex: 1; }
.link-arrow { font-weight: 600; font-size: .9rem; }
.link-arrow i { transition: transform .2s; }
.link-arrow:hover i { transform: translateX(4px); }

.type-pill { display: flex; align-items: center; gap: .7rem; padding: .9rem 1.1rem; border-radius: 14px; background: #fff; border: 1px solid #ece8f6; color: var(--ink) !important; font-weight: 500; font-size: .92rem; transition: all .2s; height: 100%; }
.type-pill i { width: 38px; height: 38px; border-radius: 10px; background: var(--gold-soft); color: #b8760f; display: inline-flex; align-items: center; justify-content: center; }
.type-pill:hover { border-color: var(--primary); box-shadow: 0 8px 20px rgba(91,60,196,.12); transform: translateY(-2px); }

/* Packages */
.pkg-card { background: #fff; border-radius: 22px; padding: 2.2rem 1.9rem; box-shadow: 0 12px 34px rgba(23,19,43,.08); border: 1px solid #efecf7; height: 100%; display: flex; flex-direction: column; position: relative; transition: all .3s; }
.pkg-card:hover { transform: translateY(-6px); box-shadow: 0 24px 50px rgba(23,19,43,.14); }
.pkg-card.featured { background: linear-gradient(160deg, var(--ink), var(--ink-2)); color: #d7d3ea; border: 0; }
.pkg-card.featured h3, .pkg-card.featured .pkg-price { color: #fff; }
.pkg-card .ribbon { position: absolute; top: 20px; right: 20px; background: var(--gold); color: var(--ink); font-size: .7rem; font-weight: 700; padding: .3rem .8rem; border-radius: 20px; letter-spacing: .08em; text-transform: uppercase; }
.pkg-card .tier { font-size: .75rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.pkg-card h3 { font-size: 1.6rem; margin: .4rem 0 .6rem; }
.pkg-price { font-family: 'Playfair Display', serif; font-size: 2.3rem; font-weight: 700; color: var(--primary); line-height: 1.1; }
.pkg-price small { font-family: 'Poppins', sans-serif; font-size: .8rem; font-weight: 400; color: var(--muted); }
.pkg-meta { display: flex; gap: 1rem; flex-wrap: wrap; font-size: .82rem; color: var(--muted); margin: .9rem 0 1.2rem; }
.pkg-card.featured .pkg-meta, .pkg-card.featured .pkg-price small { color: rgba(255,255,255,.65); }
.pkg-list { list-style: none; padding: 0; margin: 0 0 1.5rem; flex: 1; }
.pkg-list li { padding: .35rem 0 .35rem 1.7rem; position: relative; font-size: .9rem; }
.pkg-list li::before { content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; left: 0; top: .4rem; color: var(--gold); font-size: .8rem; }
.pkg-list .grp { padding-left: 0; font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); font-weight: 600; margin-top: .6rem; }
.pkg-list .grp::before { display: none; }
.pkg-card.featured .pkg-list .grp { color: rgba(255,255,255,.5); }

/* Why us */
.why-item { display: flex; gap: 1.1rem; margin-bottom: 1.8rem; }
.why-item .ic { width: 56px; height: 56px; flex-shrink: 0; border-radius: 16px; background: rgba(233,162,59,.15); color: var(--gold); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; }
.why-item h5 { margin-bottom: .25rem; }
.img-stack { position: relative; padding: 0 0 40px 40px; }
.img-stack img.main { width: 100%; border-radius: 22px; height: 480px; object-fit: cover; box-shadow: 0 30px 60px rgba(0,0,0,.25); }
.img-stack .float-card { position: absolute; left: 0; bottom: 0; background: var(--gold); color: var(--ink); border-radius: 18px; padding: 1.4rem 1.6rem; box-shadow: 0 20px 40px rgba(0,0,0,.2); }
.img-stack .float-card .n { font-family: 'Playfair Display', serif; font-size: 2.6rem; font-weight: 700; line-height: 1; }

/* Events */
.event-card { background: #fff; border-radius: var(--radius); padding: 1.3rem; display: flex; gap: 1rem; align-items: center; border: 1px solid #efecf7; height: 100%; }
.event-card .cal { width: 64px; text-align: center; background: var(--primary); color: #fff; border-radius: 14px; padding: .5rem 0; flex-shrink: 0; line-height: 1.1; }
.event-card .cal .m { font-size: .7rem; text-transform: uppercase; letter-spacing: .1em; opacity: .85; }
.event-card .cal .d { font-family: 'Playfair Display', serif; font-size: 1.7rem; font-weight: 700; }

/* Testimonials */
.testi-card { background: #fff; border-radius: 20px; padding: 2rem; box-shadow: 0 12px 34px rgba(23,19,43,.07); height: 100%; position: relative; }
.testi-card .quote { position: absolute; top: 1.2rem; right: 1.5rem; font-size: 3rem; color: var(--gold-soft); font-family: Georgia, serif; line-height: 1; }
.testi-card p { font-style: italic; color: #4a4760; }
.testi-card img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; }
.stars { color: var(--gold); font-size: .85rem; }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 210px; gap: 14px; }
.gallery-grid a { position: relative; overflow: hidden; border-radius: 14px; display: block; }
.gallery-grid a:nth-child(1), .gallery-grid a:nth-child(6) { grid-column: span 2; grid-row: span 2; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.gallery-grid a:hover img { transform: scale(1.08); }
.gallery-grid a::after { content: '\f00e'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; inset: 0; background: rgba(23,19,43,.45); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; opacity: 0; transition: opacity .3s; }
.gallery-grid a:hover::after { opacity: 1; }
@media (max-width: 767.98px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; } .gallery-grid a:nth-child(6) { grid-column: span 1; grid-row: span 1; } }
.album-card { border-radius: 18px; overflow: hidden; position: relative; display: block; height: 320px; }
.album-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.album-card:hover img { transform: scale(1.06); }
.album-card .cap { position: absolute; inset: auto 0 0 0; padding: 1.6rem; background: linear-gradient(0deg, rgba(23,19,43,.92), transparent); color: #fff; }
.album-card .cap h4 { color: #fff; margin: 0; font-family: 'Playfair Display', serif; }
.lightbox { position: fixed; inset: 0; background: rgba(10,8,20,.94); z-index: 2000; display: none; align-items: center; justify-content: center; }
.lightbox.show { display: flex; }
.lightbox img { max-width: 92vw; max-height: 84vh; border-radius: 10px; }
.lightbox .lb-cap { position: absolute; bottom: 24px; left: 0; right: 0; text-align: center; color: #ddd; }
.lightbox button { position: absolute; background: rgba(255,255,255,.12); border: 0; color: #fff; width: 48px; height: 48px; border-radius: 50%; font-size: 1.1rem; }
.lightbox .lb-close { top: 20px; right: 20px; } .lightbox .lb-prev { left: 20px; } .lightbox .lb-next { right: 20px; }

/* FAQ */
.faq .card { border: 0; border-radius: 14px !important; margin-bottom: .8rem; box-shadow: 0 4px 16px rgba(23,19,43,.05); overflow: hidden; }
.faq .card-header { background: #fff; border: 0; padding: 0; }
.faq .card-header button { width: 100%; text-align: left; padding: 1.1rem 1.4rem; font-weight: 600; color: var(--ink); background: none; border: 0; display: flex; align-items: center; }
.faq .card-header button::after { content: '\2b'; margin-left: auto; font-size: 1.3rem; color: var(--primary); transition: transform .2s; }
.faq .card-header button[aria-expanded="true"]::after { transform: rotate(45deg); }
.faq .card-body { padding: 0 1.4rem 1.2rem; color: var(--muted); }

/* CTA band */
.cta-band { background: linear-gradient(120deg, var(--primary), #7a5ae0 60%, var(--gold)); border-radius: 26px; padding: 3.5rem; color: #fff; position: relative; overflow: hidden; }
.cta-band h2 { color: #fff; }

/* Contact */
.contact-item { display: flex; gap: 1rem; margin-bottom: 1.4rem; }
.contact-item .ic { width: 48px; height: 48px; border-radius: 14px; background: var(--gold-soft); color: #b8760f; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.map-frame { border: 0; width: 100%; height: 380px; border-radius: 20px; }
.social a { width: 42px; height: 42px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; background: rgba(255,255,255,.08); color: #fff; margin-right: .4rem; transition: background .2s; }
.social a:hover { background: var(--gold); color: var(--ink); }
.social.dark a { background: var(--gold-soft); color: #b8760f; }

/* Forms */
.site .form-control, .site .custom-select { border-radius: 12px; border: 1px solid #e2def0; padding: .7rem 1rem; height: auto; font-size: .95rem; }
.site .form-control:focus, .site .custom-select:focus { border-color: var(--primary); box-shadow: 0 0 0 .2rem rgba(91,60,196,.12); }
.site label { font-weight: 500; font-size: .87rem; color: #3b3752; }
.site .req { color: #e3342f; }
.form-card { background: #fff; border-radius: 22px; box-shadow: 0 20px 60px rgba(23,19,43,.1); padding: 2.4rem; }
.hp-field { position: absolute; left: -9999px; }

/* Booking wizard */
.wizard-steps { display: flex; justify-content: space-between; margin-bottom: 2.5rem; position: relative; }
.wizard-steps::before { content: ''; position: absolute; top: 22px; left: 8%; right: 8%; height: 3px; background: #ece8f6; z-index: 0; }
.wizard-steps .ws { flex: 1; text-align: center; position: relative; z-index: 1; }
.wizard-steps .ws .dot { width: 46px; height: 46px; border-radius: 50%; background: #fff; border: 3px solid #ece8f6; color: #a9a5bd; display: inline-flex; align-items: center; justify-content: center; font-weight: 700; transition: all .3s; }
.wizard-steps .ws .lbl { display: block; font-size: .8rem; color: var(--muted); margin-top: .5rem; font-weight: 500; }
.wizard-steps .ws.active .dot { background: var(--primary); border-color: var(--primary); color: #fff; box-shadow: 0 8px 20px rgba(91,60,196,.35); }
.wizard-steps .ws.done .dot { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.wizard-steps .ws.active .lbl { color: var(--primary); }
@media (max-width: 575.98px) { .wizard-steps .ws .lbl { font-size: .68rem; } .wizard-steps .ws .dot { width: 38px; height: 38px; } }
.wstep { display: none; animation: fadeUp .35s ease; }
.wstep.active { display: block; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.choice { position: relative; display: block; cursor: pointer; margin: 0; height: 100%; }
.choice input { position: absolute; opacity: 0; }
.choice .box { border: 2px solid #ece8f6; border-radius: 16px; padding: 1.1rem; height: 100%; transition: all .2s; background: #fff; }
.choice:hover .box { border-color: #cfc5f1; }
.choice input:checked + .box { border-color: var(--primary); background: #f7f4ff; box-shadow: 0 8px 22px rgba(91,60,196,.14); }
.choice input:checked + .box .check { opacity: 1; }
.choice .check { position: absolute; top: 12px; right: 12px; width: 24px; height: 24px; border-radius: 50%; background: var(--primary); color: #fff; font-size: .7rem; display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity .2s; }
.addon-item { display: flex; align-items: center; padding: .7rem .9rem; border: 1px solid #ece8f6; border-radius: 12px; margin-bottom: .5rem; background: #fff; transition: border-color .2s; }
.addon-item.on { border-color: var(--primary); background: #f9f7ff; }
.addon-item .qty { width: 70px; }
.est-box { background: linear-gradient(160deg, var(--ink), var(--ink-2)); color: #d7d3ea; border-radius: 20px; padding: 1.8rem; position: sticky; top: 100px; }
.est-box h5 { color: #fff; }
.est-box .total { font-family: 'Playfair Display', serif; font-size: 2.2rem; color: var(--gold); font-weight: 700; }
.est-line { display: flex; font-size: .85rem; padding: .3rem 0; border-bottom: 1px dashed rgba(255,255,255,.1); }
.est-line span:last-child { margin-left: auto; white-space: nowrap; padding-left: .5rem; }
.summary-block { background: var(--cream); border-radius: 16px; padding: 1.3rem 1.5rem; margin-bottom: 1rem; }
.summary-block h6 { font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: .7rem; }
.summary-block dl { margin: 0; display: grid; grid-template-columns: 150px 1fr; gap: .25rem .8rem; font-size: .9rem; }
.summary-block dt { color: var(--muted); font-weight: 400; }
@media (max-width: 575.98px) { .summary-block dl { grid-template-columns: 1fr; } .summary-block dt { margin-top: .4rem; } }
.terms-box { max-height: 200px; overflow: auto; background: #fff; border: 1px solid #ece8f6; border-radius: 12px; padding: 1rem; font-size: .85rem; white-space: pre-line; color: var(--muted); }
.slot-msg { font-size: .88rem; border-radius: 12px; padding: .7rem 1rem; }
.status-track { list-style: none; padding: 0; margin: 0; }
.status-track li { position: relative; padding: 0 0 1.2rem 2rem; }
.status-track li::before { content: ''; position: absolute; left: 7px; top: 18px; bottom: 0; width: 2px; background: #ece8f6; }
.status-track li:last-child::before { display: none; }
.status-track li .d { position: absolute; left: 0; top: 4px; width: 16px; height: 16px; border-radius: 50%; background: var(--primary); box-shadow: 0 0 0 4px #efeafd; }
.success-icon { width: 96px; height: 96px; border-radius: 50%; background: linear-gradient(135deg, #22c55e, #16a34a); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-size: 2.6rem; box-shadow: 0 16px 34px rgba(34,197,94,.35); }
.ref-box { display: inline-block; background: var(--cream); border: 2px dashed var(--gold); border-radius: 16px; padding: 1rem 2rem; font-family: 'Courier New', monospace; font-size: 1.6rem; font-weight: 700; color: var(--ink); letter-spacing: .06em; }

/* Availability calendar */
.fc-avail-legend span { display: inline-flex; align-items: center; margin-right: 1.2rem; font-size: .85rem; }
.fc-avail-legend i { width: 14px; height: 14px; border-radius: 4px; margin-right: .4rem; display: inline-block; }
.fc .day-available { background: #ecfdf3 !important; }
.fc .day-tentative { background: #fff7e6 !important; }
.fc .day-full { background: #fdecec !important; }
.fc .day-past { background: #f6f6f8 !important; opacity: .6; }
.fc .fc-daygrid-day { cursor: pointer; }
.fc .fc-daygrid-day-bottom { font-size: .7rem; }
.fc .avail-tag { font-size: .68rem; font-weight: 600; padding: 0 4px; }
.fc .fc-button-primary { background: var(--primary); border-color: var(--primary); border-radius: 30px; }

/* Footer */
.site-footer { background: var(--ink); color: #a9a4c4; padding: 80px 0 0; font-size: .92rem; }
.site-footer h5 { color: #fff; font-family: 'Playfair Display', serif; margin-bottom: 1.2rem; }
.site-footer a { color: #a9a4c4; }
.site-footer a:hover { color: var(--gold); }
.site-footer ul { list-style: none; padding: 0; }
.site-footer ul li { margin-bottom: .55rem; }
.site-footer .bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 1.4rem 0; margin-top: 50px; font-size: .82rem; }
.back-top { position: fixed; right: 22px; bottom: 22px; width: 46px; height: 46px; border-radius: 50%; background: var(--gold); color: var(--ink) !important; display: none; align-items: center; justify-content: center; z-index: 1000; box-shadow: 0 10px 24px rgba(0,0,0,.2); }
.back-top.show { display: flex; }

/* Utilities */
.rounded-xl { border-radius: 22px !important; }
.shadow-soft { box-shadow: 0 16px 40px rgba(23,19,43,.1) !important; }
.min-w-0 { min-width: 0; }
.badge { font-weight: 600; padding: .4em .8em; }
.badge-purple { background: #7c3aed; color: #fff; } .badge-orange { background: #f97316; color: #fff; } .badge-teal { background: #0d9488; color: #fff; } .badge-indigo { background: #4338ca; color: #fff; }
.site-nav .btn, .site .btn { white-space: nowrap; }
.site-nav .navbar-brand span { white-space: nowrap; }
@media (min-width: 992px) and (max-width: 1299.98px) {
    .site-nav .nav-link { padding: .5rem .55rem !important; font-size: .86rem; }
    .site-nav .navbar-brand { font-size: 1.1rem; }
}
