body {
  font-family: 'Inter', sans-serif;
  background-color: #F2F5F8;
  color: #000;
  font-weight: 400; /* Normal text */
}

h1, h2, h3 {
  font-weight: 700; /* Bold */
}


.navbar-toggler {
  border: none !important; /* elimină complet bordura */
  outline: none; /* opțional, elimină chenarul la focus */
  box-shadow: none; /* elimină orice efect de focus */
}

.navbar-toggler-icon {
  background-image: none !important; /* elimină SVG-ul Bootstrap */
  width: 1.5rem;
  height: 1.5rem;
  position: relative;
}

/* Linii personalizate */
.navbar-toggler-icon::before,
.navbar-toggler-icon::after,
.navbar-toggler-icon div {
  content: '';
  background-color: #000; /* sau ce culoare dorești */
  height: 4px; /* grosimea liniei - mărește după nevoie */
  width: 100%;
  position: absolute;
  left: 0;
  transition: all 0.3s;
  border-radius: 1px;
}

.navbar-toggler-icon::before {
  top: 0;
}

.navbar-toggler-icon::after {
  bottom: 0;
}

.navbar-toggler-icon div {
  top: 50%;
  transform: translateY(-50%);
}

.nav-link.active {
  color: #02A8FE !important;
  position: relative;
}

