/* ==============================
            General
============================== */


:root {
    --white: hsl(0, 0%, 100%);
    --primaryColor: #0159b4;
    --primaryColorLight: #549cea;
    --primaryVeryLight: #c9f7fa;
    --primaryColorDark: #053568;
    --bg: #fefefe;
    --hover: #e0e7f2;
    --text: #2f2f2f;
    --softText: #555555;
    --green: #078142;
    --error: #bf413d;
    --black: #212121;
}

body {
    position: relative;
    width: 100%;
    height: 100%;
    border: 0;
    padding: 0 !important;
    margin: 0 !important;
    overflow-x: hidden;
    background-color: var(--bg) !important;
    font-family: 'Poppins', system-ui, Arial, sans-serif;

}

* {
    box-sizing: border-box;
}

html,
html,
body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
}



html,
body {
    height: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Now Alt', 'Segoe UI', Tahoma, sans-serif;
    font-weight: 600;
}

h1 {
    text-align: center;
    padding-top: 10px;
    font-size: 22px;
    color: var(--primaryColor);
}




p,
li,
label,
* {
    font-family: 'Poppins', 'Segoe UI', Tahoma, sans-serif;
}

i {
    font-size: 14px;
}

a {
    text-decoration: none;
}

select {
    width: 100%;
    padding: 0.5em;
    border: 1px solid #ccc;
}

.aHref {
    text-decoration: none;
    color: white;
}

.aHref:hover {
    text-decoration: none;
    color: white;
}

/* Poppins */
@font-face {
    font-family: 'Poppins';
    src: url('/fonts/Poppins-Regular.woff2') format('woff2'),
        url('/fonts/Poppins-Regular.woff') format('woff'),
        url('/fonts/Poppins-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Now Alt */
@font-face {
    font-family: 'Now Alt';
    src: url('/fonts/NowAlt-Regular.woff2') format('woff2'),
        url('/fonts/NowAlt-Regular.woff') format('woff'),
        url('/fonts/NowAlt-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


.btn-primary {
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(0, 110, 184, 1) 0%, rgba(2, 88, 180, 1) 100%);
    padding: 10px 20px;
    border: 0px;
    color: #fff !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    position: relative;
    font-size: 16px;
}


/* ======================================
                NavBar
====================================== */

.site-header {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    background: transparent;
    backdrop-filter: blur(14px);
    position: fixed;
    top: 0;
    z-index: 10000;
    transition: var(--bg) 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 2px 5px rgba(116, 116, 116, 0.16), 0 3px 6px rgba(181, 181, 181, 0.1);

}

.site-header.scrolled {
    background: #fff;
    border-bottom: 1px solid #eee;
    backdrop-filter: none;
}


.nav-container {
    margin: 0 auto;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10000;
    position: sticky;
}

@media (min-width: 1400px) {
    .nav-container {
        max-width: 80%;
    }
}

@media (min-width: 1000px) and (max-width: 1399px) {
    .nav-container {
        max-width: 100%;
    }
}

.nav-logo img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--black);
    font-size: 16px;
    font-weight: 500;
    padding: 5px 10px;
}

.nav-menu a:hover {
    color: var(--hover);
    background-color: var(--primaryColor);
    border-radius: 5px;
}

.status-btn {
    padding: 8px 14px !important;
    border-radius: 6px;
    background: var(--primaryColor);
    color: white !important;
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
}

.burger span {
    width: 26px;
    height: 2px;
    background: #063B3F;
}

.nav-mobile-logo {
    display: none;
}

.nav-dropdown {
    position: relative;
}

.dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 6px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 180px;
    padding: 10px 0;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    display: none;
    flex-direction: column;
    z-index: 2000;
}

.dropdown-menu a {
    padding: 8px 16px;
    font-size: 14px;
    white-space: nowrap;
}

.dropdown-menu a:hover {
    background: var(--primaryColor);
}

.nav-dropdown:hover .dropdown-menu {
    display: flex;
}


