/* GLOBALS */
body,
html {
    margin: 0;
    padding: 0;
    width: 100%;
    box-sizing: border-box;
}

*,
*:before,
*:after {
    box-sizing: border-box;
}

*,
*:before,
*:after {
    box-sizing: border-box;
    outline: 0;
}

strong {
    font-weight: 700 !important;
}

img {
    max-width: 100%;
    height: auto;
    user-select: none;
}

a:hover {
    text-decoration: none;
    color: inherit;
}

.fw-300 {
    font-weight: 300 !important;
}

.fw-500 {
    font-weight: 500 !important;
}

.fw-600 {
    font-weight: 600 !important;
}

.fw-700 {
    font-weight: 700 !important;
}

.fw-800 {
    font-weight: 800 !important;
}

.fw-900 {
    font-weight: 900 !important;
}

.rounded-10 {
    border-radius: 10px;
}

/* poppins-300 - latin_latin-ext */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 300;
    src: url('../font/poppins-v23-latin_latin-ext-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* poppins-regular - latin_latin-ext */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    src: url('../font/poppins-v23-latin_latin-ext-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* poppins-500 - latin_latin-ext */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    src: url('../font/poppins-v23-latin_latin-ext-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* poppins-600 - latin_latin-ext */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    src: url('../font/poppins-v23-latin_latin-ext-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* poppins-700 - latin_latin-ext */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    src: url('../font/poppins-v23-latin_latin-ext-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* poppins-800 - latin_latin-ext */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 800;
    src: url('../font/poppins-v23-latin_latin-ext-800.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

.header {
    width: 100%;
    overflow-anchor: none;
    top: 0;
    z-index: 999;
    background-color: #fff;
    color: #000000;
    position: sticky;
    transition: 0.2s;
    padding: 20px 0 20px;
    border-bottom: 1px solid #e3e3e3;
}

@media (min-width: 1200px) {
    .header {
        padding: 20px 0;
    }
}

@media (max-width: 576px) {
    .header .logo img {
        width: 140px;
    }
}

.header a {
    color: inherit;
    text-decoration: none;
}

.header .bt-header {
    border: 1px solid #fe8009;
    border-radius: 200px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    color: #fe8009;
    font-weight: 700;
    height: 40px;
    padding: 0 10px;
    font-size: 0.8rem;
}

@media (min-width: 576px) {
    .header .bt-header {
        height: 50px;
        padding: 0 15px;
        font-size: 1.1rem;
    }
}

.header .bt-header img {
    margin-right: 5px;
    width: 20px;
}

@media (min-width: 576px) {
    .header .bt-header img {
        margin-right: 10px;
        width: 40px;
    }
}

.header .bt-header:hover {
    border-color: #102244;
    color: #000;
}

@media (max-width: 1199px) {
    .header .main-menu {
        position: fixed;
        inset: 0;
        z-index: 99999999;
        transition: 0.3s;
        transform: translateX(100%);
        opacity: 0;
    }
}

@media (max-width: 1199px) {
    .header .main-menu .main-wrapper-menu {
        width: 500px;
        max-width: 100%;
        background-color: #fff;
        height: 100%;
        position: absolute;
        right: 0;
        top: 0;
        z-index: 1;
        padding: 50px 40px 40px 40px;
        overflow-y: auto;
    }
}

.header .main-menu .menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

@media (min-width: 1200px) {
    .header .main-menu .menu-list {
        display: flex;
    }
}

.header .main-menu .menu-item {
    margin: 0;
    padding: 0;
    position: relative;
    display: block;
}

@media (min-width: 1200px) {
    .header .main-menu .menu-item {
        padding: 0 10px;
        display: inline-block;
    }
}

@media (min-width: 1400px) {
    .header .main-menu .menu-item {
        padding: 0 16px;
    }
}

.menu-link {
    display: block;
}

@media (max-width: 1199px) {
    .header .main-menu .menu-link {
        text-decoration: none !important;
    }

    .header .main-menu .submenu {
        position: relative;
        top: auto;
        display: block;
        box-shadow: none;
        border-radius: 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.4);
    }

    .header .main-menu .submenu a {
        font-size: 1rem !important;
        background: #fff !important;
    }
}

.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    list-style: none;
    padding: 5px 0;
    margin: 0;
    width: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    z-index: 10;
    font-size: 0.9rem;
}

.submenu li a {
    display: block;
    padding: 8px 15px;
    color: #333;
    text-decoration: none;
    border-radius: 6px;
}

.submenu li a:hover {
    background: #f5f5f5;
}

.menu-item.dropdown:hover .submenu {
    display: block;
}

.header .main-menu .menu-link {
    display: block;
    color: #000000;
    padding: 4px 0;
    user-select: none;
    font-size: 1rem;
    font-weight: 300;
}

.header .main-menu .menu-link:hover {
    text-decoration: underline;
}

.header .main-menu .menu-link.active {
    font-weight: 700;
}

@media (max-width: 1199px) {
    .header .main-menu .menu-link {
        padding: 22px 0;
        font-size: 1.3rem;
        line-height: 1;
        border-bottom: 1px solid rgba(0, 0, 0, 0.4);
    }
}

.header .main-menu .close-bt {
    position: absolute;
    right: 20px;
    cursor: pointer;
    top: 20px;
    z-index: 0;
    width: 36px;
    height: 36px;
    line-height: 36px;
    border-radius: 4px;
    font-size: 0.9rem;
    transition: 0.2s;
    text-align: center;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.2);
}

@media (min-width: 1200px) {
    .header .main-menu .close-bt {
        display: none;
    }
}

.header .main-menu .close-bt:hover {
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
}

.header .main-menu .bg-menu {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-color: rgba(0, 0, 0, 0.8);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    transition: 1s;
    opacity: 0;
}

@media (min-width: 1200px) {
    .header .main-menu .bg-menu {
        display: none;
    }
}

@media (min-width: 1200px) {
    .header.homepage-header {
        background-color: transparent;
        position: absolute;
        top: 0;
    }

    .header.homepage-header .menu-link {
        color: #fff;
    }

    .header.homepage-header .menu-link:hover {
        color: #fff;
    }

    .header.homepage-header .logo,
    .header.homepage-header .bt-header {
        display: none;
    }
}

.nav-toggle {
    height: 38px;
    line-height: 34px;
    cursor: pointer;
    display: inline-block;
    vertical-align: middle;
    color: #000000;
    width: 40px;
    z-index: 3;
    position: relative;
}

@media (min-width: 1200px) {
    .nav-toggle {
        display: none;
    }
}

.nav-toggle span {
    margin-top: -1px;
    transform: translateX(7px);
}

.nav-toggle span,
.nav-toggle span:after,
.nav-toggle span:before {
    right: 15px;
    top: 50%;
    height: 2px;
    width: 26px;
    position: absolute;
    display: block;
    content: '';
    background-color: #000000;
}

.nav-toggle span:after {
    right: 0;
    top: -8px;
}

.nav-toggle span:before {
    right: 0;
    top: 8px;
}

body.nav-opened .header .main-menu {
    transform: translateY(0);
    opacity: 1;
}

body.nav-opened .header .main-menu .bg-menu {
    opacity: 1;
}

body.nav-opened .header .nav-toggle span {
    background: transparent !important;
}

body.nav-opened .header .nav-toggle span:before {
    transform: rotate(45deg);
    top: 0;
}

body.nav-opened .header .nav-toggle span:after {
    transform: rotate(-45deg);
    top: 0;
}

body.scrolled .header {
    box-shadow: 0 0 8px 8px rgba(0, 0, 0, 0.08);
}

@media (min-width: 1200px) {
    body.scrolled .header.homepage-header {
        background-color: #fff;
        position: sticky;
        top: 0;
    }

    body.scrolled .header.homepage-header .menu-link {
        color: #000;
    }

    body.scrolled .header.homepage-header .logo,
    body.scrolled .header.homepage-header .bt-header {
        display: inline-block;
    }
}


.footer {
    background: linear-gradient(270deg, #fe8009, orange);
    background-size: 400% 400%;
    animation: gradientShift 10s ease infinite;
    color: #000;
    padding: 20px 15px;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.footer .container {
    max-width: 1200px;
    margin: auto;
}

.footer-top {
    margin-bottom: 40px;
}

@media (min-width: 992px) {
    .footer-top {
        text-align: center;
    }
}

.footer-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.footer-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
}

.footer-content {
    margin-top: 30px;
}

@media (min-width: 992px) {
    .footer-content {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        flex-wrap: wrap;
    }
}


.footer-col {
    flex: 1;
    min-width: 250px;
    text-align: left;
}

@media (max-width: 991px) {
    .footer-col.left {
        margin-bottom: 30px;
    }
}

@media (min-width: 992px) {
    .footer-col.right {
        text-align: right;
    }
}

.footer-col h4 {
    font-size: 1rem;
    margin-bottom: 15px;
    font-weight: bold;
}

.footer-col a {
    display: block;
    color: #000;
    text-decoration: none;
    margin: 6px 0;
    transition: all 0.3s ease;
}

.footer-col a:hover {
    color: #fff;
    transform: translateX(5px);
}

.footer .social {
    margin-top: 15px;
}

.footer .social a {
    display: inline-block;
    margin: 0 8px;
    font-size: 1.3rem;
    color: #000;
    transition: all 0.3s ease;
}

.footer .social a:hover {
    color: #fff;
    transform: scale(1.2);
}

.color-white {
    color: #fff !important;
}

.bg-primary {
    background-color: #FE7445 !important;
}

.bg-secondary {
    background-color: #102244 !important;
}

.bg-white {
    background-color: #fff;
}

.bg-grey-light {
    background-color: #F6F6F6 !important;
}

.color-primary {
    color: #fe8009 !important;
}

.color-primary-bolt {
    color: #fe8009 !important;
    font-weight: bold;
}

.color-secondary {
    color: #102244 !important;
}

.color-inherit {
    color: inherit;
}

.color-text {
    color: #000000 !important;
}

.color-black {
    color: #000;
}

.small {
    line-height: calc(6px + 2ex);
}

.fs-x-large {
    font-weight: 700;
    font-size: clamp(3rem, calc(3.3vw + 1rem), 5.75rem);
    line-height: calc(6px + 1.6ex);
}

/*77px*/
h1,
h2,
.fs-large {
    font-weight: 700;
    font-size: clamp(2.6rem, calc(3.3vw + 1rem), 4.8rem);
    line-height: calc(6px + 1.6ex);
}

/*50px*/
h3,
.fs-x-medium {
    font-weight: 700;
    font-size: clamp(2.2rem, calc(1.9vw + 1rem), 3.125rem);
    line-height: calc(6px + 1.6ex);
}

/*45px*/
h4,
.fs-medium {
    font-weight: 700;
    font-size: clamp(1.8rem, calc(1.6vw + 1rem), 2.8125rem);
    line-height: calc(6px + 1.6ex);
}

/*30px*/
h5,
.fs-x-small {
    font-weight: 600;
    font-size: clamp(1.3rem, calc(0.7vw + 1rem), 1.875rem);
    line-height: calc(6px + 1.8ex);
}

/*24px*/
h6,
.fs-small {
    font-weight: 600;
    font-size: clamp(1.1rem, calc(0.4vw + 1rem), 1.5rem);
    line-height: calc(6px + 1.8ex);
}

.articol ul li {
    margin-bottom: 0.7rem;
}

.articol table {
    border: 1px solid #e1e1e1;
}

.articol table td,
.articol table th {
    padding: 1rem;
    border-right: 1px solid #e1e1e1;
}

:root {
    color-scheme: light dark;
    --spacing-small: clamp(8px, calc(0.5vw + 6px), 16px);
    --spacing-medium: clamp(22px, calc(1.25vw + 1rem), 40px);
    --spacing-large: clamp(32px, calc(2.8vw + 1rem), 50px);
    --spacing-x-large: clamp(48px, calc(4.2vw + 1rem), 96px);
    --spacing-xx-large: clamp(60px, calc(7vw + 1rem), 150px);
}

html {
    height: 100%;
    width: 100%;
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    min-height: 100%;
    background-color: #FFFFFF;
    font-family: 'Poppins', sans-serif !important;
    font-size: 1rem;
    line-height: calc(8px + 2ex);
    position: relative;
    font-weight: 300;
    color: #000000;
}

@media (min-width: 768px) {
    body {
        font-size: 1.125rem;
    }
}

.main-wrapper {
    position: relative;
    display: flex;
    flex: 1 0 0;
    flex-direction: column;
    margin: 0 auto;
    width: 100%;
}

@media (min-width: 768px) {
    .content-1000 {
        max-width: min(60vw, 950px);
    }
}

@media (min-width: 768px) {
    .content-1200 {
        max-width: min(80vw, 1200px);
    }
}

@media (min-width: 768px) {
    .content-1400 {
        max-width: min(80vw, 1400px);
    }
}

.buton {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    -moz-background-clip: padding;
    -webkit-background-clip: padding;
    background-clip: padding-box;
    -webkit-appearance: none !important;
    text-decoration: none !important;
    cursor: pointer;
    background-color: transparent;
    color: #000000;
    border-radius: 200px;
    font-size: 1rem;
    line-height: 1;
    padding: 4px 24px;
    border: 1px solid #FE7445;
    font-weight: 500;
    transition: 0.2s;
    max-width: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
    min-height: 44px;
    user-select: none;
    min-width: 200px;
}

@media (max-width: 500px) {
    .buton {
        width: 100%;
    }
}

/* Stilul de bază al butonului */
.buton.stroke-white {
    color: #fff; /* text alb permanent */
    border: 2px solid #fff;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
    background-color: #fe8009;
    padding: 12px 40px; /* mai lat pentru oval */
    font-weight: bold;
    border-radius: 50px; /* buton oval */
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;

}

/* Hover efect */
.buton.stroke-white:hover {
    background-color: #fe8009; /* portocaliu închis */
    color: #fff; /* text alb permanent */
    cursor: pointer;
}

/* Animația pulse & grow */
@keyframes pulseGrow {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}


.pt-x-large {
    padding-top: var(--spacing-x-large);
}

.pb-x-large {
    padding-bottom: var(--spacing-x-large);
}

.mb-x-large {
    margin-bottom: var(--spacing-x-large);
}

.pt-large {
    padding-top: var(--spacing-large);
}

.px-large {
    padding-left: var(--spacing-large);
    padding-right: var(--spacing-large);
}

.pb-large {
    padding-bottom: var(--spacing-large);
}

.mb-large {
    margin-bottom: var(--spacing-large);
}

.pb-medium {
    padding-bottom: var(--spacing-medium);
}

.mb-medium {
    margin-bottom: var(--spacing-medium);
}

.mt-medium {
    margin-top: var(--spacing-medium);
}

@media (min-width: 1200px) {
    body.scrolled {
        height: calc(100dvh - var(--header-height));
    }
}

.home-hero {
    position: relative;
    color: #fff;
    display: flex;
    min-height: 500px;
}

@media (min-width: 1200px) {
    .home-hero {
        height: calc(100dvh - var(--header-height));
    }
}

.home-hero .content {
    display: flex;
    text-align: center;
    width: 100%;
    position: relative;
    z-index: 1;
    align-items: center;
}

.home-hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.home-hero .background {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.home-hero .content h1 {
    color: white;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
}

.motiv-list-item {
    text-align: center;
}

.motiv-list-item .image {
    margin-bottom: 25px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.motiv-list-item .title {
    min-height: 63px;
    margin-bottom: 10px;
}

.motiv-list-item .description {
    font-size: 1rem;
}

.team-member-item .image {
    margin-bottom: 25px;
}

.team-member-item .name {
    margin-bottom: 10px;
}

.team-member-item .description {
    padding-top: 20px;
}

#carusel_galerie {
    padding-bottom: 40px;
}

#carusel_galerie:not(.swiper-initialized) .swiper-slide:not(:first-child) {
    display: none;
}

#carusel_galerie .swiper-button-next {
    background-color: #fff;
    color: #FE7445;
    border-radius: 50%;
    aspect-ratio: 1/1;
    width: 40px;
    height: auto;
    right: 10%;
}

#carusel_galerie .swiper-button-next:after {
    font-size: 1rem;
}

