/*
Theme Name: Ionex
Theme URI: https://min-code.com
Author: MinCode Group
Author URI: https://min-code.com
Version: 1.0
Text Domain: ionex.md
*/

* {
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    font-size: 62.5%;
}

:root {
    --purple: #5032AA;
    --dark: #333333;
}

body {
    font-size: 1.8rem;
    line-height: 150%;
    font-family: "Segoe-UI", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 300;
    width: 100%;
    color: var(--dark);
    background: #FAF4EC
}

.sticky_position {
    position: -webkit-sticky;
    position: sticky;
    top: 0px;
    align-self: flex-start;
}

.d-flex {
    flex-wrap: wrap;
}

.h1,
h1 {
    font-size: 6.2rem;
    line-height: 100%;
    font-family: "Segoe-UI", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 600;
}

.h2,
h2 {
    font-size: 6.2rem;
    line-height: 110%;
    font-family: "Segoe-UI", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 600;
}

.h3,
h3 {
    font-size: 3.2rem;
    line-height: 150%;
    font-weight: 600;
    font-family: "Segoe-UI", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

.h4,
h4 {
    font-size: 2.8rem;
    line-height: 120%;
    font-weight: 600;
    font-family: "Segoe-UI", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

.h5,
h5 {
    font-size: 2rem;
    line-height: 120%;
    font-weight: 600;
    font-family: "Segoe-UI", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

.h6,
h6 {
    font-size: 1.8rem;
    line-height: 120%;
    font-weight: 600;
    font-family: "Segoe-UI", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

.h1, .h2, .h3, .h4, .h5, .h6,
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 0
}

p {
    font-size: 1.6rem;
    line-height: 150%;
    margin-bottom: 32px;
    color: var(--dark);
}

a {
    color: var(--purple);
    font-size: 1.6rem;
    line-height: 150%;
    transition: 0.3s;
    text-decoration: none;
}

a:hover {
    color: var(--dark);
    transition: 0.3s;
}

ul {
    margin-bottom: 0;
}

li {
    font-size: 1.6rem;
    line-height: 150%;
    color: var(--dark);
}

b, strong {
    font-weight: 700
}

img {
    width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1170px;
    padding: 0 15px;
    margin: auto;
}

.container_md {
    width: 100%;
    max-width: 1390px;
    padding: 0 15px;
    margin: auto;
}

.container_xl {
    width: 100%;
    max-width: 1530px;
    padding: 0 15px;
    margin: auto;
}

.main_button {
    background: var(--purple);
    color: white;
    padding: 14px 32px 16px;
    font-size: 1.6rem;
    font-weight: 600;
    width: fit-content;
    line-height: 1;
    display: block;
    border: 1px solid var(--purple);
}

.main_button:hover {
    background: #FAF4EC;
    color: var(--purple);
    border-color: var(--purple);
}

.main_menu ul {
    list-style: none;
    display: flex;
    align-items: center;
    padding-left: 0;
    gap: 25px;
}

.main_menu ul li a {
    font-size: 18px;
    font-weight: 500;
    line-height: 25px;
    color: var(--dark);
    transition: 0.3s;
    position: relative;
}

.main_menu ul li a:hover {
    color: var(--purple)
}

.mobile__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 50%;
    height: 100vh;
    backdrop-filter: blur(5px);
    background: rgba(255, 255, 255, 0.6);
    z-index: 9999;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.mobile__nav.active {
    right: 0;
    border-radius: 0;
}

.mobile__nav__inner {
    padding: 40px 20px;
    padding-top: 80px;
}

.close__mobile {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
}

.mobile-menu {
    list-style: none;
    padding: 0;
}

.mobile-menu li {
    margin-bottom: 15px;
}

.mobile-menu a {
    text-decoration: none;
    font-size: 18px;
    color: #333;
}


@media (min-width: 1101px) {
    .mobile__menu {
        display: none;
    }
}

.top_menu ul {
    list-style: none;
    padding-left: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.top_menu ul li {
    position: relative;
}

.top_menu ul li a {
    font-size: 14px;
    color: var(--dark);
    line-height: 100%;
    font-weight: 600;
    display: block;
    padding: 5px 16px;
}

.top_menu ul li a:hover,
.top_menu .menu-item-has-children a:hover i {
    color: var(--purple)
}

.top_menu ul.sub-menu {
    z-index: 999;
    visibility: hidden;
    position: absolute;
    width: 200px;
    opacity: 0;
    transition: .3s;
    margin-top: 0;
    display: block;
    padding: 0;
    top: 35px;
    border-top: 1px solid #CECAC3;
    background: #FAF4EC;
}

.top_menu ul.sub-menu li a {
    padding: 12px 16px;
}

.top_menu ul.sub-menu li a:hover {
    background: #DDD3E0
}

.top_menu .menu-item-has-children:hover ul.sub-menu {
    visibility: visible;
    opacity: 1;
}

.top_menu .menu-item-has-children i {
    margin-left: 6px;
}

.socials {
    display: flex;
    align-items: center;
    gap: 8px
}

.sub-menu .depozitare a:after {
  display: block;
  font-size: 12px;
  font-weight: 400;
  margin-top: 7px;
}

:lang(en) .sub-menu .depozitare a:after {
  content: 'Pre-cooling, storage & sorting';
}

:lang(ro) .sub-menu .depozitare a:after {
  content: 'Pre-răcire, păstrare, sortare';
}

.header_address a {
    color: var(--dark);
    font-size: 12px;
    line-height: 100%;
    display: block
}

.header_address a:hover {
    color: var(--purple)
}

.header_contacts {
    display: flex;
    align-items: center;
    gap: 32px;
}

.top_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #FAF4EC;
    width: 100%;
    border-bottom: 1px solid #CECAC3;
}

.header_menu.container_max {
    padding-top: 40px;
    padding-bottom: 40px
}

@media (min-width: 1650px) {
    .container_max {
        padding: 11px 120px;
    }
}

@media only screen and (max-width: 1649px) {
    .container_max {
        padding: 11px 15px;
    }
}

.header {
    position: relative;
    z-index: 999
}

.top_header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.top_header.show {
    transform: translateY(0);
}

.top_header.initial {
    position: relative;
    transform: translateY(0);
}

.back_hero .container {
    position: absolute;
    bottom: 114px;
    color: white;
    left: 50%;
    transform: translateX(-50%);
}

.back_hero img {
    height: 600px;
    object-fit: cover;
    margin-top: -128px;
}

.hero_video{
    width: 100%;
    object-fit: cover;
    height: 95vh;
    margin-top: -128px;
}

.page-id-8 .page_hero_transparent:before{
  height: 95vh;
}

.page-id-16 .back_hero img{
    object-position: bottom;
}

.page_hero_transparent {
    position: relative;
}

.ionex_logo img,
.years img {
    height: 32px;
    width: auto;
}

.years {
    margin-left: 32px;
}

.logo_site {
    display: flex;
    align-items: center;
}

.header_text p {
    margin-bottom: 0;
    color: white;
}

.ionex_logo {
    border-right: 1px solid white;
    padding-right: 24px;
    margin-right: 24px;
}

.page_hero_transparent:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 600px;
    left: 0;
    top: -128px;
    background-color: #0000004D
}

.header_menu.d-flex {
    justify-content: space-between;
}

.phone_c img {
    width: 20px;
    margin-right: 12px;
}

.email_c img {
    width: 23px;
    margin-right: 12px;
}

.phone_c,
.email_c {
    display: flex;
    align-items: center;
}

.phone_c {
    margin-right: 24px;
}

.email_c {
    margin-right: 100px;
}

.phone_c a,
.email_c a {
    color: white;
    display: flex;
    align-items: anchor-center;
}

.left_contacts {
    display: flex;
    align-items: center;
}

.header_menu .col-md-8 {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.left_contacts p {
    color: white;
    margin-bottom: 0;
    margin-right: 24px;
}

.footer_col3 {
    display: flex;
    gap: 16px;
}

.footer_col3 img {
    width: 105px;
    height: 150px;
    object-fit: cover;
}

footer {
    background: var(--purple);
    padding: 80px 0 0;
}

.footer_col2 h4,
.footer_col1 h4 {
    color: white;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1.6rem;
    line-height: 100%;
    margin-bottom: 24px;
}

.footer_col2 ul,
.footer_col1 ul {
    list-style: none;
    padding-left: 0;
}

.footer_col2 ul li,
.footer_col1 ul li {
    color: white;
    font-size: 14px;
    line-height: 150%;
    margin-bottom: 6px;
}

.footer_col1 ul li a {
    color: white;
    font-size: 14px;
    line-height: 150%;
}

.footer_col1 ul li a:hover,
.footer_socials a:hover {
    opacity: 0.7
}

.footer_socials a {
    display: flex;
}

.footer_socials {
    column-gap: 8px;
    margin-top: 16px;
}

.footer_col3 {
    width: 226px;
}

.footer_col2 {
    width: 472px;
    padding-right: 56px;
    padding-left: 56px;
}

.footer_col1 {
    width: calc(100% - 698px);
}

.footer_col1 .d-flex {
    flex-wrap: nowrap;
}

.footer_logo {
    padding-right: 56px;
}

.footer_logo img {
    width: 120px;
}

.footer_col2 ul li:last-child,
.footer_col1 ul li:last-child {
    margin-bottom: 0;
}

.copywrite p,
.copywrite a {
    font-size: 14px;
    margin-bottom: 0;
    text-align: center;
}

.copywrite {
    background: rgba(250, 244, 236, 1);
    padding: 16px 15px;
    margin-top: 80px;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(174, 58, 0, 1);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(100px);
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.scroll-to-top:hover {
    background: rgba(139, 46, 0, 1);
    transform: translateY(0) scale(1.1);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top i {
    pointer-events: none;
}

.about_section1 {
    border-bottom: 1px solid rgba(206, 202, 195, 1)
}

.about_section2 p {
    margin-bottom: 0;
}

.pr-5 {
    padding-right: 5rem;
}

.pl-5 {
    padding-left: 5rem;
}

.padding11 {
    padding: 90px 0 100px;
}

.margin11 {
    margin: 100px 0;
}

.about_section3 {
  margin-top: 100px;
}

.about_section5 {
  margin-bottom: 110px;
}

.about_section3 img {
    height: 480px;
    object-fit: cover;
    object-position: center top;
}

.about_section4 h6 {
    font-size: 1.6rem;
}

.about_section4 ul {
    margin-top: -20px;
}

.about_section4 .section_title {
    margin-bottom: 90px
}

.about_section4 .col-md-6 p:last-child {
    margin-bottom: 0;
}

.img1 {
    width: 75%;
    position: relative;
    z-index: 2;
    margin-top: 158px;
    height: 550px;
    object-fit: cover;
}

.img2 {
    width: 52%;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
    height: 570px;
    object-fit: cover;
}

.about_section6 {
    background: rgba(241, 237, 229, 1);
    padding: 130px 0 120px;
}

.about6_content {
    padding-right: 55px;
}

.about6_content h2 {
    margin-bottom: 40px;
    line-height: 140%;
}

.about6_content ul {
    margin-top: -18px;
}

.about6_img img {
    height: 415px;
    object-fit: cover;
}

.about6_img h6 {
    margin-top: 32px;
    margin-bottom: 24px;
    font-size: 16px;
}

.about6_img p,
.team-flex p {
    margin-bottom: 0;
}

.about_section8 {
  overflow-x: hidden;
}

.team-flex {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
}

.team-flex > * {
    width: 50%;
}

.team_section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
    margin-top: 100px;
}

.about_member p {
    font-size: 14px;
}

.team_section p {
    margin-bottom: 0;
}

.single_team h5 {
    margin: 22px 0;
    font-size: 24px;
}

.single_team img {
    height: 360px;
    object-fit: cover;
    object-position: top;
    margin-bottom: 30px;
}

.single_team:nth-child(2) img,
.single_team:nth-child(4) img {
    height: 290px;
}

.about_section7.margin11 {
    margin-bottom: 130px;
}

.about_section8 {
    background: #F1EDE5;
}

.export_title,
.map_image {
    width: 50%;
}

.export_title h2 {
    font-size: 48px;
    line-height: 120%;
    margin-bottom: 30px;
}

.export_title p:last-child {
    margin-bottom: 0;
}

.about_section8 .container {
    display: flex;
    align-items: center;
}

.map_image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.about_section8 {
    position: relative;
    height: 800px;
    display: flex;
    align-items: center;
}

.map_image {
    position: absolute;
    right: 0;
    height: 800px;
    top: 0;
    padding-left: 40px;
}

.phone_contact,
.email_contact,
.address_contact {
    display: flex;
    align-items: flex-start;
}

.whatsapp_contact {
    display: flex;
    align-items: center;
}

.whatsapp_contact {
    margin-top: 5px;
}

.whatsapp_contact .icon_general img {
    margin-top: 0;
}

.icon_general {
    width: 48px;
}

.icon_general img {
    width: 28px;
    margin-top: -5px;
}

.email_contact .icon_general img {
    margin-top: -12px;
}

.contact_title {
    margin-bottom: 16px;
    font-size: 20px;
    line-height: 1;
}

.single_contact strong,
.single_contact a {
    display: block;
}

.single_contact a {
    color: #333333;
    margin-top: 5px;
}

.single_contact a:hover {
    color: var(--purple);
}

.email_contact .contact_title {
    margin-bottom: 10px;
}

.single_contact p {
    margin-bottom: 24px;
}

.email_contact {
    margin-top: 8px;
    margin-bottom: 8px;
}

.contact_info {
    padding-right: 130px;
}

.whatsapp_contact .single_contact a {
    background: #25D366;
    width: fit-content;
    padding: 11px 32px;
    color: white;
    border: 1px solid #25D366;
    margin-top: 0;
}

.whatsapp_contact .single_contact a:hover {
    background: transparent;
    color: var(--dark)
}

.contact_page input,
.contact_page textarea {
    width: 100%;
    border: 1px solid #818A91;
    padding: 18px 20px;
    font-size: 16px;
    line-height: 1;
    background: #FAF4EC;
    border-radius: 5px;
}

.contact_page p {
    margin-bottom: 0px;
}

.header_job h2 {
  font-size: 5.6rem;
  font-weight: 600;
}

.header_careers p {
  margin-bottom: 18px;
}

.header_careers.header_careers_bottom p {
  margin-bottom: 10px;
}

.contact_page {
    column-gap: 16px;
    row-gap: 24px;
    border-left: 1px solid #5032AA;
    padding-left: 24px
}

.contact_page .col-md-6 {
    width: calc(50% - 8px);
}

.contact_page ::placeholder {
    color: #818A91
}

.contact_page .message_field textarea {
    height: 128px;
}

.contact_page .send_field {
    position: relative;
}

.contact_page .send_field input {
    background: #5032AA;
    color: white;
    border-radius: 0;
    border-color: #5032AA;
    padding: 15px;
    transition: 0.3s
}

.contact_page .send_field input:hover {
    color: #333;
    background: transparent;
}

.wpcf7-spinner {
    position: absolute;
    top: 12px;
    left: 10px;
}

.align-center {
    align-items: center;
}

.section_contact {
    margin-top: 70px;
    margin-bottom: 80px;
}

.contact_content h1 {
    margin-bottom: 30px;
}

.contact_content p {
    margin-bottom: 0;
}

.contact_content {
    margin-bottom: 55px;
}

.meet_section {
    background: #F1EDE5;
    padding: 130px 0;
}

.meet_img img {
    height: 550px;
    object-fit: cover;
}

.meet_content {
    padding-left: 56px;
}

.meet_content p {
    margin-top: 24px;
}

.page-template-contact-template .white_menu {
    display: none !important
}

.page-id-14 .white_menu{
    display: none !important;
}

.home .color_menu,
.page-template-about-us .color_menu,
.page-template-blog-template .color_menu,
.page-id-15 .color_menu {
    display: none !important
}

.color_menu .header_text p {
    color: var(--purple);
}

.color_menu .ionex_logo {
    border-color: var(--purple);
}

.color_menu .left_contacts p,
.color_menu .phone_c a,
.color_menu .email_c a {
    color: #333;
}

.color_menu .phone_c a:hover,
.color_menu .email_c a:hover {
    color: var(--purple);
}

.grid2_location > div {
    background-color: #FAF4EC;
    padding: 40px;
    text-align: center;
}

.grid2_location {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.map_contact {
    padding: 160px 0;
    background-position: center;
    background-size: cover;
}

.grid2_location > div img {
    width: 28px;
}

.grid2_location > div h4 {
    margin: 34px 0 34px;
    font-size: 24px;
}

.modal-content{
    height: 84vh;
    overflow-y: scroll;
}

.grid2_location > div a {
    display: block;
    color: var(--purple);
    padding: 10px 11px 12px;
    border: 1px solid var(--purple);
}

.grid2_location > div a:hover {
    background: var(--purple);
    color: #FAF4EC
}

/* Map Popup Styles */
.map-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
}

.map-popup.active {
    opacity: 1;
    visibility: visible;
}

.map-popup-content {
    background: #FAF4EC;
    border-radius: 0;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    overflow: hidden;
    transform: scale(0.9) translateY(20px);
    transition: 0.3s ease;
    position: relative;
}

.map-popup.active .map-popup-content {
    transform: scale(1) translateY(0);
}

.map-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: var(--purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: 0.3s;
}

.map-popup-close i {
    color: white;
    font-size: 18px;
}

.map-popup-close:hover {
    background: #3d2580;
    transform: rotate(90deg);
}

.map-popup-content h3 {
    padding: 25px 30px;
    margin: 0;
    font-size: 24px;
    color: var(--purple);
    border-bottom: 1px solid rgba(80, 50, 170, 0.1);
}

.map-iframe {
    width: 100%;
    height: 450px;
}

.map-iframe iframe {
    width: 100%;
    height: 100%;
    display: block;
}

.home_contact .meet_content {
    padding-left: 0;
    padding-right: 0;
}

.home_contact .meet_img {
    padding-left: 55px;
}

.whatsapp_button {
    display: flex;
    align-items: center;
    background: #25D366;
    color: white;
    font-weight: 600;
    padding: 10px 40px 12px;
    width: fit-content;
    border: 1px solid #25D366;
}

.whatsapp_button:hover {
    background: transparent;
}

.whatsapp_button img {
    width: 20px;
    margin-right: 8px;
}

.whatsapp_button:hover img {
    filter: invert(1);
}

.contact_buttons {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
}

.home_contact .meet_content h2 {
    margin-bottom: 64px;
}

.home_contact .meet_img img {
    height: 515px;
}

.home_contact.meet_section {
    background: #FAF4EC;
    padding: 0;
    margin: 130px 0;
}

.about_team_content {
    padding-top: 88px;
    padding-left: 55px;
}

.about_team_content p:last-child {
    margin-bottom: 0;
}

.about_team h2 {
    line-height: 100%
}

.home_section5 {
    margin: 115px 0 125px;
}

a.transparent_button {
    background: #FAF4EC;
    color: var(--purple);
    padding: 14px 32px 16px;
    font-size: 1.6rem;
    font-weight: 600;
    width: fit-content;
    line-height: 1;
    display: block;
    border: 1px solid var(--purple);
}

.partners_title h2 {
  transform: translateY(-14px);
}

a.transparent_button:hover {
    background: var(--purple);
    color: #FAF4EC;
}

.dispon_img {
    padding-right: 55px;
}

.dispon_img img {
    height: 515px;
    object-fit: cover;
}

.disponibility {
    align-items: center;
}

.dispon_content h2 {
    margin-bottom: 40px;
}

.home_section6 {
    padding: 130px 0;
}

.certificates .col-md-5 {
  padding-right: 25px;
}

.certificates_intro h2 {
    margin-bottom: 40px;
}

.certificates_intro img {
    border-radius: 8px;
    width: 200px;
    height: 200px;
    object-fit: contain;
    object-position: center;
    margin-top: 8px;
    transition: 0.3s
}

.certificates_intro img:hover {
    opacity: 0.7
}

.pagination_swiper {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9;
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 12px;
    color: #F04628
}

.diploma-next,
.diploma-prev {
    width: 45px;
    height: 45px;
    border: 1px solid #F04628;
    border-radius: 100%;
}

.diploma-next {
    right: 0;
}

.diploma-prev {
    left: 0;
}

.home_section3 {
    background: #F1EDE5;
    padding: 115px 0;
}

.home_section3 .container {
    max-width: 1470px;
    margin-left: auto;
    margin-right: 100px;
    padding-left: 15px;
}

.home_section3 h2 {
    margin-bottom: 24px;
}

.diploma_slider {
    margin: 0 77px;
}

.certificates_slider {
    padding-left: 55px;
}

.certificates_intro p:nth-child(2) {
  margin-bottom: 28px
}

.home_section7 .partners_content {
    width: 420px;
}

.partners_img {
    width: calc(100% - 420px);
    padding-right: 55px;
    display: flex;
}

.home_section7 .d-flex {
    align-items: flex-end;
}

.partners_button {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
}

.partners_image {
    padding-left: 55px;
}

.partners_image img {
    height: 400px;
    object-fit: cover;
}

.home_section7 {
    padding: 200px 0;
}

.post_mansory {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
    overflow: hidden;
}

.thumb img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    margin-bottom: 34px;
}

.main_post_content h2 {
    font-size: 20px;
    line-height: 120%;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #333333;
}

.post_meta p {
    color: var(--purple);
    margin-bottom: 16px;
    font-size: 14px;
    line-height: 100%;
}

.post_mansory .excerpt p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 0;
    font-size: 14px;
    line-height: 150%;
    margin-top: 16px;
}

.home_section8 .post_mansory {
    margin-top: 56px;
}

.main_post:nth-child(2n) .thumb img {
    height: 249px;
}

.home_section8 {
    padding: 115px 0 125px;
    background: #F1EDE5;
}

.fruits_section .fruits_slider {
    padding: 110px 0;
}

.fruits_section .fruits_slider .swiper-wrapper {
    display: flex;
    align-items: center;
}

.fruits_section .fruits_slider {
    transform-origin: center center;
}

.fruits_slider .swiper-slide {
    opacity: 0.4;
    pointer-events: none;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fruits_section .fruits_slider .swiper-slide-active {
    opacity: 1;
    pointer-events: auto;
    z-index: 10;
}

.hotspot-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible;
}

.hotspot-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.fruits_section .fruits_slider .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.fruits_section .fruits_slider .swiper-slide .hotspot-wrapper {
    transform: scale(0.5);
    transform-origin: center center;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fruits_section .fruits_slider .swiper-slide-active .hotspot-wrapper {
    transform: scale(1);
}

.fruits_section .fruits_slider .swiper-slide-active .hotspot-image {
    width: 365px;
    height: 365px;
}

.fruits_section .fruits_slider .hotspot-image img {
    transition: filter 0.5s ease;
}

.hotspot-wrapper {
    position: relative;
    overflow: visible;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hotspot {
    width: 20px;
    height: 20px;
    background: #ff7a00;
    border-radius: 50%;
    position: absolute;
    cursor: pointer;
    transition: 0.25s;
    z-index: 10;
    box-shadow: 0 0 0 9px #FAF4EC80;
}

.hotspot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1;
}

.hotspot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(255, 122, 0, 0.4);
    animation: pulse 2s infinite;
    pointer-events: none;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(3);
        opacity: 0;
    }
}

.hotspot:hover {
    transform: scale(1.30);
}

.hotspot-tooltip {
    position: fixed;
    background: #FFFFFFCC;
    backdrop-filter: blur(10px);
    padding: 20px 25px;
    border-radius: 12px;
    min-width: 250px;
    max-width: 350px;
    display: none;
    pointer-events: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    z-index: 999999;
    animation: tooltipFadeIn 0.3s ease forwards;
}

.hotspot-tooltip h5 {
    color: #333333;
    font-size: 1.6rem;
    font-weight: 700;
    display: block;
    margin-bottom: 16px;
    line-height: 120%;
}

.hotspot-tooltip p {
    margin: 0;
    line-height: 120%;
    font-size: 1.6rem;
}

.hotspot-tooltip ul {
    list-style: none;
    padding: 0;
    margin: 8px 0 0 0;
}

.hotspot-tooltip ul li {
    padding: 4px 0 4px 20px;
    position: relative;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: 0;
}

.hotspot-tooltip ul li:before {
    content: "•";
    position: absolute;
    left: 5px;
    color: #000000;
    font-weight: bold;
}

.hotspot-tooltip::before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
}