@media (max-width: 999px) {

    .burger {
        display: flex;
        z-index: 1001;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: -280px;
        height: 100vh;
        width: 260px;
        background: white;
        display: flex;
        flex-direction: column;
        /* padding: 30px 24px; */
        padding: 30px 24px 30px 10px;
        gap: 22px;
        transition: left 0.3s ease;
        box-shadow: 2px 0 20px rgba(0, 0, 0, 0.08);
        z-index: 1000;
    }

    .status-btn {
        padding: 10px !important;
    }

    .nav-menu.open {
        left: 0;
    }

    .nav-mobile-logo {
        display: block;
        margin-bottom: 30px;
    }

    .nav-menu a {
        width: 100%;
        text-align: left;
    }

    .nav-mobile-logo img {
        height: 32px;
    }

    .nav-dropdown {
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        padding-left: 10px;
    }

    .nav-dropdown.open .dropdown-menu {
        display: flex;
    }

}


/* ========== Before footer ============  */

.beforeFooter .btn {
    display: inline-block;
    /* keep your colors/padding */
}


.beforeFooter {
    margin-bottom: -80px;
    position: relative;
    z-index: 10;
    border-radius: 10px;
    background-color: #fff !important;
    box-shadow: rgba(50, 50, 93, .25) 0 2px 5px -1px, rgba(0, 0, 0, .3) 0 1px 3px -1px;
    margin-top: 100px !important;
}

.beforeFooter p {
    font-size: 1.3em;
    color: #373737;
    margin-bottom: 0;
    padding-bottom: 10px;
}

.beforeFooter span {
    color: #575757;
    font-size: 14px
}

.beforeFooter .btn {
    background-color: var(--primaryColor);
    color: #fff;
    padding: 10px 20px
}

.footerBtn {
    display: flex;
    justify-content: center;
    align-items: center;
}


@media (max-width:767px) {
    .footerBtn {
        padding-top: 15px;
    }

}

/* ========= Footer ===========  */

.beforeFooter,
.intrebare {
    background-color: var(--bg);
}

.footerSection {
    /* min-height: 100vh; */
    display: flex;
    flex-direction: column;
         margin-top: auto;

}

.footerWrap {
    margin-top: auto;
}



.footer {
    background: linear-gradient(270deg, rgb(1, 88, 138) 0%, rgb(6, 100, 154) 35%, rgb(1, 114, 179) 100%);
    color: #fff;
    padding: 40px 15px;
    padding-top: 150px;
    z-index: 1 !important;
    margin-top: -100px;
    border-radius: 50px 50px 0 0;
}

.footer img {
    max-width: 100%;
    height: auto;
}

.footerDesk {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.footer ul {
    list-style: none;
}

.logo {
    display: block;
    height: auto;
    max-width: 100%;
}

.logo--nav {
    height: 60px;
    width: auto;
}

.logo--small {
    width: 120px;
    height: auto;
}

.footer * {
    box-sizing: border-box
}

.footer li a,
.footer p,
.footer li {
    color: #fff !important;
    padding: 5px 0
}

.footer h3,
.footerMob {
    padding-bottom: 5px;
    border-bottom: 2px solid var(--primaryColorLight)
}

.footerDesk {
    color: #fff;
    margin-left: 30px;
}

.footerMob,
.footerDesk {
    font-size: 18px;
    padding-bottom: 10px;
    padding-top: 10px
}

@media (max-width:767px) {

    .footer li,
    .footer p {
        padding-left: 20px
    }

    .footerDesk {
        display: none
    }
}

@media (min-width:768px) {
    .footerMob {
        display: none
    }
}

.disclaimer {
    font-size: 12px;
    color: var(--bg);
}

/* ======== Copyright ==========  */
.copyright {
    background-color: var(--primaryColor);

}

.copyright span,
.copyright p,
.copyright a {
    font-size: 12px;
    color: #fff;
}

.priorityBadge {
    display: inline-block;
    margin: 8px auto 6px;
    padding: 6px 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, #3b0ca3, #0159b5);
    color: white;
    font-size: 13px;
    font-weight: 600;
}

#docType {
    color: var(--primaryColor);
}

.confirmPage {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px 16px 40px;
}

.nextStepBox {
    background: #f3f7ff;
    border-radius: 12px;
    padding: 14px 18px;
    margin: 14px 0 6px;
    font-size: 14px;
    color: #053568;
}

.nextStepBox strong {
    display: block;
    margin-bottom: 6px;
}
.sth {
    width: 100%;
}