@media (max-width: 991px) {
    #carusel_galerie .swiper-button-next {
        display: none !important;
    }
}

#carusel_galerie .swiper-button-prev {
    background-color: #fff;
    color: #FE7445;
    border-radius: 50%;
    aspect-ratio: 1/1;
    width: 40px;
    height: auto;
    left: 10%;
}

#carusel_galerie .swiper-button-prev:after {
    font-size: 1rem;
}

@media (max-width: 991px) {
    #carusel_galerie .swiper-button-prev {
        display: none !important;
    }
}

#carusel_galerie .swiper-slide {
    height: unset;
    display: flex;
    opacity: 0.4;
    transition: 0.2s;
}

#carusel_galerie .swiper-slide img {
    border-radius: 10px;
}

#carusel_galerie .swiper-slide.swiper-slide-active {
    opacity: 1;
}

@media (min-width: 576px) {
    #carusel_galerie .swiper-slide {
        transform: scale(0.9);
    }

    #carusel_galerie .swiper-slide.swiper-slide-active {
        transform: scale(1);
    }
}

#carusel_galerie .swiper-pagination-bullet {
    background-color: #FE7445;
}

@media (min-width: 992px) {
    #carusel_galerie {
        padding-bottom: 0;
    }

    #carusel_galerie .swiper-pagination {
        display: none;
    }
}

