/*
Theme Name: Dr. Lungu Template
Theme URI: https://min-code.com
Author: Min-code Group
Author URI: https://min-code.com
Version: 1.0
Text Domain: https://doctorlungu.ro/
*/

:root {
    --primary-color: #20C7BA;
    --bg-color: #283B6A;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
}

body {
    font-family: "Roboto", sans-serif;
}

h1 {
    font-size: 5.4rem;
    padding: 0;
    margin: 0;
}

h2 {
    font-size: 4.6rem;
    padding: 0;
    margin: 0;
}

h3 {
    font-size: 2.2rem;
    padding: 0;
    margin: 0;
}

h4 {
    font-size: 1.8rem;
    padding: 0;
    margin: 0;
}

p {
    font-size: 1.8rem;
    padding: 0;
    margin: 0;
}

img {
    width: 100%;
    height: auto;
}


dl, ol, ul {
    padding-left: 0;
}

.container {
    max-width: 1470px;
    padding: 0 15px;
}

/* Grids */

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.border-24 {
    border-radius: 24px;
}

.pr_24{
    padding-right: 24px;
}

.pl_24{
    padding-left: 24px;
}

/* Dividers */

.mt-100 {
    margin-top: 100px;
}

.mb-100 {
    margin-bottom: 100px;
}

.mt-24 {
    margin-top: 24px;
}

.mb-24 {
    margin-bottom: 24px;
}

.main_button {
    font-size: 1.6rem;
    font-weight: 500;
    background: var(--primary-color);
    padding: 12px 40px;
    color: white;
    transition: 0.3s;
    border-radius: 74px;
}

.main_button:hover {
    color: white !important;
    background: #16988e !important;
}

.button_white{
    font-size: 1.6rem;
    font-weight: 500;
    background: white;
    padding: 13px 40px;
    color: black;
    border-radius: 55px;
    transition: 0.3s;
}

.button_transparent {
    font-size: 1.6rem;
    font-weight: 500;
    background: transparent;
    padding: 15px 40px;
    color: black;
    border-radius: 55px;
    border: 1px solid #283B6A;
    transition: 0.3s;
}

.button_transparent:hover {
    background: #283B6A;
    color: white !important;
    border: 1px solid #283B6A;
}

.list_buttons {
    display: flex;
    column-gap: 15px;
}

.block_title {
    margin-bottom: 40px;
}

.block_title p {
    margin-top: 15px;
}

/* Header */
.header_logo img{
    max-width: 236px;
}
.contact_menu img {
    width: 23px;
    height: 22px;
}

.contact_menu .main_button {
    gap: 5px;
}

.no-scroll {
    overflow: hidden;
    height: 100vh;
}

.navbar__toggle {
    display: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgb(214, 125, 18);
    background: linear-gradient(90deg, rgba(214, 125, 18, 1) 0%, rgba(255, 169, 34, 1) 100%);
    border: none;
    cursor: pointer;
    z-index: 2001;
    position: relative;
    justify-content: center;
    align-items: center;
}

.navbar__toggle span {
    display: block;
    position: absolute;
    width: 30px;
    height: 4px;
    background: #191919;
    border-radius: 2px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.navbar__toggle span:nth-child(1) {
    transform: translateY(-6px);
}

.navbar__toggle span:nth-child(2) {
    transform: translateY(6px);
}

.navbar__toggle.open span:nth-child(1) {
    transform: rotate(45deg);
}

.navbar__toggle.open span:nth-child(2) {
    transform: rotate(-45deg);
}

/* End toogle */

.navbar__menu {
    background: white;
    position: sticky;
    top: 0;
    z-index: 9999;
    padding: 20px 0;
}

.single-post .navbar__menu {
    border-bottom: 1px solid #C2C2C2;
}

.navbar__menu .container {
    max-width: 1850px;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar__menu__items ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 28px;
    list-style: none;
    margin-bottom: 0;
}

.navbar__menu__items ul li a {
    font-size: 1.8rem;
    color: white;
    text-decoration: none;
}

.navbar__menu__items ul li {
    position: relative;
}

.menu-item-has-children > a::after {
    font-family: "Font Awesome 5 Free";
    font-size: 1.4rem;
    font-weight: 900;
    content: "\f078";
    margin-left: 10px;
    display: inline-block;
    transition: transform 0.3s;
}

.menu-item-has-children:hover > a::after {
    transform: rotate(180deg);
}


.menu-item-has-children > .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--primary-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    z-index: 1000;
    min-width: 300px;
    border-radius: 5px;
}

.menu-item-has-children:hover > .sub-menu {
    display: block;
}

