
/*** Spinner Start ***/
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50%;
}

.btn.btn-primary {
    background: var(--bs-secondary) !important;
    color: var(--bs-white) !important;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    transition: 0.5s;
}

.btn.btn.btn-primary:hover {
    background: var(--bs-primary) !important;
    color: var(--bs-secondary);
    border: 1px solid var(--bs-secondary);
}

.btn.btn-secondary {
    background: transparent;
    color: var(--bs-secondary);
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    border: none;
    transition: 0.5s;
}

.btn.btn-secondary:hover {
    color: var(--bs-primary) !important;
}


/*** Section Title Start ***/
.section-title {
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
}

.section-title .sub-style {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.section-title .sub-style::before {
    content: "";
    width: 100px;
    position: absolute;
    bottom: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-bottom: -6px;
    margin-left: -100px;
    border: 1px solid var(--bs-secondary) !important;
}

.section-title .sub-style::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-top: -8px;
    margin-left: -50px;
    border: 1px solid var(--bs-primary) !important;
}

.sub-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.sub-title::before {
    content: "";
    width: 100px;
    position: absolute;
    bottom: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-bottom: -8px;
    margin-right: -100px;
    border: 1px solid var(--bs-secondary) !important;
}

.sub-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-top: -6px;
    margin-right: -50px;
    border: 1px solid var(--bs-primary) !important;
}


/*** Topbar Start ***/
.fixed-top .container {
    transition: 0.5s;
}

.topbar {
    padding: 2px 10px 2px 20px;
    background: var(--bs-primary) !important;
}

.topbar a,
.topbar a i {
    transition: 0.5s;
}

.topbar a:hover,
.topbar a i:hover {
    color: var(--bs-secondary) !important;
}


@media (max-width: 768px) {
    .topbar {
        display: none;    
    }
}
/*** Topbar End ***/


/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    font-family: 'Poppins', sans-serif;
    position: relative;
    margin-right: 25px;
    padding: 35px 0;
    color: var(--bs-primary) !important;
    font-size: 17px;
    font-weight: 400;
    outline: none;
    transition: .5s;
}

.sticky-top .navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--bs-primary) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--bs-secondary) !important;
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.sticky-top .navbar-light .navbar-brand img {
    max-height: 45px;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
}

@media (min-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
    }
}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-secondary);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light) !important;
    transition: .5s;
    opacity: 1;
}

@media (max-width: 991.98px) {
    .sticky-top {
        position: relative;
        background: var(--bs-white);
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 10px 20px;
        border: 1px solid var(--bs-primary) !important;
        color: var(--bs-primary);
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top .navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--bs-dark) !important;
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 991.98px) {
    .sticky-top .navbar-light {
        background: var(--bs-light) !important;
    }

    /*** Top and Bottom borders go out ***/
    .navbar-light .navbar-nav .nav-link:after,
    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        top: 30px;
        bottom: 30px;
        left: 0px;
        width: 100%;
        height: 2px;
        background: var(--bs-primary);
        opacity: 0;
        transition: all 0.5s;
    }

    .navbar-light .navbar-nav .nav-link:before {
        bottom: auto;
    }

    .navbar-light .navbar-nav .nav-link:after {
        top: auto;
    }

    .navbar-light .navbar-nav .nav-link:hover:before,
    .navbar-light .navbar-nav .nav-link.active:before {
        top: 20px;
        opacity: 1;
    }

    .navbar-light .navbar-nav .nav-link:hover::after,
    .navbar-light .navbar-nav .nav-link.active::after {
        bottom: 20px;
        opacity: 1;
    }
}

#searchModal .modal-content {
    background: rgba(240, 245, 251, 0.5);
}
/*** Navbar End ***/


/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    background: linear-gradient(rgba(0, 58, 102, 0.9), rgba(0, 58, 102, 0.8)), url(../img/breadcrumb.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: initial;
    background-size: cover;
    padding: 100px 0 60px 0;
}
/*** Single Page Hero Header End ***/


/*** Carousel Hero Header Start ***/
.carousel-header .carousel-control-prev .carousel-control-prev-icon,
.carousel-header .carousel-control-next .carousel-control-next-icon {
    width: 4rem;
    height: 4rem;
    margin-left: -60px;
    border-radius: 50%;
    background-size: 60% 60%;
    transition: 0.5s;
}

.carousel-header .carousel-control-next .carousel-control-next-icon {
    margin-left: 0;
    margin-right: -60px;
}

.carousel-header .carousel .carousel-indicators {
    padding-bottom: 0;
    transition: 0.5s;
}


.carousel-header .carousel .carousel-indicators li,
.carousel-header .carousel .carousel-indicators li,
.carousel-header .carousel .carousel-indicators li {
    width: 8px;
    height: 8px;
    border: 8px solid var(--bs-primary);
    border-radius: 50%;
    margin-right: 30px;
    transition: 0.5s;
}

.carousel-header .carousel .carousel-indicators li.active {
    width: 8px;
    height: 8px;
    border: 8px solid var(--bs-secondary);
}

.carousel-header .carousel-inner .carousel-item {
    position: relative;
    min-height: 100vh 
}

.carousel-header .carousel-inner .carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-header .carousel-inner .carousel-item .carousel-caption  {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, 0.6));
    background-size: cover;
}


@media (max-width: 768px) {
    .carousel-header {
        height: 700px !important;
    }

    .carousel-header .carousel-control-prev .carousel-control-prev-icon,
    .carousel-header .carousel-control-next .carousel-control-next-icon {
        margin-top: 500px;
    }

    .carousel-header .carousel-control-prev .carousel-control-prev-icon {
        margin-left: 0px;
    }

    .carousel-header .carousel-control-next .carousel-control-next-icon {
        margin-right: 0px;
    }

    .carousel-header .carousel .carousel-indicators {
        padding: 0;
    }
}
/*** Carousel Hero Header End ***/


/*** Counter Facts Start ***/
.counter-facts {
    background: linear-gradient(rgba(255, 255, 255, .9), rgba(255, 255, 255, 0.8)), url(../img/breadcrumb.png);
    background-size: cover;
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
}

.counter-facts .counter {
    position: relative;
    text-align: center;
    width: 200px;
    min-height: 215px;
    padding: 10px 15px;
    margin: 0 auto;
    border-radius: 100px;
    box-shadow: 0 8px 5px rgba(0, 0, 0, 0.2);
    background: var(--bs-white);
}

.counter-facts .counter:before {
    content: "";
    position: absolute;
    height: 105px;
    width: 100%;
    left: 0;
    top: 0;
    border-radius: 10px 10px 0 0;
    background-color: var(--bs-primary);
    
}
.counter-facts .counter .counter-icon {
    position: relative;
    width: 120px;
    height: 100px;
    margin: 0 auto 10px;
    border-radius: 10px 10px 0 0;
    transform: translateY(-20px);
    font-size: 50px;
    line-height: 90px;
    color: var(--bs-secondary);
    background: rgba(1, 143, 252, 0.5);
    clip-path: polygon(0% 0%, 100% 0, 100% 70%, 50% 100%, 0 70%);
}
.counter-facts .counter .counter-icon:before {
    content: "";
    position: absolute;
    width: 120px;
    height: 90px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 10px 10px 0 0;
    background: rgba(0, 58, 102, 0.5);
    z-index: -1;
    clip-path: polygon(0% 0%, 100% 0, 100% 70%, 50% 100%, 0 70%);
}
.counter-facts .counter:hover .counter-icon i {
    transform: rotate(360deg);
    transition: all 0.3s ease;
}
.counter-facts .counter h3 {
    color: var(--bs-primary);
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0 0 5px 0;
}
.counter-facts .counter .counter-value {
    font-size: 30px;
    font-weight: 700;
    display: block;
    color: var(--bs-secondary);
}

@media screen and (max-width: 1200px) {
    .counter-facts .counter { margin-bottom: 40px; 
    }
}
/*** Counter Facts End ***/


/*** service Start ***/
.service .service-item {
    position: relative;
    overflow: hidden;
}