.nav-link {
  position: relative;
  color: var(--Grey-600-465967, #465967);
  text-align: center;
  font-feature-settings: 'liga' off, 'clig' off;
  font-size: 16px;
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-weight: 600;
  line-height: 20px; /* 150% */
}


.dropdown-menu .dropdown-item {
  color: var(--Grey-600-465967, #465967);  
  font-feature-settings: 'liga' off, 'clig' off;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px; /* spațiu față de text */
  height: 4px;
  width: 100%;
  background-color: #9FAFBC;
  opacity: 0;
  transition: opacity 0.3s ease, background-color 0.3s ease;
}

.nav-link:hover::after {
  opacity: 1;
  background-color: #9FAFBC;
}

.nav-link.active::after {
  opacity: 1;
  background-color: #02A8FE;
  
}

.hero {
  background: url("../img/hero.png") center/cover no-repeat;
  height: 700px;
  max-width: 1440px;
  margin:  0 auto;
  padding-left: 80px;
  padding-top: 0px;
  position: relative;
}

.aliniere {
    display: flex;
    flex-wrap: nowrap;
    gap: 32px; /* spațiu între search și modal */
    align-items: flex-start;
    position: relative!important;
}

.search-box {
    background: white;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 48px 24px;
    justify-content: center;
    gap: 25px;
    align-self: stretch;
    max-width: 370px;
    height: 370px;
    margin-left: 0;
    width: 100%;
    flex: 0 0 370px; /* ★ CHANGED: lățime fixă; modalul nu va împinge/strâmta boxul */
    z-index: 1;
}

.card {
  border-radius: 20px;
  background-color: #f9f9f9;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
}

footer h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

footer a {
  text-decoration: none;
  color: #000;
  margin-bottom: 5px;
}

.btn-cauta {
  border-radius: 16px;
  background: var(--Sky-Blue-02A8FE, #02A8FE);
  color: white;
  font-weight: 600;
  transition: background-color 0.3s ease;
  display: flex;
width: 320px;
height: 60px;
padding: 8px 28px;
justify-content: center;
align-items: center;
gap: 4px;
}

.btn-cauta:hover {
  background-color: #0194e3; /* opțional: un albastru puțin mai închis pentru hover */
}

.btn-adauga {
  border-radius: 16px;
  background: var(--Grey-1000-111920, #111920);
  color: white;
  font-weight: 600;
  transition: background-color 0.3s ease, color 0.3s ease;
  display: flex;
  width: 320px;
  height: 60px;
  padding: 8px 28px;
  justify-content: center;
  align-items: center;
  gap: 4px;
}

.btn-adauga:hover {
  background-color: #2A2A2A;
  color: #FFFFFF;
}

.btn-outline-adauga {
  border-radius: 16px;
  border: 2px solid var(--Grey-1000-111920, #111920);
  background-color: transparent;
  color: #111920;
  font-weight: 600;
  transition: all 0.3s ease;
  display: flex;
  width: 320px;
  height: 60px;
  padding: 8px 28px;
  justify-content: center;
  align-items: center;
  gap: 4px;
}

.btn-outline-adauga:hover {
  background-color: #111920;
  color: white;
}

.btn {
  border-radius: 12px;
  transition: all 0.2s ease;
  font-weight: 600 !important;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(2, 168, 254, 0.2);
}


.input-search {
  display: flex;
  width: 320px;
  height: 60px;
  padding: 16px;
  justify-content: space-between;
  align-items: center;
  border-radius: 16px;
border: 1px solid var(--Grey-300-C3CDD5, #C3CDD5);
background: var(--Grey-100-F2F5F8, #F2F5F8);
}

/* Hover */
.input-search:hover {
  border-radius: 16px;
border: 2px solid var(--Grey-500-677A89, #677A89);
background: var(--Grey-100-F2F5F8, #F2F5F8);
}

/* Focus */
.input-search:focus {
  border-radius: 16px;
border: 1px solid var(--Sky-Blue-02A8FE, #02A8FE);
background: var(--Light-Turquoise-F4FEFF, #F4FEFF);
outline: none;
box-shadow: 0 0 0 0.2rem rgba(2, 168, 254, 0.2);
}

/* Error (poate fi adăugat dinamic cu JS) */
.input-search.input-error,
.input-search.is-invalid {
  border: 1px solid var(--Alert-400-B72025, #B72025);
  background: var(--Alert-100-FFF4F2, #FFF4F2);
}

.input-search.input-error:focus,
.input-search.is-invalid:focus {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.input-date {
  display: block;
  width: 320px;
  height: 60px;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid var(--Grey-300-C3CDD5, #C3CDD5);
  background: var(--Grey-100-F2F5F8, #F2F5F8);
  font-family: 'Inter', sans-serif;
  color: #111920;
  font-size: 16px;
  cursor: pointer;

 
}

.input-date:hover {
  border: 2px solid var(--Grey-500-677A89, #677A89);
}

/* Focus */
.input-date:focus {
  border: 1px solid var(--Sky-Blue-02A8FE, #02A8FE);
  background: var(--Light-Turquoise-F4FEFF, #F4FEFF);
  box-shadow: 0 0 0 0.2rem rgba(2, 168, 254, 0.25);
  outline: none;
}

/* Error (manual via class) */
.input-date.input-error,
.input-date.is-invalid {
  border: 1px solid var(--Alert-400-B72025, #B72025);
  background: var(--Alert-100-FFF4F2, #FFF4F2);
}

.input-date.input-error:focus,
.input-date.is-invalid:focus {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.bg-container-dark {
  background-color: #162b3d; /* fundal general - același ca butonul .btn-adauga */
  max-width: 1440px;
  margin: 0 auto;

}

.bg-inner-dark {
  background-color: #1b1b1b; /* fundal interior - albastru închis / mov din imagine */
  margin-top: 10px;
}

.cta-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  transform: translateY(-50%);
  margin-bottom: -40px;
  z-index: 1;
}

.cta-overlay {
  background-color: #ffffff;
  padding: 24px;
  max-width: 912px;
  width: 100%;
  border-radius: 24px;
  z-index: 2;
  position: relative;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.cta-border-top {
  position: absolute;
  top: -10px;
  width: 100%;
  max-width: 912px;
  height: 30px;
  background-image: url("../img/border.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  z-index: 0;
}


.cta-overlay .text-start h2,
.cta-overlay .text-start p {
  text-align: left;

}
.titlu-1{
  color: var(--Grey-800-202E39, #202E39);
font-feature-settings: 'liga' off, 'clig' off;
font-family: 'Inter', sans-serif;
font-size: 20px;
font-style: normal;
font-weight: 700;
line-height: 28px; /* 140% */
letter-spacing: 0.2px;
}

.text-1{
  color: var(--Grey-800-202E39, #202E39);
font-feature-settings: 'liga' off, 'clig' off;
font-family: 'Inter', sans-serif;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 24px; /* 150% */
}

.icon-1{
  display: flex;
  padding: 16px;
  align-items: flex-start;
  gap: 8px;
  border-radius: 16px;
background: var(--Light-Grey-EBEDF2, #EBEDF2);
}
.btn-cont{
  display: inline-flex;
  height: 48px;
  padding: 8px 28px;
  justify-content: center;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
  border-radius: 1000px;
border: 1px solid var(--Grey-500-677A89, #677A89);
}
.btn-cont:hover {
  background: var(--Black-000000, #000);
  color: white; 
}


.btn-servicii {
  display: inline-flex;
  height: 38px;
  width: 180px;  
  justify-content: center;
  align-items: center;
  gap: 1px;
  flex-shrink: 0;
  border-radius: 1000px;
border: 1px solid var(--Grey-500-677A89, #677A89);
font-size: 12px;
  font-weight: 400; /* pentru un text ușor evidențiat */


}
.btn-servicii:hover {

  background: var(--Black-000000, #000);
  color: white; 
}


.im-client {
  display: flex;
  width: 270px;
  height: 108px;
  padding: 32px 62px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 32px;
background: var(--White-FFFFFF, #FFF);
}


.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%; /* makes it round */
  background-color: var(--bg-container-dark, #0f172a); /* fallback if custom var isn't defined */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.social-icon img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}


.text-2 {
 color: var(--Grey-600-465967, #465967)!important;
font-feature-settings: 'liga' off, 'clig' off;
font-family: 'Inter', sans-serif;
font-size: 14px;
font-style: normal;
font-weight: 600;
line-height: 20px; /* 142.857% */
letter-spacing: 0.2px;
}


.text-3 {
  color: var(--Grey-600-465967, #465967)!important;
 font-feature-settings: 'liga' off, 'clig' off;
 font-family: 'Inter', sans-serif;
 font-size: 13px;
 font-style: normal;
 font-weight: 400;
 line-height: 20px; /* 142.857% */
 letter-spacing: 0.2px;
 }
 

 .text-4 {
  color: var(--Grey-600-465967, #465967)!important;
 font-feature-settings: 'liga' off, 'clig' off;
 font-family: 'Inter', sans-serif;
 font-size: 12px;
 font-style: normal;
 font-weight: 400;
 line-height: 20px; /* 142.857% */
 letter-spacing: 0.2px;
 }

.titlu-2 {
color: var(--Grey-1000-111920, #111920);
font-feature-settings: 'liga' off, 'clig' off;
font-family: 'Inter', sans-serif;
font-size: 18px;
font-style: normal;
font-weight: 700;
line-height: 24px; /* 133.333% */
letter-spacing: 0.2px;
border-left: 2px solid #000;
padding-left: 8px;
}


.titlu-3 {
color: var(--Grey-1000-111920, #111920);
font-feature-settings: 'liga' off, 'clig' off;
font-family: 'Inter', sans-serif;
font-size: 18px;
font-style: normal;
font-weight: 700;
line-height: 24px; /* 133.333% */
letter-spacing: 0.2px;
border-left: 2px solid #02A8FE;
padding-left: 8px;
padding-bottom: 5px;
}
.glow-blue-border {
  position: relative;
 
  border-radius: 1.5rem!important;
  box-shadow:
  0 0 30px rgba(144, 238, 144, 0.4),   /* light green */
  0 0 60px rgba(173, 216, 230, 0.3),   /* light blue */
  0 0 100px rgba(221, 160, 221, 0.25); /* light purple */
  width: 100%;
}
.section-clients {
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  padding: 60px 0;
}


.hightlight {
  color: var(--Indigo-2759F7, #2759F7);

}
.client-card {
  background-color: #ffffff;
  border: none;
  border-radius: 16px;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.08); 
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  transition: box-shadow 0.3s ease;
}

.client-card:hover {
  transform: translateY(-6px);
  box-shadow: 0px 12px 20px rgba(0, 0, 0, 0.12); 
}

.client-card img {
  max-width: 120px;
  max-height: 40px;
  width: 100%;
  object-fit: contain;
}

.card-fiscal {
  position: relative;
  width: 320px;
  height: 300px;
  padding: 24px;
  border-radius: 24px;
  background-color: #fff;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
  margin: 0 auto;
  border: none;
  z-index: 1;
  overflow: visible; /* permite overflow-ul */
}

.card-fiscal > * {
  position: relative;
  z-index: 1; /* conținutul peste gradient */
}

.card-fiscal ul {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}
.card-fiscal ul li {
  display: block; /* Asigură că stă pe rând propriu */
  position: relative;
  color: var(--Grey-600-465967, #465967)!important;
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight:bold;
  line-height: 20px; /* 142.857% */
  letter-spacing: 0.2px;
  padding-bottom: 2px;
}

.card-fiscal-glow {
  position: absolute;
  bottom: -10px; /* un pic sub card */
  left: 50%;
  transform: translateX(-48%);
  width: 320px;
  height: 32px;
  background-image: url("../img/border.jpg"); /* sau un gradient */
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 0 0 24px 24px;
  z-index: 0;
  pointer-events: none;

}
  
/* start sectiune faq--------------------------------*/
/* ======= TABURI ======= */
.btn-tab {
  border: none;
  background-color: #f2f4f6;
  color: #495057;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 999px;
  transition: 0.2s;
}

.btn-tab.active {
  background-color: #fff;
  color: #000;
  box-shadow: 0 0 12px rgba(2, 168, 254, 0.2);
}



/* ======= TABURI cont======= */
.btn-tabc {
  border: none;
  background-color: #ffff;
  color: #000;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 9px;
  transition: 0.2s;
}

.btn-tabc.active {
  background-color: #e9f0f8;
  color: #000;
 
}


/* ======= CONTAINER FAQ ======= */
.faq-box {
  position: relative;
  background-color: #ffffff;
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  border-radius: 24px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
  z-index: 1; /* box deasupra glow-ului */
}

/* ======= GLOW BOTTOM DECORATIV ======= */
.faq-glow-bottom {
  position: absolute;
  bottom: -10px; /* va fi dedesubt */
  left: 50%;
  transform: translateX(-50%); /* centrare perfectă */
  width: 71%; /* să nu fie mai mare decât box-ul */
  height: 22px;
  background-image: url("../img/border.jpg");
  background-size: cover;
  background-repeat: no-repeat;

  border-bottom-left-radius: 2rem;
  border-bottom-right-radius: 2rem;
  z-index: 0; /* glow sub box */
}

/* ======= ÎNTREBĂRI & RĂSPUNSURI ======= */
.faq-item {
  margin-bottom: 1rem;
  border-bottom: 1px solid #e0e0e0;
  padding: 16px 0;
}

.faq-item .question {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  margin-bottom: 0;
  color: #1f2937;
}

.faq-item .question .icon {
  font-size: 1.25rem;
  font-weight: bold;
  color: #888;
}

.faq-item .icon {
  font-size: 20px;
  font-weight: bold;
  margin-left: 8px;
  color: #888;
  transition: transform 0.2s ease;
}

.faq-item .answer {
  display: none;
  margin-top: 12px;
  color: #4b5563;
  font-size: 0.95rem;
}

/* ======= TAB CONȚINUT ======= */
.tab-content {
  display: none;
}

.tab-content.active {
  display: block;

}

.faq-item .question.active{
  color: #02A8FE!important;
}


/* stop sectiune faq--------------------------------*/

/* stop sectiune contact--------------------------------*/
.contact-box {
  border-radius: 2rem;
  background-color: #0e1216;
  box-shadow: 0 0 40px rgba(0, 153, 255, 0.15);
}

.btn-contact {
  padding: 10px 20px;
  border-radius: 1000px;
  border: 1px solid #677A89;
  color: #fff;
  text-decoration: none;
  display: inline-block;
  transition: 0.2s ease-in-out;
}

.btn-contact:hover {
  background-color: #02A8FE;
  color: #fff;
  border-color: #02A8FE;
}

.shadow-glow {
  box-shadow:
    0 0 20px rgba(2, 168, 254, 0.15),
    0 0 40px rgba(2, 168, 254, 0.1);
}

/* stop sectiune contact--------------------------------*/


/* start tooltop-custom--------------------------------*/


.tooltip-custom {
  position: relative;
  z-index: 10; /* creează context pentru tooltip */
}

.tooltip-custom:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
  transform: translateY(-50%) translateX(10px);
}

.tooltip-custom .tooltip-text {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 80%;
  transform: translateY(-50%);
  margin-left: 2px;
  background-color: #0f1111;
  color: #fff;
  padding: 4px 10px;
  border-radius: 6px;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  transition: opacity 0.3s ease;
  z-index: 9999;
}

/* stop tooltop-custom--------------------------------*/


/* start modal-custom--------------------------------*/





.custom-modal {
  flex: 0 1 500px;
  max-width: 500px;
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
  padding: 24px;
  display: none;
  opacity: 0;
  /*transform: translateX(40px);*/
  transition: all 0.4s ease;
  position: relative;
  z-index: 0;
}

.custom-modal.show {
  /*transform: translateX(0)!important;*/
  opacity: 1;
  pointer-events: auto!important;
  display: block; /* <--- vizibil la .show */
}

    .custom-modal.show .custom-modal-content {
        transform: translateX(0);
        opacity: 1;
    }

.custom-modal-content {
    padding: 24px;
    position: relative;
    transform: translateX(24px); /* ★ NEW: mic slide-in */
    opacity: 0;  /*★ NEW: animăm și opacitatea */
    transition: transform .25s ease, opacity .25s ease;
}

/* Conținutul din interiorul modalului */
    .custom-modal-content .result-item {
        border-bottom: 1px solid #e0e0e0 !important;
        padding: 6px 0;
        display: flex !important;
        justify-content: space-between !important;
        gap: 20px;
        font-size: 14px;
        color: #465967;
    }

        .custom-modal-content .result-item :last-child {
            border-bottom: none;
        }

    .custom-modal-content table tr:last-child .result-item {
        border-bottom: none;
    }

/* Close button stilizat */
.close-modal {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.5rem;
  font-weight: bold;
  color: #000;
  cursor: pointer;
}



/* stop modal-custom--------------------------------*/

/* start sectiune abonament--------------------------------*/
.card-abonament {
  max-width: 320px;
  background-color: #fff;
  border-radius: 1rem;
  border: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.card-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px; /* spațiu între carduri */
  justify-content: center;
  padding-bottom: 24px;
}

.card-abonament h4 {
  font-size: 1.75rem;
}

.card-abonament h3 {
  font-size: 1.5rem;
}

.card-abonament .form-select {
  border: 1px solid #d9d9d9;
}

.card-abonament ul li i {
  font-size: 1rem;
}

/* Gradient border exterior */
.border-gradient {
  border: 3px solid transparent;
  background-image: linear-gradient(#fff, #fff),
    linear-gradient(90deg, #02a8fe, #8f56ff, #0bd3c5);
  background-origin: border-box;
  background-clip: padding-box, border-box;
}

/* Eticheta "Popular" */
.badge-popular {
  position: absolute;
  top: 16px;
  right: 16px;
  background-color: #0f1113;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  z-index: 2;
}

.form-select {
  background-color: #dadedf;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  transition: all 0.2s ease;
  color: #465967;
  font-size: 14px;
}

/* Hover */
.form-select:hover {
  border-color: #02A8FE;
  
}

/* Focus: elimină radius sus pentru continuitate cu dropdown-ul */
.form-select:focus {
  background-color: #eaf6ff;
  border-color: #02A8FE;
  outline: none;
  box-shadow: none;

}

/* Elimină padding bottom și adaugă doar padding top */
.section-no-bottom {
  padding-top: 2rem;
  padding-bottom: 0 !important;
}

/* Ajustează alinierea verticală între icon și text */
.cta-overlay-offer .d-flex.gap-2 {
  align-items: center;
}

.cta-overlay-offer{


  background-color: #ffffff;
  padding: 20px;
  max-width: 912px;
  width: 100%;
  border-radius: 24px;
  z-index: 2;
  position: relative;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}


.cta-wrapper-offer {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end; 
  z-index: 1;
}

/* Ascunde iconul pe ecrane sub 768px */
@media (max-width: 767.98px) {
  .cta-overlay-offer .icon-1 {
    display: none;
  }
}
/* Carduri personalizat*/

.form-range {
  accent-color: #02A8FE;
}


input[type="range"] {
  width: 100%;
  cursor: pointer;
}

/* stop sectiune abonament--------------------------------*/

/* start sectiune form comanda--------------------------------*/
.asterisk-icon {
  font-size: 0.45rem;
  vertical-align: top;
}
/* stop sectiune from comanda--------------------------------*/




/* Responsive styles */

/* Responsive styles for mobile devices */
@media (max-width: 768px) {


    .aliniere {
       
        flex-wrap: wrap;
       
    }

  .custom-modal {
    position: static;
    transform: none;
    opacity: 0;
    display: none;
    width: 100%;
    margin-top: 1rem;
    padding: 16px;
  }

  .custom-modal.show {
    opacity: 1;
    transform: none;
    display: block;
  }

  .tooltip-custom .tooltip-text {
    left: 20%;
    top: 100%;
    transform: translateY(8px);
    margin-left: 0;
  }


  .faq-glow-bottom {
    width: 100%;
  }

  .card-fiscal-glow {
   
    
    transform: translateX(-50%);

  }

  .btn-cont {    
    padding: 4px 12px;
    font-size: 14px;
    width: auto;   
  }
  .titlu-1, .text-1 {
    font-size: 14px;
    line-height: 1.4;
  }
  .cta-wrapper {
    transform: none;
    margin-bottom: 24px;
  }
  .cta-border-top {
    height: 30px;
    top: -10px;
  }

  .cta-overlay {
    flex-direction: column;
    padding: 16px;
    gap: 12px;
    align-items: flex-start;
    text-align: left;

  }
  .cta-overlay .icon-1 img {
    max-width: 32px;
    height: auto;
  }
 
  .cta-overlay .text-start h2 {
    font-size: 14px; 
    margin-bottom: 4px;
    flex: 1;
  }

  .cta-overlay .text-start p {
    font-size: 12px; 
    margin-bottom: 0;
    flex: 1;
  }

  .cta-overlay .d-flex {
    flex-direction: row !important;
    align-items: flex-start !important;
    gap: 10px;
  }

  .no-padding-mobile {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

    .search-box {
        margin-top: 10px;        
        margin-bottom: 10px;
        width: 90%; /* ia 90% din container */
        max-width: none; /* scoate limita fixă */
        flex: 1 1 auto;
    }

  .cta-overlay .btn-cont { 
    font-size: 0.75rem;
    padding: 4px 14px;
    height: 34px;
    white-space: nowrap;
    line-height: 1;
    text-align: center;
    align-self: flex-start;
    margin-top: 1rem;

  }
  .bg-inner-dark {
    padding: 2rem 1rem;
    margin-top: 20px!important;
  }

  .hero {
    height: auto;
    padding: 40px 20px;
    flex-direction: column;
    align-items: center;
  }

  .col-md-6.col-lg-3 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .nav-link {
    position: relative;
    display: inline-block; /* face bara cât textul */
    font-weight: 600;
  }
  .navbar-nav .nav-link {
    text-align: left;
  }
  .nav-link.active {
    color: #02A8FE !important;
  }
  .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    width: 100%;
    background-color: #02A8FE;
    transform: scaleX(1);
    transform-origin: left;
  }

  .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    width: 100%;
    background-color: #000;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
  }
  
  .nav-link:hover::after {
    transform: scaleX(1);
  }

  .dropdown-menu {
    border: none !important;
    box-shadow: none !important;
  }

  .navbar-nav .nav-item {
    padding-right: 0.5rem;
  }

  .floating-benefits-box {
    margin-top: -60px;
    padding: 1.5rem;
  }
  .card-fiscal ul {
    padding: 1rem;
    width: 100%;
    height: auto;
    width: auto;
  }

 

}

@media (max-width: 1024px) {
  .hero {
    padding: 60px 30px;
    justify-content: center;
  }
}

@media (max-width: 414px) {

  .card-fiscal{
    width: auto!important;
  }

  .card-fiscal-glow{
    width: 280px!important;
     left: 50%!important;
  transform: translateX(-50%)!important;
  }

  .custom-mobile-adjust{  
 text-align: center !important;
 display: inline!important;
  }

  .nogap{
    gap: 0rem !important;
  }
  .hero {
    padding: 40px 16px;
  }

   .search-box {
    padding: 18px;
    gap: 8px;
  }
  .input-search,
  .input-date,
  .btn {
    height: auto;
    max-width: 280px;

  }

 .icon-1 {
    display: none;
  }

}



@media (max-width: 375px) {
  .hero {
    padding: 30px 12px;
  }

  .search-box {
    padding: 18px;
    gap: 8px;
  }
  .input-search,
  .input-date,
  .btn {
    height: auto;
    
  }

}

@media (max-width: 320px) {
  .hero {
    padding: 20px 10px;
  }
}
@media (max-width: 480px) {
  .search-box {
    padding: 18px;
    gap: 8px;
  }
  .input-search,
  .input-date,
  .btn {
    height: auto;
   
  }

}


.create-account-form .btn-group .btn.active {
  background-color: #02A8FE;
  color: #fff;
  border-color: #02A8FE;
  font-weight: 500;
  box-shadow: 0 0 4px rgba(2, 168, 254, 0.5);
}

.create-account-form .btn-group .btn {
  border: 1px solid #dee2e6;
  background-color: #f8f9fa;
  color: #495057;
}

.create-account-form {
  min-height: 460px; /* Ajustează după caz */
}