.sub-menu li a {
    color: white;
    font-size: 1.4rem;
    padding: 10px 15px;
    transition: background-color 0.3s, color 0.3s;
}

.sub-menu li a:hover {
    color: #202B4B;
}

.navbar__menu__items ul > li > a {
    position: relative;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #202B4B;
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 24px;
    padding: 5px 0;
    transition: color 0.3s, background-color 0.3s;
}

.navbar__menu__items ul li ul li.current_page_item > a::before,
.navbar__menu__items ul li ul li.current-menu-item > a::before,
.navbar__menu__items ul li ul li.current-menu-ancestor > a::before {
    content: none !important;
    border-top: none !important;
    top: 0;
}

.navbar__menu__items ul > li.current_page_item > a {
    color: var(--primary-color);
}

.navbar__menu__items ul li a:hover {
    color: #0a2745;
}

.navbar__menu__items ul li ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    z-index: 1000;
    min-width: 150px;
}

.navbar__menu__items ul li ul li {
    display: block;
}

.navbar__menu__items ul li ul li a {
    padding: 5px 15px;
    font-size: 1.6rem;
    color: #ffffff;
    transition: background-color 0.3s, color 0.3s;
}

.navbar__menu__items ul li ul li a:hover {
    color: #ededed;
}

.navbar__menu__items ul li:hover > ul {
    display: block;
}

/* End Header */

.hero_section {
    padding: 50px 0;
    background: #283B6A;
    color: #162249;
}

.hero_section .container {
    max-width: 1850px;
    padding: 0 15px;
}

.hero_left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 64px 30px;
    background: white;
    border-radius: 24px;
    width: 40%;
}

.hero_left p {
    color: #090E1D;
    font-size: 2.2rem;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    margin-top: 30px;
    color: #20c7ba;
    margin-bottom: 10px;
}

.hero_left ul {
    padding-left: 20px;
}

.hero_left ul li {
    color: #090E1D;
    font-size: 2rem;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 12px;
}

.hero_right {
    padding-left: 16px;
    width: 60%;
}

.hero_right img {
    width: 100%;
    height: 72vh;
    object-fit: cover;
    border-radius: 24px;
}

.hero_reviews {
    display: flex;
    gap: 10px;
    background: #2a3d6b;
    padding: 12px;
    border-radius: 24px;
}

.hero_reviews .stars img {
    width: 14px;
    height: 12px;
}

.hero_reviews span {
    color: #FFF;
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 400;
    line-height: 19px;
}

.img_hero {
    position: relative;
}

.statistic_hero {
    position: absolute;
    bottom: 30px;
    right: 30px;
}

.statistic_item {
    background: white;
    margin-bottom: 10px;
    border-radius: 24px;
    padding: 16px 20px;
    text-align: center;
}

.statistic_item h2 {
    color: #283B6A;
    font-size: 4rem;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    margin-bottom: 5px;
}

.statistic_item p {
    color: #283B6A;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 700;
    line-height: 21px;
}

/* About Section */

.about_item img {
    width: 100%;
    height: 381px;
    object-fit: cover;
    border-radius: 24px;
}

.about_item p {
    margin-top: 16px;
    color: #090F22;
    font-size: 1.7rem;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}

/* About Section End */

/* Valori si misiune */

.values_left iframe {
    height: 100%;
    border-radius: 24px;
}

.values_right {
    padding-left: 53px;
}

.values_item {
    border-top: 1px solid #D8D8D8;
    padding: 20px;
    display: flex;
    gap: 73px;
    border-radius: 24px;
}

.values_item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
}

.values_item h3 {
    margin-bottom: 14px;
}

.values_item img {
    width: 30%;
    height: 163px;
    object-fit: cover;
    border-radius: 24px;
}

.values_item .content_values {
    width: 70%;
}

.values_item ul {
    padding-left: 20px;
}

.values_item ul li {
    color: #090E1D;
    font-size: 1.8rem;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 5px;
}

/* Imagistica */

.medical_item {
    display: flex;
    gap: 24px;
}

.medical_item img {
    width: 30%;
    height: auto;
    object-fit: cover;
    border-radius: 13px;
}

.content_medical {
    width: 70%;
    border-radius: 13px;
    background: #FFF;
    padding: 40px;
}

.content_medical h3 {
    color: #162249;
    font-size: 2.2rem;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
    text-transform: capitalize;
    margin-bottom: 25px;
}

.content_medical p {
    color: #090F22;
    font-size: 2rem;
    font-style: normal;
    font-weight: 500;
    line-height: 27px;
    margin-bottom: 10px;
}

.content_medical ul {
    padding-left: 20px;
    margin-bottom: 25px;
}