.service .service-item .service-inner .service-title {
    position: relative;
    margin-top: -30px;
    text-align: center;
    transition: 0.5s;
}

.service .service-item .service-inner .service-title .service-content {
    position: absolute;
    bottom: -100%; 
    left: 0;
    margin-left: 30px;
    margin-right: 30px;
    text-align: center;
    border-radius: 10px;
    background: var(--bs-primary);
    opacity: 0;
    transition: 0.5s;
}

.service .service-item:hover .service-inner .service-title .service-content {
    bottom: 0;
    opacity: 1;
}

.service .service-item .service-inner .service-title .service-content a h4 {
    border-bottom: 1px solid rgba(256, 256, 256, .1);
}

.service .service-item .service-inner .service-title .service-title-name {
    transition: 0.5s;
}

.service .service-item:hover .service-inner .service-title .service-title-name {
    opacity: 0;
}

.service .service-item .service-inner .service-img {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.service .service-item .service-inner .service-img::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    border-radius: 10px;
    background: rgba(255, 255, 255, .5);
    transition: 0.5s;
    opacity: 0;
}

.service .service-item:hover .service-inner .service-img::after {
    height: 100%;
    opacity: 1;
}

.service .service-item .service-inner .service-img img {
    transition: 0.5s;
}

.service .service-item:hover .service-inner .service-img img {
    transform: scale(1.3);
}
/*** Service End ***/


/*** Features Start ***/
.features .feature-item {
    position: relative;
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.features .feature-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    border-radius: 10px;
    background: rgba(0, 58, 102, 0.1);
    z-index: -1;
    transition: 0.5s;
}

.features .feature-item:hover::after {
    height: 100%;
}

.features .feature-item .feature-icon {
    width: 120px; 
    height: 120px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bs-light);
    transition: 0.5s;
}

.features .feature-item:hover .feature-icon {
    border-radius: 50%;
    background: var(--bs-white) !important;
}

.features .feature-item .feature-icon i {
    transition: 0.5s;
}

.features .feature-item:hover .feature-icon i {
    color: var(--bs-secondary) !important;
    transform: rotate(360deg);
    transition: all 0.5s ease;
}
/*** Features End ***/


/*** Country Start ***/
.country .country-item {
    position: relative;
}

.country .country-item::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 58, 102, 0.7);
    border-radius: 10px;
    transition: 0.5s;
    z-index: 1;
}

.country .country-item:hover::after {
    height: 100%;
}

.country .country-item .country-flag {
    position: absolute;
    width: 90px; 
    height: 90px; 
    border-radius: 50%;
    top: -45px; 
    left: 50%; 
    transform: translateX(-50%);
    transition: 0.5s;
    z-index: 2;
}

.country .country-item .country-flag img {
    border: 5px solid var(--bs-white);
    transition: 0.5s;
}

.country .country-item:hover .country-flag img {
    border: 5px solid var(--bs-white);
    transform: rotate(360deg);
    transition: all 0.5s ease;
}

.country .country-item .country-name {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.5s;
    opacity: 0;
    z-index: 3;
}

.country .country-item:hover .country-name {
    opacity: 1;
}

.country .country-item img {
    transition: 0.5s;
}

.country .country-item:hover img {
    transform: scale(1.2);
}

.country .country-item .country-name a.fs-4 {
    transition: 0.5s;
}

.country .country-item .country-name a.fs-4:hover {
    color: var(--bs-secondary) !important;
}
/*** Country End ***/


/*** testimonial Start ***/
.testimonial .owl-carousel.testimonial-carousel {
    position: relative;
}

.testimonial .owl-carousel.testimonial-carousel .testimonial-item .testimonial-content {
    position: relative;
    border-radius: 10px;
    background: var(--bs-light);
}

.testimonial .owl-carousel.testimonial-carousel .testimonial-item .testimonial-content::after {
    position: absolute;
    content: "";
    width: 45px;
    height: 45px;
    bottom: -20px;
    left: 30px;
    transform: rotate(45deg);
    background: var(--bs-light);
    z-index: -1;
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav {
    position: absolute;
    top: -60px;
    right: 0;
    display: flex;
    font-size: 40px;
    color: var(--bs-primary);
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-prev {
    margin-right: 40px;
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-prev,
.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-next {
    transition: 0.5s;
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--bs-secondary);
}
/*** testimonial end ***/


/*** training Start ***/
.training .training-item .training-inner {
    position: relative;
}

.training .training-item .training-inner .training-title-name {
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    padding: 20px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.5);
    display: flex; 
    flex-direction: column;
    justify-content: end;
    text-align: center;
    transition: 0.5s;
}

.training .training-item {
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.training .training-item:hover .training-inner .training-title-name {
    background: rgba(0, 58, 102, 0.5);
}

.training .training-item:hover .training-inner .training-title-name a {
    opacity: 0;
}

.training .training-item .training-inner img {
    transition: 0.5s;
}

.training .training-item:hover .training-inner img {
    transform: scale(1.3);
}

.training .training-item .training-content {
    position: absolute;
    width: 100%;
    bottom: -100%;
    left: 0;
    transition: 0.5s;
}

.training .training-item:hover .training-content {
    bottom: 0;
}  
/*** training End ***/


/*** Contact Start ***/
.contact .office .office-item {
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.2);
    background: var(--bs-light);
    transition: 0.5s;
}

.contact .office .office-item:hover {
    box-shadow: 20px 20px 20px rgba(0, 58, 102, 0.3);
}

.contact .office .office-item .office-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.contact .office .office-item .office-img img {
    transition: 0.5s;
}

.contact .office .office-item:hover .office-img img {
    transform: scale(1.3);
}

.contact .office .office-item .office-content a.text-secondary,
.contact .office .office-item .office-content a.text-muted {
    transition: 0.5s;
}

.contact .office .office-item .office-content a.text-muted:hover {
    color: var(--bs-secondary) !important;
}

.contact .office .office-item .office-content a.text-secondary:hover {
    color: var(--bs-primary) !important;
}
/*** Contact End ***/


/*** Footer Start ***/
.footer {
    background: var(--bs-primary);
}
.footer .footer-item a {
    line-height: 30px;
    color: var(--bs-white);
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 30px;
}

.footer .footer-item a:hover {
    letter-spacing: 2px;
    color: var(--bs-secondary);
}

/*** Footer End ***/


/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--bs-secondary) !important;
}
/*** copyright end ***/



/* ===== POPUP INFO (POPOVER) ===== */
.popover{
  max-width: 380px;
  border-radius: 16px;
  overflow: hidden;
}

.popover .popover-body{
  padding: 0; /* ca să arate ca un card */
}

.visa-popover-card{
  font-family: inherit;
  background: #fff;
}

.visa-popover-img{
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
}

.visa-popover-title{
  font-weight: 700;
  font-size: 16px;
  margin: 10px 12px 2px 12px;
}

.visa-popover-sub{
  font-size: 13px;
  color: #6c757d;
  margin: 0 12px 10px 12px;
}

.visa-popover-list{
  margin: 0 12px 10px 26px;
  padding: 0;
  font-size: 13px;
}

.visa-popover-footer{
  padding: 10px 12px 12px 12px;
}

.visa-popover-footer .btn{
  border-radius: 12px;
}



/* ===== GRID CARDS (doar demo, dacă ai deja cardurile tale, poți ignora această parte) ===== */
.types-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 1200px){
  .types-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px){
  .types-grid{ grid-template-columns: 1fr; }
}

