/* =============================================================================
   e-Visa Republic of Albania — Design System
   Layered on top of Bootstrap 5. Original brand identity.
   ========================================================================== */

:root {
    --brand:        #ee0000;   /* e-visa.al secondary-500 */
    --brand-dark:   #cc0000;
    --brand-darker: #a00000;
    --evisa-dark:   #080002;   /* e-visa.al primary-900 */
    --ink:          #14142b;
    --ink-soft:     #3d3d5c;
    --muted:        #6b7280;
    --gold:         #c9a227;
    --paper:        #ffffff;
    --surface:      #f6f7fb;
    --surface-2:    #eef1f7;
    --line:         #e4e7ee;
    --success:      #1a7f4b;
    --radius:       16px;
    --radius-sm:    10px;
    --shadow-sm:    0 2px 8px rgba(20,20,43,.06);
    --shadow:       0 12px 32px rgba(20,20,43,.10);
    --shadow-lg:    0 28px 64px rgba(20,20,43,.16);
    --font:         "Plus Jakarta Sans","Segoe UI",system-ui,-apple-system,sans-serif;
    --nav-h:        76px;
}

* { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    color: var(--ink);
    background: var(--paper);
    -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4,h5,.display-title { font-weight: 800; letter-spacing: -.02em; }
a { text-decoration: none; }
.text-brand { color: var(--brand) !important; }
.bg-brand { background: var(--brand) !important; }
.bg-ink { background: var(--ink) !important; }
.text-gold { color: var(--gold) !important; }

/* --------------------------------------------------------------- Buttons */
.btn { border-radius: var(--radius-sm); font-weight: 600; padding: .65rem 1.35rem; transition: .2s ease; }
.btn-brand { background: var(--brand); border-color: var(--brand); color: #fff; }
.btn-brand:hover { background: var(--brand-dark); border-color: var(--brand-dark); color:#fff; transform: translateY(-1px); box-shadow: 0 8px 20px rgba(193,18,31,.28); }
.btn-outline-brand { border: 1.5px solid var(--brand); color: var(--brand); background: transparent; }
.btn-outline-brand:hover { background: var(--brand); color:#fff; }
.btn-ink { background: var(--ink); color:#fff; }
.btn-ink:hover { background:#0c0c1c; color:#fff; }
.btn-lg { padding: .85rem 1.9rem; font-size: 1.02rem; }

/* --------------------------------------------------------------- Navbar */
.site-nav {
    height: var(--nav-h);
    background: rgba(255,255,255,.85);
    backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid var(--line);
    transition: box-shadow .25s ease, background .25s ease;
}
.site-nav.scrolled { box-shadow: var(--shadow-sm); background: rgba(255,255,255,.96); }
.brand-mark {
    width: 44px; height: 44px; border-radius: 12px;
    background: linear-gradient(150deg, var(--brand), var(--brand-darker));
    display:grid; place-items:center; color:#fff; font-weight:800; font-size:1.15rem;
    box-shadow: var(--shadow-sm);
}
.brand-title { font-weight: 800; line-height: 1; color: var(--ink); }
.brand-sub { font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.site-nav .nav-link { color: var(--ink-soft); font-weight: 600; margin: 0 .1rem; position: relative; }
.site-nav .nav-link:hover, .site-nav .nav-link.active { color: var(--brand); }
.site-nav .nav-link.active::after {
    content:""; position:absolute; left:.9rem; right:.9rem; bottom:2px; height:2px; background: var(--brand); border-radius: 2px;
}

/* --------------------------------------------------------------- Hero */
.hero {
    position: relative;
    min-height: 86vh;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
    background: #1a1a2e;
}
.hero__media { position:absolute; inset:0; z-index:0; }
.hero__media img { width:100%; height:100%; object-fit: cover; object-position: center; }
.hero__overlay {
    position:absolute; inset:0; z-index:1;
    background:
        linear-gradient(100deg, rgba(15,15,30,.86) 0%, rgba(20,20,43,.62) 42%, rgba(20,20,43,.20) 100%);
}
.hero__content { position: relative; z-index: 2; padding: 7rem 0 5rem; }
.hero__eyebrow {
    display:inline-flex; align-items:center; gap:.5rem;
    background: rgba(255,255,255,.12); border:1px solid rgba(255,255,255,.25);
    color:#fff; padding:.4rem .9rem; border-radius:999px; font-size:.8rem; font-weight:600; letter-spacing:.04em;
    backdrop-filter: blur(6px);
}
.hero h1 { font-size: clamp(2.3rem, 5vw, 3.9rem); line-height: 1.05; margin: 1.2rem 0; }
.hero__lead { font-size: 1.15rem; max-width: 40rem; color: rgba(255,255,255,.9); }
.hero__stats { gap: 2.5rem; }
.hero__stat .n { font-size: 1.9rem; font-weight: 800; color:#fff; }
.hero__stat .l { font-size: .82rem; color: rgba(255,255,255,.75); text-transform: uppercase; letter-spacing: .08em; }
.hero__wave { position:absolute; left:0; right:0; bottom:-1px; z-index:2; line-height:0; }

/* Quick tracking card floating on hero */
.track-card {
    background: rgba(255,255,255,.98); color: var(--ink); border-radius: var(--radius);
    box-shadow: var(--shadow-lg); padding: 1.75rem;
}

/* --------------------------------------------------------------- Sections */
.section { padding: 5.5rem 0; }
.section-tag {
    display:inline-block; color: var(--brand); font-weight:700; letter-spacing:.14em;
    text-transform:uppercase; font-size:.78rem; margin-bottom:.6rem;
}
.section-title { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
.section-sub { color: var(--muted); font-size: 1.06rem; max-width: 46rem; }
.bg-surface { background: var(--surface); }

/* --------------------------------------------------------------- Feature cards */
.feature-card {
    background:#fff; border:1px solid var(--line); border-radius: var(--radius);
    padding: 1.9rem; height:100%; transition: .25s ease;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.feature-ico {
    width:56px; height:56px; border-radius:14px; display:grid; place-items:center; font-size:1.5rem;
    background: linear-gradient(150deg, rgba(193,18,31,.12), rgba(193,18,31,.04)); color: var(--brand);
    margin-bottom: 1.1rem;
}

/* --------------------------------------------------------------- Visa type cards */
.visa-card {
    background:#fff; border:1px solid var(--line); border-radius: var(--radius); overflow:hidden;
    height:100%; display:flex; flex-direction:column; transition:.25s ease;
}
.visa-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.visa-card__head { padding:1.4rem 1.5rem; background: linear-gradient(135deg, var(--ink), #26264a); color:#fff; }
.visa-card__code { font-size:.72rem; letter-spacing:.12em; text-transform:uppercase; color: var(--gold); font-weight:700; }
.visa-card__body { padding: 1.4rem 1.5rem; flex:1; }
.visa-card__price { font-size:1.6rem; font-weight:800; color: var(--ink); }
.visa-meta { font-size:.86rem; color: var(--muted); }

/* --------------------------------------------------------------- Steps timeline */
.step-line { position:relative; }
.step-item { position:relative; padding-left: 4.5rem; margin-bottom: 2.2rem; }
.step-num {
    position:absolute; left:0; top:0; width:52px; height:52px; border-radius:16px;
    background:#fff; border:2px solid var(--brand); color:var(--brand);
    display:grid; place-items:center; font-weight:800; font-size:1.2rem; box-shadow: var(--shadow-sm);
}


/* --------------------------------------------------------------- FAQ */
.accordion-button { font-weight:700; color: var(--ink); }
.accordion-button:not(.collapsed) { background: rgba(193,18,31,.05); color: var(--brand); box-shadow:none; }
.accordion-button:focus { box-shadow:none; border-color: var(--line); }
.accordion-item { border:1px solid var(--line); border-radius: var(--radius-sm) !important; margin-bottom:.8rem; overflow:hidden; }

/* --------------------------------------------------------------- Footer */
.site-footer { background: var(--ink); color: rgba(255,255,255,.72); padding: 4rem 0 1.5rem; }
.site-footer h6 { color:#fff; font-weight:700; letter-spacing:.02em; margin-bottom:1.1rem; }
.site-footer a { color: rgba(255,255,255,.72); }
.site-footer a:hover { color:#fff; }
.footer-bottom { border-top:1px solid rgba(255,255,255,.12); margin-top:2.5rem; padding-top:1.5rem; font-size:.85rem; }

/* --------------------------------------------------------------- Auth pages */
.auth-wrap { min-height:100vh; display:grid; grid-template-columns: 1.05fr 1fr; }
.auth-aside {
    position:relative; color:#fff; padding:3.5rem; display:flex; flex-direction:column; justify-content:space-between;
    background: linear-gradient(150deg, var(--brand-darker), var(--ink));
    overflow:hidden;
}
.auth-aside::after {
    content:""; position:absolute; right:-120px; bottom:-120px; width:360px; height:360px; border-radius:50%;
    background: radial-gradient(circle, rgba(201,162,39,.35), transparent 70%);
}
.auth-panel { display:flex; align-items:center; justify-content:center; padding: 2.5rem; background: var(--surface); }
.auth-card { width:100%; max-width: 460px; background:#fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 2.4rem; }
@media (max-width: 900px){ .auth-wrap { grid-template-columns: 1fr; } .auth-aside { display:none; } }

/* --------------------------------------------------------------- Forms */
.form-label { font-weight:600; font-size:.9rem; color: var(--ink-soft); }
.form-control, .form-select {
    border-radius: var(--radius-sm); border:1px solid var(--line); padding:.7rem .9rem;
}
.form-control:focus, .form-select:focus { border-color: var(--brand); box-shadow: 0 0 0 .2rem rgba(193,18,31,.12); }
.input-icon { position:relative; }
.input-icon > i { position:absolute; left:.9rem; top:50%; transform:translateY(-50%); color: var(--muted); }
.input-icon > .form-control { padding-left: 2.6rem; }

/* --------------------------------------------------------------- Dashboard shell */
.app-shell { display:flex; min-height:100vh; background: var(--surface); }
.app-side {
    width: 264px; background: var(--ink); color: rgba(255,255,255,.8); flex-shrink:0;
    display:flex; flex-direction:column; position:sticky; top:0; height:100vh;
}
.app-side__brand { padding:1.4rem 1.4rem; border-bottom:1px solid rgba(255,255,255,.1); }
.app-side nav { padding:1rem .8rem; flex:1; overflow-y:auto; }
.app-side .side-link {
    display:flex; align-items:center; gap:.8rem; padding:.75rem .9rem; border-radius:12px;
    color: rgba(255,255,255,.72); font-weight:600; margin-bottom:.2rem; transition:.15s;
}
.app-side .side-link i { font-size:1.15rem; }
.app-side .side-link:hover { background: rgba(255,255,255,.08); color:#fff; }
.app-side .side-link.active { background: var(--brand); color:#fff; }
.app-side .side-badge { margin-left:auto; background: var(--gold); color:#1a1a2e; font-size:.7rem; font-weight:800; border-radius:999px; padding:.1rem .5rem; }
.app-main { flex:1; min-width:0; display:flex; flex-direction:column; }
.app-topbar {
    height:70px; background:#fff; border-bottom:1px solid var(--line); display:flex; align-items:center;
    padding:0 1.6rem; gap:1rem; position:sticky; top:0; z-index:20;
}
.app-content { padding: 1.9rem; flex:1; }
@media (max-width: 992px){
    .app-side { position:fixed; left:0; top:0; z-index:1050; transform:translateX(-100%); transition:.25s; }
    .app-side.open { transform:translateX(0); }
    .app-backdrop { position:fixed; inset:0; background:rgba(0,0,0,.4); z-index:1040; display:none; }
    .app-backdrop.show { display:block; }
}

/* --------------------------------------------------------------- Stat tiles */
.stat-tile { background:#fff; border:1px solid var(--line); border-radius: var(--radius); padding:1.4rem; }
.stat-tile .val { font-size:1.9rem; font-weight:800; line-height:1; }
.stat-tile .lbl { color: var(--muted); font-size:.85rem; font-weight:600; }
.stat-ico { width:46px; height:46px; border-radius:12px; display:grid; place-items:center; font-size:1.3rem; }

.card-panel { background:#fff; border:1px solid var(--line); border-radius: var(--radius); }
.card-panel__head { padding:1.1rem 1.4rem; border-bottom:1px solid var(--line); font-weight:700; }
.card-panel__body { padding:1.4rem; }

/* --------------------------------------------------------------- Badges & tables */
.badge-status { font-weight:700; padding:.4rem .7rem; border-radius:999px; font-size:.74rem; }
.table thead th { font-size:.76rem; text-transform:uppercase; letter-spacing:.05em; color: var(--muted); border-bottom:1px solid var(--line); }
.table td { vertical-align: middle; }

/* --------------------------------------------------------------- Wizard */
.wizard-steps { display:flex; flex-wrap:wrap; gap:.5rem; margin-bottom:2rem; }
.wizard-steps .wstep {
    flex:1; min-width:96px; text-align:center; padding:.7rem .4rem; border-radius:12px; background:#fff;
    border:1px solid var(--line); font-size:.78rem; font-weight:700; color: var(--muted); position:relative;
}
.wizard-steps .wstep .dot {
    width:26px; height:26px; border-radius:50%; background: var(--surface-2); color: var(--muted);
    display:grid; place-items:center; margin:0 auto .35rem; font-size:.8rem; font-weight:800;
}
.wizard-steps .wstep.done { border-color: var(--success); color: var(--success); }
.wizard-steps .wstep.done .dot { background: var(--success); color:#fff; }
.wizard-steps .wstep.current { border-color: var(--brand); color: var(--brand); box-shadow: var(--shadow-sm); }
.wizard-steps .wstep.current .dot { background: var(--brand); color:#fff; }

.doc-drop {
    border:2px dashed var(--line); border-radius: var(--radius); padding:1.6rem; text-align:center;
    background: var(--surface); transition:.2s; cursor:pointer;
}
.doc-drop:hover, .doc-drop.drag { border-color: var(--brand); background: rgba(193,18,31,.03); }

/* --------------------------------------------------------------- Utilities & anim */
.reveal { opacity:0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity:1; transform:none; }
.divider-eagle { text-align:center; color: var(--brand); opacity:.5; font-size:1.4rem; }
.timeline { list-style:none; padding:0; margin:0; position:relative; }
.timeline::before { content:""; position:absolute; left:9px; top:4px; bottom:4px; width:2px; background: var(--line); }
.timeline li { position:relative; padding:0 0 1.2rem 2.2rem; }
.timeline li::before { content:""; position:absolute; left:2px; top:4px; width:16px; height:16px; border-radius:50%; background:#fff; border:3px solid var(--brand); }
.timeline li.muted::before { border-color: var(--line); }

@media (max-width: 991px){ .section { padding:3.5rem 0; } .hero { min-height:auto; } .hero__content { padding:5.5rem 0 4rem; } }

/* =============================================================================
   e-visa.al — Faithful public site (nav, hero, steps, why, footer)
   ========================================================================== */

/* ---- Navbar (dark) ---- */
.evisa-nav { background: var(--evisa-dark); z-index: 30; }
.evisa-nav__inner { display:flex; align-items:center; flex-wrap:wrap; padding:.5rem 0; }
.evisa-nav__logo { display:inline-flex; align-items:center; }
.evisa-nav__logo img { height:34px; width:auto; display:block; }
.evisa-nav__toggle { margin-left:auto; background:transparent; border:0; color:#cbd0d6; font-size:1.6rem; line-height:1; padding:.25rem .5rem; }
.evisa-nav__toggle:hover { color:#fff; }
.evisa-nav__menu { margin-left:auto; display:flex; flex-direction:column; gap:.5rem; }
.evisa-nav__links { list-style:none; display:flex; flex-direction:column; gap:.25rem; margin:0; padding:.5rem 0 0; }
.evisa-nav__links a { display:block; padding:.4rem 0; color:#cbd0d6; font-weight:600; font-size:.92rem; }
.evisa-nav__links a:hover, .evisa-nav__links a.active { color:#fff; }
.evisa-nav__actions { display:flex; align-items:center; gap:.6rem; padding:.5rem 0; }
@media (min-width: 992px){
    .evisa-nav__menu { flex-basis:auto; width:auto; flex-direction:row; align-items:center; gap:1.5rem; }
    .evisa-nav__links { flex-direction:row; gap:1.25rem; padding:0; }
    .evisa-nav__links a { padding:.25rem 0; position:relative; }
    .evisa-nav__links a.active::after { content:""; position:absolute; left:0; right:0; bottom:-4px; height:2px; background:var(--brand); border-radius:2px; }
    .evisa-nav__actions { padding:0; }
}

.evisa-btn { display:inline-block; border-radius:8px; padding:.55rem 1.15rem; font-weight:700; font-size:.92rem; transition:.2s ease; border:1px solid transparent; }
.evisa-btn--solid { background: var(--brand); color:#fff; }
.evisa-btn--solid:hover { background: var(--brand-dark); color:#fff; }
.evisa-btn--outline { background:transparent; color:#fff; border-color: rgba(255,255,255,.55); }
.evisa-btn--outline:hover { background:#fff; color: var(--evisa-dark); }

.evisa-lang { display:inline-flex; border:1px solid rgba(255,255,255,.35); border-radius:8px; overflow:hidden; }
.evisa-lang button { background:transparent; border:0; color:#cbd0d6; font-weight:700; font-size:.82rem; padding:.4rem .7rem; cursor:pointer; }
.evisa-lang button.active { background: var(--brand); color:#fff; }

/* ---- Hero (image slider + floating action buttons) ---- */
.evisa-hero { position:relative; width:100%; overflow:hidden; }
.evisa-slider { position:relative; width:100%; min-height:32rem; max-height:66vh; height:32rem; }
.evisa-slide { position:absolute; inset:0; background-size:cover; background-position:center; opacity:0; transition:opacity 1.2s ease; }
.evisa-slide.is-active { opacity:1; }
.evisa-hero__actions { position:absolute; z-index:10; top:1rem; right:1rem; display:flex; flex-wrap:wrap; gap:.75rem; }
.evisa-hero__btn { border:0; border-radius:8px; padding:1rem 1.5rem; background: var(--brand); color:#fff; font-weight:700; cursor:pointer; transition:.2s ease; }
.evisa-hero__btn:hover { background: var(--brand-dark); }
@media (max-width: 575px){
    .evisa-slider { height:22rem; min-height:22rem; }
    .evisa-hero__actions { top:.6rem; right:.6rem; gap:.4rem; }
    .evisa-hero__btn { padding:.7rem 1rem; font-size:.85rem; }
}

/* ---- 3 Steps section (red) ---- */
.evisa-steps { background: var(--brand); padding:3rem 0 4rem; }
.evisa-steps__head { text-align:center; color:#fff; margin:1rem 0 2rem; }
.evisa-steps__head h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight:800; margin:0; }
.evisa-steps__grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; }
@media (max-width: 767px){ .evisa-steps__grid { grid-template-columns:1fr; } }
.evisa-step { display:flex; flex-direction:column; background:#fff; border-radius:12px; overflow:hidden; box-shadow:0 10px 26px rgba(0,0,0,.18); transition:.22s ease; }
.evisa-step:hover { transform:translateY(-6px); box-shadow:0 18px 40px rgba(0,0,0,.28); }
.evisa-step__head { background: var(--evisa-dark); padding:.75rem; text-align:center; }
.evisa-step__head h3 { color:#fff; font-weight:700; font-size:1.25rem; margin:0; }
.evisa-step__body { flex:1; display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center; padding:2rem 1.5rem; }
.evisa-step__body img { width:72px; height:72px; object-fit:contain; margin-bottom:1rem; }
.evisa-step__body p { color: var(--ink); font-size:1.05rem; margin:0; }

/* ---- Why e-Visa ---- */
.evisa-why { display:flex; flex-wrap:wrap; padding:2.5rem 1rem 3.5rem; }
.evisa-why__head { width:100%; text-align:center; padding:1.5rem 0; }
.evisa-why__head h2 { color: var(--brand); text-decoration:underline; font-weight:800; font-size:2rem; margin:0; }
.evisa-why__col { width:100%; display:flex; justify-content:center; }
@media (min-width: 992px){ .evisa-why__col { width:50%; } }
.evisa-triangle { list-style:none; padding:0; margin:0; display:inline-block; text-align:center; }
@media (min-width: 992px){ .evisa-triangle { text-align:left; } }
.evisa-triangle li { position:relative; font-size:1.15rem; font-weight:700; color: var(--ink); padding:.5rem 2rem; }
.evisa-triangle li::before {
    content:""; position:absolute; left:.4rem; top:50%; transform:translateY(-50%);
    border-style:solid; border-width:.45rem 0 .45rem .7rem; border-color:transparent transparent transparent var(--brand);
}
.evisa-why__foot { width:100%; margin-top:1rem; padding:2rem; text-align:center; font-size:1.15rem; color: var(--ink-soft); }

/* ---- Footer (dark) ---- */
.evisa-footer { background: var(--evisa-dark); color:#cbd0d6; padding:3rem 0 2rem; }
.evisa-footer__grid { display:grid; grid-template-columns:2fr 1fr 1fr; gap:2rem; }
@media (max-width: 767px){ .evisa-footer__grid { grid-template-columns:1fr; gap:1.5rem; } }
.evisa-footer__brand img { height:38px; width:auto; }
.evisa-footer__col h4 { color:#fff; font-size:1rem; font-weight:700; margin-bottom:1rem; }
.evisa-footer__col ul { list-style:none; padding:0; margin:0; display:grid; gap:.6rem; }
.evisa-footer__col a { color:#cbd0d6; font-size:.95rem; }
.evisa-footer__col a:hover { color:#fff; text-decoration:underline; }
.evisa-footer__bottom { margin-top:2.5rem; padding-top:1.5rem; border-top:1px solid rgba(255,255,255,.12); text-align:center; font-size:.9rem; color:#9aa1a9; }