.content_medical ul li {
    color: #090E1D;
    font-size: 1.8rem;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 5px
}

.imagistic_slider .swiper-slide {
    padding: 24px;
}

.home_slider .swiper {
    width: 100%;
}

.imagistic_slider .swiper-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.imagistic_slider .swiper-slide {
    background: #f5f5f5;
    position: relative;
    background-position: center;
    background-size: cover;
    width: 80%;
    border-radius: 10px;
    overflow: hidden;
}

/* Our Services */

.price_item {
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.25);
    border-radius: 24px;
}

.price_item .title_row {
    background: #283B6A;
    padding: 30px 20px;
    border-radius: 24px 24px 0 0;
    color: white;
}

.price_item .title_row img {
    width: 36px;
    height: 36px;
}

.price_item .title_row h3 {
    font-weight: 600;
    margin-bottom: 7px;
}

.price_item .description_row {
    padding: 30px 20px;
    border-radius: 24px;
}

.price_item ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding-left: 20px;
    column-gap: 34px;
    list-style: none;
}

.price_item ul li {
    color: #090E1D;
    font-size: 1.8rem;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 8px;
}

.price_item ul li::before {
    background-image: url('/wp-content/uploads/2025/12/Frame-427319713-1.svg');
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-right: 10px;
    vertical-align: middle;
    background-size: cover;
    background-repeat: no-repeat;
}

.price_item .price {
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.price_item .price p {
    color: #979797;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.price_item .price p span {
    color: #090F22;
    text-align: center;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 53px;
    text-transform: uppercase;
    padding-left: 10px;
}

.about_content .container {
  max-width: 1200px;
}

.about_content {
  background: #f5f5f5;
  padding: 30px;
  padding-top: 50px;
}

.about_content p {
  margin-bottom: 30px
}

/* Footer */

.footer {
    padding-top: 70px;
    padding-bottom: 50px;
}

.main_footer img {
    width: 236px;
    height: 50px;
}

.main_footer ul {
    margin-top: 50px;
    list-style: none;
}

.main_footer ul li {
    margin-bottom: 15px;
}

.main_footer ul li:last-child {
    margin-bottom: 0;
}

.main_footer ul li a {
    color: #090F22;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.main_footer a {
    color: #090F22;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    text-decoration: none;
}

.main_footer .d-flex {
    margin-top: 80px;
    gap: 40px;
    margin-bottom: 30px;
}

.main_footer .copyright {
    color: #A2A2A2;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

.menu_footer {
    padding-left: 251px;
}

.menu_footer h3 {
    margin-bottom: 40px;
}

.menu_footer ul {
    list-style: none;
}

.menu_footer ul li {
    margin-bottom: 15px;
}

.menu_footer a {
    color: #090F22;
    font-size: 1.8rem;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    text-decoration: none;
}

.social_item {
    display: flex;
    flex-direction: column;
    margin-bottom: 18px;
}

.social_item:last-child {
    margin-bottom: 0;
}

.social_item span {
    color: #090F22;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    margin-bottom: 10px;
}

.social_item a {
    color: black;
    font-size: 1.8rem;
    font-weight: 600;
}

.anpc_logos {
    display: flex;
    gap: 5px;
}

.anpc_logos img {
    width: 50%;
    height: auto;
}

.services_item {
    display: flex;
    flex-direction: column;
    border-radius: 24px;
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.25);
}

.services_item img {
    width: 75px;
    height: 75px;
}

.service_title {
    padding: 24px;
    border-radius: 24px 24px 0 0;
    background: #283B6A;
    color: white;
}

.content_services {
    padding: 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.content_services p {
    margin-top: 24px;
    text-align: center;
}

.contact_section {
    background: #162249;
    padding: 88px 0;
    color: white;
    margin: 120px 0;
}

.contact_section .contact_style1 .wpcf7-list-item label{
    color: white;
}

.contact_section_left{
    padding-right: 40px;
}

.analysis_bg {
    background: #F5F5F5;
    padding: 24px;
    border-radius: 24px;
}

.analysis_content {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
}

.analysis_item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: calc(100% / 3 - 48px);
    padding: 35px;
    border-radius: 24px;
    background: #FFF;
}

.icon_analysis {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 218px;
    background: #20C7BA;
    margin-bottom: 24px;
}

.analysis_left {
    padding-right: 24px;
}

.analysis_right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
}

.analysis_right a {
    position: absolute;
    right: 112px;
    bottom: 33px;
    text-decoration: none;
}

.bg_family {
    background: #243663;
    padding: 24px;
    border-radius: 24px;
    color: white;
}

.bg_family h3 {
  font-size: 3rem;
}