.home-workshop {
    overflow: hidden;
    position: relative;
    min-height: 500px;
    border-radius: 30px 30px 0 30px;
}

@media (min-width: 576px) {
    .home-workshop {
        border-radius: 64px 64px 0 64px;
    }
}

@media (min-width: 992px) {
    .home-workshop {
        border-radius: 64px 64px 0 0;
        display: flex;
    }
}

.home-workshop .background {
    width: 100%;
    object-fit: cover;
    z-index: 0;
}

@media (min-width: 992px) {
    .home-workshop .background {
        position: absolute;
        inset: 0;
        height: 100%;
    }
}

.home-workshop .ico-info {
    display: flex;
    align-items: center;
}

.home-workshop .ico-info img {
    margin-right: 10px;
}

.home-workshop .content {
    position: relative;
    z-index: 1;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 40px;
    width: 100%;
}

@media (min-width: 576px) {
    .home-workshop .content {
        padding: 40px;
    }
}

@media (min-width: 992px) {
    .home-workshop .content {
        border-radius: 0 0 3000px 0;
        width: 60%;
    }
}

@media (min-width: 1200px) {
    .home-workshop .content {
        width: 50%;
    }
}

.home-workshop .content .text-bottom {
    font-size: 0.9rem;
}

@media (min-width: 992px) {
    .home-workshop .content .text-bottom {
        max-width: 70%;
    }
}