.sth .order-box {
    max-width: 100%;
    width: 100%;
    margin: 0;
}

.uploaded-file{
    background-color: rgb(223, 222, 222);
}
.confirmCard {
    width: 100%;
    max-width: 1020px;
    background: white;
    border-radius: 18px;
    padding: 36px 34px 28px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, .08);
    text-align: center;
}

.confirmIcon {
    width: 64px;
    height: 64px;
    margin: 0 auto 14px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primaryColor), var(--primaryColorLight));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
}

.confirmCard h1 {
    margin: 0 0 10px;
    color: var(--primaryColorDark);
}

.confirmIcon {
    width: 64px;
    height: 64px;
    margin: 0 auto 14px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primaryColor), var(--primaryColorLight));
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkSvg {
    width: 34px;
    height: 34px;
}

.checkSvg path {
    fill: none;
    stroke: white;
    stroke-width: 5;
    stroke-linecap: round;
    stroke-linejoin: round;

    stroke-dasharray: 60;
    stroke-dashoffset: 60;

    animation: drawCheck .6s ease forwards;
}

@keyframes drawCheck {
    to {
        stroke-dashoffset: 0;
    }
}

.confirmIntro {
    color: var(--softText);
    line-height: 1.5;
    margin-bottom: 22px;
}

.orderBox {
    background: #f6f8fc;
    border-radius: 12px;
    padding: 18px 18px 10px;
    text-align: left;
    margin-bottom: 18px;
}

.orderBox h3 {
    margin: 0 0 12px;
    color: var(--primaryColorDark);
    font-size: 15px;
}

.orderBox .row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 14px;
}

.orderBox span {
    color: var(--softText);
}

.orderBox strong {
    color: var(--black);
}
@media (max-width: 550px) {
  .orderBox .row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .orderBox strong {
    word-break: break-word;
  }
}

.contactNote {
    font-size: 14px;
    color: var(--softText);
    margin: 10px 0 18px;
}

.sign {
    font-size: 14px;
    color: var(--text);
}

.gdprLine {
    margin-top: 20px;
    font-size: 11px;
    color: #9aa0ad;
    line-height: 1.4;
}


blockquote {
    background-color: #d4f2fb;
    border-radius: 6px;
    border-left: 5px solid #0159b4;
    padding: 5px 0px 5px 0px;
    margin-left: 0px;
}

blockquote,
p {
    padding-left: 10px;
}

.page ul {
    padding-top: 0px;
    margin-top: -15px;
}
ul{
        padding-left: 30px !important;

}
.footerSection ul{
        padding-left: 0px !important;

}
.page h2,
ul,
p,
h5 {
    padding: 0px 0px;
}

a:link,
a:visited,
a:hover,
a:active {
    /* color: #006FBA; */
    text-decoration: none;
}

.cookieModal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}

.cookieModal.hidden {
  display: none;
}

.cookieCard {
  background: #fff;
  max-width: 460px;
  width: calc(100% - 40px);
  padding: 32px;
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(0,0,0,.25);
  text-align: center;
}

.cookieCard h3 {
  margin-bottom: 14px;
}

.cookieCard p {
  font-size: 15px;
  color: #444;
}

.cookieActions {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}

.btnAccept {
  flex: 1;
  background: #2563eb;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
}

.btnReject {
  flex: 1;
  background: #e5e7eb;
  border: none;
  padding: 12px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
}

.cookieSmall {
  margin-top: 14px;
  font-size: 13px;
}

.cookieSmall a {
  color: #2563eb;
  text-decoration: none;
}
/* ===========================
FAQ 
============================ */


.faq {
	position: relative;
	margin-bottom: 30px;
	padding: 30px 20px;
	transition: 0.6s;
	background-color: #fff;
	align-items:center;
}
.faq:hover{
	box-shadow: 0px 0px 20px #dbdbdb;
	border-radius:6px;
}
.faq:before {
	position: absolute;
	bottom: 0;
	left: 0;
	content: "";
	transition: 0.6s;
	width: 0;
	height: 0;
	background-color: #006fb8;
}
.faq:after {
	position: absolute;
	bottom: 0;
	right: 0;
	content: "";
	transition: 0.6s;
	width: 0;
	height: 0;
	background-color: #006fb8;
}
.faq:hover:after, 
.faq:hover:before{
	width:50%;
	height:2px;
}