.family_left {
    padding-right: 12px;
}

.family_left img {
    height: 470px;
    object-fit: cover;
}

.family_right {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-left: 12px;
}

.family_item {
    display: flex;
    padding: 30px;
    justify-content: center;
    align-items: center;
    gap: 24px;
    align-self: stretch;
    border-radius: 24px;
    background: #FFF;
}

.family_item p {
    color: #090F22;
    font-size: 1.7rem;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}

.family_content {
    padding: 10px;
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border-radius: 5px;
    background: rgba(40, 59, 106, 0.60);
}

.team_slider .swiper-wrapper {
    display: flex;
    align-items: flex-end;
}

.team_slider .swiper-slide {
    transform-origin: center bottom;
}

.team_slider .swiper-slide {
    width: calc(100% / 3);
    z-index: 10;
    position: relative;
}

.team_slider .swiper-slide:not(.swiper-slide-active)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #283B6A80;
    border-radius: 24px;
    z-index: 1;
}

.team_slider .swiper-slide {
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.team_slider .swiper-slide.swiper-slide-active {
    opacity: 1;
}

.team_slider .swiper-slide.swiper-slide-active img{
    height: 550px;
    object-position: center 25%;
}

.team_slider .swiper-slide img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 24px;
}

.team_content {
    display: none;
    max-width: 220px;
    position: absolute;
    left: 20px;
    bottom: 20px;
    border-radius: 5px;
    background: #283B6A;
    color: white;
    padding: 10px;
    z-index: 999;
}

.team_content p {
    color: white;
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 400;
    line-height: 19px;
}

.team_slider .swiper-slide.swiper-slide-active .team_content {
    display: block;
}

.arrows_slider {
    display: flex;
    gap: 20px;
}