.type-card{
  border: 1px solid #e8eef7;
  border-radius: 18px;
  padding: 18px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.type-card-header{
  display:flex;
  gap:14px;
  align-items:flex-start;
  margin-bottom: 14px;
}

.type-icon{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: #0d6efd;
  color: #fff;
  font-size: 20px;
}

.type-card-actions{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.type-card-actions .btn{
  border-radius: 14px;
  padding: 12px 14px;
  font-weight: 600;
}

/* ===== POPUP INFO (POPOVER) ===== */
.popover{
  max-width: 380px;
  border-radius: 16px;
  overflow: hidden;
}

.popover .popover-body{
  padding: 0;
}

.visa-popover-card{
  font-family: inherit;
  background: #fff;
}

.visa-popover-img{
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
}

.visa-popover-title{
  font-weight: 700;
  font-size: 16px;
  margin: 10px 12px 2px 12px;
}

.visa-popover-sub{
  font-size: 13px;
  color: #6c757d;
  margin: 0 12px 10px 12px;
}

.visa-popover-list{
  margin: 0 12px 10px 26px;
  padding: 0;
  font-size: 13px;
}

.visa-popover-footer{
  padding: 10px 12px 12px 12px;
}

.visa-popover-footer .btn{
  border-radius: 12px;
}



/* ===== ACTE INLINE ===== */
.acts-box{
  display: none;
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  background: #f8fbff;
  border: 1px solid #e6eef9;
  font-size: 14px;
}

.acts-box ul{
  margin: 8px 0 0 18px;
  padding: 0;
}

.toggle-acts{
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}
.acts-box ul{
  list-style: none;
  margin: 10px 0 0 0;
  padding: 0;
}

.acts-box li{
  padding-left: 22px;
  position: relative;
  margin: 8px 0;
}

.acts-box li::before{
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
  color: #0d6efd;
}
.toggle-acts{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #eef6ff;
  border: 1px solid #d8ebff;
  color: #0d6efd;
  font-weight: 700;
  text-decoration: none;
}
.toggle-acts:hover{
  background: #e3f0ff;
}
.acts-box{
  display: none;
  margin-top: 12px;
  padding: 14px 16px;
  border-radius: 16px;
  background: #f8fbff;
  border: 1px solid #e6eef9;
  font-size: 14px;
  animation: fadeIn 0.25s ease-in-out;
}

@keyframes fadeIn{
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}
.acts-cta{
  display: inline-block;
  margin-top: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #0d6efd;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}
.acts-cta:hover{
  background: #0b5ed7;
}
.toggle-acts{
  position: relative;
}

.toggle-acts::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: #dbeafe;
  opacity: 0;
  transition: opacity 0.2s;
}

.toggle-acts.active::after{
  opacity: 1;
}

/* ====== EFECTE "DE CE NOI" ====== */
.why-grid{
  perspective: 1200px; /* ajută la efect */
}

.why-card{
  background: #fff;
  border: 1px solid #e6f0ff;
  border-radius: 18px;
  padding: 22px 18px;
  box-shadow: 0 10px 24px rgba(10, 35, 80, .06);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  transform: translateZ(0);
  position: relative;
  overflow: hidden;
}

/* glow subtil în fundal */
.why-card::before{
  content:"";
  position:absolute;
  inset:-2px;
  background: radial-gradient(500px 220px at 20% 0%, rgba(26,115,232,.10), transparent 60%);
  opacity: 0;
  transition: opacity .22s ease;
  pointer-events:none;
}

.why-card:hover{
  transform: translateY(-6px);
  border-color: rgba(26,115,232,.35);
  box-shadow: 0 16px 34px rgba(10, 35, 80, .12);
}

.why-card:hover::before{
  opacity: 1;
}

/* icon box – pulse/glow */
.why-icon{
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0b63f6, #1b8cff);
  box-shadow: 0 10px 18px rgba(11, 99, 246, .25);
  transition: transform .22s ease, box-shadow .22s ease;
}

.why-card:hover .why-icon{
  transform: scale(1.05) rotate(-2deg);
  box-shadow: 0 14px 22px rgba(11, 99, 246, .35);
}

/* text */
.why-card h4{
  margin: 14px 0 8px;
  font-weight: 800;
}

.why-card p{
  margin: 0;
  color: #51657d;
  line-height: 1.45;
}

/* ====== ANIMAȚIE LA SCROLL ====== */
.reveal{
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .55s ease, transform .55s ease;
}

.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}

/* stagger (întârziere ușoară între carduri) */
.reveal[data-delay="1"]{ transition-delay: .06s; }
.reveal[data-delay="2"]{ transition-delay: .12s; }
.reveal[data-delay="3"]{ transition-delay: .18s; }
.reveal[data-delay="4"]{ transition-delay: .24s; }
.reveal[data-delay="5"]{ transition-delay: .30s; }
.reveal[data-delay="6"]{ transition-delay: .36s; }
.reveal[data-delay="7"]{ transition-delay: .42s; }
.reveal[data-delay="8"]{ transition-delay: .48s; }

/* accesibilitate */
@media (prefers-reduced-motion: reduce){
  .why-card, .why-icon, .reveal{
    transition: none !important;
    transform: none !important;
  }
  .reveal{ opacity: 1 !important; }
}

.why-card::after{
  content:"";
  position:absolute;
  top:-120%;
  left:-60%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    120deg,
    transparent 40%,
    rgba(255,255,255,.25) 50%,
    transparent 60%
  );
  transform: rotate(12deg);
  transition: opacity .25s ease, transform .6s ease;
  opacity: 0;
  pointer-events:none;
}

.why-card:hover::after{
  opacity: 1;
  transform: translateX(30%) rotate(12deg);
}

.why-card h4{
  transition: color .22s ease;
}

.why-card:hover h4{
  color: #0b63f6;
}

/* ====== EFECTE PENTRU "TIPURI DE SERVICII" ====== */

.types-grid{
  perspective: 1200px;
}

/* card */
.type-card{
  border: 1px solid #e6f0ff;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(10, 35, 80, .06);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
}

/* glow subtil */
.type-card::before{
  content:"";
  position:absolute;
  inset:-2px;
  background: radial-gradient(520px 240px at 20% 0%, rgba(26,115,232,.10), transparent 60%);
  opacity: 0;
  transition: opacity .22s ease;
  pointer-events:none;
}

/* hover lift */
.type-card:hover{
  transform: translateY(-6px);
  border-color: rgba(26,115,232,.35);
  box-shadow: 0 16px 34px rgba(10, 35, 80, .12);
}

.type-card:hover::before{
  opacity: 1;
}

/* icon box (dacă ai .type-icon) */
.type-icon{
  transition: transform .22s ease, box-shadow .22s ease;
}

.type-card:hover .type-icon{
  transform: scale(1.05) rotate(-2deg);
}

/* titlu accent */
.type-card h3{
  transition: color .22s ease;
}

.type-card:hover h3{
  color: #0b63f6;
}

/* ====== REVEAL LA SCROLL ====== */
.reveal{
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .55s ease, transform .55s ease;
}

.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}

/* stagger (întârziere pe rând) */
.reveal[data-delay="1"]{ transition-delay: .06s; }
.reveal[data-delay="2"]{ transition-delay: .12s; }
.reveal[data-delay="3"]{ transition-delay: .18s; }
.reveal[data-delay="4"]{ transition-delay: .24s; }
.reveal[data-delay="5"]{ transition-delay: .30s; }
.reveal[data-delay="6"]{ transition-delay: .36s; }
.reveal[data-delay="7"]{ transition-delay: .42s; }
.reveal[data-delay="8"]{ transition-delay: .48s; }

/* accesibilitate */
@media (prefers-reduced-motion: reduce){
  .type-card, .reveal{
    transition: none !important;
    transform: none !important;
  }
  .reveal{ opacity: 1 !important; }
}

/* ====== PROCES 4 PAȘI – HOVER + INTENSITATE PROGRESIVĂ ====== */

.steps-grid { perspective: 1200px; }

.step-card{
  position: relative;
  overflow: hidden;
  border: 1px solid #e6f0ff;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(10, 35, 80, .06);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, filter .22s ease;
  transform: translateZ(0);
}

/* glow subtil în fundal */
.step-card::before{
  content:"";
  position:absolute;
  inset:-2px;
  background: radial-gradient(520px 240px at 20% 0%, rgba(26,115,232,.12), transparent 60%);
  opacity: 0;
  transition: opacity .22s ease;
  pointer-events:none;
}

/* Optional: “shine” fin */
.step-card::after{
  content:"";
  position:absolute;
  top:-120%;
  left:-60%;
  width: 200%;
  height: 200%;
  background: linear-gradient(120deg, transparent 40%, rgba(255,255,255,.22) 50%, transparent 60%);
  transform: rotate(12deg);
  opacity: 0;
  transition: opacity .25s ease, transform .6s ease;
  pointer-events:none;
}