body.embed header,
body.embed .footerSection,
body.embed #cookieModal {
  display:none!important;
}

body.embed {
  background:white;
}

body.embed .confirmPage {
  padding:0!important;
}

body.embed .confirmCard {
  box-shadow:none;
  margin:0;
}

.timeline-progress {
    display: flex;
    justify-content: space-between;
    margin-top: 25px;
    position: relative;
    
}

/* line */
.timeline-progress::before {
    content: "";
    position: absolute;
    top: 16px;
   left: 16px;
    right: 16px;
    height: 2px;
    background: #d1d5db;
    z-index: 0;
}

.step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* circles */
.circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #e5e7eb;
    margin: 0 auto;
    line-height: 32px;
    font-size: 14px;
    font-weight: 600;
    color: #555;
}

/* label (TOP) */
.label {
    margin-top: 8px;
    font-size: 14px;
    font-weight: 500;
}

/* date (BOTTOM) */
.date {
    margin-top: 6px;
    font-size: 12px;
    color: #888;
    line-height: 1.3;
}

.circle.done {
    background: #16a34a; /* green */
    color: white;
}
/* ====================  */




.idZone .dropzone,
.selfieZone .dropzone {
    flex: 1;
}
.dropzone.dragover {
  border-color: #300fad;
  background: rgba(48, 15, 173, 0.06);
}

/* =========================
DROPZONE BASE
========================= */

.dropzone {
    width: 100%;
    min-height: 100px;
    border: 1.5px dashed rgba(15, 23, 42, .22);
    background: rgba(255, 255, 255, .62);
    border-radius: 18px;

    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    transition: border-color .14s ease,
        box-shadow .14s ease,
        transform .14s ease,
        background .14s ease;
}

.dropzone.drag {
    border-color: rgba(29, 78, 216, .65);
    box-shadow: 0 0 0 5px rgba(29, 78, 216, .10);
    background: rgba(29, 78, 216, .06);
    transform: translateY(-1px);
}

/* =========================
IMAGE FIRST
========================= */

.dz-watermark {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 160px;
    opacity: .45;
    pointer-events: none;
    user-select: none;
}

/* =========================
TEXT BELOW IMAGE
========================= */

.dz-overlay {
    text-align: center;
}

.dz-title {
    font-weight: 900;
    font-size: 16px;
    margin-top: 6px;
}

.dz-sub {
    font-size: 12px;
    color: rgba(15, 23, 42, .65);
}

/* =========================
FILES
========================= */

.filelist {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: auto;
}

.fileitem {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px;
    border: 1px solid rgba(15, 23, 42, .10);
    border-radius: 12px;
    background: rgba(255, 255, 255, .75);
}

.fileitem .name {
    font-weight: 800;
    font-size: 13px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.fileitem .meta {
    font-size: 12px;
    color: rgba(15, 23, 42, .6);
}
.x {
  border: none;
  background: #ccc;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  color: rgba(15, 23, 42, 0.6);
  transition: 0.2s;
  padding: 4px 10px;
}

.x:hover {
  color: #ef4444;
  transform: scale(1.1);
}
.field.error {
  border-color: #af082d !important;
  box-shadow: 0 0 0 2px rgba(175, 8, 45, 0.15);
}
/* ============ signature ======  */

.sigbox {
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: rgba(255, 255, 255, 0.72);
    border-radius: 18px;
    padding: 14px;
    
}

canvas#sig {
    width: 100%;
    height: 80px;
    display: block;
    touch-action: none;
      cursor: pointer;

}


.canvaswrap {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.14);
    background: white;
}

canvas {
    width: 100%;
    height: 100px;
    display: block;
}

.sigactions {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}


