* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

a{
    text-decoration:none;
	color:#0d003b;
}

body{
	font-size: 14px;
    font-weight: 400;
    font-family: Raleway;
	line-height: 1.4;
    color: #0d003b;
}

.top-bar-split {
    position: relative;
    width: 100%;
    display: flex;
    font-size: 15px;
    height: 70px;
    font-weight: 500;
}

@media(max-width: 768px){
	.top-bar-split {
    height: 45px;

}
}

/* ---------- LEFT ---------- */
.top-left {
    width: 45%;
    background: #f15523;
    color: #fff;
    padding: 12px 25px;
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
}

@media(max-width: 768px){
.top-left {
    width: 53%;
    background: #f15523;
    color: #fff;
    padding: 0px 25px;
    display: flex;
    align-items: center;
    font-size: 10px;
    font-weight: 600;
}
}

/* ---------- RIGHT ---------- */
.top-right {
    width: 55%;
    background: #f6fcff;
    padding: 0px 10px;
    display: flex;
    align-items: center;
    gap: 25px;
    justify-content: flex-start;
}

@media(max-width: 768px){
.top-right {
    width: 50%;
    background: #f6fcff;
    padding: 0px 10px;
    display: flex;
    align-items: center;
    gap: 25px;
    justify-content: flex-start;
}
}

/* ---------- Individual boxes ---------- */
.top-box.phone {
    flex: 0 0 32%; /* lățime mai mare pentru telefon */
}

@media(max-width: 768px){
.top-box.phone {
    flex: 100%; /* lățime mai mare pentru telefon */
}
}

.top-box.email {
    flex: 0 0 150px; /* lățime mai mică pentru email */
}

.top-box.schedule {
    flex: 0 0 26%;
    white-space: normal;
    line-height: 1.2;
}

@media(max-width: 768px){
	.top-box.email, .top-box.schedule {display:none;}
}

/* ---------- THE MIDDLE CUT (THE REAL FIXO EFFECT) ---------- */
.top-bar-split::after {
    content: "";
    position: absolute;
    top: 0;
    left: 45%;
    transform: translateX(-65px);
    width: 120px;
    height: 100%;
    background: #f15523;
    -webkit-clip-path: polygon(0 0, 100% 0%, 92% 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0%, 55% 100%, 0% 100%);
}

@media(max-width: 768px){
.top-bar-split::after {
        content: "";
        position: absolute;
        top: 0;
        left: 76%;
        transform: translateX(-97px);
        width: 39px;
        height: 57px;
        background: #f15523;
        -webkit-clip-path: polygon(0 0, 100% 0%, 92% 100%, 0% 100%);
        clip-path: polygon(0 0, 100% 0%, 55% 100%, 0% 100%);
    }
}



.icon-top-box {
    display: flex;
    padding: 10px 5px;
    background-color: #FFEBE4;
    border-radius: 50px;
    position: relative;
    margin-right: 10px;
    justify-content: center;
    align-items: center;
}

@media(max-width: 768px){
	.icon-top-box {
		padding: 5px 5px;
	}
}
.icon-top-box img {
    width: 17px;
    height: 17px;
}

.top-box{
    font-size: 17px;
    color: #0d003b;
    font-weight: 600;
    z-index: 1;
    border-right: 1px solid #DCDDE0;
    height: 70px;
    align-items: center;
    display: flex;
    padding-right: 25px;
}

@media(max-width: 768px){
	.top-box{
		font-size: 13px;
		border-right: none;
	}
}

.top-box:last-child {
    border-right: none;
}



/* ---------- MENU NAV ---------- */
.menu-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 55px;
    background: #ffffff;
    position: relative;
    z-index: 20;
}

@media(max-width: 768px){
.menu-nav {
    padding: 25px 25px;
}

.dsh{
	display:none !important;
}
}

/* Logo */
.logo-top {
    display: flex;
    align-items: center;
}

.logo-top .logo {
    height: 40px;
    object-fit: contain;
    display: block;
}

/* MENU DESKTOP */
.menu-left {
    display: flex;
    align-items: center;
    gap: 40px;
}

.desktop-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.desktop-menu a {
color: #000;
    transition: all ease .5s;
    position: relative;
    z-index: 1;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.desktop-menu a:hover {
    color: #f15523;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 240px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    border-radius: 5px;
    overflow: hidden;
    z-index: 10;
    flex-direction: column;
}

.dropdown-content a {
    display: block;
    padding: 10px 15px;
    color: #0d003b;
    font-weight: 500;
}

.dropdown-content a:hover {
    background: #f15523;
    color: #fff;
}

.dropdown:hover .dropdown-content {
    display: flex;
}

/* Right menu desktop */
.menu-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.menu-right .btn-contact {
    background: #f15523;
    color: #fff;
    padding: 15px 20px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
    text-transform: uppercase;
	margin-top:-10px;
}

.menu-right .btn-contact:hover {
    background: #ff7b4a;
}

/* Hamburger menu-m */
.menu-m {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    cursor: pointer;
}

.menu-m span {
    display: block;
    height: 3px;
	margin-bottom:4px;
    background: #000;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Transformare in X cand e activ */
.menu-m.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-m.active span:nth-child(2) {
    opacity: 0;
}

.menu-m.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ---------- MENIU MOBILE ---------- */
.menu-mobile {
    display: none;
    background: #ccc;
    padding: 10px 20px;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease;
}

.menu-mobile.active {
    display: block;
    max-height: 1000px; /* suficient pentru toate link-urile */
}

.menu-mobile .menu-center {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.menu-mobile .menu-center a {
    color: #000;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    padding: 10px 0;
    transition: all ease 0.5s;
}

.menu-mobile .menu-center a:hover {
    color: #f15523;
}

/* Dropdown mobile */
.menu-mobile .dropdown-content {
    position: relative;
    top: 0;
    box-shadow: none;
    background: #bbb;
}

.menu-mobile .dropdown-content a:hover {
    background: #f15523;
    color: #fff;
}

/* ================== SLIDE ================== */
/* ==================== SLIDE ==================== */
.slide {
    position: relative;
    width: 100%;
    height: 550px;
    overflow: hidden;
}

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

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgb(232 232 232 / 15%), rgb(255 255 255 / 60%));
    pointer-events: none;
    z-index: 1;
}

/* ==================== TEXT STANGA ==================== */
.slide-content {
    position: absolute;
    top: 25%;
    left: 5%;
    transform: translateY(-50%);
    z-index: 2;
    max-width: 500px;
    opacity: 0;
    animation: fadeInLeft 1.2s forwards;
    text-align: left;
}

.slide-content h1 {
    font-size: 50px;
    color: #000;
    margin: 0 0 15px 0;
}

.slide-content p {
    color: #ccc;
    font-size: 18px;
    margin: 0 0 20px 0;
}

.slide-btn {
    display: inline-block;
    background: #f15523;
    color: #fff;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: 0.3s ease;
}

.slide-btn:hover {
    background: #000;
    color: #fff;
}

/* Animatie text */
@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to   { opacity: 1; transform: translateX(0); }
}

/* ==================== PARTEA DREAPTA ==================== */
.col-2 {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    width: 45%;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
}

/* Cercuri pulsante fundal */
.circles-dsh {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 700px;
    height: 700px;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
}

.circle-dsh {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulse-dsh 6s infinite ease-in-out;
}

