body {
    font-family: sans-serif; /* Font de sistem, incarcare instanta */
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: #222;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px; /* Rămâne neschimbat pentru Desktop */
}

/* Stilul specific pentru Mobil (ecrane sub 768px) */
@media (max-width: 768px) {
    .container {
        padding-left: 7px;
        padding-right: 7px;
        padding-top: 15px;    /* Opțional: am lăsat un pic de spațiu sus/jos */
        padding-bottom: 15px;
    }
}




/* Layout General */
header {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: #2d3436;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: -1px;
}

/* Navigație Desktop */
.navbar ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 0;
}

.navbar ul li a {
    text-decoration: none;
    color: #000;
    font-weight: 600;
    font-size: 0.9rem;
    transition: 0.3s;
}

.navbar ul li a:hover { color: #0984e3; }

.btn-contact {
    background: #0076cc;  
    color: #ffffff !important;
    padding: 12px 25px;  
    border-radius: 5px;
    text-decoration: none;
    display: inline-flex; 
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 600;
    min-width: 120px; 
    transition: background 0.3s ease;
}

.btn-contact:hover {
    background: #005fa3; /* Efect de hover pentru UX */
}

/* Ascundere checkbox și burger pe desktop */
#menu-bar, .burger-label { display: none; }

/* MOBILE RESPONSIVE (Media Query) */
@media (max-width: 768px) {
    .burger-label {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
    }
    
    .burger-label span {
        width: 25px;
        height: 3px;
        background: #2d3436;
        border-radius: 2px;
        transition: 0.3s;
    }

    .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        border-top: 1px solid #eee;
        display: none; /* Ascuns default pe mobil */
    }

    .navbar ul {
        flex-direction: column;
        padding: 20px;
        gap: 0;
    }

    .navbar ul li { width: 100%; }

    .navbar ul li a {
        display: block;
        padding: 15px 0;
        border-bottom: 1px solid #f9f9f9;
    }

    /* Logica de funcționare a meniului (Pure CSS) */
    #menu-bar:checked ~ .navbar { display: block; }
    
    /* Animație Burger în X când e deschis */
    #menu-bar:checked + .burger-label span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    #menu-bar:checked + .burger-label span:nth-child(2) { opacity: 0; }
    #menu-bar:checked + .burger-label span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}




.main-content .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    font-size: 1.1rem;
    color: #444;
}
.main-content h2 { color: #2d3436; margin-top: 40px; }

.btn-primary {
    display: inline-block;
    background-color: #000000; /* Negru curat */
    color: #ffffff !important; /* Text alb */
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px; /* Colțuri ușor rotunjite, stil modern */
    transition: all 0.3s ease-in-out; /* Tranziție fină pentru culori */
    border: 2px solid #000000;
    cursor: pointer;
    text-align: center;
}

.btn-primary:hover {
    background-color: #e63946; /* Roșu modern, nu foarte strident */
    border-color: #e63946;
    color: #ffffff !important;
    transform: translateY(-2px); /* Efect discret de ridicare */
    box-shadow: 0 5px 15px rgba(230, 57, 70, 0.3); /* Umbră roșiatică difuză */
}




.services-container {
        display: flex;
        justify-content: center; 
        gap: 20px;
        padding: 40px 7px; 
        flex-wrap: wrap;
        width: 100%;
        box-sizing: border-box; 
    }

    .service-card {
        flex: 1;
        min-width: 250px;
        max-width: 350px; 
        background: #ffffff;
        border-radius: 15px;
        padding: 30px 20px;
        text-align: center;
        transition: all 0.4s ease;
        border: 1px solid #f0f0f0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        display: flex;
        flex-direction: column;
        align-items: center;
        box-sizing: border-box; 
    }
    .service-card svg {
    width: 45px !important;
    height: 45px !important;
    min-width: 45px;
    min-height: 45px;
    fill: #007bff;
    display: block; /* Forțează randarea */
    transition: fill 0.3s;
}
    

    /* Adaptare pentru mobil - REPARATIA */
    @media (max-width: 768px) {
        .services-container {
            flex-direction: column;
            align-items: center; 
            padding: 30px 7px;
        }
        
        .service-card {
            width: 100%;
            min-width: 0;
            max-width: 100%;
            margin: 0;
        }
    }
    
    
    

.about-split {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding: 30px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text {
    flex: 1;
}

.about-text .subtitle {
    color: #007bff;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

.about-text h2 {
    font-size: 2.5rem;
    color: #2d3436;
    line-height: 1.2;
    margin-bottom: 20px;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.check-list li {
    padding: 8px 0;
    font-weight: 400;
    color: #2d3436;
}

.about-image-container {
    flex: 1;
    display: flex;
    justify-content: center;
}

.custom-img {
    width: 100%;
    max-width: 550px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Adaptare Mobil */
@media (max-width: 768px) {
    .about-split {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }
    .check-list li {
        text-align: left;
    }
}



.section-split {
    display: flex;
    gap: 40px;
    padding: 60px 0;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}

/* Raportul 2/3 pentru text */
.split-content-text {
    flex: 2;
}

/* Raportul 1/3 pentru imagine */
.split-content-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.split-content-text h2 {
    text-align: left; /* Suprascriem centrarea globala doar aici daca vrei sa fie ca in poza */
    margin-top: 0;
}

.split-content-text ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.split-content-text ul li {
    padding: 8px 0 8px 25px;
    position: relative;
    font-size: 1.05rem;
    color: #444;
}

.split-content-text ul li::before {
    content: "•";
    color: #000;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Stil pentru imaginea unica din dreapta */
.custom-img {
    width: 100%;
    border-radius: 15px;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Adaptare Mobil */
@media (max-width: 992px) {
    .section-split {
        flex-direction: column;
        padding: 40px 10px;
    }
    .split-content-text, .split-content-image {
        flex: none;
        width: 100%;
    }
}







.faq-section {
    max-width: 800px;
    margin: 60px auto;
    padding: 0 20px;
}

.faq-container {
    margin-top: 30px;
}

details {
    background: #ffffff;
    border: 1px solid #eee;
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

details[open] {
    border-color: #000;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

summary {
    padding: 20px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    list-style: none;
    position: relative;
    outline: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Adaugam un mic plus/minus in dreapta */
summary::after {
    content: '+';
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

details[open] summary::after {
    content: '−';
    transform: rotate(180deg);
}

.faq-content {
    padding: 0 20px 20px 20px;
    line-height: 1.6;
    color: #555;
    border-top: 1px solid #fafafa;
}

/* Scoatem sageata standard din Chrome/Safari */
summary::-webkit-details-marker {
    display: none;
}


.comparison-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.comparison-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.comparison-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    background: #fff;
}

.image-box {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.image-box img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Efect discret la hover */
.image-box:hover img {
    transform: scale(1.03);
}

/* Etichetele (Badges) */
.badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    padding: 8px 15px;
    font-size: 0.75rem;
    font-weight: bold;
    color: #fff;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.badge-before { background-color: #000; }
.badge-after { background-color: #334f0c; }

.comparison-details {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 15px;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Adaptare Mobil */
@media (max-width: 768px) {
    .comparison-card {
        grid-template-columns: 1fr;
    }
    .comparison-details {
        grid-template-columns: 1fr;
        grid-column: span 1;
        text-align: left;
    }
}







/* Containerul Grid  portofoliu 3 imagini*/
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 coloane pe desktop */
    gap: 10px; /* Distanța de 10px între imagini */
    padding: 20px 0;
    max-width: 1200px;
    margin: 0 auto;
}

/* Elementul individual (Rama pozei) */
.portfolio-item {
    position: relative;
    overflow: hidden; /* Esențial pentru ca imaginea să nu iasă din cadru la zoom */
    border-radius: 8px; /* Colțuri ușor rotunjite pentru aspect modern */
    aspect-ratio: 4 / 3; /* Păstrează toate pozele la aceeași proporție */
    background: #f0f0f0;
}

/* Imaginea și efectul de mărire */
.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Imaginea umple cadrul fără să se deformeze */
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94); /* Tranziție fină */
    display: block;
}

/* Efectul la trecerea mouse-ului (Hover) */
.portfolio-item:hover img {
    transform: scale(1.1); /* Se mărește cu 10% */
}

/* Adaptare pentru Mobil */
@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr; /* Una sub alta pe mobil */
        padding: 10px 7px;
        gap: 20px; 
    }
    
    .portfolio-item {
        aspect-ratio: 4 / 3; 
        height: auto;
    }

    .portfolio-item img {
               object-position: center top; 
    }
}






.cta-modern {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    padding: 60px 20px;
    border-radius: 20px;
    margin: 40px auto;
    max-width: 1100px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* Efect de lumina difuza in fundal */
.cta-modern::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(230,57,70,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    letter-spacing: -1px;
    color: #ffffff !important;
}

.cta-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    color: #ffffff;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Stil Butoane */
.btn-cta {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 1.1rem;
}

.whatsapp {
    background: #25D366;
    color: white;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.phone {
    background: white;
    color: black;
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}

/* Efecte Mouse (Hover) */
.btn-cta:hover {
    transform: translateY(-5px) scale(1.05);
}

.whatsapp:hover {
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.5);
    background: #20ba5a;
}

.phone:hover {
    background: #e63946;
    color: white;
    box-shadow: 0 15px 30px rgba(230, 57, 70, 0.4);
}

/* Adaptare Mobil */
@media (max-width: 768px) {
    .cta-modern {
        padding: 40px 15px;
        margin: 20px 7px; /* Cei 7px ceruti de tine */
    }
    
    .cta-content h2 {
        font-size: 1.6rem;
    }
    
    .btn-cta {
        width: 100%; /* Butoane mari pe tot ecranul mobilului */
        justify-content: center;
    }
}


.site-footer {
    background-color: #111; /* Negru intens pentru contrast cu sectiunea CTA */
    color: #ffffff;
    padding: 40px 20px 20px;
    margin-top: 60px;
    border-top: 3px solid #e63946; /* Linie rosie de accent */
}

.footer-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr; /* Prima coloana mai lata pentru text */
    gap: 50px;
}

.footer-column h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.footer-column p {
    font-size: 1rem;
    line-height: 1.7;
    color: #fff;
    margin: 5px 0;
}

.footer-column a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #e63946;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #222;
    font-size: 1rem;
    color: #fff;
}

/* Adaptare Mobil */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr; /* Una sub alta pe telefon */
        text-align: center;
    }
}



/* Container principal */
.servicii-retapitare {
    padding: 60px 20px;
    background: transparent; /* Fără fundal */
    font-family: 'Inter', sans-serif; /* Sau fontul temei tale */
}

.grid-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
}

/* Titlul din stânga (stilul din imaginea ta) */
.header-servicii {
    flex: 1 1 30%;
    min-width: 250px;
}

.header-servicii h2 {
    font-size: 2.5rem;
    line-height: 1.1;
    font-weight: 800;
    color: #222;
}

/* Lista de servicii din dreapta */
.lista-servicii {
    flex: 1 1 60%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.serviciu-item {
    transition: all 0.3s ease;
    border-left: 3px solid transparent; /* Efect discret la hover */
    padding-left: 15px;
}

/* Efect Hover modern */
.serviciu-item:hover {
    border-left: 3px solid #e63946; /* Poți schimba culoarea cu cea a brandului tău */
    transform: translateX(5px);
}

.serviciu-item h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 700;
    color: #111;
}

.serviciu-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

/* Adaptabilitate pe mobil */
@media (max-width: 768px) {
    .header-servicii {
        margin-bottom: 40px;
    }
}



/* Container pentru centrare */
.footer-social-wrapper {
    padding: 20px 15px; /* Adăugat padding lateral pentru siguranță */
    text-align: center;
    box-sizing: border-box;
}

/* Butonul Facebook Optimizat */
.btn-facebook-footer {
    display: inline-flex;
    align-items: center;
    background-color: #0076cc;
    color: #ffffff !important;
    padding: 12px 24px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    min-height: 48px; /* Optimizat pentru touch (standard Google) */
    box-sizing: border-box; /* Previne depășirea lățimii */
}

/* Stil pentru litera 'f' */
.fb-icon {
    font-family: sans-serif;
    font-size: 1.3rem;
    font-weight: bold;
    margin-right: 12px;
    border: 2px solid #fff;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    flex-shrink: 0; /* Previne strivirea iconiței pe ecrane mici */
}

/* Efect de hover */
.btn-facebook-footer:hover {
    background-color: #3b5998;
    transform: scale(1.05);
    color: #ffffff !important;
}

/* Adaptare mobil */
@media (max-width: 480px) {
    .btn-facebook-footer {
        display: flex; 
        width: 100%; 
        max-width: 100%;
        justify-content: center;
        box-sizing: border-box;
    }
}



/* Grid pe 3 coloane */
.grid-galerie-3col {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 coloane egale */
    gap: 15px;
    margin: 20px 0;
}

/* Grid-ul NOU de 2 coloane */
.grid-galerie-2col {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important; /* Doar 2 coloane */
    gap: 20px;
    margin-bottom: 30px;
}


/* Responsivitate: 2 coloane pe tabletă pentru ambele tipuri de grid */
@media (max-width: 992px) { 
    .grid-galerie-3col, 
    .grid-galerie-2col { 
        grid-template-columns: repeat(2, 1fr); 
    } 
}

/* Responsivitate: 1 coloană pe mobil (ecrane sub 600px) */
@media (max-width: 600px) { 
    .grid-galerie-3col, 
    .grid-galerie-2col { 
        grid-template-columns: 1fr; 
    } 
}

.imagine-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    border-radius: 7px;
    background: #f0f0f0;
}

.img-grid {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.plus-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity 0.3s ease;
}

.plus-sign { color: white; font-size: 60px; font-weight: 200; }

.item-galerie:hover .plus-overlay { opacity: 1; }
.item-galerie:hover .img-grid { transform: scale(1.1); }

/* Stiluri Lightbox (Local) */
.lightbox-overlay {
    position: fixed; z-index: 9999; top: 0; left: 0;
    width: 100%; height: 100%; background: rgba(0,0,0,0.9);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
}

.lightbox-content { max-width: 90%; max-height: 80vh; border: 3px solid #fff; }

.close-lightbox {
    position: absolute; top: 20px; right: 30px;
    color: #fff; font-size: 50px; cursor: pointer;
}

#caption-text { color: #ccc; margin-top: 15px; font-family: sans-serif; }