.arrows_slider .swiper-button-prev,
.arrows_slider .swiper-button-next {
    margin-top: 0;
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.arrows_slider img {
    width: 48px;
    height: 48px;
    display: block;
    pointer-events: none;
}

.arrows_slider .swiper-button-next img {
    transform: rotate(180deg);
}

.arrows_slider .swiper-button-next::after,
.arrows_slider .swiper-button-prev::after {
    display: none !important;
}

/* Why Section */

.why_content {
    display: flex;
    flex-wrap: wrap;
    gap: 36px;
}

.why_content .why_item {
    width: calc((100% - 2 * 36px) / 3);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-radius: 24px;
    padding: 15px;
    background: #FFF;
}

.why_content .why_item h3 {
    margin-top: 24px;
    font-weight: 600;
}

.contact_style1 .row {
    background: #F6F6F7;
    border-radius: 24px;
    overflow: hidden;
}

.style1 {
    padding: 0 50px;
}


.contact_style1 h2 {
    font-size: 4rem;
    margin-bottom: 30px
}

.contact_style1 .form_flex {
    display: flex;
    flex-wrap: wrap;
}

.contact_style1 .form_flex .name_input,
.contact_style1 .form_flex .phone_input {
    width: 50%;
}

.contact_style1 .form_flex .name_input {
    padding-right: 10px;
}

.contact_style1 .form_flex .phone_input {
    padding-left: 10px
}

.contact_style1 input {
    width: 100%;
    font-size: 14px;
    line-height: 24px;
    padding: 14px 20px;
    color: #0B0B0B;
    border-radius: 24px;
    background: #FFFFFF;
    border: 1px solid #D2D2D2;
    box-shadow: none;
}

.contact_style1 .acceptance {
    margin-top: 12px;
}

.contact_style1 .acceptance,
.contact_style1 .send_button {
    width: 100%;
}

.contact_style1 .wpcf7-list-item input {
    width: 14px;
}

.contact_style1 .wpcf7-list-item label {
    color: #000;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 19px;
}

.contact_style1 form p {
    margin-bottom: 12px;
}

.contact_style1 .send_button input {
    margin-top: 24px;
    background: var(--primary-color);
    font-weight: 700;
    color: white;
    font-size: 16px;
    line-height: 24px;
    border: 0;
    border-radius: 24px;
}

.contact_style1 .send_button input:hover {
    background: #1da89e;
}

.wpcf7-spinner {
    position: absolute;
    left: 10px;
    top: 15px;
}

.send_button {
    position: relative;
}

.send_button p {
    margin-bottom: 0 !important
}

/* Reviews Slider */

.reviews_slider .swiper-slide {
    border-radius: 24px;
    background: #FAFAFA;
    padding: 20px;
}

.reviews_slider .swiper-slide .icon_review {
    width: 29px;
    height: 29px;
}

.stars_rev img {
    width: 14px;
    height: 12px;
}

.profile_reviews {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.profile_image h3 {
    color: #090F22;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 21px;
}

.profile_image {
    display: flex;
    align-items: center;
    gap: 12px;
}

.profile_image img {
    width: 42px;
    height: 44px;
    object-fit: cover;
    border-radius: 50%;
}

.certification_section {
    padding: 100px 0;
    background: #18254D;
    color: white;
}

.certification_slider .swiper-slide img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    border-radius: 24px;
    border: 1px solid #E0E0E0;
}

.certification_right {
    padding-left: 24px;
}

/* Faq Section */

.faq_section img {
    width: 100%;
    height: 442px;
    object-fit: cover;
    border-radius: 24px;
}

.accordion-dental {
    width: 100%;
    border-radius: 5px;
    overflow: hidden;
    border: none;
}

.accordion-item {
    transition: border-color 0.3s ease, background-color 0.3s ease;
    overflow: hidden;
}

.accordion-header {
    border-radius: 24px;
    border-top: 1px solid #D8D8D8;
    padding: 25px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #ffffff;
    font-size: 2.4rem;
    transition: background 0.3s ease, color 0.3s ease, font-size 0.3s ease;
}

.accordion-header:hover {
    color: #DD7210;
}

.accordion-item.active .accordion-header {
    color: #DD7210;
    font-size: 1.8rem
}

.accordion-header .bullet {
    color: #DD7210;
    font-size: 2rem;
    margin-right: 10px;
}

.quest {
    gap: 30px;
}

.quest h4 {
    color: #162249;
    font-size: 2.2rem;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
    transition: color 0.3s ease, font-size 0.3s ease;
}

.accordion-item.active .quest h4 {
    color: #000000;
}

.accordion-header .toggle-icon {
    color: #ffffff;
    font-size: 2rem;
    transform: rotate(0deg);
    transition: transform 0.3s ease, color 0.3s ease;
}

.accordion-item.active .accordion-header .toggle-icon {
    transform: rotate(90deg);
    color: #ffffff;
}

.accordion-content {
    display: block;
    max-height: 0;
    overflow: hidden;
    color: #000000;
    font-size: 16px;
    line-height: 1.5;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.accordion-item.active .accordion-content {
    padding: 0 20px 20px 20px;
    max-height: 500px;
}

.accordion-content p {
    font-size: 1.6rem;
    font-weight: 500;
    margin: 0;
}

.accordion-item.active {
    transition: box-shadow 0.3s ease;
}

.faq_left {
    padding-right: 54px;
}

.contact_style2 {
    padding: 30px;
    border-radius: 24px;
    background: #18254D;
    color: white;
}

.contact_style2 h2 {
    margin-bottom: 22px;
}

.contact_style2 p,
.contact_style2 h2 {
    text-align: center;
}

.contact_style2 p {
  font-size: 16px;
}

.contact_style2_right {
    padding-left: 25px;
    color: white;
}

.contact_style2_right h3 {
    padding: 20px 30px;
}

.background_style2 {
    background: #18254D;
    border-radius: 24px;
}

.contact_section2 .col-md-4.contact_style2_left {
  border-radius: 24px;
  background: #18254D;
  border: 1px solid #FFF;
}

.contact_style2 .form_flex {
    margin-top: 40px;
    flex-direction: column;
    gap: 17px;
}

.contact_style2 .form_flex .phone_input {
    padding-left: 0;
}

.contact_style2 .form_flex .name_input {
    padding-right: 0;
}

.contact_style2 .form_flex .name_input,
.contact_style2 .form_flex .phone_input {
    width: 100%;
}

.contact_style2 .wpcf7-list-item label {
    color: white;
}

.contact_style2 .send_button input {
    margin-top: 0;
}

.social_cta {
    display: flex;
    justify-content: space-between;
    padding: 20px 30px;
}

.social_contact {
    display: flex;
    gap: 15px;
}

.social_contact img {
    width: 30px;
    height: 30px;
}

.contact_numbers {
    display: flex;
    gap: 20px;
}

.contact_numbers img {
    width: 23px;
    height: 21px;
}

.contact_numbers a {
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-decoration: none;
}

.map_container iframe {
    height: 373px;
}

/* Benefits Section */

.benefits_section {
    background: #162249;
    padding: 100px 0;
}

.benefits_section .container {
    max-width: 1680px;
    margin-left: auto;
    margin-right: 0;
    padding-left: 15px;
    padding-right: 0;
}

.benefits_slider .swiper-slide {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    height: auto;
}

.benefits_slider .swiper-slide img {
    width: 100%;
    height: 226px;
    object-fit: cover;
}

.benefits_slider .swiper-slide h3 {
    padding: 20px;
    color: #162249;
    text-align: center;
    font-size: 2.2rem;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
}

.benefits_left {
    padding-left: 24px;
}

.cta_img{
    top: -108px;
    position: absolute;
}

.cta_img img{
    height: 620px;
    object-fit: contain;
}

.services_hero{
    padding-top: 30px;
    padding-bottom: 50px;
    background: #18254D;
    color: white;
}

.services_hero .container{
    max-width: 1850px;
    padding: 0 15px;
}

.services_hero p{
    margin-top: 20px;
    margin-bottom: 60px;
}

nav[aria-label="breadcrumb"] {
    margin-bottom: 20px;
    font-size: 14px;
}

/* Lista breadcrumb */
.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    list-style: none;
    padding: 8px 0;
    margin: 0;
    background: transparent;
}

/* Fiecare item */
.breadcrumb-item {
    color: #6c757d;
}

/* Link-uri */
.breadcrumb-item a {
    text-decoration: none;
    color: #B7B7B7;
    transition: color 0.2s ease;
}

.breadcrumb-item a:hover {
    color: #B7B7B7;
}

/* Separator între item-uri */
.breadcrumb-item + .breadcrumb-item::before {
    content: "›"; /* sau "/" dacă preferi */
    display: inline-block;
    padding: 0 8px;
    color: #adb5bd;
}

/* Item-ul activ (pagina curentă) */
.breadcrumb-item.active {
    color: #fffafa;
    font-weight: 500;
}

/* Modal */
.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);
}