.ico-info {
    display: flex;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 600;
}

.ico-info img {
    margin-right: 10px;
}

.daterangepicker .btn-primary {
    background-color: #FE7445;
    border-color: #FE7445;
}

.daterangepicker td.active,
.daterangepicker td.active:hover {
    background-color: #FE7445;
}

.daterangepicker select {
    background-color: #fff !important;
    color: #000 !important;
}

.contact-links .links a {
    white-space: nowrap;
    display: inline-block;
    color: #000;
    font-weight: 700;
    text-decoration: none;
    margin-right: 10px;
}

.contact-links .links a i {
    font-size: 120%;
}

.contact-links .social a {
    font-size: 2rem;
    line-height: 1;
    display: inline-block;
    color: #FE7445;
    text-decoration: none;
    margin-right: 5px;
}

.was-validated .form-control:invalid {
    border-color: #FE000B;
    background-image: none;
}

.form-group {
    position: relative;
}

.invalid-tooltip {
    position: static;
    border-radius: 3px;
    text-align: initial;
    background-color: #ffe1e1;
    color: darkred;
    padding: 0.2rem 0.4rem;
    font-size: 0.75rem;
}

.was-validated .form-control:invalid ~ .invalid-tooltip {
    display: block;
}

input.form-control {
    font-size: 1rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    color: #000;
    background-color: #fff;
    border-radius: 2px;
    border-color: #ccc;
    width: 100%;
    box-shadow: none;
    display: block;
    overflow: hidden;
    -moz-background-clip: padding;
    -webkit-background-clip: padding;
    background-clip: padding-box;
    -webkit-appearance: none !important;
    height: 50px;
    line-height: 50px;
}