.hotspot-tooltip.arrow-left::before {
    left: -8px;
    top: 20px;
    border-width: 8px 8px 8px 0;
    border-color: transparent rgba(255, 255, 255, 0.8) transparent transparent;
}

.hotspot-tooltip.arrow-right::before {
    right: -8px;
    top: 20px;
    border-width: 8px 0 8px 8px;
    border-color: transparent transparent transparent rgba(255, 255, 255, 0.95);
}

.hotspot-tooltip.arrow-up::before {
    top: -8px;
    left: 20px;
    border-width: 0 8px 8px 8px;
    border-color: transparent transparent rgba(255, 255, 255, 0.95) transparent;
}

.hotspot-tooltip.arrow-down::before {
    bottom: -8px;
    left: 20px;
    border-width: 8px 8px 0 8px;
    border-color: rgba(255, 255, 255, 0.95) transparent transparent transparent;
}

.fruits_section .container {
    max-width: 1300px;
}

.fruits-next {
    border-radius: 50%;
    padding: 20px;
    border: 1px solid #F04628;
    right: 105px;
}

.fruits-prev {
    border-radius: 50%;
    padding: 20px;
    border: 1px solid #F04628;
    left: 105px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .hotspot-tooltip {
        min-width: 200px;
        max-width: 280px;
        padding: 15px 20px;
    }

    .hotspot-tooltip strong {
        font-size: 1.4rem;
    }

    .hotspot-tooltip p,
    .hotspot-tooltip ul li {
        font-size: 1.3rem;
    }
}