.modal-content {
    background-color: #161616;
    margin: 15% auto;
    padding: 50px;
    border: 1px solid #888;
    border-radius: 8px;
    width: 80%;
    max-width: 760px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    animation: fadeIn 0.3s;
}

.modal-content h2{
    font-size: 3rem;
    color: white;
    margin-bottom: 30px;
}

.modal-content .close {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    width: 40px;
    height: 40px;
    font-size: 30px;
    line-height: 36px;
    text-align: center;
    border-radius: 100%;
    background: var(--primary-color);
    position: absolute;
    right: -19px;
    top: -17px;
}

.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;
}


.modal-content .form_flex {
    display: flex;
    flex-wrap: wrap;
}

.modal-content .form_flex .name_input,
.modal-content .form_flex .phone_input {
    width: 50%;
}

.modal-content .form_flex .name_input {
    padding-right: 10px;
}

.modal-content .form_flex .phone_input {
    padding-left: 10px
}

.modal-content input {
    width: 100%;
    font-size: 14px;
    line-height: 24px;
    padding: 14px 20px;
    color: #0B0B0B;
    border-radius: 24px;
    background: #FFFFFF;
    border: 1px solid #D2D2D2;
    box-shadow: none;
}

.modal-content .acceptance {
    margin-top: 12px;
}

.modal-content .acceptance,
.modal-content .send_button {
    width: 100%;
}

.modal-content .wpcf7-list-item input {
    width: 14px;
}

.modal-content .wpcf7-list-item label {
    color: #000;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 19px;
}

.modal-content form p {
    margin-bottom: 12px;
}

.modal-content .send_button input {
    margin-top: 24px;
    background: var(--primary-color);
    font-weight: 700;
    color: white;
    font-size: 16px;
    line-height: 24px;
    border: 0;
    border-radius: 24px;
}

.modal-content .send_button input:hover {
    background: #1da89e;
}

.modal-content .wpcf7-spinner {
    position: absolute;
    left: 10px;
    top: 15px;
}

.modal-content .send_button {
    position: relative;
}

.modal-content .send_button p {
    margin-bottom: 0 !important
}

.benefits_analysis .swiper-slide{
    background: #18254D;
}

.benefits_analysis .swiper-slide h3{
    color: white;
}

.stats_item{
    border-radius: 24px;
    background: #F6F6F7;
    padding: 30px;
}

.stats_item h3{
    color: #283B6A;
    font-size: 5rem;
    font-style: normal;
    font-weight: 700;
    line-height: 67px;
}

.stats_item p{
    color: #283B6A;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 21px;
}

.analysis_right1{
    padding-left: 24px;
}

.analysis_left1 h2{
    margin-bottom: 40px;
}

.steps_section .grid-3{
    gap: 16px;
}


.analysis_left1 .analysis_desc{
    margin-bottom: 80px;
}

.step_item{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 24px;
    border-radius: 24px;
    background: #18254D;
}

.step_item img{
    margin-top: 30px;
    width: 80px;
    height: 80px;
}

.step_item h3{
    width: 50%;
    color: #FFF;
    font-size: 2rem;
    font-style: normal;
    font-weight: 500;
    line-height: 27px;
}