input.form-control:focus {
    border-color: #FE7445;
    box-shadow: none !important;
}

textarea.form-control {
    font-size: 1rem;
    width: 100%;
    box-shadow: none;
    display: block;
    -moz-background-clip: padding;
    -webkit-background-clip: padding;
    background-clip: padding-box;
    -webkit-appearance: none !important;
    border: 1px solid #ccc;
    background-color: #fff;
    color: #000;
    border-radius: 2px;
    height: 100px;
}

textarea.form-control:focus {
    border-color: #FE7445;
    box-shadow: none !important;
}

/*checkbox*/
.custom-checkbox {
    padding-left: 0;
}

.custom-checkbox .form-check-input {
    position: absolute;
    left: -9999999px;
}

.custom-checkbox .form-check-label {
    font-size: 0.9rem;
    line-height: calc(6px + 1.7ex);
    position: relative;
    padding-left: 32px;
}

.custom-checkbox .form-check-label:before {
    display: block;
    font-family: 'fontello';
    content: '';
    background-color: #fff;
    border-radius: 6px;
    width: 24px;
    height: 24px;
    left: 0;
    top: -2px;
    position: absolute;
    border: 1px solid #d5d8dc;
    color: #000000;
    font-size: 0.9rem;
    line-height: 24px;
    text-align: center;
    cursor: pointer;
}