/* accent pe titlu */
.step-card h3, .step-card h4{
  transition: color .22s ease;
}

/* ===== Intensitate progresivă (1 → 4) ===== */
.step-card[data-step="1"]{ --lift: 4px;  --shadow: .10; --glow: .25; }
.step-card[data-step="2"]{ --lift: 6px;  --shadow: .13; --glow: .40; }
.step-card[data-step="3"]{ --lift: 8px;  --shadow: .16; --glow: .55; }
.step-card[data-step="4"]{ --lift: 10px; --shadow: .20; --glow: .70; }

/* hover (folosește variabilele de mai sus) */
.step-card:hover{
  transform: translateY(calc(-1 * var(--lift)));
  border-color: rgba(26,115,232,.40);
  box-shadow: 0 18px 40px rgba(10, 35, 80, var(--shadow));
}

.step-card:hover::before{
  opacity: var(--glow);
}

.step-card:hover::after{
  opacity: .9;
  transform: translateX(30%) rotate(12deg);
}

.step-card:hover h3,
.step-card:hover h4{
  color: #0b63f6;
}

/* icon-ul (dacă ai un element de icon) */
.step-card .step-icon{
  transition: transform .22s ease, box-shadow .22s ease;
}

.step-card:hover .step-icon{
  transform: scale(1.06) rotate(-2deg);
}

/* feedback click (mobile) */
.step-card:active{
  transform: translateY(-2px) scale(.99);
}

/* ===== Reveal on scroll ===== */
.reveal{
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}

/* accesibilitate */
@media (prefers-reduced-motion: reduce){
  .step-card, .reveal{
    transition: none !important;
    transform: none !important;
  }
  .reveal{ opacity: 1 !important; }
}


/* ===== TRANSPARENȚĂ – HOVER ICON EFFECT ===== */
.transparency-box { position: relative; }

.transparency-list{
  list-style: none;
  padding: 0;
  margin: 14px 0 0 0;
  display: grid;
  gap: 10px;
}

.transparency-item{
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid transparent;
  background: transparent;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.transparency-item .ti-icon{
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  font-weight: 800;
  line-height: 1;
  transform: translateZ(0);
  transition: transform .22s ease, filter .22s ease;
  user-select: none;
}

/* culori discrete (fără să “țipe”) */
.transparency-item.is-bad .ti-icon{
  background: rgba(220, 53, 69, .10);
  color: #dc3545;
}

.transparency-item.is-good .ti-icon{
  background: rgba(25, 135, 84, .12);
  color: #198754;
}

/* hover pe rând */
.transparency-item:hover{
  background: rgba(13, 110, 253, .06);
  border-color: rgba(13, 110, 253, .22);
  transform: translateY(-1px);
}

/* animație icon la hover */
.transparency-item:hover .ti-icon{
  transform: rotate(-12deg) scale(1.08);
  filter: drop-shadow(0 8px 14px rgba(10,35,80,.14));
}

/* rotație diferită pentru x vs check */
.transparency-item:hover .ti-x{ transform: rotate(18deg) scale(1.10); }
.transparency-item:hover .ti-check{ transform: rotate(-10deg) scale(1.10); }

/* pulse scurt */
.transparency-item:hover .ti-icon{
  animation: tiPulse .55s ease 1;
}

@keyframes tiPulse{
  0%   { transform: scale(1) rotate(0); }
  45%  { transform: scale(1.14) rotate(10deg); }
  100% { transform: scale(1.08) rotate(-10deg); }
}

/* accesibilitate */
@media (prefers-reduced-motion: reduce){
  .transparency-item, .transparency-item .ti-icon{ transition: none !important; }
  .transparency-item:hover .ti-icon{ animation: none !important; }
}
/* =========================
   ABOUT / DESPRE NOI (CSS)
   Pune în style.css (la final)
========================= */
.about-wrap{
  padding: 70px 0;
  background: #ffffff;
}

.about-container{
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 18px;
}

.about-header{
  text-align: left;
  max-width: 900px;
  margin: 0 auto 28px auto;
}

.about-eyebrow{
  font-weight: 700;
  letter-spacing: .12em;
  font-size: 12px;
  color: #0b4aa6;
  margin: 0 0 10px 0;
}

.about-title{
  font-size: 36px;
  line-height: 1.15;
  margin: 0 0 10px 0;
  color: #0b2239;
}

.about-subtitle{
  margin: 0;
  color: #4a6177;
  font-size: 16px;
  line-height: 1.6;
}

.about-stats{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.about-stat{
  background: #f7fbff;
  border: 1px solid #e6f0ff;
  border-radius: 16px;
  padding: 14px 14px;
}

.about-stat-num{
  font-weight: 800;
  font-size: 18px;
  color: #0b4aa6;
}

.about-stat-label{
  font-size: 13px;
  color: #4a6177;
}

.about-grid{
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 22px;
  align-items: start;
  margin-top: 22px;
}

.about-col{ display: grid; gap: 16px; }

.about-card{
  background: #f7fbff;
  border: 1px solid #e6f0ff;
  border-radius: 20px;
  padding: 18px 18px;
  box-shadow: 0 10px 30px rgba(11, 74, 166, .06);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  position: relative;
  overflow: hidden;
}

.about-card::before{
  content:"";
  position:absolute;
  inset:-40px -40px auto auto;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(11,74,166,.18), rgba(11,74,166,0) 60%);
  transform: translate(30px, -30px);
  opacity: .7;
  pointer-events:none;
}

.about-card:hover{
  transform: translateY(-6px);
  border-color: #cfe1ff;
  box-shadow: 0 18px 46px rgba(11, 74, 166, .14);
}

.about-card-title{
  margin: 0 0 8px 0;
  font-size: 18px;
  font-weight: 800;
  color: #0b2239;
}

.about-card-text{
  margin: 0 0 12px 0;
  color: #4a6177;
  line-height: 1.6;
}

.about-bullets{ display:grid; gap: 8px; }
.about-bullet{
  display:flex;
  align-items:center;
  gap:10px;
  color:#0b2239;
  font-size: 14px;
}
.about-dot{
  width:10px;
  height:10px;
  border-radius: 999px;
  background:#0b4aa6;
  box-shadow: 0 0 0 4px rgba(11,74,166,.14);
}

/* CE NU FACEM */
.about-card-strong{
  background: linear-gradient(180deg, #f7fbff, #ffffff);
}

.about-no-list{
  list-style:none;
  padding:0;
  margin: 12px 0 0 0;
  display:grid;
  gap: 10px;
}

.about-no-item{
  display:flex;
  align-items:center;
  gap:12px;
  color:#0b2239;
  font-size: 15px;
}

.about-ico{
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 900;
  border: 1px solid #e6f0ff;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(11, 74, 166, .08);
  transition: transform .25s ease, filter .25s ease;
}

.about-ico-x{ color:#d92c2c; }
.about-ico-check{ color:#0b7a3b; }

.about-no-item:hover .about-ico{
  transform: rotate(18deg) scale(1.06);
  filter: saturate(1.15);
}

.about-note{
  margin-top: 12px;
  font-size: 12px;
  color:#6a7f93;
}

/* Valori - grid de mini carduri */
.about-values{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.about-mini{
  background:#ffffff;
  border: 1px solid #e6f0ff;
  border-radius: 18px;
  padding: 14px 14px;
  box-shadow: 0 10px 30px rgba(11, 74, 166, .06);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  position: relative;
  overflow: hidden;
}

.about-mini::after{
  content:"";
  position:absolute;
  inset:auto auto -60px -60px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(11,74,166,.16), rgba(11,74,166,0) 60%);
  opacity: .8;
  pointer-events:none;
}

.about-mini:hover{
  transform: translateY(-6px);
  border-color:#cfe1ff;
  box-shadow: 0 18px 46px rgba(11, 74, 166, .14);
}

.about-mini-ico{
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#f0f7ff;
  border: 1px solid #e6f0ff;
  margin-bottom: 10px;
  font-size: 20px;
}

.about-mini h4{
  margin: 0 0 6px 0;
  font-size: 15px;
  font-weight: 800;
  color:#0b2239;
}

.about-mini p{
  margin: 0;
  color:#4a6177;
  font-size: 13px;
  line-height: 1.5;
}

/* pași */
.about-steps{
  margin: 12px 0 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.about-steps li{
  display:flex;
  align-items:center;
  gap: 10px;
  color:#0b2239;
  font-size: 14px;
}

.about-step-nr{
  width: 28px;
  height: 28px;
  border-radius: 12px;
  background:#0b4aa6;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 900;
  box-shadow: 0 10px 30px rgba(11, 74, 166, .16);
}

/* CTA */
.about-cta{
  display:flex;
  justify-content: space-between;
  align-items:center;
  gap: 16px;
  background: #0b4aa6;
  color: #fff;
  border-radius: 22px;
  padding: 18px 18px;
  box-shadow: 0 22px 60px rgba(11, 74, 166, .22);
}

.about-cta h3{
  margin:0 0 6px 0;
  font-size: 18px;
  font-weight: 900;
}

.about-cta p{
  margin:0;
  opacity: .92;
  font-size: 13px;
}

.about-cta-btn{
  background: #ffffff;
  color: #0b4aa6;
  padding: 12px 16px;
  border-radius: 16px;
  font-weight: 900;
  text-decoration:none;
  border: 1px solid rgba(255,255,255,.6);
  transition: transform .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}

.about-cta-btn:hover{
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0,0,0,.12);
}

/* Reveal on scroll */
.reveal{
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}

.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px){
  .about-grid{ grid-template-columns: 1fr; }
  .about-values{ grid-template-columns: 1fr; }
  .about-stats{ grid-template-columns: 1fr; }
  .about-title{ font-size: 30px; }
  .about-cta{ flex-direction: column; align-items: flex-start; }
}

/* ===== Micro-animatii pentru About (fara sa incarce) ===== */

/* Card hover (general) */
.about-card, .about-mini, .about-stat, .about-values .card, .about-grid .card {
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
  will-change: transform;
}

.about-card:hover, .about-mini:hover, .about-values .card:hover, .about-grid .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 46px rgba(11, 74, 166, .14);
  border-color: #cfe1ff;
}

/* Glow subtil pe icon la hover */
.about-mini:hover .about-mini-ico,
.about-card:hover .about-step-nr {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 16px 40px rgba(11, 74, 166, .18);
  transition: transform .22s ease, box-shadow .22s ease;
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Transparență totală - X / ✓ anim */
.about-no-item .about-ico {
  transition: transform .25s ease, filter .25s ease;
  transform-origin: center;
}
.about-no-item:hover .about-ico {
  transform: rotate(18deg) scale(1.08);
  filter: saturate(1.25);
}

/* Bonus: pulse foarte fin doar pe ✓ (sa atraga atentia pozitiv) */
.about-ico-check {
  animation: aboutCheckPulse 2.6s ease-in-out infinite;
}
@keyframes aboutCheckPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}

/* CTA - efect shine la hover */
.about-cta-btn {
  position: relative;
  overflow: hidden;
}
.about-cta-btn::after {
  content: "";
  position: absolute;
  inset: -40px;
  background: linear-gradient(120deg, rgba(255,255,255,0) 40%, rgba(255,255,255,.55) 50%, rgba(255,255,255,0) 60%);
  transform: translateX(-120%);
  transition: transform .6s ease;
}
.about-cta-btn:hover::after {
  transform: translateX(120%);
}

/* CTA Despre Noi - culoare corecta */
.about-cta {
  background: linear-gradient(135deg, #0b4aa6 0%, #0d5bd6 100%);
  border-radius: 18px;
  padding: 22px 26px;
  color: #fff;
  box-shadow: 0 18px 46px rgba(11, 74, 166, 0.22);
  transition: transform .25s ease, box-shadow .25s ease;
}

.about-cta:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(11, 74, 166, 0.32);
}

/* Text CTA */
.about-cta h4 {
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 6px;
}

.about-cta p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}

/* Buton CTA */
.about-cta-btn {
  background: #ffffff;
  color: #0b4aa6;
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all .22s ease;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .12);
}