/* Animation */
@keyframes tooltipFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Evolutia companiei */

.evolution_section h2 {
    font-weight: 600;
    margin-bottom: 70px;
}

.evolution_section h3 {
    font-size: 1.6rem;
    font-weight: 400;
    margin-bottom: 40px;
}

.evolution_section h3 span {
    font-size: 8rem;
    line-height: 160%;
    color: #F04628;
}

.evolution_section {
    padding: 100px 0 70px;
    background: #F1EDE5;
}

.evolution_left img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    object-position: 32% 50%;
}

.evolution_right {
    padding-left: 117px;
}

.evolution_right ul {
    font-size: 1.6rem;
    font-weight: 400;
}

.evolution_right ul li {
    margin-bottom: 5px;
}

.evolution_slider_years {
    margin-top: 110px;
}

.evolution_slider_years .swiper-slide h3 {
    color: #CECAC3;
    font-weight: 600;
    font-size: 1.8rem;
    text-align: center;
    line-height: 150%;
    padding-bottom: 24px;
    border-bottom: 1px solid #CECAC3;
}

.evolution_slider_years .swiper-slide.active h3 {
    color: #F04628;
    border-bottom: 1px solid #F04628;
}

/* Evolutia companiei End */

.services_section {
    padding: 100px 0;
}