.circle-dsh:nth-child(1){width:500px;height:500px;background:rgb(204 209 221 / 25%);}
.circle-dsh:nth-child(2){width:350px;height:350px;background:rgb(204 209 221 / 25%);}
.circle-dsh:nth-child(3){width:200px;height:200px;background:rgb(204 209 221 / 25%);}

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

/* Container card-uri verticale */
.container-dsh {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 2;
    width: 100%;
    max-width: 250px;
}

.card-dsh {
    background: #fff;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

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

.title-card-dsh {
    font-weight: 700;
    font-size: 16px;
    color: #001b33;
    margin-bottom: 5px;
}

.number-card-dsh {
    font-size: 24px;
    font-weight: 700;
    color: #f15523;
}

.unit-dsh {
    font-size: 14px;
    font-weight: 500;
    color: #6b7280;
}

.progress-container-dsh {
    width: 100%;
    background: #e5e7eb;
    height: 6px;
    border-radius: 3px;
    margin: 8px 0;
    overflow: hidden;
}

.progress-bar-dsh {
    height: 100%;
    width: 0%; /* start de la 0 */
    background: #f15523;
    border-radius: 3px;
    transition: width 1.5s ease-in-out;
}

.desc-card-dsh {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.4;
}

/* ==================== RESPONSIVE ==================== */
@media(max-width: 1024px){
    .slide-content { max-width: 40%; }
    .circle-dsh { width: 90px; height: 90px; }
}

@media(max-width: 768px){
    .slide {
        height: auto; /* se ajustează automat după continut */
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
    }

    .slide-content {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        max-width: 90%;
        text-align: center;
        margin-bottom: 30px;
    }

    .col-2 {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        width: 90%;
        flex-direction: column;
        align-items: center;
        margin: 0 auto;
    }

    /* Cercuri mai mici */
    .circles-dsh {
        width: 250px;
        height: 250px;
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin-bottom: 20px;
    }

    .circle-dsh:nth-child(1){width:200px;height:200px;}
    .circle-dsh:nth-child(2){width:150px;height:150px;}
    .circle-dsh:nth-child(3){width:100px;height:100px;}

    .container-dsh {
        max-width: 100%;
        gap: 15px;
        width: 100%;
    }

    .card-dsh {
        width: 100%;
    }
}


.link-det {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 10;
}

@media(max-width: 768px){
	.link-det {
    display: none;
}
}

/* Div 1: telefon */
.contact-phone {
    display: flex;
    align-items: center;
    gap: 6px;
}

.contact-phone .phone-icon {
    background-color: #f15523;
    padding: 6px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-phone .phone-icon img {
    width: 20px;
    height: 20px;
filter: invert(88%) sepia(20%) saturate(0%) hue-rotate(358deg) brightness(112%) contrast(101%);
}

.contact-phone .phone-number {
    font-weight: 600;
    color: #f15523;
    font-size: 18px;
}

/* Div 2: lupa */
.contact-search .search-icon {
    width: 35px;
    height: 35px;
    cursor: pointer;
}


/* Overlay search input full width */
.search-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    opacity: 0;
    transform: translateY(-20px);
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 100;
}

.search-overlay.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Input și buton */
.search-overlay .search-input {
    width: 50%;
    max-width: 500px;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.search-overlay .search-btn {
    background-color: #f15523;
    color: #fff;
    border: none;
    padding: 10px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

/* Buton X */
.search-overlay .search-close {
    position: absolute;
    top: 10px;
    right: 20px;
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    font-weight: bold;
}


.mb-box-home {
    display: flex;
    flex-wrap: wrap;
    background-color: #fff;
    padding: 40px 55px;
    justify-content: center;
}

.mb-box {
    background-color: #001b33;
    padding: 70px 40px;
    flex: 1;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-radius: 0; /* fără colțuri pentru boxurile 1 și 3 */
    box-sizing: border-box;
    transition: none; /* fără transform */
}

@media(max-width: 768px){
	.mb-box {
    padding: 40px 40px;
}
}

/* Div-ul din mijloc */
.mb-box:nth-child(2) {
    border-left: 1px solid #405466;
    border-right: 1px solid #405466;
	border-radius: 0px;
}

/* Div-ul din stanga */
.mb-box:nth-child(1) {
	border-top-left-radius:10px;
	border-top-right-radius:0px;
	border-bottom-left-radius:10px;
	border-bottom-right-radius:0px;
}

/* Div-ul din drapta */
.mb-box:nth-child(3) {
	border-top-right-radius:10px;
	border-top-left-radius:0px;
	border-bottom-right-radius:10px;
	border-bottom-left-radius:0px;
}




@media (max-width: 768px) {
	
/* Div-ul din mijloc */
.mb-box:nth-child(2) {
    border-left: 1px solid #405466;
    border-right: 1px solid #405466;
	border-radius: 10px;
	margin-bottom:10px;
}

/* Div-ul din stanga */
.mb-box:nth-child(1) {
	border-top-left-radius:10px;
	border-top-right-radius:10px;
	border-bottom-left-radius:10px;
	border-bottom-right-radius:10px;
	margin-bottom:10px;
}

/* Div-ul din drapta */
.mb-box:nth-child(3) {
	border-top-right-radius:10px;
	border-top-left-radius:10px;
	border-bottom-right-radius:10px;
	border-bottom-left-radius:10px;
}
}

.mb-image {
    background-color: #fff;
    padding: 20px;
    border-radius: 50px;
    height: 100px;
    width: 100px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease, filter 0.3s ease;
}

.mb-image img {
    max-width: 100%;
    border-radius: 12px;
    transition: filter 0.3s ease;
    filter: invert(55%) sepia(69%) saturate(6997%) hue-rotate(349deg) brightness(99%) contrast(92%);
}

/* Hover imagine */
.mb-box:hover .mb-image {
    background-color: #ff7b4a;
}

.mb-box:hover .mb-image img {
    filter: brightness(0) invert(1);
}

.mb-text h3 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 23.5px;
}

.mb-text p {
    color: #C3C3C3;
    font-size: 14px;
    line-height: 1.5;
}

/* Responsive: coloanele devin verticale pe mobil */
@media (max-width: 768px) {
    .mb-box-home {
        flex-direction: column;
		padding: 0px 25px;
    }

    .mb-box {
        width: 100%;
        border-left: 0;
        border-right: 0;
        border-radius: 0; /* pe mobil toate colțurile sunt pătrate */
    }

}


.about-home {
    display: flex;
    flex-wrap: wrap;
    gap: 150px;
    padding: 50px 55px;
}

@media(max-width: 768px){
	.about-home {
    padding: 50px 25px;
	gap: 50px;
}
}

/* Coloana stânga cu două sub-coloane */
.about-left {
    display: flex;
    gap: 20px;
    flex: 1;
    min-width: 300px;
}

/* Coloana 1: imagine mare + box */
.left-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.large-img {
    width: 350px;
    height: 400px;
    object-fit: cover;
}

.experience-box {
	background-color: #0378d8;
    color: #fff;
    padding: 47.5px 30px;
}

.experience-box h1 {
    font-size: 48.5px;
    color: #fff;
    margin-bottom: 5px;
    line-height: 1;
}

.experience-box p {
font-size: 20px;
    color: #fff;
    margin-bottom: 0;
    font-weight: 600;
}

.experience-box img{
	    float: left;
    margin-right: 15px;
}

/* Coloana 2: imagine mică + imagine mare */
.right-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.small-img {
    width: 350px;
    height: 180px;
    object-fit: cover;
}

.side-large {
    width: 350px;
    height: 400px;
    object-fit: cover;
}

/* Coloana dreapta text */
.about-right {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
}

.mini-title {
    color: #f15523;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
	float:left;
	width:100%;
}

.im1 {
    background-image: url(https://marte.hostclean.ro/mizrakromania/mti_style/images/site/title-shape.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 25px;   /* pune dimensiunea reală a imaginii */
    height: 25px;
	float:left;
}

.im2 {
    background-image: url(https://marte.hostclean.ro/mizrakromania/mti_style/images/site/title-shape.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 25px;   /* pune dimensiunea reală a imaginii */
    height: 25px;
	float:left;
}

.mini-title p{
	    float: left;
    padding: 0px 10px;
}

.about-right h2 {
    max-width: 100%;
    font-size: 45px;
    margin-bottom: 10px;
    float: left;
}

@media(max-width: 768px){
	.about-right h2 {
		line-height: 50px;
        font-size: 30px;
        line-height: 40px;
    }
}

.about-right .description {
    color: #777777;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
}

/* Info box fara background */
.info-box {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-top: 25px;
}

.info-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 75px;
    float: left;
	padding:10px;
    background-color: #FFEBE4;
    border-radius: 10px;
    transition: all ease 0.5s;
}

.info-icon img{
    filter: invert(55%) sepia(69%) saturate(6997%) hue-rotate(349deg) brightness(99%) contrast(92%);
    width: 40px;
    height: 40px;
}

.info-text h3 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 700;
}

.info-text p {
    margin: 0;
    font-size: 14px;
    margin-bottom: 0;
    color: #777777;
}

/* Guarantee box */
.guarantee-box {
    position: relative;
    background-color: #f6fcff;
    padding: 20px;
    border-radius: 8px;
    color: #001b33;
    font-size: 19.5px;
    font-weight: 600;
    margin-bottom: 0;
    line-height: 1.7;
    float: left;
    margin-top: 25px;
}

.guarantee-box .quote {
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 50px;
    color: #f5dbd3;
    line-height: 1;
}

/* Responsive */
@media (max-width: 1024px) {
    .about-home {
        flex-direction: column;
        align-items: center;
    }

    .about-left, .about-right {
        width: 100%;
        flex-direction: column;
    }

    .left-column, .right-column {
        flex-direction: column;
        align-items: center;
    }

    .large-img, .small-img, .side-large {
        width: 100%;
        height: auto;
    }

    .experience-box {
        width: 100%;
    }
}

.btn-read{
	    float: left;
    margin-top: 30px;
}

.btn-read a{
	    background: #f15523;
    color: #fff;
    text-align: center;
    display: inline-block;
    text-decoration: none;
    line-height: normal;
    padding: 18.5px 38px;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    font-size: 16px;
}

.total-rep {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    padding: 65px 55px;
}

.total-rep .box {
    border-radius: 100px;
    margin-bottom: 25px;
    padding: 55px 50px 55px 70px;
}

.total-rep .box-type-1 {
    background-color: #F6F7FF;
}

.total-rep .box-type-2 {
    background-color: #FFF8F5;
}

.counter, .sub {
    display: inline-block;
    margin: 0;
    font-size: 40px;
    font-weight: 700;
    color: #f15523;
}

.sub {
    margin-left: 5px;
}

.total-rep p {
    font-size: 18px;
    font-weight: 600;
    color: #777777;
    margin-bottom: 0;
}

/* ========================= */
/*        RESPONSIVE         */
/* ========================= */

/* TABLETA — 2 coloane, text centrat */
@media (max-width: 991px) {
    .total-rep {
        grid-template-columns: repeat(2, 1fr);
        padding: 0px 25px;
    }

    .total-rep .box {
        text-align: center;     /* CENTRARE TEXT TABLETĂ */
        padding: 40px 30px;     /* ajustare padding */
    }
}

/* TELEFON — 1 coloană, text centrat */
@media (max-width: 575px) {
    .total-rep {
        grid-template-columns: repeat(2, 1fr);
        padding: 0px 15px;
    }

    .total-rep .box {
        text-align: center;     /* CENTRARE TEXT TELEFON */
        padding: 40px 30px;
        border-radius: 15px;
    }

    .counter, .sub {
        font-size: 32px;
    }

    .total-rep p {
        font-size: 16px;
    }
}


.pr-slide-home-container { display:flex; flex-wrap:wrap; width:100%; padding:40px; box-sizing:border-box; }
.pr-slide-home-left, .pr-slide-home-right { width:50%; padding:20px; box-sizing:border-box; overflow:hidden; position:relative; }


@media(max-width: 768px){
.pr-slide-home-container{
	padding: 25px;
}
}

.pr-slide-home-left small {
    color: #f15523;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    float: left;
    width: 100%;
}
.pr-slide-home-left h1 {
    max-width: 100%;
    font-size: 42px;
    margin-bottom: 15px;
    float: left;
    line-height: 45px;
}
.pr-slide-home-left p {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 0px;
    color: #777777;
}

.pr-slide-home-slider { position: relative; overflow:hidden; min-height:180px; margin-top:20px; border-radius:10px; padding:20px; }

@media(max-width: 768px){
.pr-slide-home-slider{
	padding: 0px;
}

.pr-slide-home-buttons{
	display:none;
}

.pr-slide-home-left, .pr-slide-home-right{
	padding:0px;
}

.pr-slide-home-left h1 {
    font-size: 30px;
    line-height: 35px;
}
}

.pr-slide-home-cubes-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  z-index: 0;
  pointer-events: none;
}

.pr-slide-home-cube {
  background: rgb(222 236 243);
  transform: rotate(45deg);
  animation: pr-slide-home-cubeMove 1.2s infinite alternate linear;
}

.pr-slide-home-cube:nth-child(1) { width: 100px; height: 80px; animation-delay: 0s; }
.pr-slide-home-cube:nth-child(2) { width: 160px; height: 120px; animation-delay: 0.2s; }
.pr-slide-home-cube:nth-child(3) { width: 70px; height: 40px; animation-delay: 0.4s; }

@keyframes pr-slide-home-cubeMove {
  0% { transform: rotate(45deg) translateY(0); opacity:0.3; }
  50% { transform: rotate(45deg) translateY(-20px); opacity:0.6; }
  100% { transform: rotate(45deg) translateY(0); opacity:0.3; }
}

.pr-slide-home-counter-wrapper {
    float: left;
    width: 25%;
}
.pr-slide-home-counter {
	    font-size: 34px;
    font-weight: bold;
    padding: 20px;
}

.pr-slide-home-slide-wrapper {
    position: relative;
    width: 75%;
    float: left;
}

.t-pr{
	font-size: 25px;
    margin-bottom: 10px;
    font-weight: 700;
}
.pr-slide-home-slide { position:absolute; top:0; left:0; width:100%; transition: transform 0.8s linear, opacity 0.8s linear; opacity:1; }

.pr-slide-home-buttons {
    margin-top: 20px;
    float: left;
    width: 100%;
}
.pr-slide-home-buttons button {
    border: 1px solid #f15523;
    background: #fff;
    cursor: pointer;
    border-radius: 50%;
    height: 60px;
    width: 60px;
    text-align: center;
    font-size: 20px;
    margin-right: 10px;
	color:#f15523;
}

.prSlideHomeNextBtn{
	    background: #f15523 !important;
    color: #fff !important;
}

.pr-slide-home-images { position:relative; overflow:hidden; height:450px; margin-top:20px; border-radius:10px;}
.pr-slide-home-images img { width:100%; border-radius:10px; position:absolute; top:0; left:0; transition: transform 0.8s linear, opacity 0.8s linear; opacity:1; }

@media(max-width:768px) {
  .pr-slide-home-left, .pr-slide-home-right { width:100%; }
  .pr-slide-home-images { height:200px; margin-top:20px; }
  .pr-slide-home-counter-wrapper { width: 35%;}
  .pr-slide-home-slide-wrapper { width:60%;}
  .t-pr { font-size:16px; text-align:left;}
  .pr-slide-home-left p.pp { font-size:14px; !important}

}


.c-machine-home{
	    float: left;
    width: 100%;
    padding: 65px 55px;
    background: #f6fcff;
}

@media(max-width: 768px){
	.c-machine-home{
    padding: 65px 25px;
	overflow: hidden;
}
}

  .machine-home-top-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }

  .machine-home-left-text {
    width: 70%;
  }

  .machine-home-title-orange {
    color: orange;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
  }

  .machine-home-main-title {
    font-size: 40px;
    font-weight: bold;
    width: 70%;
    line-height: 46px;
  }

  .machine-home-info-btn {
    background: #f15523;
    color: #fff;
    text-align: center;
    display: inline-block;
    text-decoration: none;
    line-height: normal;
    padding: 18.5px 38px;
    border-radius: 50px;
    border: none;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

  .machine-home-all-machine {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 50px;
  }

  .machine-home-box {
padding: 20px 50px;
    border-radius: 0;
    position: relative;
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.6s ease;
    border: none;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
}


  .machine-home-plus-btn {
    position: absolute;
    bottom: 131px;
    left: 50px;
    background: #f15523;
    color: #ffffff;
    font-size: 40px;
    width: 80px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: bold;
}

  .machine-home-title {
    margin-top: 10px;
    font-size: 23.5px;
    font-weight: 700;
    color: #0d003b;
}

  .machine-home-desc {
    margin-top: 5px;
    font-size: 14px;
    color: #777777;
    font-weight: 500;
    line-height: 26px;
}

  /* middle box borders */
  .machine-home-box:nth-child(2){
    border-left: none;
    border-right: none;
    border-bottom: 1px solid #d3d3d3;
  }
  
   .machine-home-box:nth-child(5){
    border-top: none;
    border-right: none;
    border-left: none;
    border-bottom: none;
  }
  
  .guarantee-box p b{
	  font-weight:900;
	      color: #f15523;
	text-transform: uppercase;
}
  
    .machine-home-box:nth-child(1),
	.machine-home-box:nth-child(3){
	border-bottom: 1px solid #d3d3d3;	
	}

  /* responsive for mobile */
  @media (max-width: 768px) {
    .machine-home-top-section {
      flex-direction: column;
      align-items: flex-start;
    }
    .machine-home-left-text {
      width: 100%;
    }
    .machine-home-main-title {
        width: 100%;
        font-size: 30px;
        line-height: 35px;
    }
    .machine-home-all-machine {
      grid-template-columns: repeat(1, 1fr);
    }
    .machine-home-box {
      border: none !important;
	  padding: 20px 0px;
    }
	.machine-home-info-btn{
		display:none;
	}
	
	.machine-home-all-machine{
		margin-top:20px;
	}
	
	.machine-home-plus-btn{
		display:none;
	}
	.machine-home-title{
		    background: #fff;
    padding: 10px;
	margin-top:0px;
	}
	.machine-home-desc {
		margin-top: 0px;
		background: #fff;
		padding: 10px;
	}
  }

  .machine-home-box:nth-child(even) {
    transform: translateX(40px);
  }

  .machine-home-show-box {
    opacity: 1 !important;
    transform: translateX(0) !important;
  }
  
  
    .testimonial-home {
    background: #001b33;
    color: white;
    padding: 60px 55px;
    overflow: hidden;
  }
  
  /* responsive for mobile */
  @media (max-width: 768px) {
    .testimonial-home {
    padding: 60px 25px;
  }
  }
  
  .testimonial-home .small-title {
    font-size: 16px;
    opacity: 0.7;
    text-transform: uppercase;
    margin-bottom: 10px;
  }

  .testimonial-home .main-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 40px;
  }

  .testimonial-carousel {
    display: flex;
    gap: 20px;
    overflow: hidden;
    width: 100%;
  }

  .testimonial-carousel-inner {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease-in-out;
  }

  .testimonial-box {
    flex: 0 0 32%;
    border: 2px solid orange;
    border-radius: 8px;
    padding: 20px;
    box-sizing: border-box;
    background: #001b33;
    color: white;
    position: relative;
  }

  .testimonial-box img.quote {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 30px;
    height: 30px;
  }

  .testimonial-box .stars {
    position: absolute;
    top: 10px;
    right: 10px;
    color: gold;
    font-size: 16px;
  }

  .testimonial-box .testimonial-title {
    width: 100%;
    font-size: 20px;
    color: white;
    margin-top: 50px;
    font-weight: bold;
  }

  .testimonial-box .testimonial-desc {
    width: 100%;
    margin-top: 10px;
    font-size: 16px;
    color: white;
  }
  
  
    .contact-home {
    display: flex;
    width: 100%;
    padding: 120px 55px;
}