.custom-checkbox .form-check-label a {
    color: inherit;
}

.custom-checkbox .form-check-input:checked ~ .form-check-label::before {
    content: '\e81a';
    color: #FE7445;
    background-color: #fff;
}

.custom-checkbox input.form-check-input[type=radio] ~ .form-check-label::before {
    border-radius: 50%;
}

.custom-checkbox input.form-check-input[type=radio]:checked ~ .form-check-label::before {
    content: '';
    background-color: #fff;
}

.custom-checkbox input.form-check-input[type=radio]:checked ~ .form-check-label::after {
    display: block;
    content: '';
    background-color: #FE7445;
    border-radius: 50%;
    width: 12px;
    height: 12px;
    left: 6px;
    top: 4px;
    z-index: 1;
    position: absolute;
}

.form-select {
    font-size: 1rem;
    display: block;
    -moz-background-clip: padding;
    -webkit-background-clip: padding;
    background-clip: padding-box;
    -webkit-appearance: none !important;
    border: 1px solid #fff;
    background-color: #fff;
    color: #000 !important;
    border-radius: 6px;
    height: 50px;
    line-height: 50px;
    padding-top: 0;
    padding-bottom: 0;
    position: relative;
}

.form-select option:disabled {
    display: none;
}

.form-select:focus {
    border-color: #FE7445;
    box-shadow: none !important;
}

.form-select option {
    color: #000;
    border-radius: 0;
}