.img_service {
    width: 74px;
    height: 74px;
}

.line_content {
    position: relative;
    padding-left: 16px;
}

.transport{
    margin-top: 130px;
}

.line_content::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0px;
    height: 100%;
    bottom: 0;
    width: 1px;
    background: var(--purple);
}

.service_section3 .line_content h2 {
  margin-bottom: 55px
}

.services_right {
    padding-left: 20px;
}

.services_right ul {
    list-style: none;
    padding: 0;
}

.services_right ul li h4 {
    line-height: 100%;
    margin-bottom: 14px;
}

.services_right ul li p {
    margin-bottom: 38px;
}

.services_right ul li:last-child p {
    margin-bottom: 0;
}

.services_right h2 {
    font-size: 3.2rem;
    margin-bottom: 80px;
}

.services_right .bg_image {
    width: 100%;
    height: 480px;
    object-fit: cover;
    padding-left: 16px;
}

.transport .bg_image{
    width: 100%;
    height: 480px;
    object-fit: cover;
    padding-left: 16px;
}

.service_right2 {
    padding-left: 20px;
}

.service_right2 .line_content::before {
    height: 100%;
}

.service_item {
    background: #F1EDE5;
    padding: 32px;
    margin-bottom: 16px;
}

.service_item .col-md-5{
    margin: auto 0;
}

