/* ==========================================================
   SkillBarta.com — Main Stylesheet
   Theme color: #EF3E46
   Fonts: Hind Siliguri (Bengali) + Poppins (English)
   ========================================================== */

:root{
  --primary:#EF3E46;
  --primary-dark:#c92e35;
  --primary-light:#ff6b72;
  --bg:#ffffff;
  --bg-soft:#f8f7fa;
  --card-bg:#ffffff;
  --text:#221f26;
  --text-muted:#6b6772;
  --border:#ecebee;
  --shadow: 0 8px 24px rgba(239,62,70,.08);
  --radius:16px;
  --header-h:70px;
  --bottom-nav-h:64px;
  --font-en:'Poppins',sans-serif;
  --font-bn:'Hind Siliguri','Poppins',sans-serif;
  --transition:.25s ease;
}

[data-theme="dark"]{
  --bg:#121016;
  --bg-soft:#19161d;
  --card-bg:#1e1a22;
  --text:#f3f1f5;
  --text-muted:#a49fac;
  --border:#2d2934;
  --shadow: 0 8px 24px rgba(0,0,0,.4);
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:var(--font-bn), var(--font-en);
  transition:background var(--transition), color var(--transition);
  padding-bottom:var(--bottom-nav-h);
}
:lang(en), .en-text{font-family:var(--font-en), var(--font-bn);}
img{max-width:100%; display:block;}
a{text-decoration:none; color:inherit;}
ul{list-style:none; margin:0; padding:0;}
.container{width:100%; max-width:1180px; margin:0 auto; padding:0 18px;}
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  background:var(--primary); color:#fff; border:none; border-radius:50px;
  padding:13px 28px; font-weight:600; font-size:15px; cursor:pointer;
  transition:transform var(--transition), background var(--transition), box-shadow var(--transition);
  box-shadow:var(--shadow);
}
.btn:hover{background:var(--primary-dark); transform:translateY(-2px);}
.btn-outline{background:transparent; color:var(--primary); border:2px solid var(--primary); box-shadow:none;}
.btn-outline:hover{background:var(--primary); color:#fff;}
.btn-sm{padding:8px 18px; font-size:13px;}
.btn-block{width:100%;}
.text-center{text-align:center;}
.section{padding:64px 0;}
.section-title{font-size:32px; font-weight:700; margin-bottom:10px;}
.section-sub{color:var(--text-muted); margin-bottom:36px; font-size:15px;}
.badge{
  display:inline-block; background:rgba(239,62,70,.1); color:var(--primary);
  padding:6px 16px; border-radius:50px; font-size:13px; font-weight:600; margin-bottom:14px;
}

/* ---------- Header ---------- */
.site-header{
  position:sticky; top:0; z-index:60; height:var(--header-h);
  background:var(--bg); border-bottom:1px solid var(--border);
  display:flex; align-items:center;
  backdrop-filter:blur(8px);
}
.site-header .container{display:flex; align-items:center; justify-content:space-between;}
.logo{font-size:24px; font-weight:800; color:var(--primary); display:flex; align-items:center; gap:8px;}
.logo span{color:var(--text);}
.nav-desktop{display:flex; gap:30px;}
.nav-desktop a{font-weight:600; font-size:15px; color:var(--text); position:relative; padding:6px 0;}
.nav-desktop a:hover, .nav-desktop a.active{color:var(--primary);}
.header-actions{display:flex; align-items:center; gap:14px;}
.icon-btn{
  width:42px; height:42px; border-radius:50%; display:flex; align-items:center; justify-content:center;
  background:var(--bg-soft); border:1px solid var(--border); cursor:pointer; color:var(--text);
  transition:background var(--transition);
}
.icon-btn:hover{background:var(--primary); color:#fff;}
.hamburger{display:none;}

/* ---------- Off-canvas menu ---------- */
.offcanvas-overlay{
  position:fixed; inset:0; background:rgba(0,0,0,.5); z-index:90; opacity:0; pointer-events:none; transition:opacity var(--transition);
}
.offcanvas-overlay.active{opacity:1; pointer-events:auto;}
.offcanvas{
  position:fixed; top:0; right:-320px; width:290px; height:100%; background:var(--card-bg);
  z-index:95; transition:right .3s ease; padding:24px 20px; overflow-y:auto;
  box-shadow:-6px 0 24px rgba(0,0,0,.15);
}
.offcanvas.active{right:0;}
.offcanvas-header{display:flex; justify-content:space-between; align-items:center; margin-bottom:20px;}
.offcanvas a{display:block; padding:14px 6px; font-weight:600; border-bottom:1px solid var(--border); font-size:16px;}
.offcanvas a:hover{color:var(--primary);}

/* ---------- Bottom mobile nav ---------- */
.bottom-nav{
  display:none; position:fixed; bottom:0; left:0; right:0; z-index:70;
  background:var(--card-bg); border-top:1px solid var(--border);
  height:var(--bottom-nav-h); align-items:center; justify-content:space-around;
  box-shadow:0 -4px 16px rgba(0,0,0,.06);
}
.bottom-nav a{
  display:flex; flex-direction:column; align-items:center; gap:3px; font-size:11px;
  color:var(--text-muted); font-weight:600; flex:1; text-align:center;
}
.bottom-nav a.active, .bottom-nav a:hover{color:var(--primary);}
.bottom-nav svg{width:22px; height:22px;}

/* ---------- Hero ---------- */
.hero{
  padding:70px 0 40px; background:linear-gradient(180deg, rgba(239,62,70,.06), transparent);
  overflow:hidden;
}
.hero .container{display:grid; grid-template-columns:1.1fr .9fr; gap:40px; align-items:center;}
.hero h1{font-size:44px; line-height:1.2; font-weight:800; margin:0 0 18px;}
.hero h1 .highlight{color:var(--primary);}
.hero p{color:var(--text-muted); font-size:17px; margin-bottom:28px; max-width:520px;}
.hero-actions{display:flex; gap:14px; flex-wrap:wrap;}
.hero-img{position:relative;}
.hero-img img{border-radius:var(--radius); box-shadow:var(--shadow);}
.hero-stats{display:flex; gap:26px; margin-top:34px; flex-wrap:wrap;}
.hero-stats div b{display:block; font-size:24px; color:var(--primary);}
.hero-stats div span{font-size:13px; color:var(--text-muted);}

/* ---------- Horizontal scroll template carousel ---------- */
.hscroll{
  display:flex; gap:20px; overflow-x:auto; padding:10px 4px 20px; scroll-snap-type:x mandatory;
  -webkit-overflow-scrolling:touch;
}
.hscroll::-webkit-scrollbar{height:6px;}
.hscroll::-webkit-scrollbar-thumb{background:var(--border); border-radius:10px;}
.tpl-card{
  scroll-snap-align:start; flex:0 0 240px; background:var(--card-bg); border-radius:var(--radius);
  border:1px solid var(--border); overflow:hidden; box-shadow:var(--shadow); transition:transform var(--transition);
}
.tpl-card:hover{transform:translateY(-6px);}
.tpl-card .tpl-thumb{aspect-ratio:3/4; overflow:hidden; background:var(--bg-soft);}
.tpl-card .tpl-thumb img{width:100%; height:100%; object-fit:cover;}
.tpl-card .tpl-body{padding:14px 16px;}
.tpl-card h4{margin:0 0 4px; font-size:15px;}
.tpl-card .price{color:var(--primary); font-weight:700; margin:6px 0 10px;}

/* ---------- Grid ---------- */
.grid-3{display:grid; grid-template-columns:repeat(3,1fr); gap:24px;}
.feature-card{
  background:var(--card-bg); border:1px solid var(--border); border-radius:var(--radius);
  padding:28px 24px; text-align:center; box-shadow:var(--shadow);
}
.feature-card .icon{
  width:56px; height:56px; border-radius:16px; background:rgba(239,62,70,.1); color:var(--primary);
  display:flex; align-items:center; justify-content:center; margin:0 auto 16px; font-size:26px;
}

/* ---------- Steps ---------- */
.steps{display:flex; justify-content:space-between; gap:20px; flex-wrap:wrap;}
.step{flex:1; min-width:180px; text-align:center; position:relative;}
.step .num{
  width:46px; height:46px; border-radius:50%; background:var(--primary); color:#fff; font-weight:700;
  display:flex; align-items:center; justify-content:center; margin:0 auto 14px; font-size:18px;
}

/* ---------- Form ---------- */
.form-card{
  background:var(--card-bg); border:1px solid var(--border); border-radius:var(--radius);
  padding:32px; box-shadow:var(--shadow);
}
.form-grid{display:grid; grid-template-columns:1fr 1fr; gap:18px;}
.form-group{margin-bottom:18px;}
.form-group.full{grid-column:1/-1;}
label{display:block; font-weight:600; font-size:14px; margin-bottom:7px;}
input[type=text], input[type=email], input[type=tel], input[type=date], input[type=number], input[type=url], input[type=password], select, textarea{
  width:100%; padding:12px 14px; border-radius:10px; border:1.5px solid var(--border);
  background:var(--bg); color:var(--text); font-family:inherit; font-size:14.5px;
  transition:border var(--transition);
}
input:focus, select:focus, textarea:focus{outline:none; border-color:var(--primary);}
.upload-box{
  border:2px dashed var(--border); border-radius:14px; padding:24px; text-align:center; cursor:pointer;
  transition:border var(--transition);
}
.upload-box:hover{border-color:var(--primary);}
.upload-preview{width:110px; height:110px; border-radius:50%; object-fit:cover; margin:0 auto 12px; display:none;}

/* ---------- Order / Checkout ---------- */
.order-summary{
  background:var(--card-bg); border:1px solid var(--border); border-radius:var(--radius); padding:24px; box-shadow:var(--shadow);
}
.order-row{display:flex; justify-content:space-between; padding:10px 0; border-bottom:1px solid var(--border); font-size:14.5px;}
.order-row.total{font-weight:700; font-size:17px; color:var(--primary); border-bottom:none;}
.status-pill{padding:5px 14px; border-radius:50px; font-size:12.5px; font-weight:700;}
.status-pill.pending{background:#fff3cd; color:#946200;}
.status-pill.paid{background:#d4f7dc; color:#1c7a34;}
.status-pill.pending_verification{background:#dbe8ff; color:#1a56c4;}
.status-pill.rejected{background:#ffdcdc; color:#b3261e;}


/* ---------- WhatsApp float button ---------- */
.whatsapp-float{
  position:fixed; bottom:calc(var(--bottom-nav-h) + 18px); right:18px; z-index:65;
  width:56px; height:56px; border-radius:50%; background:#25D366; color:#fff;
  display:flex; align-items:center; justify-content:center; box-shadow:0 8px 20px rgba(37,211,102,.4);
  animation:pulse 2.4s infinite;
}
@keyframes pulse{
  0%{box-shadow:0 0 0 0 rgba(37,211,102,.5);}
  70%{box-shadow:0 0 0 14px rgba(37,211,102,0);}
  100%{box-shadow:0 0 0 0 rgba(37,211,102,0);}
}

/* ---------- AOS-lite fade (fallback if AOS CDN blocked) ---------- */
[data-aos]{opacity:0; transform:translateY(24px); transition:opacity .6s ease, transform .6s ease;}
[data-aos].aos-animate{opacity:1; transform:translateY(0);}

/* ---------- Responsive ---------- */
@media (max-width: 900px){
  .hero .container{grid-template-columns:1fr;}
  .hero h1{font-size:32px;}
  .grid-3{grid-template-columns:1fr 1fr;}
  .footer-grid{grid-template-columns:1fr 1fr;}
}
@media (max-width: 720px){
  .nav-desktop{display:none;}
  .hamburger{display:flex;}
  .bottom-nav{display:flex;}
  .grid-3{grid-template-columns:1fr;}
  .form-grid{grid-template-columns:1fr;}
  .footer-grid{grid-template-columns:1fr;}
  body{padding-bottom:calc(var(--bottom-nav-h) + 6px);}
}

/* ---------- Account, editor and admin additions ---------- */
.auth-shell{display:grid;grid-template-columns:1fr 430px;gap:70px;align-items:center;max-width:980px}
.single-auth{display:block;max-width:520px}
.auth-intro h1,.auth-card h1{font-size:clamp(30px,4vw,48px);line-height:1.15;margin:14px 0}
.auth-intro p{font-size:18px;line-height:1.8;color:var(--text-muted);max-width:500px}
.auth-card{padding:32px}
.auth-switch,.auth-links{font-size:14px;color:var(--text-muted);margin-top:20px}
.auth-links{display:flex;justify-content:space-between;gap:12px;flex-wrap:wrap}
.auth-links a,.auth-switch a{color:var(--primary);font-weight:700}
.alert{border-radius:10px;padding:12px 14px;font-size:14px;margin:14px 0;line-height:1.6}
.alert.error{background:#fff0ef;border:1px solid #f2b8b3;color:#9e3028}.alert.success{background:#ecf8ee;border:1px solid #bfe3c4;color:#256a30}.alert.info{background:#eef5ff;border:1px solid #c3d8fa;color:#245698}
.eyebrow{display:block;letter-spacing:.12em;font-size:11px;font-weight:800;color:var(--primary);text-transform:uppercase}
.section-sub{color:var(--text-muted);line-height:1.7}
.dashboard-heading,.editor-heading{display:flex;justify-content:space-between;align-items:flex-end;gap:24px;margin-bottom:28px}
.dashboard-heading h1,.editor-heading h1{margin:8px 0 4px}
.customer-stats{grid-template-columns:repeat(5,1fr)}
.dashboard-grid{display:grid;grid-template-columns:1.5fr 1fr;gap:22px;margin-top:22px}
.card-heading{display:flex;justify-content:space-between;align-items:flex-start;gap:16px;margin-bottom:16px}.card-heading h2{margin:5px 0}.card-heading a{color:var(--primary);font-weight:700;font-size:14px}
.biodata-row{display:flex;align-items:center;gap:14px;padding:15px 0;border-bottom:1px solid var(--border);color:inherit}.biodata-row:last-child{border-bottom:0}.biodata-row:hover{color:var(--primary)}
.avatar{width:42px;height:42px;flex:none;border-radius:50%;display:flex;align-items:center;justify-content:center;background:#f5d8c5;color:#8d3d2b;font-family:Georgia,serif;font-size:20px}.avatar.large{width:68px;height:68px;font-size:28px}
.row-copy{min-width:0;flex:1}.row-copy strong,.row-copy h2{display:block;margin:0;color:var(--text)}.row-copy small,.row-copy p{display:block;color:var(--text-muted);margin:5px 0;font-size:13px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.status-pill{display:inline-flex;align-items:center;white-space:nowrap}.status-pill.draft{background:#f5efe2;color:#876326}.status-pill.completed,.status-pill.active{background:#e5f5e9;color:#28743a}.status-pill.purchased,.status-pill.downloaded{background:#e2f1ff;color:#245a8e}.status-pill.inactive,.status-pill.blocked,.status-pill.failed,.status-pill.refunded{background:#ffe5e2;color:#a13a2e}
.quick-link{display:flex;justify-content:space-between;padding:15px 0;border-bottom:1px solid var(--border);color:var(--text);font-weight:700}.quick-link span{color:var(--primary)}
.empty-state{text-align:center;padding:35px 18px;color:var(--text-muted)}.empty-state h2,.empty-state h3{color:var(--text);margin-top:0}.empty-cell{text-align:center;color:var(--text-muted);padding:32px!important}
.biodata-list{display:grid;gap:14px}.biodata-card{display:flex;align-items:center;gap:18px;background:var(--card-bg);border:1px solid var(--border);border-radius:var(--radius);padding:20px;box-shadow:var(--shadow)}.card-actions{display:flex;align-items:center;gap:8px;flex-wrap:wrap;justify-content:flex-end}.link-danger{border:0;background:none;color:#a13a2e;font:inherit;font-size:13px;cursor:pointer;padding:6px}
.editor-page{padding-top:38px}.biodata-editor{padding:0;overflow:hidden}.form-section{display:grid;grid-template-columns:48px 190px 1fr;gap:22px;padding:32px;border-bottom:1px solid var(--border)}.section-kicker{font:700 14px/1 Georgia,serif;color:var(--primary);padding-top:6px}.form-section h2{margin:0 0 5px}.form-section p{margin:0;color:var(--text-muted);font-size:13px;line-height:1.55}.full-grid{grid-column:3}.privacy-options{display:flex;flex-direction:column;gap:10px;padding-top:5px}.privacy-options label{font-weight:500}.privacy-options input{margin-right:7px}.education-row{display:grid;grid-template-columns:1.2fr 1.5fr .65fr 1fr 26px;gap:8px;margin-bottom:10px}.education-row input{min-width:0}.remove-education{padding:6px;font-size:20px}.photo-upload-row{grid-column:3;display:flex;gap:15px;align-items:center;flex-wrap:wrap}.editor-photo{width:72px;height:86px;object-fit:cover;border-radius:8px;border:2px solid var(--primary)}.editor-actions{display:flex;justify-content:flex-end;gap:12px;padding:24px 32px}.narrow-page{max-width:780px}.checkout-shell{max-width:850px;display:grid;grid-template-columns:1fr 420px;gap:48px;align-items:center}.checkout-intro h1{font-size:42px;line-height:1.15}.checkout-card{padding:28px}.checkout-note{font-size:13px;color:var(--text-muted);line-height:1.6}.table-card{padding:12px 20px}.admin-note{color:var(--text-muted);font-size:13px;line-height:1.6}
.editor-page{padding-top:38px}.biodata-editor{padding:0;overflow:hidden}.form-section{display:grid;grid-template-columns:48px 190px 1fr;gap:22px;padding:32px;border-bottom:1px solid var(--border)}.section-kicker{font:700 14px/1 Georgia,serif;color:var(--primary);padding-top:6px}.form-section h2{margin:0 0 5px}.form-section h3{font-size:15px;margin:18px 0 10px}.form-section p{margin:0;color:var(--text-muted);font-size:13px;line-height:1.55}.full-grid{grid-column:3}.privacy-options{display:flex;flex-direction:column;gap:10px;padding-top:5px}.privacy-options label,.inline-check{font-weight:500}.privacy-options input,.inline-check input{margin-right:7px}.editor-photo{width:72px;height:86px;object-fit:cover;border-radius:8px;border:2px solid var(--primary);margin-top:10px}.editor-actions{display:flex;justify-content:flex-end;gap:12px;padding:24px 32px}.narrow-page{max-width:780px}.checkout-shell{max-width:850px;display:grid;grid-template-columns:1fr 420px;gap:48px;align-items:center}.checkout-intro h1{font-size:42px;line-height:1.15}.checkout-card{padding:28px}.checkout-note{font-size:13px;color:var(--text-muted);line-height:1.6}.table-card{padding:12px 20px}.admin-note{color:var(--text-muted);font-size:13px;line-height:1.6}.repeat-list{display:flex;flex-direction:column;gap:12px}.repeat-card{border:1px solid var(--border);border-radius:12px;padding:14px;background:var(--bg-soft)}.repeat-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:10px}.repeat-grid textarea{grid-column:1/-1}.mini-row{display:grid;grid-template-columns:1fr 1fr 34px;gap:8px;margin-bottom:10px;align-items:start}.mini-row.four{grid-template-columns:1.2fr 1.2fr 1fr 1fr 34px}.split-repeat{display:grid;grid-template-columns:1fr 1fr;gap:24px}.repeat-card .link-danger{float:right}.status-pill.pending_payment{background:#fff3cd;color:#946200}
@media(max-width:900px){.auth-shell,.checkout-shell,.dashboard-grid{grid-template-columns:1fr;gap:25px}.customer-stats{grid-template-columns:1fr 1fr}.form-section{grid-template-columns:35px 1fr}.full-grid{grid-column:2}.form-section>div:nth-child(2){grid-column:2}.repeat-grid,.split-repeat{grid-template-columns:1fr}.mini-row.four{grid-template-columns:1fr 1fr}}
@media(max-width:600px){.dashboard-heading,.editor-heading{align-items:flex-start;flex-direction:column}.dashboard-heading .btn,.editor-heading .btn{width:100%;text-align:center}.biodata-card{align-items:flex-start;flex-wrap:wrap}.card-actions{width:100%;justify-content:flex-start}.form-section{padding:24px 18px;gap:14px}.full-grid{grid-column:1/-1}.form-section>div:nth-child(2){grid-column:2}.editor-actions{padding:20px 18px;flex-direction:column}.editor-actions .btn{width:100%}.auth-card{padding:24px}.preview-toolbar{flex-wrap:wrap}.customer-stats{grid-template-columns:1fr 1fr}.mini-row,.mini-row.four{grid-template-columns:1fr}.mini-row .link-danger{justify-self:start}}
/* =====================================================
   SKILLBARTA - PREMIUM CUSTOMER DASHBOARD
===================================================== */

.dashboard-page {
    padding-top: 42px;
    padding-bottom: 70px;
}

/* ================= HERO ================= */

.dashboard-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 34px 36px;
    margin-bottom: 28px;

    background:
        linear-gradient(
            135deg,
            rgba(239, 63, 70, .08),
            rgba(239, 63, 70, .02)
        );

    border: 1px solid rgba(239, 63, 70, .12);
    border-radius: 24px;
}

.dashboard-label {
    display: inline-block;
    margin-bottom: 8px;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;

    color: var(--primary);
}

.dashboard-welcome h1 {
    margin: 0 0 10px;

    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.15;

    color: var(--text);
}

.dashboard-welcome p {
    margin: 0;

    color: var(--text-muted);
    font-size: 16px;
}

.dashboard-create-btn {
    white-space: nowrap;
    min-height: 52px;
}

.dashboard-create-btn span {
    font-size: 22px;
    margin-right: 4px;
}


/* ================= STATS ================= */

.dashboard-stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;

    margin-bottom: 28px;
}

.dashboard-stat-card {
    display: flex;
    align-items: center;
    gap: 14px;

    padding: 20px;

    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);

    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.dashboard-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.stat-icon {
    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    font-size: 20px;

    background: rgba(239, 63, 70, .10);
    border-radius: 14px;
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-content strong {
    font-size: 25px;
    line-height: 1.1;

    color: var(--text);
}

.stat-content span {
    margin-top: 4px;

    font-size: 12px;
    color: var(--text-muted);
}


/* ================= MAIN LAYOUT ================= */

.dashboard-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(280px, .8fr);
    gap: 24px;

    align-items: start;
}

.dashboard-panel {
    padding: 28px;

    background: var(--card-bg);

    border: 1px solid var(--border);
    border-radius: 20px;
}


/* ================= PANEL HEADER ================= */

.dashboard-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    margin-bottom: 24px;
}

.dashboard-panel h2 {
    margin: 0;

    font-size: 24px;
    color: var(--text);
}

.dashboard-view-all {
    font-size: 14px;
    font-weight: 600;

    color: var(--primary);
}


/* ================= DOCUMENTS ================= */

.dashboard-document-list {
    display: flex;
    flex-direction: column;

    gap: 12px;
}

.dashboard-document-item {
    display: grid;

    grid-template-columns:
        48px
        minmax(0, 1fr)
        auto
        auto;

    align-items: center;

    gap: 14px;

    padding: 16px;

    background: var(--bg-soft);

    border: 1px solid var(--border);
    border-radius: 14px;

    transition:
        background var(--transition),
        transform var(--transition);
}

.dashboard-document-item:hover {
    transform: translateY(-2px);
    background: var(--card-bg);
}

.document-avatar {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--primary);
    color: #fff;

    font-weight: 700;
    font-size: 18px;
}

.document-info {
    min-width: 0;

    display: flex;
    flex-direction: column;
}

.document-info strong {
    overflow: hidden;

    text-overflow: ellipsis;
    white-space: nowrap;

    color: var(--text);
}

.document-info span {
    margin-top: 4px;

    font-size: 13px;

    color: var(--text-muted);

    overflow: hidden;

    text-overflow: ellipsis;
    white-space: nowrap;
}

.document-edit-btn {
    padding: 8px 13px;

    border-radius: 10px;

    background: rgba(239, 63, 70, .08);

    color: var(--primary);

    font-size: 13px;
    font-weight: 600;
}


/* ================= EMPTY STATE ================= */

.dashboard-empty {
    padding: 55px 25px;

    text-align: center;

    border: 2px dashed var(--border);
    border-radius: 18px;
}

.empty-icon {
    width: 60px;
    height: 60px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto 16px;

    font-size: 28px;

    background: rgba(239, 63, 70, .08);

    border-radius: 18px;
}

.dashboard-empty h3 {
    margin-bottom: 8px;
}

.dashboard-empty p {
    margin-bottom: 20px;

    color: var(--text-muted);
}


/* ================= QUICK ACTIONS ================= */

.dashboard-actions-panel h2 {
    margin-bottom: 20px;
}

.dashboard-action {
    display: flex;
    align-items: center;

    gap: 12px;

    padding: 14px 0;

    border-bottom: 1px solid var(--border);

    color: var(--text);

    transition: var(--transition);
}

.dashboard-action:last-child {
    border-bottom: none;
}

.dashboard-action:hover {
    color: var(--primary);
    padding-left: 5px;
}

.action-icon {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    background: var(--bg-soft);

    border-radius: 11px;

    font-size: 17px;
}

.dashboard-action > span:nth-child(2) {
    flex: 1;

    font-size: 14px;
    font-weight: 500;
}

.dashboard-action b {
    color: var(--primary);
}


/* ================= RESPONSIVE ================= */

@media (max-width: 1100px) {

    .dashboard-stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}


@media (max-width: 800px) {

    .dashboard-page {
        padding-top: 22px;
        padding-bottom: 90px;
    }

    .dashboard-hero {
        flex-direction: column;
        align-items: flex-start;

        padding: 26px 22px;
    }

    .dashboard-create-btn {
        width: 100%;
        justify-content: center;
    }

    .dashboard-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .dashboard-layout {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .dashboard-panel {
        padding: 20px;
    }

}


@media (max-width: 520px) {

    .dashboard-stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .dashboard-stat-card {
        padding: 15px;
        gap: 10px;
    }

    .stat-icon {
        width: 40px;
        height: 40px;

        font-size: 17px;
    }

    .stat-content strong {
        font-size: 21px;
    }

    .stat-content span {
        font-size: 11px;
    }

    .dashboard-welcome h1 {
        font-size: 28px;
    }

    .dashboard-welcome p {
        font-size: 14px;
    }

    .dashboard-document-item {
        grid-template-columns:
            42px
            minmax(0, 1fr)
            auto;

        gap: 10px;
    }

    .document-avatar {
        width: 42px;
        height: 42px;
    }

    .document-status {
        display: none;
    }

    .document-edit-btn {
        grid-column: 2 / 4;

        text-align: center;
        margin-top: 4px;
    }

    .dashboard-panel-header {
        align-items: flex-start;
    }

}
/* =====================================================
   SKILLBARTA - ORDER TRACKING PAGE
===================================================== */

.track-order-page {
    padding-top: 64px;
    padding-bottom: 80px;
    min-height: 60vh;
}

.track-order-container {
    max-width: 920px;
}


/* ================= MAIN CARD ================= */

.track-order-card {
    position: relative;

    padding: 48px;

    background: var(--card-bg);

    border: 1px solid var(--border);

    border-radius: 28px;

    box-shadow: 0 20px 60px rgba(34, 31, 38, .06);
}


/* ================= ICON ================= */

.track-order-icon {
    width: 68px;
    height: 68px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 22px;

    font-size: 30px;

    background: rgba(239, 63, 70, .10);

    border-radius: 20px;
}


/* ================= HEADING ================= */

.track-order-heading {
    max-width: 650px;
}

.track-order-heading .eyebrow {
    margin-bottom: 10px;
}

.track-order-heading h1 {
    margin: 0 0 12px;

    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.2;

    color: var(--text);
}

.track-order-heading p {
    margin: 0;

    font-size: 16px;
    line-height: 1.7;

    color: var(--text-muted);
}


/* ================= FORM ================= */

.track-order-form {
    display: flex;
    align-items: flex-end;

    gap: 14px;

    margin-top: 32px;
}

.track-input-group {
    flex: 1;
}

.track-input-group label {
    display: block;

    margin-bottom: 8px;

    font-size: 14px;
    font-weight: 600;

    color: var(--text);
}

.track-input-wrap {
    position: relative;
}

.track-input-icon {
    position: absolute;

    left: 16px;
    top: 50%;

    transform: translateY(-50%);

    font-size: 16px;

    pointer-events: none;
}

.track-input-wrap input {
    width: 100%;
    height: 54px;

    padding: 0 18px 0 46px;

    background: var(--bg-soft);

    border: 1px solid var(--border);

    border-radius: 14px;

    outline: none;

    font-family: inherit;

    transition: .2s ease;
}

.track-input-wrap input:focus {
    border-color: var(--primary);

    background: var(--card-bg);

    box-shadow: 0 0 0 4px rgba(239, 63, 70, .08);
}

.track-order-btn {
    height: 54px;

    padding: 0 24px;

    display: flex;
    align-items: center;

    gap: 10px;

    white-space: nowrap;
}

.track-arrow {
    font-size: 19px;
}


/* ================= SECURITY NOTE ================= */

.track-order-note {
    display: flex;
    align-items: center;

    margin-top: 18px;

    padding-top: 18px;

    border-top: 1px solid var(--border);

    font-size: 13px;

    color: var(--text-muted);
}


/* ================= RESULT ================= */

.track-result {
    margin-top: 32px;

    padding-top: 30px;

    border-top: 1px solid var(--border);
}


/* ================= ERROR ================= */

.track-message {
    display: flex;

    align-items: flex-start;

    gap: 15px;

    padding: 20px;

    border-radius: 16px;
}

.track-error {
    background: rgba(239, 63, 70, .07);

    border: 1px solid rgba(239, 63, 70, .16);
}

.track-message-icon {
    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 50%;

    background: var(--primary);

    color: #fff;

    font-weight: 700;
}

.track-message strong {
    display: block;

    margin-bottom: 5px;

    color: var(--text);
}

.track-message p {
    margin: 0;

    color: var(--text-muted);
}


/* ================= SUCCESS ================= */

.track-success-heading {
    display: flex;

    align-items: center;

    gap: 14px;

    margin-bottom: 22px;
}

.track-success-icon {
    width: 46px;
    height: 46px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #22c55e;

    color: #fff;

    font-size: 22px;

    font-weight: 700;
}

.track-success-heading span {
    display: block;

    margin-bottom: 4px;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: .08em;

    color: #22c55e;
}

.track-success-heading h2 {
    margin: 0;

    font-size: 23px;
}


/* ================= ORDER DETAILS ================= */

.order-details-card {
    overflow: hidden;

    background: var(--bg-soft);

    border: 1px solid var(--border);

    border-radius: 18px;
}

.order-detail-row {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 18px 20px;

    border-bottom: 1px solid var(--border);
}

.order-detail-row:last-child {
    border-bottom: none;
}

.order-detail-label {
    display: flex;

    align-items: center;

    gap: 10px;

    color: var(--text-muted);

    font-size: 14px;
}

.detail-icon {
    width: 32px;
    height: 32px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: var(--card-bg);

    border-radius: 9px;
}


/* ================= LOGIN BOX ================= */

.track-account-box {
    display: flex;

    align-items: center;

    gap: 16px;

    margin-top: 20px;

    padding: 20px;

    background: rgba(239, 63, 70, .05);

    border: 1px solid rgba(239, 63, 70, .12);

    border-radius: 18px;
}

.track-account-icon {
    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    background: var(--card-bg);

    border-radius: 14px;
}

.track-account-box > div:nth-child(2) {
    flex: 1;
}

.track-account-box strong {
    display: block;

    margin-bottom: 4px;
}

.track-account-box p {
    margin: 0;

    font-size: 13px;

    color: var(--text-muted);
}

.track-login-btn {
    white-space: nowrap;

    font-size: 14px;

    font-weight: 600;

    color: var(--primary);
}


/* ================= HELP ================= */

.track-help-section {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 20px;

    margin-top: 22px;
}

.track-help-item {
    display: flex;

    align-items: flex-start;

    gap: 14px;

    padding: 22px;

    background: var(--card-bg);

    border: 1px solid var(--border);

    border-radius: 18px;
}

.help-icon {
    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    background: var(--bg-soft);

    border-radius: 12px;
}

.track-help-item strong {
    display: block;

    margin-bottom: 6px;
}

.track-help-item p {
    margin: 0;

    font-size: 13px;

    line-height: 1.6;

    color: var(--text-muted);
}


/* ================= MOBILE ================= */

@media (max-width: 700px) {

    .track-order-page {
        padding-top: 28px;
        padding-bottom: 90px;
    }

    .track-order-card {
        padding: 25px 20px;

        border-radius: 22px;
    }

    .track-order-icon {
        width: 58px;
        height: 58px;

        font-size: 25px;

        margin-bottom: 18px;
    }

    .track-order-heading h1 {
        font-size: 28px;
    }

    .track-order-heading p {
        font-size: 14px;
    }

    .track-order-form {
        flex-direction: column;

        align-items: stretch;
    }

    .track-order-btn {
        width: 100%;

        justify-content: center;
    }

    .track-help-section {
        grid-template-columns: 1fr;
    }

    .order-detail-row {
        align-items: flex-start;

        flex-direction: column;

        gap: 10px;
    }

    .track-account-box {
        align-items: flex-start;

        flex-wrap: wrap;
    }

    .track-login-btn {
        width: 100%;

        margin-top: 5px;
    }

}
/* =========================================
   PROFESSIONAL FOOTER
========================================= */

.site-footer{
    background: var(--bg-soft);
    border-top: 1px solid var(--border);
    margin-top: 70px;
    padding: 60px 0 24px;
}

.footer-main{
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.3fr;
    gap: 60px;
    padding-bottom: 42px;
}


/* ---------- BRAND ---------- */

.footer-logo{
    display: inline-block;
    font-size: 24px;
    font-weight: 800;
    color: var(--text);
    text-decoration: none;
    letter-spacing: -0.8px;
    margin-bottom: 16px;
}

.footer-logo span{
    color: var(--primary);
}

.footer-brand p{
    max-width: 360px;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
}

.footer-badge{
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    background: var(--card-bg);
    border: 1px solid var(--border);
    padding: 9px 14px;
    border-radius: 100px;
}


/* ---------- COLUMNS ---------- */

.footer-column h4{
    margin: 4px 0 18px;
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
}

.footer-column ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li{
    margin-bottom: 12px;
}

.footer-column ul li a{
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.footer-column ul li a:hover{
    color: var(--primary);
    padding-left: 3px;
}


/* ---------- CONTACT ---------- */

.footer-contact-item{
    margin-bottom: 18px;
}

.contact-label{
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 7px;
}

.footer-contact-item a{
    color: var(--text);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.footer-contact-item a:hover{
    color: var(--primary);
}


/* ---------- TRUST SECTION ---------- */

.footer-trust{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;

    padding: 24px 0;

    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.trust-item{
    display: flex;
    align-items: center;
    gap: 12px;
}

.trust-icon{
    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;

    font-size: 17px;
}

.trust-item strong{
    display: block;
    font-size: 13px;
    color: var(--text);
    margin-bottom: 3px;
}

.trust-item small{
    display: block;
    font-size: 11px;
    color: var(--text-muted);
}


/* ---------- BOTTOM ---------- */

.footer-bottom{
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding-top: 24px;

    font-size: 13px;
    color: var(--text-muted);
}

.footer-legal{
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-legal a{
    color: var(--text-muted);
    text-decoration: none;
}

.footer-legal a:hover{
    color: var(--primary);
}


/* =========================================
   TABLET
========================================= */

@media(max-width: 900px){

    .footer-main{
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .footer-trust{
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media(max-width: 600px){

    .site-footer{
        margin-top: 50px;
        padding: 45px 0 22px;
    }

    .footer-main{
        grid-template-columns: 1fr;
        gap: 32px;
        padding-bottom: 32px;
    }

    .footer-brand p{
        max-width: 100%;
    }

    .footer-column h4{
        margin-bottom: 14px;
    }

    .footer-column ul{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .footer-column ul li{
        margin: 0;
    }

    .footer-trust{
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .footer-bottom{
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

}