.steps_right{
    padding-left: 24px;
}

.step_title{
    position: relative;
    display: flex;
    gap: 20px;
    justify-content: space-between;
}

.step_title .number {
    position: relative;
    width: 48px;
    height: 48px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 600;
    z-index: 2;
    margin-right: 25px;
}

/* Cercul din spate */
.step_title .circle {
    position: absolute;
    width: 48px;
    height: 48px;
    background: #cfd3db;
    border-radius: 50%;
    top: 0;
    right: 0;
    z-index: 1;
}

.steps_right{
    height: auto;
}

.steps_right img{
    height: 100%;
    object-fit: cover;
}

.settled_bg{
    border-radius: 24px;
    background: #18254D;
    color: white;
    padding: 24px;
}

.settled_item{
    background: white;
    border-radius: 24px;
}

.settled_item h3{
    padding: 24px 35px;
    border-radius: 24px 24px 0 0;
    background: #20C7BA;
}

.settled_item ul{
    padding-left: 20px;
}

.settled_item ul li{
    font-size: 1.6rem;
    margin-bottom: 5px;
}

.settled_content{
    padding: 24px;
    color: black;
}

.settled_left{
    padding-right: 24px;
}

.settled_left p{
    font-weight: 600;
    margin-bottom: 40px;
}

.title_pevent{
    margin-bottom: 80px;
}

.title_pevent p{
    margin-top: 40px;
}

.prevent_content{
    padding: 24px;
    border-radius: 24px;
    background: #F6F6F7;
}

.prevent_content h3{
    margin-bottom: 20px;
}

.prevent_content ul{
    list-style: none;
    margin-bottom: 20px;
}

.prevent_content ul li{
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.6rem;
    font-weight: 500;
    color: #162249;
    margin-bottom: 10px;
}

.prevent_left{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.prevent_right{
    padding-left: 24px;
}

.prevent_right img{
    height: 100%;
}

.analize-wrapper {
    max-width: 1470px;
    padding: 0 15px;
    margin: 0 auto;
}

.analize-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 36px;
    font-weight: 700;
}

.analize-container {
    display: flex;
    gap: 40px;
}

.analize-list {
    flex: 1;
}

#analizeList {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e5e5e5;
    margin-bottom: 40px;
}

.analiza-item {
    display: flex;
    justify-content: space-between;
    padding: 14px 18px;
    border-bottom: 1px solid #ededed;
    font-size: 15px;
    cursor: pointer;
}

.analiza-item:last-child {
    border-bottom: none;
}

.analiza-item:hover {
    background: #f9f9f9;
}

.analiza-price {
    font-weight: 600;
}

.analize-sidebar {
    width: 386px;
}

.analize-search {
    width: 100%;
    font-size: 1.4rem;
    padding: 12px 18px;
    border-radius: 40px;
    border: 1px solid #ddd;
    margin-bottom: 22px;
}

.filter-title {
    margin-bottom: 8px;
    font-size: 14px;
    color: #777;
}

.analize-letters {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.letter-btn {
    background: #f3f3f3;
    border: none;
    padding: 6px 10px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
}

.letter-btn.active {
    background: #00bfa6;
    color: white;
}

.images_hero{
    display: flex;
    align-items: flex-end;
    gap: 30px;
}

.images_hero img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img_small{
    width: 40%;
    height: 334px;
    border-radius: 24px;
    overflow: hidden;
}

.img_large{
    position: relative;
    width: 60%;
    height: 547px;
    border-radius: 24px;
    overflow: hidden;
}

.service_left{
    padding-right: 200px;
}

.images_span{
    position: absolute;
    right: 20px;
    left: 20px;
    bottom: 18px;
    background: #2a3d6b;
    padding: 10px;
    border-radius: 5px;
}

.service_item:first-child{
    margin-top: 0;
}

.service_item{
    margin-top: 60px;
}

.service_item h3{
    color: #20C7BA;
    font-size: 3.2rem;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    margin-bottom: 10px;
}

.service_item ul{
    border: 1px solid #D2D2D2;
    list-style: none;
    border-radius: 24px;
}

.service_item ul li{
    padding: 16px 24px;
    display: flex;
    gap: 80px;
    justify-content: space-between;
    color: #090F22;
    font-size: 2rem;
    font-style: normal;
    font-weight: 500;
    line-height: 27px;
    border-bottom: 1px solid #D2D2D2;
}

.service_item ul li .title_service{
    width: 80%;
}

.service_item ul li .title_price{
    display: flex;
    justify-content: flex-end;
   width: 20%;
}

.service_item ul li:last-child{
   border: none;
}

.description_service ul{
    padding-left: 20px;
}

.description_service li{
    font-size: 1.8rem;
}
.quiz_section {
  margin-top: 60px;
}

.quiz_section .wpcf7 form {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin: 0 auto;
}

.quiz_section .wpcf7 form label {
    font-weight: 600;
    font-size: 18px;
    color: #2c2c2c;
    display: block;
    margin-bottom: 6px;
}

.quiz_section .wpcf7 input[type="text"],
.quiz_section .wpcf7 input[type="email"],
.quiz_section .wpcf7 input[type="tel"],
.quiz_section .wpcf7 textarea,
.quiz_section .wpcf7 select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #dcdcdc;
    border-radius: 6px;
    font-size: 1.6rem;
    transition: all .2s ease;
    background: #fff;
    color: #333;
}