.service_item .col-md-5 p{
    font-size: 1.4rem;
    margin-bottom: 0;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.service_grid h4 {
    color: #333333;
    font-size: 1.4rem;
    text-align: center;
    font-weight: 700;
    line-height: 150%;
}

.service_grid p {
    color: #333333;
    font-size: 1.4rem;
    text-align: center;
    font-weight: 400;
    line-height: 150%;
    margin-bottom: 0;
}

.img_grid {
    background: #FAF4EC;
    margin-bottom: 18px;
}

.img_grid img {
    width: 100%;
    object-fit: contain;
}

.service_item .icon {
    width: 40px;
    height: 40px;
}

.service_item h3 {
  margin-top: 24px;
  margin-bottom: 24px;
}

.service_section2 h2 {
    font-size: 3.6rem;
    font-weight: 600;
    margin-bottom: 80px;
}

.service_section2 {
  margin-top: 40px;
}

.service_right_content2 {
    padding-left: 40px;
}

.content_wrap {
    display: flex;
    gap: 100px;
}

.content_wrap p{
    width: 50%;
    margin-bottom: 0;
}

.line_content h2 {
    font-size: 3.6rem;
    font-weight: 600;
    line-height: 150%;
    margin-bottom: 45px;
    transform: translateY(-15px);
}

.line_content {
    margin-bottom: 85px;
}

.image__single {
    width: 100% !important;
    height: 100% !important;
}

.red_text {
    color: #FD0B0B;
}

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

.palets .img_grid {
    margin-bottom: 18px;
}

.bands img {
    object-fit: contain;
    height: 208px;
}

.bands p{
    display: none;
}

.bands .img_grid{
    margin-bottom: 0;
}

.bands .col-md-5 ul{
    margin-bottom: 32px;
}

.page-id-131 .white_menu {
    display: none !important;
}

.page-id-223 .white_menu {
    display: none !important;
}

.page-id-282 .white_menu {
    display: none !important;
}

.page-id-383 .white_menu {
    display: none !important;
}

.hero_description {
    margin-top: 100px;
}

.hero_description h2 {
    font-size: 2.8rem;
    font-weight: 600;
    line-height: 150%;
    margin-bottom: 60px;
}

.type_cherry {
    margin-top: 115px;
}

.desc_wrap {
    display: flex;
    gap: 100px;
}

.desc_wrap p {
    width: 50%;
}

.type_content {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 50px;
}

.type_content .cherry_item {
    flex: 0 0 calc((100% - 100px) / 2);
    margin-bottom: 32px;
    padding-bottom: 22px;
}

.img_cherry {
    width: 30%;
}

.img_cherry img {
    width: 100%;
    height: 254px;
    object-fit: contain;
}

.cherry_item {
    display: flex;
    border-bottom: 1px solid #CECAC3;
}

.content_cherry {
    padding-left: 40px;
    width: 70%;
}

.content_cherry h2 {
    font-size: 4rem;
    font-weight: 600;
    line-height: 150%;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.content_cherry p {
    font-size: 1.9rem;
    margin-bottom: 50px;
    padding-right: 5px;
}

.type_cherry .container {
    max-width: 1530px;
}

.value_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 50%;
}

.value_item img {
    width: 24px;
    height: 24px;
}

.value_item h3 {
    font-size: 2.8rem;
    line-height: 38px;
    font-weight: 600;
    margin-top: 16px;
    margin-bottom: 8px;
}

.value_item p {
    max-width: 80%;
    font-size: 1.4rem;
    line-height: 24px;
    text-align: center;
    margin-bottom: 0;
}

.bg_custom1 {
    background: #F8D1C5;
}

.bg_custom2 {
    background: #D8CDDF;
}

.values_section {
    padding: 64px 0;
}

.values_section .img_center {
    height: 560px;
    object-fit: cover;
}

.values_section h2 {
    margin-bottom: 70px;
}

.hero_fruits {
    margin-top: 50px;
}

.hero_fruits .container {
    max-width: 1350px;
}

.calendar_section {
    padding: 140px 0 110px;
}

.calendar_header{
    margin-top: 65px;
}

.calendar_header h1 {
    margin-bottom: 28px;
}

.calendar_header .col-md-5{
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
}

.calendar_header .col-md-5 .partners_button a{
    font-weight: 600;
}

.calendar-table tbody tr:last-child td .image-container img {
  height: 57px;
  object-fit: cover;
}

.calendar-table {
    margin-top: 70px;
    width: 100%;
    border-collapse: collapse;
}

.calendar-table thead th {
    background: #D8CDDF;
    font-size: 1.8rem;
    text-align: center;
    font-weight: 600;
    padding: 10px 6px;
    border: 2px solid #D8CDDF;
}

.calendar-table thead th:first-child {
    text-align: center;
    padding-left: 14px;
}

.calendar-table tbody td {
    width: 80px;
    height: 59px;
    border: 2px solid #D8CDDF;
    text-align: center;
}

.page-id-443 .calendar-table tbody td {
    width: 77px;
}

.calendar-table tbody td:first-child {
    padding-left: 14px;
    font-weight: 500;
    background: #D8CDDF;
}

.page-id-282 .calendar-table tbody td:first-child,
.page-id-223 .calendar-table tbody td:first-child,
.page-id-131 .calendar-table tbody td:first-child,
.page-id-383 .calendar-table tbody td:first-child
{
    padding-left: 7px;
    padding-right: 7px;
    width: 180px;
}

.page-id-443 .calendar-table{
    margin-bottom: 130px;
}

.page-id-443 .calendar-table tbody td:first-child{
    background: transparent;
}

.page-id-443 .calendar-table thead th:nth-child(2){
    width: 200px;
}

.calendar-table tbody td.product-image {
    padding: 0;
    background: transparent;
    vertical-align: top;
}

.calendar-table .image-container {
    position: relative;
    width: 166px;
    height: 100%;
    display: block;
}

.calendar-table .image-container::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
    pointer-events: none;
}