.contact-home-left {
    width: 40%;
    background-image: url(https://marte.hostclean.ro/MizrakRomania/mti_style/images/contact-home/1.png);
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    box-sizing: border-box;
    border-radius: 20px;
}

  .contact-home-left .button-group {
    display: flex;
    width: 100%;
    gap: 5px;
    margin-bottom: 20px;
  }

  .contact-home-left .btn-white,
  .contact-home-left .btn-black {
	flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 14px;
    box-sizing: border-box;
    border-radius: 50px;
}

  .contact-home-left .btn-white {
    background: white;
    color: black;
  }

  .contact-home-left .btn-black {
    background: black;
    color: white;
    align-items: flex-start;
  }

  .contact-home-left .btn-black .logo-review {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 5px;
    width: 100%;
  }

  .contact-home-left .btn-black .stars {
    color: gold;
  }

  .contact-home-right {
    width: 60%;
    padding: 65px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .contact-home-right .small-title {
    color: orange;
    font-size: 18px;
    margin-bottom: 10px;
  }

  .contact-home-right .main-title {
    font-size: 50px;
    font-weight: bold;
    margin-bottom: 30px;
  }

  .contact-home-right .form-group {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
  }

  .contact-home-right .form-group span {
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 600;
    color: #0d003b;
}

  .contact-home-right input,
  .contact-home-right textarea {
    padding: 20px 24px;
    font-size: 16px;
    border: 1px solid #dddddd;
    border-radius: 5px;
    width: 100%;
    color: #838383;
    height: 56px;
    box-sizing: border-box;
}

  .contact-home-right input.invalid,
  .contact-home-right textarea.invalid {
    border: 2px solid red;
  }

  .contact-home-right .form-row {
    display: flex;
    gap: 20px;
  }

  .contact-home-right textarea {
    height: 200px;
  }

  .contact-home-right .submit-btn {
    background: #f15523;
    color: #fff;
    padding: 18.5px 38px;
    border-radius: 50px;
    border: none;
    font-size: 16px;
    width: 20%;
    float: left;
}

  @media (max-width: 768px) {
    .contact-home {
      flex-direction: column;
    }
    .contact-home-left, .contact-home-right {
      width: 100%;
    }
    .contact-home-left .button-group {
      flex-direction: column;
      gap: 10px;
    }
    .contact-home-right .form-row {
      flex-direction: column;
    }
  }
  
    .blog-home-container{
    width: 100%;
    padding: 45px 65px;
    float: left;
    margin-top: 50px;
}

@media(max-width: 768px){
    .blog-home-container{	
	padding: 0px 25px;
	}
}

    .blog-home-header{
    width: 100%;
    margin: auto;
    text-align: center;
    float: left;
}

    .blog-home-small-title{
      width:50%;
      min-width:160px;
      font-size:0.85rem;
      color:#6b7280;
      text-transform:lowercase;
      letter-spacing:0.02em;
    }

    .blog-home-main-title{
    font-size: 45px;
    font-weight: 700;
    width: 46%;
    margin: auto;
    line-height: 50px;
}

    .blog-home-hero-title{
      font-size:2rem;
      margin:10px 0 22px 0;
      font-weight:800;
      letter-spacing:-0.02em;
    }

    .blog-home-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    float: left;
    width: 100%;
    margin-top: 50px;
}

@media(max-width: 768px){
    .blog-home-container{	
	padding: 0px 25px;
	}
	.blog-home-main-title{
		width:100%;
	}
}

    @media(max-width:1000px){
      .blog-home-grid{
        grid-template-columns:repeat(2, 1fr);
      }
    }

    @media(max-width:640px){
      .blog-home-grid{
        grid-template-columns:1fr;
      }
      .blog-home-small-title{
        width:100%;
      }
    }

    .blog-home-card{
      background:#ffffff;
      border-radius:12px;
      overflow:hidden;
      box-shadow:0 6px 18px rgba(15,23,42,0.06);
      display:flex;
      flex-direction:column;
      text-decoration:none;
      color:inherit;
      transition:transform .18s ease, box-shadow .18s ease;
      min-height:340px;
    }
    .blog-home-card:hover{
      transform:translateY(-6px);
      box-shadow:0 12px 30px rgba(15,23,42,0.12);
    }

    .blog-home-image-wrap{
      position:relative;
      width:100%;
      padding-top:56%;
      overflow:hidden;
      background:#e6e6e9;
    }

    .blog-home-image-wrap img{
      position:absolute;
      inset:0;
      width:100%;
      height:100%;
      object-fit:cover;
    }

    .blog-home-plus{
      position:absolute;
      top:12px;
      left:12px;
      background:#ffffff;
      color:#f15523;
      padding:25px;
      border-radius:8px;
      font-weight:700;
      font-size:1.2rem;
      line-height:1;
      box-shadow:0 6px 14px rgba(2,6,23,0.06);
      display:flex;
      align-items:center;
      justify-content:center;
      z-index:10;
      user-select:none;
    }

    .blog-home-card-body{
      padding:18px;
      display:flex;
      flex-direction:column;
      gap:10px;
      flex:1;
    }

    .blog-home-card-body h3{
      margin:0;
      font-size:1.05rem;
      font-weight:700;
      color:#0f1724;
    }

    .blog-home-excerpt{
      color:#6b7280;
      font-size:0.92rem;
      margin-top:6px;
    }

    .blog-home-kicker{
      margin-top:auto;
      font-size:0.78rem;
      font-weight:700;
      text-transform:uppercase;
      color:#f15523;
      letter-spacing:0.06em;
    }

	
.mini-title-c {
    color: #f15523;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center; /* CENTRARE */
    gap: 10px; /* spațiu între iconițe și text */
}

.mini-title-c .text {
    display: inline-block;
}


.catalog-section {
    position: relative; /* necesar pentru patrate */
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    overflow: hidden; /* sa nu iasa patratele in afara */
	float:left;
}

.background-squares {
    position: absolute;
    inset: 0;
    z-index: 2; /* sub continut */
    pointer-events: none; /* sa nu blocheze click-ul */
}

.background-squares::before,
.background-squares::after {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    /* doar liniile patratelor, fara background */
    background-image:
        linear-gradient(90deg, rgba(255,255,255,0.24) 1px, transparent 1px),
        linear-gradient(rgba(255,255,255,0.24) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: moveSquares 20s linear infinite;
    top: -50%;
    left: -50%;
}

/* Patratele se misca in directii diferite */
.background-squares::after {
    animation-direction: reverse;
}

/* Animatie */
@keyframes moveSquares {
    0% {
        transform: translate(0,0);
    }
    100% {
        transform: translate(50px,50px);
    }
}

.catalog-left,
.catalog-right {
    position: relative;
    z-index: 1;
}

/* Stânga */
.catalog-left {
    width: 50%;
    background: #deecf3;
    padding: 40px 65px;
	height:228px;
}

.catalog-left h1 {
    font-size: 40px;
    color: #001b33;
    margin: 0 0 10px 0;
}

.catalog-left p {
    color: #001b33;
    font-size: 18px;
    margin: 0;
}

.phone-number a{
	color:#f15523;
}

.p-contact-icon-row div a{
	color: #777777;
}

/* Dreapta */
.catalog-right {
    width: 50%;
    background: #d2e1e9;
    padding: 58px 65px;
    display: flex;
	height:228px;
    align-items: center;
    justify-content: center;
}

/* Buton */
.download-btn {
    display: inline-block;
    background: #fff;
    color: #001b33;
    padding: 15px 35px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.3s ease;
    text-transform: uppercase;
}

.download-btn:hover {
    background: #f15523;
    color: #fff;
}

@media (max-width: 768px) {
	.catalog-left{
		padding: 25px 25px;
	}
	.catalog-left h1 {
		font-size: 30px;
	}
	
	.catalog-left p {
		font-size:15px;
	}
	
	.catalog-right {
		        height: 228px;
	}
	.catalog-left {
		height: 228px;
	}
	.download-btn {
		padding: 15px 25px;
	}
	.slide-content h1 {
		font-size:40px;
		margin-top:-50px;
	}
}

/* -------------------------- FOOTER -------------------------- */
.footer{
    background:#001b33;
    display:flex;
    padding:65px 65px; /* modificat aici */
    color:#fff;
}


.footer-desc{
    width:40%; /* textul doar în 40% cum ai cerut */
    margin-bottom:20px;
    line-height:1.6;
}

  /* responsive for mobile */
  @media (max-width: 768px) {
	.footer{
    padding: 60px 25px;
  }
  
  .footer-desc{
	  width:100%;
  }
  }

/* coloana 1 – 50% */
.footer-col-1{
    width:50%;
    padding-right:40px;
}

.footer-logo{
    width:150px;
    margin-bottom:20px;
}


.footer-social img{
    width:30px;
    margin-right:10px;
}

/* coloana 2 si 3 – 25% fiecare */
.footer-col-2, .footer-col-3{
    width:25%;
}

.footer-col h2{
    font-size:20px;
    margin-bottom:15px;
}

.footer-col ul{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-col ul li{
    margin-bottom:10px;
}

.footer-col ul li a{
    color:#ffffff;
    text-decoration:none;
    position:relative;
    padding-bottom:3px;
}

/* efect underline animat din stânga */
.footer-col ul li a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-1px;
    width:0%;
    height:2px;
    background:#f15523;
    transition:0.3s ease;
}

.footer-col ul li a:hover::after{
    width:100%;
}


/* ---------------- SUB FOOTER ---------------- */
.sub-footer{
    background:#001528;
    color:#fff;
    height:30px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:13px;
}


        .p-contact-breadcrumbs {
    background: linear-gradient(98deg, #FFEBE4 16.02%, #E4E7FF 75.01%);
    padding-top: 100px;
    padding-bottom: 100px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: visible;
    z-index: 1;
}

        .p-contact-breadcrumbs-text {
            font-size: 28px;
            font-weight: 600;
            width: 50%;
            z-index: 2;
        }

.shape-left {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    height: 240px;
}

.shape-right {
    position: absolute;
    z-index: 2;
    top: 0;
    right: 0;
    height: 240px;
}

        .p-contact {
            display: flex;
            gap: 0;
            padding: 40px;
            align-items: stretch;
            flex-wrap: nowrap;
        }

        .p-contact-left {
            width: 40%;
            border-radius: 20px;
            background: linear-gradient(98deg, #FFF8F5 16.02%, #F6F7FF 75.01%);
            padding: 75px 100px;
            display: flex;
            flex-direction: column;
        }

.p-contact-right {
    width: 60%;
    background: #001B33;
    color: white;
    border-radius: 20px;
    padding: 75px 100px;
    display: flex;
    flex-direction: column;
}
		.p-contact-icon-row div{
			color: #777777;
    font-weight: 600;
    font-size: 17px;
}


		.p-contact-right h3 { font-size:40px;}
        .p-contact-section { margin-bottom: 40px; }
        .p-contact-section h3 { margin: 0 0 15px 0; font-size: 22px; }
        .p-contact-icon-row { display: flex; align-items: center; gap: 20px; margin-bottom: 10px; }
        .p-contact-icon-r { width: 40px; height: 40px; background: #f15523; border-radius: 50%; display:flex; align-items:center; justify-content:center; }
        .p-contact-icon-rg { width: 40px; height: 40px; background: #f15523; border-radius: 50%; display:flex; align-items:center; justify-content:center; }
        .p-contact-icon-r img { width:20px; filter:invert(1); }
        .p-contact-icon-rg img { width:20px; margin-top:5px;}

        .p-contact-social-icons { display:flex; gap:20px; }
        .p-contact-icon-white { width:45px; height:45px; background:#fff; border-radius:50%; border:1px solid #ddd; display:flex; align-items:center; justify-content:center; }
        .p-contact-icon-white img { width:22px; }

        .p-contact-right label { display:block; margin-top:20px; font-weight: 600; }
        .p-contact-right input, .p-contact-right textarea {
            width:100%; padding:15px; margin-top:8px; border-radius:5px; border:none;
        }

.p-contact-submit-btn {
    background: #f15523;
    color: white;
    padding: 15px 0px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    cursor: pointer;
    width: 30%;
    text-transform: uppercase;
    margin-top: 20px;
}

        .p-blog-container { display: flex; gap: 40px; padding: 40px 100px; flex-wrap: nowrap; align-items: flex-start; }
		
@media(max-width: 768px){
	.p-contact-submit-btn {
		width: 100%;
		border-radius: 5px;
		font-size: 14px;
	}
	.p-blog-container { display: flex; gap: 40px; padding: 40px 25px; flex-wrap: nowrap; align-items: flex-start; }
}

        @media(max-width: 900px){
            .p-contact { flex-wrap: wrap; }
            .p-contact-left, .p-contact-right { width:100%; padding:60px 40px; }
        }

        .p-blog-left {
            width: 70%;
        }

        .p-blog-post {
            border-radius: 20px;
            border: 1px solid #FFE4C5;
            background: #fff;
            padding: 35px;
            margin-bottom: 25px;
        }

        .p-blog-post img {
width: 100%;
    border-radius: 20px;
    margin-bottom: 20px;
    width: 100%;
    height: 300px;
    object-fit: cover;
}

        .p-blog-post h2 {
            font-size: 42px;
            margin-bottom: 20px;
        }

        .p-blog-post-info { display: flex; gap: 20px; font-size: 14px; color: #777; margin-bottom: 20px; }

        .p-blog-pagination { display: flex; gap: 10px; margin-top: 30px; }
.p-blog-pagination span {
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 57px;
    text-align: center;
    font-weight: 600;
    line-height: 35px;
    cursor: pointer;
    border: 1px solid #f15523;
    font-size: 18px;
}

.nxt{
	display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 57px;
    text-align: center;
    font-weight: 600;
    line-height: 35px;
    cursor: pointer;
    border: 1px solid #f15523;
    font-size: 18px;
}

.imb{
	    filter: invert(55%) sepia(69%) saturate(6997%) hue-rotate(349deg) brightness(99%) contrast(92%);
    width: 20px !important;
    height: 20px !important;
	border-radius:0px !important;
    float: left;
    margin-right: 7px;
}

.page-link.inactive {
    background: #111827;
    color: #e0e0e0;
    opacity: 0.6;   /* poți evidenția că nu e activă */
    cursor: pointer;
    text-decoration: none;
}
        .p-blog-pagination span.active, .p-blog-pagination span:hover { background: #f15523; color: #fff; }
		.p-blog-pagination span.active a{ color:#fff;}

        .p-blog-right {
            width: 30%;
            background: linear-gradient(98deg, #FFF8F5 16.02%, #F6F7FF 75.01%);
            border-radius: 20px;
            padding: 50px 40px 20px;
            display: flex;
            flex-direction: column;
            gap: 40px;
        }

        .p-blog-recent-posts, .p-blog-categories{ display: flex; flex-direction: column; gap: 20px; }
        .p-blog-recent-post-item { display: flex; gap: 15px; align-items: center; }
        .p-blog-recent-post-item img { width: 75px; height: 75px; border-radius: 10px; object-fit: cover; }
        .p-blog-recent-post-item-title { font-size: 16px; font-weight: 600; }
        .p-blog-recent-post-item-date { font-size: 12px; color: #777; }
        .p-blog-categories a, .p-blog-follow-us a { text-decoration: none; color: #0D003B; margin-bottom: 0px; font-size:15px; font-weight:700; }
		.p-blog-recent-posts h3, .p-blog-categories h3, .p-blog-follow-us h3 { font-size: 24px; font-weight: 700;}
		.p-blog-follow-us img {
			width: 32px;
			height: 32px;
			margin-right: 10px;
			filter: invert(88%) sepia(20%) saturate(0%) hue-rotate(358deg) brightness(112%) contrast(101%);
			border: 1px solid #ccc;
			padding: 5px;
			border-radius: 24px;
			margin-top:10px;
		}

        @media(max-width: 1200px) {
            .p-blog-container { flex-wrap: wrap; }
            .p-blog-left, .p-blog-right { width: 100%; }
        }
		
        .p-article-container { display: flex; gap: 40px; padding: 40px; flex-wrap: nowrap; align-items: flex-start; }

        .p-article-left { width: 70%; }
        .p-article-post { background: #fff; padding: 0; margin-bottom: 25px; }
        .p-article-post img {     width: 100%;
    border-radius: 20px;
    margin-bottom: 20px;
    width: 100%;
    height: 300px;
    object-fit: cover;
}
        .p-article-post-info { display: flex; gap: 20px; font-size: 14px; color: #777; margin-bottom: 20px; }
        .p-article-post h1 { font-size: 42px; margin-bottom: 20px; }
        .p-article-intro { font-weight: 600; font-size: 16px; color: #0d003b; margin-bottom: 10px; }
        .p-article-description { color: #777777; margin-bottom: 20px; }
        .p-article-subsection { margin-bottom: 20px; }
        .p-article-subsection h3 { font-weight: 600; margin-bottom: 8px; }
        .p-article-subsection p { color: #777777; }

        .p-article-right {
            width: 30%;
            background: linear-gradient(98deg, #FFF8F5 16.02%, #F6F7FF 75.01%);
            border-radius: 20px;
            padding: 50px 40px 20px;
            display: flex;
            flex-direction: column;
            gap: 40px;
        }

        .p-article-recent-posts, .p-article-categories { display: flex; flex-direction: column; gap: 20px; }
        .p-article-recent-post-item { display: flex; gap: 15px; align-items: center; }
        .p-article-recent-post-item img { width: 75px; height: 75px; border-radius: 10px; object-fit: cover; }
        .p-article-recent-post-item-title { font-size: 16px; font-weight: 600; }
        .p-article-recent-post-item-date { font-size: 12px; color: #777; }
        .p-article-categories a { text-decoration: none; color: #000; margin-bottom: 5px; }

        .p-article-comment {
            margin-top: 30px;
            margin-bottom: 30px;
            border: none;
            border-radius: 20px;
            background: linear-gradient(98deg, #FFF8F5 16.02%, #F6F7FF 75.01%);
            padding: 50px 50px 30px;
        }
        .p-article-comment h3 { font-size: 24px; font-weight: 700; color: #0d003b; margin-bottom: 15px; }
        .p-article-comment p { font-size: 14px; color: #777777; margin-bottom: 20px; }
        .p-article-comment span { display: block; margin-bottom: 5px; font-weight: 600; }
        .p-article-comment input[type="text"], .p-article-comment textarea { width: 100%; padding: 12px; margin-bottom: 15px; border-radius: 10px; border: none; }
        .p-article-comment textarea { height: 200px; resize: none; }
        .p-article-comment label { display: flex; align-items: center; font-size: 13.4px; color: #0d003b; margin-bottom: 20px; }
        .p-article-comment input[type="checkbox"] { margin-right: 10px; }
        .p-article-comment button {
            border: none;
            display: inline-block;
            cursor: pointer;
            outline: 0;
            -webkit-transition: 0.5s;
            transition: 0.5s;
            border-radius: 50px;
            text-transform: capitalize;
            padding: 17.5px 40px;
            background: linear-gradient(272deg, #F15523 31.24%, #FF9615 99.07%);
            color: #fff;
            font-weight: 500;
            font-size: 16px;
        }

        @media(max-width: 1200px) {
            .p-article-container { flex-wrap: wrap; }
            .p-article-left, .p-article-right { width: 100%; }
        }
		
        .p-products-container {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            padding: 40px 100px;
            justify-content: space-between;
        }
		
		@media (max-width: 768px){
			        .p-products-container {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            padding: 40px 25px;
            justify-content: space-between;
        }
		}
		
.p-product-box {
    position: relative; /* pentru badge-ul absolut */
    background: #fff;
    border: 1px solid #FFE4C5;
    border-radius: 20px;
    padding: 20px;
    width: 23%;
    box-sizing: border-box;
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
}

.sale-badge {
    position: absolute;
    top: 0%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(241, 85, 35, 0.9);
    color: #fff;
    font-weight: 500;
    letter-spacing: 0.2px;
    font-size: 10px;
    padding: 10px 15px;
    border-radius: 12px;
    text-transform: uppercase;
    text-align: center;
    z-index: 1;
}

.p-product-box:hover { transform: translateY(-5px); }

.img-wrapper {
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 15px;
    position: relative; /* pentru badge */
}

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

.p-product-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.p-product-header .title-price {
    display: flex;
    flex-direction: column;
}

.p-product-header .title-price h4 {
    font-size: 18px;
    margin: 0 0 5px 0;
}

.p-product-header .title-price .price {
    font-size: 16px;
    color: #f15523;
    font-weight: bold;
}

.p-product-box button {
    border: 1px solid #f15523;
    background: transparent;
    color: #f15523;
    text-transform: uppercase;
    padding: 10px 25px;
    border-radius: 36px;
    cursor: pointer;
    font-weight: 500;
    transition: 0.3s;
}

.p-product-box button:hover {
    background: #f15523;
    color: #fff;
}

.p-product-box p {
    font-size: 14px;
    color: #777;
    margin: 15px 0 0 0;
}

/* Container flex pentru produse */
.products-container {
    display: flex;
    flex-wrap: wrap; /* păstrează toate produsele pe rând până la lățimea containerului */
    justify-content: flex-start;
}

        .p-products-pagination {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin: 30px 0;
        }
        .p-products-pagination span, .p-products-pagination a {
            display: inline-block;
            width: 40px;
            height: 40px;
            line-height: 40px;
            text-align: center;
            border-radius: 50%;
            border: 1px solid #f15523;
            text-decoration: none;
            color: #0D003B;
            font-weight: 700;
            transition: background 0.3s, color 0.3s;
        }
        .p-products-pagination span.active, .p-products-pagination a:hover { background: #f15523; color: #fff; border-color: #f15523; }

        @media(max-width: 1200px) { .p-product-box { width: calc(33.333% - 13px); } }
        @media(max-width: 900px) { .p-product-box { width: calc(50% - 10px); } }
        @media(max-width: 600px) { .p-product-box { width: 100%; } }
		
.pd-article-container { display: flex; gap: 40px; padding: 40px; flex-wrap: nowrap; }
.pd-article-left { width: 50%; }
.pd-article-left .pd-article-main-img { width: 100%; border-radius: 20px; margin-bottom: 15px; }
.pd-article-left .pd-article-thumbnails { display: flex; gap: 10px; }
.pd-article-thumbnails img {
    width: 100px;
    height: 100px;
    border-radius: 10px;
    cursor: pointer;
    object-fit: cover;
    border: 1px solid #ccc;
}

.pd-article-thumbnails img.active {
    border: 2px solid #f15523;
}
.pd-article-right { width: 50%; display: flex; flex-direction: column; gap: 20px; }
.pd-article-right h1 { font-size: 28px; margin-bottom: 10px; }
.pd-article-stars { display: flex; gap: 5px; margin-bottom: 10px; }
.pd-article-stars span { color: #000; font-size: 20px; }
.pd-article-price { font-size: 24px; font-weight: 600; margin-bottom: 10px; }
.pd-article-description { color: #777; margin-bottom: 20px; }
.pd-article-info { border-top: 1px solid #ccc; padding-top: 15px; display: flex; flex-direction: column; gap: 5px; }
.pd-article-info span { display: block; }
.pd-article-share { margin-top: 30px; }
.pd-article-share a { text-decoration: none; margin-right: 15px; color: #000; }
.pd-article-full-description { max-width: 60%; margin: 40px auto 0; }
.pd-article-full-description h2 { font-size: 24px; margin-bottom: 15px; }
.pd-article-full-description p { margin-bottom: 15px; color: #777; line-height: 1.5; }
@media(max-width: 900px) { .pd-article-container { flex-wrap: wrap; } .pd-article-left, .pd-article-right { width: 100%; } .pd-article-full-description { max-width: 100%; } }

.pd-article-main-media img,
.pd-article-main-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pd-article-main-media {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.alert {
    position: fixed;   /* fix față de ecran */
    bottom: 20px;      /* distanță de jos față de ecran */
    right: 20px;       /* distanță din dreapta față de ecran */
    padding: 15px 45px 15px 15px;
    max-width: 400px;
    border-radius: 5px;
    font-family: Arial, sans-serif;
    text-align: left;
    z-index: 9999;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.alert.succes {
    background-color: #d4edda;
    color: #155724;
}

.alert.error {
    background-color: #f8d7da;
    color: #721c24;
}

.alert.warning {
    background-color: #fff3cd;
    color: #856404;
}

/* X în colțul drept jos al mesajului */
.alert .closebtn {
    position: absolute;
    bottom: 10px;
    right: 10px;
    color: #000;
    font-weight: bold;
    cursor: pointer;
    font-size: 18px;
    background: rgba(255,255,255,0.8);
    border-radius: 50%;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.event-home-slider-container {
    position: relative;
    width: 100%;
    margin: 0 auto;
	padding:25px;
    overflow: hidden;
	background: linear-gradient(98deg, #FFF8F5 16.02%, #F6F7FF 75.01%);
}

.event-home-slides-wrapper {
    display: flex;
    transition: transform 0.8s ease-in-out;
}

.event-home-slide {
    display: flex;
    width: 100%;
    min-width: 100%;
    gap: 50px;
    padding: 60px 25px;
    box-sizing: border-box;
    align-items: center;
}

/* LEFT IMAGES */
.event-home-left {
    width: 50%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.event-home-left img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* INDIVIDUAL BORDER RADIUS */
.event-home-img-1 { border-radius: 0 165px 0 0 !important; }
.event-home-img-2 { border-radius: 0 0 200px 200px; }
.event-home-img-3 { border-radius: 200px 200px 0 0; }
.event-home-img-4 { border-radius: 0 0 0 165px; }

/* RIGHT CONTENT */
.event-home-right {
    width: 50%;
}

/* MINI TITLE */
.event-home-mini-title {
    font-size: 16px;
    color: #2b7bff;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
}

/* MAIN TITLE */
.event-home-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* DESCRIPTION */
.event-home-desc {
font-size: 18px;
    font-weight: 500;
    margin-bottom: 35px;
    color: #777777;
}

/* ICON BOXES 2x2 */
.event-home-icon-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 20px;
    margin-bottom: 30px;
}

.event-home-icon-1 {
  background-color: #FFEBE4;
  color: #F15523;
}

.event-home-icon-2,
.event-home-icon-3 {
  background-color: #E7E9FF;
  color: #2B7BFF;
}

.event-home-icon-4 {
  background-color: #FFEBE4; /* dacă vrei să repete pattern-ul */
  color: #F15523;
}


.event-home-icon-box {
    display: flex;
    align-items: center;
    gap: 15px;
}

.event-home-icon {
    width: 71px;
    height: 71px;
    line-height: 71px;
    text-align: center;
    border-radius: 10px;
    font-size: 40px;
    display: inline-block;
    color: #F15523;
    font-weight: bold;
}

.event-home-icon-title {
    font-size: 16px;
    font-weight: 600;
}

/* SECOND DESCRIPTION */
.event-home-desc-2 {
font-size: 18px;
    font-weight: 500;
    margin-bottom: 35px;
    color: #777777;
}

/* BUTTON */
.event-home-btn {
background: #f15523;
    color: #fff;
    text-align: center;
    display: inline-block;
    text-decoration: none;
    line-height: normal;
    padding: 18.5px 38px;
    border-radius: 50px;
    border: none;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.event-home-btn:hover {
    background: #d64b1f;
}

/* NAVIGATION */
.event-home-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
}

.event-home-nav button {
    pointer-events: all;
    background: rgba(0,0,0,0.4);
    border: none;
    color: #fff;
    font-size: 24px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.event-home-nav button:hover {
    background: rgba(43,123,255,0.8);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .event-home-slide {
        flex-direction: column;
    }
    .event-home-left, .event-home-right {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .event-home-slide {
        flex-direction: column-reverse; /* pozele sub div-ul drept */
    }
    .event-home-left {
        grid-template-columns: repeat(2, 1fr);
    }
    .event-home-left img {
        aspect-ratio: 1 / 1;
        object-fit: cover;
        border-radius: 20px !important;
        width: 100%;
        height: auto;
    }
    .event-home-icon-grid {
        grid-template-columns: repeat(2, 1fr);
    }
	
	.event-home-title {
		font-size:30px;
		line-height:40px;
	}
	.event-home-desc {
		font-size:16px;
	}
	.event-home-desc-2 {
		font-size:16px;
	}
	.event-home-icon{
		width: 60px;
		height: 60px;
		line-height: 60px;
		font-size: 30px;
	}
	.event-home-nav button{
		display:none;
	}
	.p-contact-right h3 {
    font-size: 26px;
	}
	.event-home-slider-container {
		padding:0px;
	}
		.text-header{
		display:none;
	}
}


/* Container filtru */
.filter-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0px 100px;
    margin-top: 60px;
    border-radius: 10px;
    box-sizing: border-box;
}

/* Input-uri */
.filter-container input {
    flex: 1 1 150px; /* se adaptează la lățime */
    padding: 10px 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

/* Focus */
.filter-container input:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0,123,255,0.5);
}

/* Placeholder */
.filter-container input::placeholder {
    color: #999;
    font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
    .filter-container {
        padding: 0px 20px;   /* mai puțin padding pe mobil */
    }
    .filter-container input {
        flex: 1 1 100%;
    }
}


.privacy-container{
	    font-family: Arial, sans-serif;
    line-height: 1.6;
	width:100%;
    position: relative;
    width: 100%;
    background: linear-gradient(98deg, #FFF8F5 16.02%, #F6F7FF 75.01%);
    padding: 100px 65px;
}

.partener-oficial-home {
    position: relative;
    display: flex;
    align-items: center;
    height: 100px;
    background-color: #698999;
    overflow: hidden;
    padding-left: 20px;
    box-sizing: border-box;
}

/* Text și imagine care se mișcă împreună */
.partener-content {
    display: flex;
    align-items: center;
    white-space: nowrap;
    animation: slide 12s linear infinite;
}

.partener-content img {
    filter: brightness(0) invert(1);
    margin-right: 20px;
    height: 60px;
}

/* Text */
.partener-content span {
    font-size: 30px;
    color: white;
}

/* Animație slide de la stânga la dreapta */
@keyframes slide {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.bubble {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    animation: bubbleMove linear infinite;
    opacity: 0.5; /* opacitate inițială */
}

/* Animație verticală cu efect de scale și opacitate */
@keyframes bubbleMove {
    0% { transform: translateY(0) scale(0.3); opacity: 0.5; }
    50% { opacity:0.8; }
    100% { transform: translateY(-150px) scale(1); opacity:0; }
}

/* Linii verticale */
.line {
    position: absolute;
    width: 2px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    animation: lineMove linear infinite;
}

@keyframes lineMove {
    0% { transform: translateY(100%); opacity: 0.3; }
    50% { transform: translateY(50%); opacity: 0.7; }
    100% { transform: translateY(-150%); opacity: 0; }
}

.share-btn{
	    background: #f15523;
    border: none;
    padding: 5px 5px;
    border-radius: 5px;
    color: #ffffff;
}