.quiz_section .wpcf7 input:focus,
.quiz_section .wpcf7 textarea:focus,
.quiz_section .wpcf7 select:focus {
    border-color: #4e8df5;
    box-shadow: 0 0 0 2px rgba(78, 141, 245, 0.25);
    outline: none;
}

.quiz_section .wpcf7-form-control.wpcf7-radio {
    font-size: 1.8rem;
    display: flex;
    flex-direction: row;
    gap: 40px;
    flex-wrap: wrap;
}

.quiz_section .wpcf7-list-item {
    margin: 0 !important;
    display: flex;
    align-items: center;
    gap: 6px;
}

.quiz_section .wpcf7-list-item label {
    margin: 0 !important;
    font-weight: 500;
    cursor: pointer;
    font-size: 15px;
}

.quiz_section .wpcf7-list-item input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: #4e8df5;
}

.quiz_section .wpcf7 input[type="submit"] {
    background: var(--primary-color);
    color: #fff;
    padding: 14px 26px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: .2s;
    font-weight: 600;
}

.quiz_section .wpcf7 input[type="submit"]:hover {
    background: var(--primary-color);
}

.quiz_section .wpcf7-response-output {
    border-radius: 6px !important;
    padding: 14px !important;
    margin-top: 10px !important;
    font-weight: 600;
}

.quiz_section .wpcf7-mail-sent-ok {
    background: #e7f7ea !important;
    color: #2d7a38 !important;
    border: 1px solid #8dd69f !important;
}

.quiz_section .wpcf7-validation-errors,
.quiz_section .wpcf7-not-valid-tip {
    background: #fff4f4 !important;
    color: #c22626 !important;
    border: 1px solid #f5b5b5 !important;
    border-radius: 4px;
}

.quiz_section .wpcf7-not-valid-tip {
    padding: 4px 8px;
    margin-top: 6px;
    font-size: 14px;
}

@media (max-width: 640px) {
    .wpcf7 form {
        gap: 20px;
    }
}

.quiz_section .container{
    max-width: 1000px;
}

.quiz_section p{
    margin-top: 100px;
    margin-bottom: 60px;
}

.quiz_left{
    padding-right: 100px;
}

.doctor-tabs {
    background: #f5f5f5;
    padding: 5px;
    border-radius: 50px;
    display: inline-flex;
    margin-bottom: 40px;
    gap: 10px;
}

.doctor-tab {
    border: none;
    background: transparent;
    padding: 10px 25px;
    border-radius: 40px;
    font-weight: 500;
    color: #999;
    cursor: pointer;
    transition: 0.3s;
    font-size: 16px;
}

.doctor-tab.active {
    background: #fff;
    color: #0c2340;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.doctor-content {
    display: none;
}

.doctor-content.active {
    display: block;
}


.list_grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.list_contacts .list_item{
    display: flex;
    align-items: center;
    flex-direction: column;
    border: 1px solid rgba(207, 207, 207, 0.52);
    border-radius: 20px;
    padding: 20px;
    text-align: center;
}

.page-template-contact-template .contact_section2.mt-100 {
  margin-top: 70px;
}

.list_contacts .list_item h3 {
    font-size: 25px;
    gap: 10px;
    margin-bottom: 10px;
}

.list_contacts .list_item a{
    font-size: 1.8rem;
    color: black;
    text-decoration: none;
    line-height: 32px;
    margin-bottom: 0;
}

.list_contacts i {
    color: var(--primary-color);
    font-size: 25px;
    padding-right: 10px;
}

.about_hero p{
   margin-top: 10px;
    margin-bottom: 15px;
}

.about-right{
    padding-left: 40px;
}

.about-right img{
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
}

.team_item_about img{
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 24px;
}

.team_item_about h3{
    margin-top: 15px;
    margin-bottom: 10px;
}