.form-select.form-select-sm {
    font-size: inherit;
    height: 48px;
    line-height: 48px;
    font-weight: 500;
}

.alert {
    padding: var(--spacing-small);
    border-radius: 10px;
    font-weight: 400;
    border: none;
}

.custom-select option:disabled {
    display: none;
}

.custom-control-inline {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin-right: 1rem;
}

.upload {
    border: 1px solid #dee2e6;
    display: flex;
    align-items: center;
    position: relative;
    height: 60px;
    line-height: 60px;
    color: #FE7445;
    cursor: pointer;
    background-color: #fff;
    border-radius: 6px;
    overflow: hidden;
}

.upload .file-chosen {
    display: block;
    flex: 1 0 0;
    padding: 0 0.75rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: left;
}

.upload .bt-upload {
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    background-color: #eaeaea;
    color: #000;
}

.upload .bt-upload:hover {
    background-color: #FE7445;
    color: #fff;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

.animated-text {
    color: white;
    font-size: 3rem;
    text-align: center;

    display: inline-block;
}

@keyframes floatText {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0px);
    }
}

.camp-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: block;
    margin: 0 auto;
}

.team-member-item .image img {
    transition: transform 0.3s ease;
}

.team-member-item .name {
    transition: transform 0.3s ease;
    display: inline-block;
}

.team-member-item:hover .image img,
.team-member-item:hover .name {
    transform: scale(1.10);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
}

@media (max-width: 500px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
}

.gallery-grid img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-grid img:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.4);
}


.glightbox-thumb-active {
    opacity: 1 !important;
    border: 2px solid #FE7445;
}

.glightbox-thumbnails img {
    opacity: 0.5;
    transition: opacity 0.3s;
}

.glightbox-thumbnails img:hover {
    opacity: 0.8;
}

.carousel-img {
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.fancy-form .input-group {
    border: 1px solid #ddd;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.fancy-form .input-group:focus-within {
    border-color: #ff7f00;
    box-shadow: 0 0 10px rgba(255, 127, 0, 0.3);
}

.fancy-form .input-group-text {
    background: #f9f9f9;
    border: none;
    color: #666;
    font-size: 1.2rem;
    padding: 10px 14px;
}

/* buton fancy */
.btn-gradient-lg {
    background: #fe8009;
    background-size: 200% auto;
    color: #fff;
    font-weight: bold;
    padding: 14px 40px;
    border-radius: 50px;
    border: none;
    font-size: 1.2rem;
    transition: all 0.4s ease;
}

.btn-gradient-lg:hover {
    background-position: right center;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.video-card-vertical {
    width: 100%;
    aspect-ratio: 9/10; /* format telefon vertical */
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
}

.video-card-vertical:hover {
    transform: translateY(-5px);
}

.video-card-vertical video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Buton central de play pentru video */
.custom-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s;
}

.custom-play-btn:hover {
    background: rgba(0, 0, 0, 0.7);
}

.custom-play-btn svg {
    width: 30px;
    height: 30px;
    fill: #fff;
}

.video-card-vertical video.hide-controls::-moz-media-controls {
    display: none !important;
}

.testimonial-text-swiper {
    width: 100%; /* full width */
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0; /* spațiu pentru săgeți */
}

.testimonial-card {
    background: #fff;
    border-radius: 15px;
    padding: 25px 20px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
    position: relative; /* referință pentru săgeți */
}

@media (min-width: 1200px) {
    .testimonial-card {
        width: 85%;
    }
}

.testimonial-card p {
    font-size: 1rem;
    color: #333;
    margin-bottom: 10px;
}

.testimonial-card span {
    font-weight: bold;
    color: #fe8009;
}

/* Highlight color */
.highlight {
    color: #fe8009;
    font-weight: bold;
}

/* Hero Ionica */
/* Video fundal */
.hero-ionica {
    position: relative;
    height: 70vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}

.hero-ionica .background {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5); /* păstrează contrastul pentru text */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.btn-hero {
    padding: 12px 35px;
    background: #fe8009;
    color: #fff;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-hero:hover {
    background: #ff9b33;
}

/* Sections */
.pt-large {
    padding-top: 80px;
}

.pb-large {
    padding-bottom: 80px;
}

.bg-light {
    background-color: #f9f9f9;
}

section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

section p, section .lead {
    font-size: 1.1rem;
    line-height: 1.6;
}

.text-aligned-justify {
    text-align: justify;
}

.ionica-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    max-width: 700px;
    width: 100%;
}