.canvaswrap {
    position: relative;
    border-radius: 16px;
    background: linear-gradient(180deg, #f8faff, #eef3ff);
    border: 2px dashed rgba(1, 89, 180, .35);
    padding: 18px;
    transition: all .25s ease;
}

.canvaswrap.active-signature {
    border: 2px solid #0159b4;
    background: white;
    box-shadow: 0 0 0 4px rgba(1, 89, 180, .08);
}

.canvaswrap canvas {
    width: 100%;
    height: 180px;
    background: transparent;
    display: block;
}

.sig-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    pointer-events: none;
    color: rgba(1, 89, 180, .6);
    font-weight: 700;
    letter-spacing: .5px;
    text-align: center;
}

.sig-placeholder span {
    font-size: 14px;
    font-weight: 500;
    margin-top: 6px;
    color: rgba(1, 89, 180, .45);
}

.mini {
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: rgba(15, 23, 42, 0.06);
    color: rgba(15, 23, 42, 0.84);
    border-radius: 12px;
    padding: 8px 14px;
    font-weight: 900;
    cursor: pointer;
}
.hidden {
    display: none !important;
}#missingDocsContainer {
    margin-top: 10px;
}

#missingDocsContainer .row2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 12px;
    margin: 20px 0;
}

@media (max-width: 640px) {
    #missingDocsContainer .row2 {
        grid-template-columns: 1fr;
    }
}/* ============ tooltip ======== */
.signature-title{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:8px;
    font-weight:950;
    margin-bottom:8px;
}

.info-icon{
    display:flex;
    justify-content:center;
    align-items:center;
    width:18px;
    height:18px;
    border-radius:50%;
    border:1px solid #000;
    background:#fff;
    color:#000;
    font-size:12px;
    font-weight:700;
    cursor:pointer;
    position:relative;
}

.tooltip{
    position:absolute;
    bottom:28px;
    left:50%;
    transform:translateX(-50%);
    width:260px;
    padding:10px 12px;
    background:#0f172a;
    color:#fff;
    font-size:12px;
    line-height:1.4;
    border-radius:6px;
    opacity:0;
    pointer-events:none;
    transition:opacity .2s;
}

.info-icon:hover .tooltip{
    opacity:1;
}.hidden {
    display: none !important;
}


.toast-container {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 9999999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    min-width: 280px;
    max-width: 420px;
    padding: 14px 16px;
    border-radius: 14px;
    background: #0f172a;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 18px 45px rgba(2, 8, 23, 0.22);
    opacity: 0;
    transform: translateY(-10px);
    animation: toastIn .25s ease forwards;
}

.toast.success {
    background: #16a34a;
}

.toast.error {
    background: #dc2626;
}

@keyframes toastIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes toastOut {
    to {
        opacity: 0;
        transform: translateY(-10px);
    }
}

@media (max-width: 640px) {
    .toast-container {
        top: auto;
        right: 16px;
        left: 16px;
        bottom: 20px;
    }

    .toast {
        min-width: 0;
        width: 100%;
    }
}

.titlu{
    background-color: #d4f2fb;
    justify-content: center;
}

/* blog  */


::-moz-selection { /* Code for Firefox */
    color: #fff;
    background: #0159b4;
}

.single-article a,
.single-article h5,
.single-article p,
.single-article i {
    color: #000;
}
.single-article {
    position: relative;
    margin: 0 auto 30px auto;
    padding: 10px;
    transition: 0.6s;
    background-color: #fff;
    align-items: center;
    max-width: 550px;
    width: 100%;
}
.single-article:hover {
	box-shadow: 0px 0px 20px #dbdbdb;
	border-radius: 6px;
}
.single-article:before {
	position: absolute;
	bottom: 0;
	left: 0;
	content: "";
	transition: 0.6s;
	width: 0;
	height: 0;
	background-color: #006fb8;
}
.single-article:after {
	position: absolute;
	bottom: 0;
	right: 0;
	content: "";
	transition: 0.6s;
	width: 0;
	height: 0;
	background-color: #006fb8;
}
.single-article:hover:after,
.single-article:hover:before {
	width: 50%;
	height: 2px;
}
img{
	margin-bottom:20px;
}
#lines {
	border-bottom: 17px double white;
	border-top: 6px solid #006fb8;
	content: "";
	height: 5px;
	width: 30px;
}.uploadNote {
    font-size: 12px;
    color: #9b9b9b;
    line-height: 1.4;
    margin-top: 10px;
    padding: 0 10px 10px;
    text-align: center;
}