.about-cta-btn:hover {
  background: #f3f7ff;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .18);
}



.svc-mini{ margin-top: 14px; display: grid; gap: 10px; }
.svc-mini__row{ padding-top: 10px; border-top: 1px solid rgba(15,62,110,.10); }
.svc-mini__label{
  display:block; font-weight:800; font-size:12px; color:#0b1b33; margin-bottom:6px;
}
.svc-mini__list{ margin:0; padding-left:18px; color:#5b6b80; font-size:13px; line-height:1.45; }
.svc-mini__grid{ display:grid; grid-template-columns:1fr 1fr; gap:10px; }
.svc-mini__chip{
  border:1px solid rgba(15,62,110,.12);
  background:#f6fbff;
  border-radius:12px;
  padding:10px 12px;
}
.svc-mini__chipLabel{ display:block; font-size:11px; color:#7a8aa0; font-weight:700; margin-bottom:2px; }
.svc-mini__note{ font-size:12.5px; color:#6b7a90; }
.svc-mini__note span{ font-weight:800; color:#0b1b33; }




/* Info intern in card */
.svc-mini{ margin-top: 14px; display: grid; gap: 10px; }
.svc-mini__row{ padding-top: 10px; border-top: 1px solid rgba(15,62,110,.10); }
.svc-mini__label{
  display:block; font-weight:800; font-size:12px; color:#0b1b33; margin-bottom:6px;
}
.svc-mini__list{ margin:0; padding-left:18px; color:#5b6b80; font-size:13px; line-height:1.45; }
.svc-mini__grid{ display:grid; grid-template-columns:1fr 1fr; gap:10px; }
.svc-mini__chip{
  border:1px solid rgba(15,62,110,.12);
  background:#f6fbff;
  border-radius:12px;
  padding:10px 12px;
}
.svc-mini__chipLabel{ display:block; font-size:11px; color:#7a8aa0; font-weight:700; margin-bottom:2px; }
.svc-mini__note{ font-size:12.5px; color:#6b7a90; }
.svc-mini__note span{ font-weight:800; color:#0b1b33; }



.svc-card,
.svc-card__top {
  height: auto !important;
  overflow: visible !important;
}







.svc-section .svc-icon{
  width: clamp(84px, 10vw, 110px) !important;
  height: clamp(84px, 10vw, 110px) !important;
  border-radius: 20px !important;
}
.svc-section .svc-icon > img{
  width: clamp(56px, 6vw, 80px) !important;
  height: clamp(56px, 6vw, 80px) !important;
  object-fit: contain !important;
}

.page-hero {
  min-height: 240px;
  padding: 70px 0;
  background: linear-gradient(90deg, #0b2b52, #0f4c81);
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/images/world-map.svg");
  background-size: cover;
  background-position: center;
  opacity: 0.08;
  pointer-events: none;
}

.page-hero .content {
  position: relative;
  z-index: 2;
}





/* ===========================
   E-CONSULT – RECRUTARI (SCOPED)
   Nu afecteaza restul site-ului
   =========================== */

.ec-page{
  --ec-blue:#0b4aa2;
  --ec-blue-2:#0a3f8f;
  --ec-ink:#0f1e3a;
  --ec-muted:#6b7a90;
  --ec-border:#e6effa;
  --ec-soft:#f7fbff;
  --ec-card:#ffffff;
  --ec-danger:#e11d48;
  --ec-shadow: 0 10px 30px rgba(10,60,140,.06);
  --ec-shadow-hover: 0 18px 42px rgba(10,60,140,.10);
  --ec-radius: 18px;

  color: var(--ec-muted);
  font-family: "Open Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: #fff;
}

/* optional: latime buna doar pe recrutari */
.ec-page .container{
  max-width: 1140px;
}

/* HERO */
.ec-page .ec-hero{
  padding: 56px 0 24px;
  background: linear-gradient(180deg, #f7fbff 0%, #ffffff 70%);
  border-bottom: 1px solid var(--ec-border);
}
.ec-page .ec-kicker{
  letter-spacing:.12em;
  font-weight: 900;
  color: var(--ec-blue);
  font-size: 12px;
  text-transform: uppercase;
}
.ec-page .ec-title{
  margin: 10px 0 10px;
  font-weight: 900;
  color: var(--ec-ink);
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.05;
}
.ec-page .ec-subtitle{
  max-width: 64ch;
  margin: 0 auto;
  color: var(--ec-muted);
  font-size: 15px;
  line-height: 1.6;
}

/* HERO CARD */
.ec-page .ec-hero-card{
  margin-top: 22px;
  background: var(--ec-card);
  border: 1px solid var(--ec-border);
  border-radius: var(--ec-radius);
  box-shadow: var(--ec-shadow);
  overflow: hidden;
}
.ec-page .ec-hero-card .media{
  display:grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: stretch;
}
@media (max-width: 992px){
  .ec-page .ec-hero-card .media{ grid-template-columns: 1fr; }
}
.ec-page .ec-hero-card .media .copy{
  padding: 22px;
}
.ec-page .ec-hero-card .media .img{
  background: radial-gradient(80% 80% at 30% 20%, #eaf3ff 0%, #ffffff 65%);
  border-left: 1px solid var(--ec-border);
  padding: 18px;
  display:grid;
  place-items:center;
}
@media (max-width: 992px){
  .ec-page .ec-hero-card .media .img{
    border-left: 0;
    border-top: 1px solid var(--ec-border);
  }
}
.ec-page .ec-hero-card .media img{
  width: min(440px, 100%);
  height: auto;
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(10,60,140,.10);
}

/* SECTION */
.ec-page .ec-section{
  padding: 46px 0;
}
.ec-page .ec-h2{
  margin: 8px 0 8px;
  font-weight: 900;
  color: var(--ec-ink);
  font-size: 28px;
  line-height: 1.15;
}
.ec-page .ec-lead{
  margin: 0 auto;
  max-width: 70ch;
  color: var(--ec-muted);
  font-size: 14px;
  line-height: 1.65;
}

/* BUTTONS */
.ec-page .btn-ec{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 11px 14px;
  border-radius: 12px;
  font-weight: 900;
  border: 1px solid transparent;
  text-decoration:none;
  cursor:pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
  white-space: nowrap;
}
.ec-page .btn-ec-primary{
  background: var(--ec-blue);
  color: #fff;
}
.ec-page .btn-ec-primary:hover{
  background: var(--ec-blue-2);
  transform: translateY(-1px);
}
.ec-page .btn-ec-ghost{
  background: #fff;
  border-color: #cfe3fb;
  color: var(--ec-blue);
}
.ec-page .btn-ec-ghost:hover{
  background: #eef6ff;
  border-color: #b7d6fb;
  transform: translateY(-1px);
}

/* small text */
.ec-page .small-print{
  margin-top: 10px;
  color: var(--ec-muted);
  font-size: 12px;
  line-height: 1.6;
}

/* GRID DOMENII */
.ec-page .domain-grid{
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
}
@media (max-width: 992px){
  .ec-page .domain-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 576px){
  .ec-page .domain-grid{ grid-template-columns: 1fr; }
}
.ec-page .domain-card{
  background: var(--ec-card);
  border: 1px solid var(--ec-border);
  border-radius: var(--ec-radius);
  padding: 16px;
  box-shadow: var(--ec-shadow);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  min-height: 100%;
}
.ec-page .domain-card:hover{
  transform: translateY(-3px);
  box-shadow: var(--ec-shadow-hover);
  border-color: #cfe3fb;
}
.ec-page .domain-top{
  display:flex;
  gap: 12px;
  align-items:flex-start;
}
.ec-page .domain-ico{
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #eef6ff;
  border:1px solid #d8ebff;
  display:grid;
  place-items:center;
  font-size: 18px;
  flex: 0 0 auto;
}
.ec-page .domain-card h3{
  margin:0;
  font-weight: 900;
  color: var(--ec-ink);
  font-size: 15px;
}
.ec-page .domain-card p{
  margin: 4px 0 0;
  color: var(--ec-muted);
  font-size: 13px;
  line-height: 1.45;
}

/* FORM WRAP */
.ec-page .form-wrap{
  margin-top: 18px;
  background: var(--ec-card);
  border: 1px solid var(--ec-border);
  border-radius: var(--ec-radius);
  box-shadow: var(--ec-shadow);
  padding: 18px;
}
.ec-page .form-label{
  font-weight: 800;
  color: var(--ec-ink);
  font-size: 13px;
}
.ec-page .form-control,
.ec-page .form-select{
  border-radius: 12px;
  border-color: #dbeafe;
  padding: 10px 12px;
}
.ec-page .form-control:focus,
.ec-page .form-select:focus{
  border-color: rgba(11,74,162,.45);
  box-shadow: 0 0 0 4px rgba(11,74,162,.12);
}
.ec-page .hint{
  font-size: 12px;
  color: var(--ec-muted);
  margin-top: 6px;
}

/* Fee box */
.ec-page .fee-box{
  margin-top: 14px;
  border: 1px solid #ffe4e6;
  background: #fff1f2;
  color: #881337;
  border-radius: 14px;
  padding: 12px 14px;
  display:flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}
.ec-page .fee-box strong{ font-weight: 900; }
.ec-page .fee-pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #fecdd3;
  font-weight: 900;
  color: var(--ec-danger);
}

/* Consent area */
.ec-page .consent{
  margin-top: 12px;
  padding: 12px 14px;
  border: 1px solid var(--ec-border);
  background: var(--ec-soft);
  border-radius: 14px;
}

/* anchor offset (scroll to sections) */
.ec-page .anchor-offset{
  scroll-margin-top: 90px;
}



/* ===========================
   E-CONSULT RECRUTARI – CSS (SAFE)
   Totul este scoped in .ec-page
   =========================== */

.ec-page{
  --ec-blue:#0b4aa2;
  --ec-blue-2:#0a3f8f;
  --ec-ink:#0f1e3a;
  --ec-muted:#6b7a90;
  --ec-border:#e6effa;
  --ec-soft:#f7fbff;
  --ec-card:#ffffff;
  --ec-danger:#e11d48;
  --shadow: 0 10px 30px rgba(10,60,140,.06);
  --shadow2: 0 18px 42px rgba(10,60,140,.10);
  --radius: 18px;

  font-family: "Open Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ec-muted);
  background: #fff;
}

.ec-page .container{ max-width: 1140px; }

/* HERO */
.ec-page .ec-hero{
  padding: 56px 0 24px;
  background: linear-gradient(180deg, #f7fbff 0%, #ffffff 70%);
  border-bottom: 1px solid var(--ec-border);
}
.ec-page .ec-kicker{
  letter-spacing:.12em;
  font-weight: 900;
  color: var(--ec-blue);
  font-size: 12px;
  text-transform: uppercase;
}
.ec-page .ec-title{
  margin: 10px 0 10px;
  font-weight: 900;
  color: var(--ec-ink);
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.05;
}
.ec-page .ec-subtitle{
  max-width: 70ch;
  margin: 0 auto;
  color: var(--ec-muted);
  font-size: 15px;
  line-height: 1.6;
}

/* HERO CARD */
.ec-page .ec-hero-card{
  margin-top: 22px;
  background: var(--ec-card);
  border: 1px solid var(--ec-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.ec-page .ec-hero-media{
  display:grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: stretch;
}
@media (max-width: 992px){
  .ec-page .ec-hero-media{ grid-template-columns: 1fr; }
}
.ec-page .ec-hero-copy{ padding: 22px; }
.ec-page .ec-hero-image{
  background: radial-gradient(80% 80% at 30% 20%, #eaf3ff 0%, #ffffff 65%);
  border-left: 1px solid var(--ec-border);
  padding: 18px;
  display:grid;
  place-items:center;
  position:relative;
}
@media (max-width: 992px){
  .ec-page .ec-hero-image{ border-left:0; border-top: 1px solid var(--ec-border); }
}
.ec-page .ec-hero-image img{
  width: min(440px, 100%);
  height: auto;
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(10,60,140,.10);
}
.ec-page .ec-hero-image-fallback{
  display:none;
  width:100%;
  border-radius: 16px;
  border:1px dashed #cfe3fb;
  padding: 26px;
  text-align:center;
}
.ec-page .ec-hero-image img[style*="display: none"] + .ec-hero-image-fallback{
  display:block;
}
.ec-page .ec-fb-title{ font-weight: 900; color: var(--ec-ink); font-size: 18px; }
.ec-page .ec-fb-sub{ margin-top:6px; font-size: 13px; color: var(--ec-muted); }

/* Text */
.ec-page .ec-h2{
  margin: 8px 0 8px;
  font-weight: 900;
  color: var(--ec-ink);
  font-size: 28px;
  line-height: 1.15;
}
.ec-page .ec-lead{
  margin: 0 auto;
  max-width: 80ch;
  color: var(--ec-muted);
  font-size: 14px;
  line-height: 1.65;
}
.ec-page .ec-small{
  margin-top: 10px;
  color: var(--ec-muted);
  font-size: 12px;
  line-height: 1.6;
}

/* Buttons */
.ec-page .ec-actions{ margin-top: 14px; display:flex; gap:10px; flex-wrap:wrap; }
.ec-page .ec-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 11px 14px;
  border-radius: 12px;
  font-weight: 900;
  border: 1px solid transparent;
  text-decoration:none;
  cursor:pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
  white-space: nowrap;
}
.ec-page .ec-btn-primary{
  background: var(--ec-blue);
  color: #fff;
  box-shadow: 0 10px 20px rgba(11,74,162,.18);
}
.ec-page .ec-btn-primary:hover{
  background: var(--ec-blue-2);
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(11,74,162,.22);
}
.ec-page .ec-btn-ghost{
  background: #fff;
  border-color: #cfe3fb;
  color: var(--ec-blue);
}
.ec-page .ec-btn-ghost:hover{
  background: #eef6ff;
  border-color: #b7d6fb;
  transform: translateY(-1px);
}

/* Sections */
.ec-page .ec-section{ padding: 46px 0; }

/* GRID cards */
.ec-page .ec-grid{
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
}
@media (max-width: 992px){ .ec-page .ec-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 576px){ .ec-page .ec-grid{ grid-template-columns: 1fr; } }

.ec-page .ec-card{
  background: var(--ec-card);
  border: 1px solid var(--ec-border);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  position:relative;
  overflow:hidden;
}
.ec-page .ec-card::before{
  content:"";
  position:absolute; inset:0;
  background: radial-gradient(600px 140px at 20% 0%, rgba(11,74,162,.10), transparent 60%);
  pointer-events:none;
}
.ec-page .ec-card:hover{
  transform: translateY(-3px);
  box-shadow: var(--shadow2);
  border-color: #cfe3fb;
}
.ec-page .ec-card-top{
  display:flex;
  gap: 12px;
  align-items:flex-start;
  position:relative;
  z-index:1;
}
.ec-page .ec-card h3{
  margin:0;
  font-weight: 900;
  color: var(--ec-ink);
  font-size: 15px;
}
.ec-page .ec-card p{
  margin: 4px 0 0;
  color: var(--ec-muted);
  font-size: 13px;
  line-height: 1.45;
}

/* “imagine mica” = icon container */
.ec-page .ec-ico{
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border:1px solid #d8ebff;
  display:grid;
  place-items:center;
  font-size: 18px;
  flex: 0 0 auto;
  background: #eef6ff;
}

/* icon colors */
.ec-page .ec-ico-orange{ background:#fff7ed; border-color:#fed7aa; }
.ec-page .ec-ico-slate{ background:#f1f5f9; border-color:#cbd5e1; }
.ec-page .ec-ico-blue{ background:#eff6ff; border-color:#bfdbfe; }
.ec-page .ec-ico-rose{ background:#fff1f2; border-color:#fecdd3; }
.ec-page .ec-ico-green{ background:#ecfdf5; border-color:#a7f3d0; }
.ec-page .ec-ico-sky{ background:#f0f9ff; border-color:#bae6fd; }
.ec-page .ec-ico-violet{ background:#f5f3ff; border-color:#ddd6fe; }
.ec-page .ec-ico-teal{ background:#f0fdfa; border-color:#99f6e4; }
.ec-page .ec-ico-amber{ background:#fffbeb; border-color:#fde68a; }

/* chip button */
.ec-page .ec-chip{
  position:relative;
  z-index:1;
  margin-top: 12px;
  width: 100%;
  border: 1px solid #cfe3fb;
  background:#fff;
  color: var(--ec-blue);
  font-weight: 900;
  border-radius: 12px;
  padding: 10px 12px;
  cursor:pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.ec-page .ec-chip:hover{
  background:#eef6ff;
  border-color:#b7d6fb;
  transform: translateY(-1px);
}

/* FORM card */
.ec-page .ec-form{
  margin-top: 18px;
  background: var(--ec-card);
  border: 1px solid var(--ec-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
}
.ec-page .ec-input{
  border-radius: 12px !important;
  border-color: #dbeafe !important;
  padding: 10px 12px !important;
}
.ec-page .ec-input:focus{
  border-color: rgba(11,74,162,.45) !important;
  box-shadow: 0 0 0 4px rgba(11,74,162,.12) !important;
}
.ec-page .ec-hint{
  font-size: 12px;
  color: var(--ec-muted);
  margin-top: 6px;
}

/* fee */
.ec-page .ec-fee{
  margin-top: 14px;
  border: 1px solid #ffe4e6;
  background: #fff1f2;
  color: #881337;
  border-radius: 14px;
  padding: 12px 14px;
  display:flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}
.ec-page .ec-fee-sub{ font-size:12px; color:#9f1239; margin-top:4px; }
.ec-page .ec-fee-pill{
  display:inline-flex;
  align-items:center;
  padding: 8px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #fecdd3;
  font-weight: 900;
  color: var(--ec-danger);
}

/* consent */
.ec-page .ec-consent{
  margin-top: 12px;
  padding: 12px 14px;
  border: 1px solid var(--ec-border);
  background: var(--ec-soft);
  border-radius: 14px;
}
.ec-page .ec-consent label{
  color: var(--ec-ink);
  font-weight: 800;
}



/* =========================
   Slim Hero / Breadcrumb
   (nu schimba paleta site-ului)
   ========================= */

.ec-slim-hero{
  position: relative;
  min-height: 180px;           /* INALTIMEA “SUBTIRE” */
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

@media (max-width: 576px){
  .ec-slim-hero{ min-height: 150px; }
}

.ec-slim-hero__overlay{
  position:absolute;
  inset:0;
  /* overlay albastru ca in site + un glow subtil */
  background:
    radial-gradient(900px 280px at 50% 10%, rgba(255,255,255,.10), transparent 60%),
    linear-gradient(90deg, rgba(10,70,150,.80), rgba(5,35,90,.78));
}

/* o linie fina jos (efect premium) */
.ec-slim-hero::after{
  content:"";
  position:absolute;
  left:0; right:0; bottom:0;
  height: 2px;
  background: linear-gradient(90deg, rgba(255,255,255,.18), rgba(255,255,255,.45), rgba(255,255,255,.18));
}

.ec-slim-hero__inner{
  position:relative;
  z-index:2;
  width:100%;
  padding: 26px 0 18px;   /* mai mic decât bannerul clasic */
}

.ec-slim-hero__top{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.ec-slim-hero__title{
  margin:0;
  color:#fff;
  font-weight: 800;
  letter-spacing: .2px;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.05;
}

/* Breadcrumb */
.ec-slim-crumbs{
  display:flex;
  align-items:center;
  gap: 10px;
  color: rgba(255,255,255,.90);
  font-weight: 600;
  font-size: 14px;
  margin:0;
}
.ec-slim-crumbs a{
  color: rgba(255,255,255,.92);
  text-decoration:none;
}
.ec-slim-crumbs a:hover{
  text-decoration: underline;
}
.ec-slim-crumbs__sep{
  opacity: .75;
}
.ec-slim-crumbs .is-active{
  /* accent rosu ca butonul tau */
  color: #e11d48;
  font-weight: 800;
}

/* Mesaj important (capsula) */
.ec-slim-hero__note{
  margin-top: 14px;
  display:flex;
  align-items:center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.10);
  backdrop-filter: blur(10px);
}

.ec-slim-hero__badge{
  display:inline-flex;
  align-items:center;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 12px;
  letter-spacing:.08em;
  color:#fff;
  background: #e11d48; /* accent rosu */
}

.ec-slim-hero__text{
  color: rgba(255,255,255,.92);
  font-weight: 600;
  font-size: 14px;
}


.footer-legal-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 10px;
}

.footer-links{
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li{
  margin-bottom: 10px;
}

.footer-links a{
  text-decoration: none;
  color: #cfd8e3; /* poți schimba */
  font-size: 15px;
  line-height: 1.35;
}

.footer-links a:hover{
  color: #ffffff;
  text-decoration: underline;
}

/* Pe mobil să cadă într-o singură coloană */
@media (max-width: 768px){
  .footer-legal-grid{
    grid-template-columns: 1fr;
  }
}


.footer-legal-columns{
  list-style: none;
  padding: 0;
  margin: 12px 0 0 0;

  column-count: 2;
  column-gap: 40px;           /* spațiu între coloane */
}

.footer-legal-columns li{
  break-inside: avoid;        /* NU rupe itemul între coloane */
  -webkit-column-break-inside: avoid;
  margin: 0 0 14px 0;
}

.footer-legal-columns a{
  display: inline-block;
  text-decoration: none;
  color: #cfd8e3;
  line-height: 1.35;
}

.footer-legal-columns a:hover{
  color: #fff;
  text-decoration: underline;
}

@media (max-width: 900px){
  .footer-legal-columns{
    column-count: 1;          /* pe mobil o coloană */
  }
}


.footer-container{
  display: grid;
  grid-template-columns: 1.2fr 1fr 2.2fr;
  gap: 60px;
}

/* Legal */
.footer-legal-columns{
  list-style: none;
  padding: 0;
  margin: 12px 0 0 0;

  column-count: 2;
  column-width: 300px; /* mai lat */
  column-gap: 80px;    /* spațiu între ele */
}

.footer-legal-columns li{
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  margin: 0 0 14px 0;
}

.footer-legal-columns a{
  text-decoration: none;
  color: #cfd8e3;
  line-height: 1.35;
}

.footer-legal-columns a:hover{
  color: #fff;
  text-decoration: underline;
}

@media (max-width: 1100px){
  .footer-container{
    grid-template-columns: 1fr 1fr;
  }

  .footer-legal-columns{
    column-count: 1;
  }
}

@media (max-width: 768px){
  .footer-container{
    grid-template-columns: 1fr;
  }
}



.btn-legal{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;

  padding: 14px 28px;
  border-radius: 999px;

  background: #ff2d6f; /* roz puternic */
  color: #fff;

  font-weight: 800;
  font-size: 18px;
  letter-spacing: 1px;

  text-decoration: none;

  box-shadow: 0 12px 30px rgba(255, 45, 111, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.btn-legal:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(255, 45, 111, 0.45);
  filter: brightness(1.06);
}

.btn-legal:active{
  transform: translateY(0px);
}

.btn-legal-icon{
  font-size: 22px;
  line-height: 1;
}

.btn-legal-text{
  line-height: 1;
}

.nav-legal-wrap{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.nav-legal-subtitle{
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  line-height: 1.2;
  text-align: center;
  max-width: 220px;
}

.btn-legal-top{
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 7px 14px;
  border-radius: 999px;

  background: #ff2d6f;
  color: #fff;
  text-decoration: none;

  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.7px;

  box-shadow: 0 8px 18px rgba(255, 45, 111, 0.25);
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
}

.btn-legal-top:hover{
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(255, 45, 111, 0.35);
  filter: brightness(1.06);
}

.btn-legal-top .icon{
  font-size: 14px;
  line-height: 1;
}




.contact-simple{
  padding: 60px 20px;
  background: #ffffff;
}

.contact-wrap{
  max-width: 1100px;
  margin: 0 auto;
}

.contact-head h1{
  margin: 0 0 10px 0;
  font-size: 34px;
  color: #0b2a3a;
}

.contact-head p{
  margin: 0 0 28px 0;
  color: #5b6b7a;
  line-height: 1.6;
  max-width: 860px;
}

.contact-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.contact-card{
  border: 1px solid #e7edf3;
  border-radius: 14px;
  padding: 22px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.contact-card h2{
  margin: 0 0 14px 0;
  font-size: 18px;
  color: #0b2a3a;
}

.contact-list{
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-list li{
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px dashed #edf2f7;
}

.contact-list li:last-child{
  border-bottom: none;
}

.contact-list .label{
  color: #6b7c8c;
  font-size: 13px;
}

.contact-list .value{
  color: #0b2a3a;
  font-size: 15px;
}

.contact-list a{
  color: #0b2a3a;
  text-decoration: underline;
}

.contact-actions{
  display: flex;
  gap: 10px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  font-size: 14px;
}

.btn-primary{
  background: #ff2d6f;
  color: #fff;
}

.btn-outline{
  border-color: #cfd8e3;
  color: #0b2a3a;
  background: #fff;
}

.hours{
  display: grid;
  gap: 10px;
  margin: 10px 0 16px 0;
}

.hours .row{
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px dashed #edf2f7;
}

.hours .row:last-child{
  border-bottom: none;
}

.hours span{
  color: #6b7c8c;
  font-size: 14px;
}

.hours strong{
  color: #0b2a3a;
  font-size: 14px;
}

.note{
  margin-top: 14px;
  padding: 14px;
  border-radius: 12px;
  background: #fff6f8;
  border: 1px solid rgba(255, 45, 111, 0.25);
  color: #0b2a3a;
  line-height: 1.5;
  font-size: 14px;
}

.quick-links{
  margin-top: 18px;
}

.quick-links h3{
  margin: 0 0 10px 0;
  font-size: 15px;
  color: #0b2a3a;
}

.chips{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip{
  display: inline-flex;
  align-items: center;
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid #e7edf3;
  text-decoration: none;
  color: #0b2a3a;
  background: #fff;
  font-size: 13px;
}

.chip:hover{
  border-color: rgba(255, 45, 111, 0.5);
}

.small{
  margin-top: 10px;
  color: #6b7c8c;
  font-size: 13px;
  line-height: 1.5;
}

.contact-map{
  margin-top: 22px;
  border: 1px solid #e7edf3;
  border-radius: 14px;
  padding: 22px;
  background: #fff;
}

.contact-map h2{
  margin: 0 0 8px 0;
  font-size: 18px;
  color: #0b2a3a;
}

.map-embed{
  margin-top: 12px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e7edf3;
  height: 340px;
}

.map-embed iframe{
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 900px){
  .contact-grid{
    grid-template-columns: 1fr;
  }

  .contact-list li{
    grid-template-columns: 1fr;
  }
}



.footer-v2 { padding: 56px 0; }
.footer-v2 .container { max-width: 1140px; margin: 0 auto; padding: 0 16px; }

.footer-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

@media (min-width: 992px){
  .footer-grid{ grid-template-columns: repeat(4, 1fr); }
}

.contact-list, .hours-list, .services-list{
  list-style:none; padding:0; margin:0;
}

.contact-item{
  display:flex; gap:10px; align-items:flex-start;
  margin-bottom: 12px;
}

.social{ display:flex; gap:10px; flex-wrap:wrap; margin-top:14px; }
.social a{ display:inline-flex; align-items:center; justify-content:center; width:42px; height:42px; border-radius:12px; }

.news-form{ display:flex; gap:10px; }
.news-form input{ flex:1; min-width:0; }   /* super important pe mobil */
.news-form button{ white-space:nowrap; }

@media (max-width: 420px){
  .news-form{ flex-direction:column; }
  .news-form button{ width:100%; }
}