.calendar-table .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.calendar-table .image-container .product-name {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 2.2rem;
    font-weight: 600;
    z-index: 1;
}

.calendar-table .check {
    display: flex;
    justify-content: center;
    align-items: center;
}

.calendar-table .check img {
    width: 27px;
    height: 27px;
}

.certification_section{
    padding: 95px 0;
}

.certification_slider {
    margin-top: 70px;
}

.ambalare_section {
    padding: 110px 0;
}

.ambalare_section h2 {
    margin-bottom: 70px;
}

.ambalare_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 40px;
    row-gap: 80px;
}

.ambalare_item {
    text-align: center;
}

.ambalare_item p{
    font-size: 16px;
    font-weight: 600;
    line-height: 150%;
    text-align: center;
}

.ambalare_item h3 {
    margin-top: 30px;
    font-size: 2rem;
    font-weight: 700;
    line-height: 150%;
}

.ambalare_item img {
    width: 100%;
    height: 250px;
    object-fit: contain;
}

.post-tabs {
    margin-top: 120px;
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: center;
    padding-bottom: 12px;
    margin-bottom: 50px;
}

.post-tabs a {
    position: relative;
    font-size: 18px;
    font-weight: 500;
    color: #2b2b2b;
    text-decoration: none;
    padding-bottom: 10px;
    transition: color 0.3s ease;
}

.post-tabs a:hover {
    color: #ff4d2d;
}

.post-tabs a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 0;
    height: 2px;
    background-color: #ff4d2d;
    transition: width 0.3s ease;
}

.post-tabs a.active {
    color: #ff4d2d;
}

.post-tabs a.active::after {
    width: 100%;
}

/* Pagination Styles */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 60px;
    margin-bottom: 60px;
}

.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 45px;
    height: 45px;
    padding: 0 12px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    color: #333;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.pagination a:hover {
    background-color: #f0f0f0;
}

.pagination .current {
    background-color: #5032AA;
    font-weight: 600;
    color: #fff;
}

.pagination .dots {
    background: transparent;
}

#map-tari {
    height: 800px;
    background: transparent !important;
}

#map-tari .leaflet-pane,
#map-tari .leaflet-tile-pane {
    background: transparent !important;
}

.marker-a {
    background: #7a5cff;
    border-radius: 50%;
    color: #fff;
    font-weight: 700;
    text-align: center;
    line-height: 26px;
}

.export-dots {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.export-dot {
    position: absolute;
    width: 14px;
    height: 14px;
    background-color: #AAE61E;
    border-radius: 50%;
    box-shadow: 0 0 0 5px #FFFFFFE5;
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.3s ease;
    z-index: 10;
}

.export_large{
    width: 18px;
    height: 18px;
    box-shadow: 0 0 0 7px #FFFFFFE5;
}

.export_large:hover{
    box-shadow: 0 0 0 7px #FFFFFFE5;
}

.export-dot:hover {
    transform: scale(1.3);
    box-shadow: 0 0 0 5px #FFFFFFE5;
    z-index: 100;
}

.export-dot:before {
    content: attr(data-country);
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 100;
}

.export-dot:hover:before {
    opacity: 1;
    visibility: visible;
    bottom: 25px;
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
    .export-dot {
        width: 8px;
        height: 8px;
    }

    .export-dot:before {
        font-size: 10px;
        padding: 4px 6px;
    }
}

.single_title {
    margin-top: 65px;
}

.single_title h1 {
    margin-bottom: 56px;
}

.single_title span {
    color: #F04628;
}

.single-post .white_menu {
    display: none !important;
}

.page-id-443 .white_menu {
    display: none !important;
}

.data_single {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 70px;
}

.data_single span {
    font-size: 2.4rem;
    font-weight: 600;
    color: #5032AA;
    line-height: 100%;
}

.wp-block-image {
    display: flex;
    justify-content: center;
}

.wp-block-image img {
    width: 740px;
    height: auto;
    object-fit: cover;
    margin-bottom: 44px;
    margin-top: 24px;
}

.social__grid {
    display: flex;
    gap: 10px;
    margin-bottom: 130px;
    margin-top: 70px;
}

.social__grid img {
    width: 40px;
    height: 40px;
    transition: 0.3s
}

.social__grid img:hover {
  opacity: 0.7
}

.page-id-18 .white_menu {
    display: none !important;
}

.jobs_section {
    margin-top: 66px;
}

.jobs_section .row {
    margin-bottom: 53px;
}

.header_job {
    width: 50%;
    margin-bottom: 52px;
}

.header_job h2 {
    margin-bottom: 22px;
}

.header_job p {
    margin-bottom: 0;
}

.careers_img {
    padding-left: 40px;
    display: flex;
    align-items: flex-end;
    margin-bottom: 27px;
}

.careers_img img {
    width: 100%;
    height: 459px;
    object-fit: cover;
}

.cf-select-modern {
    width: 100%;
    padding: 18px 20px;
    font-size: 16px;
    font-weight: 400;
    color: #818A91;
    background-color: transparent;
    border: 1px solid #5032AA;
    border-radius: 5px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("/wp-content/uploads/2025/12/Vector-20.svg");
    background-repeat: no-repeat;
    background-position: right 20px center;

    cursor: pointer;
    transition: 0.25s ease;
}

/* focus */
.cf-select-modern:focus {
    outline: none;
    border-color: #3F2AA3;
    box-shadow: 0 0 0 4px rgba(91, 60, 196, 0.15);
}

/* hover */
.cf-select-modern:hover {
    border-color: #3F2AA3;
}

.header_careers_bottom {
    width: 100%;
    margin-top: 42px;
}

.header_careers h5 {
  margin-left: 10px;
  margin-bottom: 12px;
}

.cf-select-modern {
    color: #818A91;
}

.cf-select-modern.is-selected {
    color: #5032AA;
    font-weight: 600
}

/* Calendar */

.calendar-wrapper {
    overflow-x: auto;
    padding: 20px;
    background: #faf7f4;
}

.harvest-calendar {
    width: 100%;
    border-collapse: collapse;
    min-width: 900px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
}

.harvest-calendar th {
    background: #e6dfe8;
    color: #333;
    font-size: 14px;
    padding: 12px;
    text-align: center;
    border: 1px solid #ddd;
}

.harvest-calendar td {
    padding: 10px;
    text-align: center;
    border: 1px solid #e0e0e0;
    font-size: 14px;
}

.product-cell {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.product-cell img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
}

.product-row td {
    background: #fffaf7;
}

/* DOT VERDE */
.dot {
    display: inline-block;
    width: 16px;
    height: 16px;
    background: #9acd32;
    border-radius: 50%;
    position: relative;
}

.dot::after {
    content: "✓";
    color: #fff;
    font-size: 11px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -55%);
}