.ionica-card h2 {
    font-size: 2rem;
    font-weight: 700;
}

.ionica-card p {
    font-size: 1.1rem;
    line-height: 1.7;
}

.color-primary-bolt {
    color: #fe8009;
    font-weight: 600;
}

.hero-cristian {
    background: #000; /* albastru intens */
    color: #fff;
    padding: 30px 20px; /* mai mic decât înainte */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-cristian h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.hero-cristian p {
    font-size: 1.2rem;
    margin: 0;
    max-width: 700px;
}

.cristian-card-section {
    background-color: #f0f5fb; /* culoare uniformă pentru întreaga secțiune */
}

.card-img-wrapper {
    display: flex;
    justify-content: center;
    align-items: center; /* centru vertical */
}

.card-text-wrapper {
    background-color: #ffffff; /* păstrează cardul alb */
}

.card-text-wrapper {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
}

.card-text-wrapper h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.card-text-wrapper p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    text-align: justify;
}

.rounded-20 {
    border-radius: 20px;
}

img {
    max-width: 100%;
}


#carusel_testimoniale .swiper-button-next,
#carusel_testimoniale .swiper-button-prev {
    background-color: #fff;
    color: #FE7445;
    border-radius: 50%;
    aspect-ratio: 1/1;
    width: 50px;
    height: auto;
}


#carusel_testimoniale .swiper-button-prev:after,
#carusel_testimoniale .swiper-button-next:after {
    font-size: 1.8rem;
}

@media (max-width: 991px) {
    #carusel_testimoniale .swiper-button-prev, #carusel_testimoniale .swiper-button-next {
        display: none !important;
    }
}

#carusel_testimoniale .swiper-slide {
    height: unset;
    display: flex;
    align-items: center;
}

#carusel_testimoniale .swiper-pagination-bullet {
    background-color: #FE7445;
}

#carusel_testimoniale {
    padding-bottom: 30px;
}

@media (min-width: 992px) {
    #carusel_testimoniale {
        padding-bottom: 0;
    }

    #carusel_testimoniale .swiper-pagination {
        display: none;
    }
}


#carusel_video {
    position: relative;
}

#carusel_video .swiper-button-next,
#carusel_video .swiper-button-prev {
    background-color: #fff;
    color: #FE7445;
    border-radius: 50%;
    aspect-ratio: 1/1;
    width: 50px;
    height: auto;
}

#carusel_video .swiper-button-prev:after,
#carusel_video .swiper-button-next:after {
    font-size: 1.8rem;
}

@media (max-width: 991px) {
    #carusel_video .swiper-button-prev, #carusel_video .swiper-button-next {
        display: none !important;
    }
}

#carusel_video .swiper-slide {
    height: unset;
    display: flex;
}

#carusel_video .swiper-pagination-bullet {
    background-color: #FE7445;
}

#carusel_video {
    padding-bottom: 60px;
}

@media (min-width: 992px) {
    #carusel_video {
        padding-bottom: 0;
    }

    #carusel_video .swiper-pagination {
        display: none;
    }
}

.video-card {
    width: 100%;
    display: flex;
    aspect-ratio: 1/1;
    align-items: center;
    justify-content: center;
    border-radius: 20px;

    img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }

    .play {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 60px;
        height: 60px;
        background: rgba(0, 0, 0, 0.5);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 10;
        transition: background 0.3s;
    }
}

.text-justify{
    text-align: justify;
}