.service_section3 .col-md-11{
    padding-left: 20px;
}

.packets_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(157px, 1fr));
    gap: 24px;
    align-items: stretch;
}

/* Modal */
.cf-row.send_button {
  margin-bottom: 0;
  position: relative;
}

.cf-row.send_button .cf-submit:hover {
  background: transparent!important;
  color: var(--purple)!important;
  border-color: var(--purple)!important;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.modal.show {
    display: flex;
}

.modal-content {
    position: relative;
    background-color: #faf4ec;
    padding: 64px 40px;
    border: 1px solid #888;
    max-width: 634px;
    width: 90%;
    border-radius: 0;
    animation: fadeIn 0.3s;
}

.modal-content h3{
    font-size: 3.2rem;
    font-weight: 600;
    color: #5032AA;
    margin-bottom: 23px;
}

.modal-content p{
    color: #333333;
    font-size: 1.6rem;
    line-height: 150%;
    font-weight: 400;
}

.modal-content .close {
    display: flex;
    width: 23px;
    height: 23px;
    align-items: center;
    justify-content: center;
    line-height: 36px;
    text-align: center;
    position: absolute;
    right: 19px;
    top: 20px;
}

.modal-content .close:hover,
.modal-content .close:focus {
    color: #ffffff;
    text-decoration: none;
    cursor: pointer;
}

.modal-content input,
.modal-content textarea {
    border-color: #ccc
}

.modal-content textarea {
    width: 100%;
    height: 120px;
    padding: 10px;
}

.modal-content .form_short {
    padding-left: 0;
    margin-top: 10px;
}

.modal-content .wpcf7-list-item label{
    color: white !important;
}

.cf-meeting-form {
    max-width: 100%;
}

.cf-row {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.cf-col {
    flex: 1;
    min-width: 0;
    max-width: 100%;
}

.cf-col .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}

.cf-col.full {
    flex: 100%;
}

.cf-meeting-form p{
    margin-bottom: 0 !important;
}

.cf-meeting-form input,
.cf-meeting-form select,
.cf-meeting-form textarea {
    width: 100%;
    padding: 18px 20px;
    font-size: 16px;
    border-radius: 5px;
    border: 1px solid #818A91;
    background: #FBF5EC;
    color: #313131;
    outline: none;
}

.cf-date ::placeholder {
  color: #818A91
}

.cf-meeting-form select{
    color: #818A91;
}

.cf-meeting-form textarea {
    min-height: 160px;
    resize: vertical;
}

.cf-meeting-form select {
    padding-right: 40px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("/wp-content/uploads/2025/12/Vector-21.svg");
    background-repeat: no-repeat;
    background-position: right 18px center;
    /* iOS fix */
    font-size: 16px !important;
    max-width: 100%;
    box-sizing: border-box;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

/* iOS Safari select fix */
@supports (-webkit-touch-callout: none) {
    .cf-meeting-form select {
        padding: 18px 40px 18px 20px;
        line-height: 1.2;
        min-height: 56px;
    }

    .cf-meeting-form select option:first-child {
        color: #818A91;
    }
}

.cf-meeting-form .use-flatpickr {
    background-image: url("/wp-content/uploads/2025/12/calendar_today.svg");
    background-repeat: no-repeat;
    background-position: right 18px center;
}

/* Stiluri pentru inputul alternativ creat de flatpickr */
.cf-meeting-form input.flatpickr-input {
    width: 100%;
    padding: 18px 20px;
    font-size: 16px;
    border-radius: 5px;
    border: 1px solid #818A91;
    background: #FBF5EC;
    color: #313131;
    outline: none;
    background-image: url("/wp-content/uploads/2025/12/calendar_today.svg");
    background-repeat: no-repeat;
    background-position: right 18px center;
    box-sizing: border-box;
    -webkit-appearance: none;
    appearance: none;
}

/* Ascunde inputul original când flatpickr creează altInput */
.cf-meeting-form input.use-flatpickr[type="text"][style*="display: none"],
.cf-meeting-form input.use-flatpickr.flatpickr-input + input.flatpickr-input {
    display: block !important;
}

/* Stiluri pentru calendarul flatpickr pe mobil */
.flatpickr-calendar {
    font-size: 14px !important;
}

.flatpickr-calendar.open {
    z-index: 99999 !important;
}

.cf-row p{
    width: 100%;
}

.cf-submit {
    width: 100% !important;
    background: #5B3DB5 !important;
    color: #fff !important;
    font-size: 1.6rem !important;
    border-radius: 0 !important;
    font-weight: 600;
    line-height: 100%;
    border: none !important;
    cursor: pointer;
    transition: 0.25s ease;
    border: 1px solid var(--purple)!important;
}

.wpcf7 form .wpcf7-response-output {
  margin: 0!important;
  margin-top: 12px!important
}

/* Responsive */
@media (max-width: 768px) {
    .cf-row {
        flex-direction: column;
    }

    .cf-meeting-form select {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0;
    }

    .cf-col {
        width: 100%;
        max-width: 100%;
    }
}

.evolution_arrows{
    margin-top: 80px;
    position: relative;
    display: flex;
    gap: 30px;
}

.evolution-next,
.evolution-prev {
    width: 45px;
    height: 45px;
    border: 1px solid #F04628;
    border-radius: 100%;
}

.image-grid-4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.image-grid-4 .img-item {
    position: relative;
    width: 100%;
    height: 100%;
}

.image-grid-4 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero_text{
    position: absolute;
    left: 0;
    top: 0;
}

.single_hotspot{
    max-width: 490px;
    height: 490px;
}

.language-switcher {
    display: flex;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 10;
}

.language-switcher > li {
    position: relative;
}

.language-switcher > li > a {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 1.6rem;
    font-weight: 600;
    text-decoration: none;
    color: white !important;
    text-transform: uppercase;
    padding: 5px 10px;
}

.language-switcher > li > a i {
    font-size: 12px;
    transition: transform 0.2s ease;
}

.language-switcher > li:hover > a i {
    transform: rotate(180deg);
}

.language-switcher .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 1px solid #ddd;
    padding: 0px 0 3px;
    min-width: 100%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.language-switcher .sub-menu li {
    display: block;
}

.language-switcher .sub-menu li a {
    padding: 8px 15px;
    display: block;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
}

.language-switcher .sub-menu li a:hover {
    background: #f5f5f5;
}

.language-switcher > li:hover .sub-menu {
    display: block;
}

.left_menu{
    padding-right: 30px;
}

/* Ascunde erorile by default */
.wpcf7-not-valid-tip,
.wpcf7-response-output {
    display: none;
}

/* Arată erorile doar după submit */
.wpcf7-form.invalid .wpcf7-not-valid-tip,
.wpcf7-form.invalid .wpcf7-response-output {
    display: block;
}

.wpcf7 form.sent .wpcf7-response-output {
  display: block;
  text-align: center;
}

.wp-block-quote-is-layout-flow{
    padding-left: 20px;
    border-left: 6px solid #5032AA;
}

.virtual_map iframe{
    width: 100%;
    height: 100vh;
    margin-bottom: -7px;
}

.color_menu .trp-ls-language-name{
    color: #333333;
}

.color_menu .fa-caret-down:before{
    color: #333333;
}

.single-post h2{
    margin-bottom: 20px;
}

.single-post h3{
    margin-bottom: 20px;
}

.copywrite .d-flex{
    gap: 24px;
    justify-content: space-between;
}

.copywrite ul{
    display: flex;
    gap: 24px;
    list-style: none;
}

.copywrite ul li a{
    color: #333333;
}

.copywrite .d-flex{
    display: flex;
    gap: 24px;
}

.page_hero h1{
    margin-top: 100px;
    margin-bottom: 50px;
}

.wp-block-heading{
    margin-bottom: 50px;
}

.page_content h1,
.page_content h2,
.page_content h3,
.page_content h4,
.page_content h5,
.page_content h6 {
    margin-bottom: 2rem;
    color: var(--dark);
}

.page_content h2 {
    font-size: 3rem;
    margin-top: 3rem;
}

.page_content h3 {
    font-size: 2.8rem;
    margin-top: 2.5rem;
}

.page_content h4 {
    font-size: 2.2rem;
    margin-top: 2rem;
}

.page_content p {
    margin-bottom: 2rem;
    font-size: 1.8rem;
    line-height: 170%;
}

.page_content a {
    color: var(--purple);
    text-decoration: underline;
    transition: opacity 0.3s ease;
	font-size: 1.8rem;
    line-height: 170%;
}

.page_content a:hover {
    opacity: 0.7;
}

.page_content ul,
.page_content ol {
    margin-bottom: 2rem;
    padding-left: 3rem;
}

.page_content ul li,
.page_content ol li {
    margin-bottom: 1rem;
    line-height: 170%;
}

.page_content ul {
    list-style-type: disc;
}

.page_content ol {
    list-style-type: decimal;
}

.page_content img {
    max-width: 100%;
    height: auto;
    margin: 2rem 0;
    border-radius: 8px;
}

.page_content blockquote {
    margin: 3rem 0;
    padding: 2rem 3rem;
    background: rgba(80, 50, 170, 0.05);
    border-left: 4px solid var(--purple);
    font-style: italic;
    border-radius: 0 8px 8px 0;
}

.page_content blockquote p {
    margin-bottom: 0;
}

.page_content table {
    width: 100%;
    margin: 2rem 0;
    border-collapse: collapse;
}

.page_content table th,
.page_content table td {
    padding: 1.2rem 1.5rem;
    border: 1px solid #ddd;
    text-align: left;
}

.page_content table th {
    background: var(--purple);
    color: #fff;
    font-weight: 600;
}

.page_content table tr:nth-child(even) {
    background: rgba(0, 0, 0, 0.02);
}

.page_content hr {
    margin: 3rem 0;
    border: none;
    border-top: 1px solid #ddd;
}

.page_content pre,
.page_content code {
    background: #f5f5f5;
    border-radius: 4px;
    font-family: monospace;
}

.page_content code {
    padding: 0.2rem 0.5rem;
    font-size: 1.6rem;
}

.page_content pre {
    padding: 2rem;
    margin: 2rem 0;
    overflow-x: auto;
}

.page_content pre code {
    padding: 0;
    background: transparent;
}

.page_content .wp-block-image {
    margin: 3rem 0;
}

.page_content .wp-block-image figcaption {
    font-size: 1.4rem;
    color: #666;
    text-align: center;
    margin-top: 1rem;
}

.page_content .aligncenter {
    display: block;
    margin: 0 auto;
}

.page_content .alignleft {
    float: left;
    margin-right: 2rem;
    margin-bottom: 1rem;
}

.page_content .alignright {
    float: right;
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.page-id-1227 .white_menu{
    display: none !important;
}

.page-id-1223 .white_menu{
    display: none !important;
}

.page-id-1227 .white_menu{
    display: none !important;
}

.page-id-1225 .white_menu{
    display: none !important;
}

.page_bottom{
    margin-bottom: 120px;
}
