/* --- CONFIGURAȚIE GLOBALĂ FILVENT 2026 --- */
:root {
    /* Culori Principale */
    --primary: #2563eb;          /* Albastrul Neptun */
    --primary-glow: rgba(37, 99, 235, 0.4);
    
    /* Background & Suprafețe */
    --bg: #030712;               /* Negru adânc (Rich Black) */
    --bg-accent: #080c17;        /* Secțiuni secundare */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    
    /* Culori Text */
    --text: #f8fafc;             /* Alb perlat (High contrast) */
    --text-muted: #94a3b8;       /* Text secundar/descrieri */
    
    /* Efecte */
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- RESET & BAZĂ --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg);
    scroll-padding-top: 120px;
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased; /* Face fontul Poppins să arate mai clar pe Mac/iOS */
}

/* --- TIPOGRAFIE (Stil NeptunEng) --- */
h1, h2, h3, h4 {
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1px;
}

p {
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 400;
}

.text-gradient {
    background: linear-gradient(to right, #ffffff, var(--primary));
    -webkit-background-clip: text; /* Taie fundalul după forma literelor */
    background-clip: text;         /* Versiunea standard */
    -webkit-text-fill-color: transparent; /* FACE TEXTUL TRANSPARENT (Vital!) */
    color: transparent;            /* Fallback pentru browsere vechi */
    display: inline-block;
}
/* Container standard de lățime */
.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 90%;
}

/* --- NAVIGATION STYLE ELITE (POPPINS EDITION) --- */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 30px 0; /* Spațiu generos la început */
    transition: var(--transition); /* Folosim variabila definită anterior */
}

/* Efectul de compactare la scroll */
header.scrolled {
    padding: 15px 0;
}

.nav-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr; /* Structură simetrică NeptunEng */
    align-items: center;
    padding: 12px 35px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    transition: var(--transition);
}

/* Schimbare fină la scroll */
header.scrolled .nav-container {
    background: rgba(3, 7, 18, 0.9);
    border-color: rgba(37, 99, 235, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* LOGO */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 80px; 
    width: auto; 
    transition: var(--transition);
    display: block;
}

header.scrolled .logo-img {
    height: 35px;
}
/* NAV LINKS (CENTER) */
.nav-links {
    display: flex;
    gap: 35px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    opacity: 0.6;
    transition: 0.3s;
}

.nav-links a:hover, 
.nav-links a.active {
    opacity: 1;
    color: var(--primary);
}

/* PHONE PILL (RIGHT) */
.nav-right {
    display: flex;
    justify-content: flex-end;
}

.phone-pill {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    padding: 10px 22px;
    border-radius: 100px;
    color: var(--text);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.phone-pill i {
    color: var(--primary);
    font-size: 14px;
}

.phone-pill:hover {
    background: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px var(--primary-glow);
}

.phone-pill:hover i {
    color: #fff;
}

/* BURGER (HIDDEN ON DESKTOP) */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
}

.burger span {
    width: 25px;
    height: 2px;
    background-color: var(--text);
    transition: 0.3s;
}
@media (max-width: 1024px) {
    .nav-center {
        display: none !important; 
    }

    .burger {
        display: flex !important;
        z-index: 1100; /* Burgerul trebuie să fie deasupra meniului */
    }

    .nav-links {
        position: fixed !important;
        top: 0 !important;
        right: -100% !important; /* Forțăm poziția de start */
        width: 80% !important;
        height: 100vh !important;
        background: #030712 !important; 
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 30px !important;
        transition: 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0) !important;
        z-index: 1050 !important; /* Meniul sub burger, dar peste restul site-ului */
        border-left: 1px solid var(--glass-border) !important;
        visibility: visible !important; /* Ne asigurăm că nu e ascuns prin eroare */
    }

    /* Regula magică: Când JS adaugă .active, meniul TREBUIE să vină la right: 0 */
    .nav-links.active {
        right: 0 !important;
        box-shadow: -10px 0 30px rgba(0,0,0,0.5) !important;
    }

    .nav-links li {
        opacity: 0;
        transform: translateX(20px);
    }

    .nav-links.active li {
        opacity: 1;
        transform: translateX(0);
        transition: 0.4s ease forwards;
    }
} /* <--- Această acoladă închide blocul MEDIA. E OBLIGATORIE! */
/* --- CONTAINER #2: HERO SECTION (OPTIMIZAT) --- */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 300px; 
    padding-bottom: 100px;
    overflow: hidden;
    text-align: center;
    background-color: var(--bg);
}

/* Efectul de fundal (Glow) */
.glow-orb {
    position: absolute;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.12) 0%, transparent 70%);
    top: -10%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 1;
}

/* Badge-ul de sus */
.badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(37, 99, 235, 0.08);
    border: 1px solid rgba(37, 99, 235, 0.3);
    border-radius: 100px;
    color: var(--primary);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 35px;
    animation: fadeInUp 0.8s ease forwards;
}

/* Titlul Principal - Corecție Line-Height & Letter-Spacing */
.hero h1 {
    font-size: clamp(2.5rem, 7vw, 5.5rem);
    font-weight: 800;
    line-height: 1.1; /* Am mărit puțin pentru a evita suprapunerea rândurilor */
    letter-spacing: -0.03em; /* Poppins arată mai premium ușor strâns */
    margin-bottom: 35px;
    color: var(--text);
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

/* Descrierea - Corecție Spațiere față de butoane */
.hero-lead {
    max-width: 800px;
    margin: 0 auto 60px; /* Am mărit de la 45px la 60px pentru aerisire */
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.7;
    animation: fadeInUp 1.2s ease forwards;
    animation-delay: 0.4s;
    opacity: 0;
}

/* Grupul de butoane */
.hero-actions {
    display: flex;
    gap: 25px; /* Spațiu mai mare între cele două butoane */
    justify-content: center;
    align-items: center;
    animation: fadeInUp 1.4s ease forwards;
    animation-delay: 0.6s;
    opacity: 0;
}

/* Buton Principal (Începe un proiect) */
.btn-primary {
    background: var(--primary);
    color: #fff;
    padding: 18px 45px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    box-shadow: 0 10px 25px var(--primary-glow);
    border: none;
    cursor: pointer;
    min-width: 220px; /* Uniformizare dimensiune */
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px var(--primary-glow);
    filter: brightness(1.1);
}

/* Buton Secundar (Vezi Serviciile) */
.btn-outline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--text);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 18px 45px;
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    transition: var(--transition);
    min-width: 220px; /* Uniformizare dimensiune */
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--text);
}

.btn-outline i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.btn-outline:hover i {
    transform: translateX(5px);
}

/* Animația de intrare */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .btn-nav,
    .contact-form-container button,
    .cta-action .btn-cta {
        width: 100%;
        padding: 15px;
        justify-content: center;
        text-align: center;
    }
}
/* --- CONTAINER #3: EXPERTISE SECTION --- */

.expertise {
    padding: 100px 0; /* Spațiu generos sus-jos */
    background-color: var(--bg);
    position: relative;
    z-index: 10;
}

/* Header-ul secțiunii (Badge + Titlu) */
.section-header {
    text-align: left;
    margin-bottom: 60px;
}

.section-header .badge {
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--text);
    line-height: 1.2;
}

/* Grid-ul de carduri */
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* Stilul Cardului (Glassmorphism) */
.exp-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 50px 40px;
    border-radius: 30px;
    position: relative;
    transition: var(--transition);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Numărul mare din fundal (01, 02, 03) */
.exp-number {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 5rem;
    font-weight: 900;
    color: var(--primary);
    opacity: 0.07; /* Foarte discret în fundal */
    line-height: 1;
    z-index: 0;
    transition: var(--transition);
}

.exp-content {
    position: relative;
    z-index: 1;
}

.exp-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text);
}

.exp-card p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-muted);
}

/* Săgeata decorativă de jos */
.exp-arrow {
    margin-top: auto;
    padding-top: 30px;
    color: var(--primary);
    font-size: 1.2rem;
    transition: var(--transition);
}

/* Efecte de HOVER */
.exp-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary);
    transform: translateY(-10px);
}

.exp-card:hover .exp-number {
    opacity: 0.2;
    transform: scale(1.1);
}

.exp-card:hover .exp-arrow {
    transform: translateX(10px);
}
.exp-footer {
    margin-top: auto; /* Împinge butonul la bază, indiferent de lungimea textului */
    padding-top: 25px;
}

.btn-card {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    color: var(--text);
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.btn-card i {
    font-size: 10px;
    color: var(--primary);
    transition: transform 0.3s ease;
}

/* Efect de Hover stil Elite */
.btn-card:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
    box-shadow: 0 5px 15px var(--primary-glow);
    transform: translateY(-2px);
}

.btn-card:hover i {
    color: #ffffff;
    transform: translateX(4px);
}
/* Responsivitate pentru ecrane mici */
@media (max-width: 768px) {
    .expertise {
        padding: 80px 0;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr; /* Cardurile se pun unul sub altul pe mobil */
    }
}
/* --- CONTAINER #4: ABOUT SECTION --- */

.about {
    padding: 120px 0;
    background-color: var(--bg-accent); /* O nuanță ușor diferită pentru separare */
    overflow: hidden;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr; /* Textul ocupă puțin mai mult loc */
    gap: 80px;
    align-items: center;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.8;
}

.about-text .highlight {
    font-size: 1.3rem;
    color: var(--text);
    font-weight: 600;
    border-left: 3px solid var(--primary);
    padding-left: 20px;
    margin-bottom: 30px;
}

/* Statistici rapide sub text */
.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
}

.stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

/* Stil Imagine cu Decorațiuni */
.about-image-container {
    position: relative;
    padding: 20px;
}

.about-img {
    width: 100%;
    height: auto;
    border-radius: 40px;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    filter: grayscale(20%); /* Look industrial discret */
    transition: var(--transition);
}

.about-img:hover {
    filter: grayscale(0%);
    transform: scale(1.02);
}

/* Decorul din spatele pozei */
.image-border-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    height: 80%;
    border: 2px solid var(--primary);
    border-radius: 40px;
    z-index: 1;
    opacity: 0.3;
}

.experience-badge {
    position: absolute;
    bottom: 40px;
    left: -20px;
    background: var(--primary);
    padding: 20px 30px;
    border-radius: 20px;
    color: white;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 20px var(--primary-glow);
}

/* Responsive */
@media (max-width: 1024px) {
    .nav-center {
        display: none; /* Rămâne ascuns implicit */
    }

    /* REPARAȚIA: Ce se întâmplă când dăm click (clasa .active pusă de JS) */
    .nav-center.active {
        display: flex !important; /* Îl forțăm să apară */
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98); /* Fundal închis */
        backdrop-filter: blur(15px); /* Efect de sticlă mată */
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 999; /* Să fie deasupra tuturor */
    }

    .nav-links {
        flex-direction: column;
        gap: 30px;
        padding: 0;
    }

    .nav-links li a {
        font-size: 1.5rem;
        color: white !important;
    }

    /* Asigurăm butonul burger să rămână deasupra meniului deschis */
    .burger {
        z-index: 1000;
    }

    /* Animația X pentru liniuțele tale */
    #mobile-trigger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    #mobile-trigger.active span:nth-child(2) {
        opacity: 0;
    }
    #mobile-trigger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .about-image-container {
        order: -1; /* Imaginea trece sus pe mobil */
        max-width: 600px;
        margin: 0 auto;
    }
}
/* --- CONTAINER #5: FEATURES SECTION --- */

.features {
    padding: 120px 0;
    background-color: var(--bg);
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.feature-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 40px 30px;
    border-radius: 32px;
    transition: var(--transition);
    text-align: center;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary);
    transform: translateY(-10px);
}

/* Iconițele Stilizate */
.feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 28px;
    color: var(--primary);
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--primary);
    color: #ffffff;
    box-shadow: 0 10px 20px var(--primary-glow);
    transform: rotateY(180deg); /* Efect de rotire la hover */
}

.feature-info h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text);
}

.feature-info p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-muted);
}

/* Decor suplimentar fundal */
.features::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.05) 0%, transparent 70%);
    bottom: 0;
    right: 0;
    z-index: 0;
}
/* --- CONTAINER #6: CTA SECTION --- */

.cta-section {
    padding: 100px 0;
    background-color: var(--bg);
}

.cta-box {
    position: relative;
    background: linear-gradient(135deg, var(--primary) 0%, #1e40af 100%);
    padding: 80px 60px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(37, 99, 235, 0.3);
}

.cta-content {
    position: relative;
    z-index: 2;
    flex: 1;
}

.cta-content h2 {
    font-size: clamp(2rem, 3vw, 2.8rem);
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-content .text-white {
    color: rgba(255, 255, 255, 0.8);
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    max-width: 600px;
}

.cta-action {
    position: relative;
    z-index: 2;
}

/* Butonul Special de CTA */
.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: #ffffff;
    color: var(--primary);
    padding: 22px 45px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 800;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    background: var(--bg);
    color: #ffffff;
}

/* Efect de Glow decorativ în interiorul cutiei */
.cta-glow {
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    z-index: 1;
}

/* Responsive CTA */
@media (max-width: 1024px) {
    .cta-box {
        flex-direction: column;
        text-align: center;
        padding: 60px 30px;
    }
    
    .cta-content p {
        margin: 0 auto 30px;
    }
}
.main-footer {
    background-color: #020610;
    padding: 80px 0 30px;
    border-top: 1px solid var(--glass-border);
    color: var(--text);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 0.8fr 1.2fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Date Firmă */
.company-name {
    display: block;
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.company-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 5px;
}

/* Liste Navigație & Contact */
.footer-list {
    list-style: none;
}

.footer-list li {
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: 0.3s;
}

.footer-list a {
    color: var(--text-muted);
    text-decoration: none;
}

.footer-list a:hover {
    color: var(--primary);
    padding-left: 5px;
}

/* Zona Legală */
.legal-links-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.legal-img {
    max-width: 180px;
    border-radius: 4px;
    filter: brightness(0.8);
    transition: 0.3s;
}

.legal-img:hover {
    filter: brightness(1);
}

.anaf-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 15px;
    border: 1px solid var(--glass-border);
    border-radius: 4px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.75rem;
}

.anaf-button:hover {
    background: var(--primary);
    color: white;
}

/* Footer Bottom */
.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.bottom-right {
    display: flex;
    gap: 20px;
}

.bottom-right a {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-decoration: none;
}

.bottom-right a:hover {
    color: white;
}

/* Responsive */
@media (max-width: 992px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 20px; }
}
/* --- ADAPTARE GENERALĂ PENTRU MOBIL --- */

@media (max-width: 768px) {
    /* Containerul principal - adăugăm spațiu lateral mai mic */
    .container {
        padding: 0 20px;
    }

    /* Secțiunea Servicii: de la 3 coloane la 1 singură */
    .expertise-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Secțiunea Despre Noi: Imaginea trece sus, textul jos */
    .about-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-image-container {
        order: -1; /* Imaginea apare prima pe mobil */
        margin-bottom: 30px;
    }

    .about-text .highlight {
        border-left: none;
        border-bottom: 3px solid var(--primary);
        padding: 0 0 15px 0;
    }

    /* Secțiunea De Ce Să Ne Alegi: Totul pe un singur rând */
    .features-grid {
        grid-template-columns: 1fr;
    }

    /* CTA (Contactează-ne): Butonul devine full-width sau centrat */
    .cta-box {
        flex-direction: column;
        padding: 40px 20px;
        text-align: center;
    }

    .btn-cta {
        width: 100%;
        justify-content: center;
    }

    /* Footer: Coloanele se așează una sub alta */
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .company-details {
        border-left: none;
        border-top: 2px solid var(--primary);
        padding: 15px 0 0 0;
        align-items: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
    }

    .bottom-right {
        flex-direction: column;
        gap: 10px;
    }
}
/* 2. PAGINA SERVICII /*
/* ==========================================================================
   PAGINA SERVICII - STIL ELITE FLOATING STACK (2026)
   ========================================================================== */

/* 1. VARIABILE DE DESIGN */
:root {
    --primary: #2563eb;
    --primary-glow: rgba(37, 99, 235, 0.4);
    --bg: #020610;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --text: #ffffff;
    --text-muted: #a0aec0;
    --transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 2. RESET ȘI SPAȚIERE HEADER */
.first-section {
    padding-top: 180px !important; /* Spațiu pentru navigarea fixă */
    padding-bottom: 100px;
    background-color: var(--bg);
}

/* 3. GRADIENT TEXT (DEFINIȚIE COMPLETĂ) */
.text-gradient {
    background: linear-gradient(90deg, #ffffff, var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    display: inline-block;
}

/* 4. CONTAINERUL PRINCIPAL */
.service-showcase-stack {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 40px;
    padding: 80px 60px;
    backdrop-filter: blur(20px);
    position: relative;
    box-shadow: 0 40px 100px rgba(0,0,0,0.5);
}

/* 5. TEXTUL (STÂNGA) */
.service-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 25px;
    border: 1px solid rgba(37, 99, 235, 0.2);
}

.showcase-content-left h1 {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    line-height: 1.1;
    margin-bottom: 35px;
    color: var(--text);
}

.description-long-v3 p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 1.1rem;
    text-align: justify;
}

/* 6. GALERIA PLUTITOARE (DREAPTA) */
.showcase-gallery-stack {
    position: relative;
    height: 550px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.stack-item {
    position: absolute;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
    transition: var(--transition);
    background: var(--bg);
}

.stack-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

/* POZIȚIONARE ȘI DIMENSIUNI SUPRAPUSE */
.s1 { width: 320px; height: 380px; top: 0; left: 0; z-index: 2; }
.s2 { width: 240px; height: 300px; bottom: 0; right: 0; z-index: 2; }
.s3 { width: 190px; height: 190px; top: 40px; right: 20px; z-index: 1; opacity: 0.7; }
.s4 { width: 210px; height: 210px; bottom: 60px; left: 30px; z-index: 3; border-color: var(--primary); }
.s5 { width: 160px; height: 160px; top: 35%; left: 35%; z-index: 4; border: 2px solid var(--primary); box-shadow: 0 0 30px var(--primary-glow); }

/* INTERACȚIUNE */
.stack-item:hover {
    transform: scale(1.08) translateY(-15px) rotate(2deg);
    z-index: 10;
    border-color: var(--primary);
    filter: brightness(1.1);
}

.stack-item:hover img {
    transform: scale(1.15);
}

/* 7. RESPONSIVITATE MOBIL */
@media (max-width: 1200px) {
    .service-showcase-stack {
        grid-template-columns: 1fr;
        padding: 50px 30px;
        gap: 80px;
    }

    .showcase-content-left {
        text-align: center;
    }

    .showcase-gallery-stack {
        height: 480px;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .first-section {
        padding-top: 140px !important;
    }

    .s1 { width: 250px; height: 300px; }
    .s2 { width: 180px; height: 220px; }
    .s3, .s4, .s5 { display: none; } /* Simplificăm pe mobil pentru claritate */
    
    .service-showcase-stack {
        padding: 40px 20px;
        border-radius: 30px;
    }
}

/* 8. ANIMATIE INTRARE */
@keyframes stackReveal {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

.service-showcase-stack {
    animation: stackReveal 1s ease forwards;
}
/* CONTACT SECTION */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
    padding: 60px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 40px;
    backdrop-filter: blur(20px);
}

.info-items {
    margin-top: 40px;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.info-card i {
    width: 50px;
    height: 50px;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    border: 1px solid rgba(37, 99, 235, 0.2);
}

.info-card span {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-card p {
    font-weight: 600;
    margin: 0;
}

/* FORM STYLING */
.contact-form-container {
    background: rgba(255, 255, 255, 0.02);
    padding: 40px;
    border-radius: 30px;
    border: 1px solid var(--glass-border);
}

.input-group {
    margin-bottom: 20px;
}

.input-group input, 
.input-group select, 
.input-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: #fff;
    font-family: inherit;
    outline: none;
    transition: var(--transition);
}

.input-group input:focus, 
.input-group textarea:focus {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
}

.w-100 { width: 100%; }

/* MOBIL */
@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 20px;
    }
}
/* ==========================================================================
   STILURI PAGINA POLITICI - ELITE ENGINEERING
   ========================================================================== */

/* Fix pentru a permite scroll-ul pe pagini lungi */
.policy-page-body {
    overflow-y: auto !important;
    overflow-x: hidden;
    background-color: var(--bg);
}

.service-details-section {
    min-height: 100vh;
    height: auto !important; /* Esențial pentru scroll */
    padding-bottom: 100px;
}

/* Headerul Paginii */
.policy-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
}

/* Grid-ul de containere */
.policy-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 950px;
    margin: 0 auto;
}

/* Stilul Cardurilor (Containerele tale) */
.policy-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 45px;
    backdrop-filter: blur(20px);
    transition: var(--transition);
}

.policy-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

/* Iconițele din stânga sus a fiecărui container */
.policy-icon {
    width: 60px;
    height: 60px;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 25px;
    border: 1px solid rgba(37, 99, 235, 0.2);
}

.policy-card h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 600;
}

.policy-content p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 15px;
    text-align: justify;
}

.policy-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.policy-content li {
    color: var(--text-muted);
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

/* Puncte albastre pentru listă */
.policy-content li::before {
    content: "•";
    color: var(--primary);
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.5rem;
    line-height: 1;
}

.policy-content strong {
    color: #fff;
}

/* Adaptare pentru ecrane mici */
@media (max-width: 768px) {
    .policy-card {
        padding: 30px 20px;
        border-radius: 20px;
    }
    
    .policy-header h1 {
        font-size: 2.2rem;
    }
}
/* ==========================================================================
   DESIGN GLOBAL MOBIL - ELITE ESTHETIC
   ========================================================================== */

@media (max-width: 768px) {
    /* 1. REGLAJE GENERALE DE SPAȚIERE */
    :root {
        --container-padding: 20px;
    }

    section {
        padding: 60px 0; /* Spațiere mai mică între secțiuni pe mobil */
    }

    .container {
        padding-left: var(--container-padding);
        padding-right: var(--container-padding);
        width: 100%;
    }

    /* 2. TIPOGRAFIE REZOLVATĂ (Să nu iasă textul din ecran) */
    h1 {
        font-size: 2.2rem !important; /* Micșorăm titlurile mari */
        line-height: 1.2;
        letter-spacing: -1px;
    }

    h2 {
        font-size: 1.8rem !important;
    }

    p {
        font-size: 1rem !important;
        line-height: 1.6;
    }

    /* 3. ADAPTARE GRIDS (Toate coloanele devin una singură) */
    .contact-wrapper, 
    .policy-grid, 
    .services-grid, 
    .footer-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 25px !important;
    }

    /* 4. ESTETICĂ CARDURI (Glassmorphism pe mobil) */
    .policy-card, 
    .contact-form-container, 
    .info-card {
        padding: 25px !important;
        border-radius: 20px !important;
    }

    /* 5. FIX PENTRU IMAGINI (Să nu depășească ecranul) */
    img {
        max-width: 100%;
        height: auto;
    }

    /* 6. NAVIGARE (Dacă nu ai meniu hamburger încă, le centrăm) */
    .navbar .container {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
    }

    .nav-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .nav-links a {
        font-size: 0.9rem;
    }

    /* 7. BUTOANE (Să fie mai ușor de apăsat cu degetul) */
    .btn-nav, button {
        width: 100%; /* Butoanele ocupă toată lățimea pe mobil */
        padding: 15px;
        justify-content: center;
        text-align: center;
    }

    /* 8. EFECTUL DE STICLĂ (Mai subtil pe mobil pentru performanță) */
    .service-details-section {
        background-attachment: scroll; /* Performanță mai bună la scroll pe telefon */
    }
}

/* REGLAJ SPECIAL PENTRU ECRANE FOARTE MICI (iPhone SE / etc) */
@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem !important;
    }
    
    .service-badge {
        font-size: 0.7rem;
        padding: 5px 12px;
    }
}

@media (max-width: 1024px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%; /* Ascuns complet la început */
        width: 75%; 
        height: 100vh;
        background: rgba(10, 10, 10, 0.98); 
        backdrop-filter: blur(15px);
        display: flex !important; /* Forțăm afișarea structurii */
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        transition: all 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
        z-index: 1000;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        margin: 0;
        padding: 0;
        list-style: none;
    }

    /* CLASA ACTIVĂ (Sincronizată cu JS) */
    .nav-links.active {
        right: 0; 
    }

    .nav-links li {
        opacity: 0;
        transform: translateX(20px);
        transition: 0.4s;
    }

    .nav-links.active li {
        opacity: 1;
        transform: translateX(0);
        /* Delay succesiv pentru fiecare link */
        transition-delay: calc(0.1s * var(--i, 1)); 
    }

    /* Overlay fundal */
    .menu-overlay.active {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.6);
        z-index: 999;
        display: block;
    }
}

@keyframes fadeInLink {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}
@media (max-width: 1024px) {
    .nav-center {
        display: block !important;
        width: 0; height: 0;
    }

    .nav-links {
        position: fixed !important;
        top: 20px !important; /* Îl lăsăm puțin mai jos de marginea de sus */
        right: -100% !important;
        width: 75% !important; /* Mai mic, să nu ocupe tot */
        height: calc(100vh - 40px) !important; /* Lăsăm spațiu sus-jos */
        
        /* Design tip Card */
        background: rgba(8, 12, 23, 0.98) !important;
        backdrop-filter: blur(20px) !important;
        -webkit-backdrop-filter: blur(20px) !important;
        border-radius: 30px 0 0 30px !important; /* Rotunjit doar pe partea stângă */
        border: 1px solid var(--glass-border) !important;
        border-right: none !important;
        
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important; /* Aliniem textul la stânga pentru stilul sidebar */
        justify-content: center !important;
        padding-left: 50px !important;
        gap: 30px !important;
        z-index: 9999 !important;
        
        /* Umbră catifelată */
        box-shadow: -20px 0 50px rgba(0, 0, 0, 0.8) !important;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
    }

    .nav-links.active {
        right: 0 !important;
    }

    /* Efect de intrare pentru text */
    .nav-links li {
        list-style: none;
        opacity: 0;
        transform: translateX(30px);
        transition: all 0.4s ease;
    }

    .nav-links.active li {
        opacity: 1;
        transform: translateX(0);
    }

    /* Delays pentru animație */
    .nav-links.active li:nth-child(1) { transition-delay: 0.2s; }
    .nav-links.active li:nth-child(2) { transition-delay: 0.3s; }
    .nav-links.active li:nth-child(3) { transition-delay: 0.4s; }

    .nav-links li a {
        font-size: 1.4rem !important;
        font-weight: 600 !important;
        color: var(--text) !important;
        text-decoration: none;
        letter-spacing: 1px;
        transition: 0.3s;
    }

    .nav-links li a:hover {
        color: var(--primary) !important;
        padding-left: 10px;
    }

    /* Burger-ul rămâne vizibil peste card */
    #mobile-trigger {
        z-index: 10000 !important;
    }
}
/* --- FOOTER SOCIAL ICONS ELITE --- */
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-icons a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.03); /* Fundal sticlă foarte discret */
    border: 1px solid rgba(255, 255, 255, 0.08); /* Bordură fină */
    border-radius: 12px; /* Colțuri ușor rotunjite, stil modern app */
    color: var(--text-muted);
    font-size: 1.2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Efectul de Hover pentru Instagram */
.social-icons a.ig:hover {
    color: #fff;
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    border-color: transparent;
    box-shadow: 0 10px 20px rgba(214, 36, 159, 0.3);
    transform: translateY(-5px);
}

/* Efectul de Hover pentru Facebook */
.social-icons a.fb:hover {
    color: #fff;
    background: #1877F2;
    border-color: #1877F2;
    box-shadow: 0 10px 20px rgba(24, 119, 242, 0.3);
    transform: translateY(-5px);
}

/* Mică animație de puls la interior */
.social-icons a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.social-icons a:hover::before {
    width: 150px;
    height: 150px;
}
/* ============================================================
   SWIPE CAROUSEL — GALERIE IMAGINI (ADĂUGAT)
   ============================================================ */

.carousel-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    touch-action: pan-y;
    user-select: none;
    cursor: grab;
}

.carousel-wrapper:active { cursor: grabbing; }

.carousel-track {
    display: flex;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.carousel-slide {
    min-width: 100%;
    position: relative;
    overflow: hidden;
}

.carousel-slide img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
    border-radius: 30px;
    pointer-events: none;
    transition: transform 0.6s ease;
}

.carousel-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 30px;
    background: linear-gradient(to top, rgba(3,7,18,0.5) 0%, transparent 50%);
    pointer-events: none;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(3,7,18,0.75);
    border: 1px solid var(--glass-border);
    color: var(--text);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.carousel-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 8px 20px var(--primary-glow);
}

.carousel-btn.prev { left: 18px; }
.carousel-btn.next { right: 18px; }

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 22px;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--glass-border);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.carousel-dot.active {
    background: var(--primary);
    width: 28px;
    border-radius: 4px;
    box-shadow: 0 0 10px var(--primary-glow);
}

.carousel-counter {
    position: absolute;
    bottom: 18px;
    right: 22px;
    z-index: 10;
    background: rgba(3,7,18,0.7);
    backdrop-filter: blur(8px);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    padding: 6px 16px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 1px;
}

/* Galerie swipe responsive */
@media (max-width: 768px) {
    .carousel-slide img {
        height: 260px;
        border-radius: 20px;
    }
    .carousel-wrapper { border-radius: 20px; }
    .carousel-slide::after { border-radius: 20px; }
    .carousel-btn { width: 40px; height: 40px; font-size: 0.85rem; }
    .carousel-btn.prev { left: 10px; }
    .carousel-btn.next { right: 10px; }
}

@media (max-width: 480px) {
    .carousel-slide img { height: 220px; }
}

/* ============================================================
   CARD SERVICII FOC
   ============================================================ */
.swipe-gallery-section {
    padding: 80px 0 100px;
    background-color: var(--bg-accent);
}

.swipe-gallery-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.foc-services-section {
    padding: 80px 0;
    background-color: var(--bg);
}

.foc-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 50px;
}

.foc-service-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 36px 30px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: var(--transition);
}

.foc-service-item:hover {
    border-color: var(--primary);
    background: rgba(255,255,255,0.05);
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

.foc-service-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.25);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary);
    transition: var(--transition);
}

.foc-service-item:hover .foc-service-icon {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 8px 18px var(--primary-glow);
}

.foc-service-text h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 6px;
    letter-spacing: -0.3px;
}

.foc-service-text p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Spec boxes */
.spec-box {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.3);
    border-radius: 14px;
    padding: 14px 24px;
    margin: 6px;
    transition: var(--transition);
}

.spec-box:hover {
    background: rgba(37, 99, 235, 0.2);
    transform: translateY(-3px);
}

.spec-box i {
    font-size: 1.3rem;
    color: var(--primary);
}

.spec-box-text span {
    display: block;
    font-size: 0.72rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.spec-box-text strong {
    font-size: 1.1rem;
    color: var(--text);
    font-weight: 700;
}

.specs-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .foc-services-grid { grid-template-columns: 1fr; }
    .specs-row { justify-content: center; }
}

/* ============================================================
   PAGE CAROUSEL — inlocuieste showcase-gallery-stack
   pe toate paginile de servicii
   ============================================================ */
.page-carousel-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    cursor: grab;
    user-select: none;
    touch-action: pan-y;
    width: 100%;
    align-self: center;
}
.page-carousel-wrapper:active { cursor: grabbing; }

.page-carousel-track {
    display: flex;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.page-carousel-slide {
    min-width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 28px;
}

.page-carousel-slide img {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    display: block;
    border-radius: 28px;
    pointer-events: none;
}

.page-carousel-slide::after {
    content: none; /* fara overlay — imaginile se vad integral */
    pointer-events: none;
}

/* Dots sub carousel */
.page-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 18px;
}
.page-carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--glass-border);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}
.page-carousel-dot.active {
    background: var(--primary);
    width: 28px;
    border-radius: 4px;
    box-shadow: 0 0 10px var(--primary-glow);
}

/* Override service-showcase-stack dreapta sa nu mai fie stack */
.service-showcase-stack .showcase-gallery-stack {
    display: none; /* ascundem vechiul stack, folosim carousel-ul nou */
}

/* Layout ajustat: showcase-stack devine 1 col pe pagini cu carousel */
.showcase-has-carousel {
    display: flex !important;
    flex-direction: column !important;
    gap: 50px !important;
}
.showcase-has-carousel .showcase-content-left {
    width: 100% !important;
    max-width: 100% !important;
}

@media (max-width: 768px) {
    .page-carousel-slide img {
        height: auto;
        max-height: 60vh;
    }
}
@media (max-width: 480px) {
    .page-carousel-slide img {
        height: auto;
        max-height: 50vh;
    }
}

/* ============================================================
   ETICHETA CONTAINER — pagina protectii-foc
   ============================================================ */
.eticheta-section {
    padding: 60px 0 80px;
    background-color: var(--bg);
}
.eticheta-section .section-header {
    text-align: center;
    margin-bottom: 45px;
}
.eticheta-card {
    max-width: 680px;
    margin: 0 auto;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 40px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.eticheta-card:hover {
    border-color: var(--primary);
    box-shadow: 0 20px 50px rgba(37,99,235,0.15);
    transform: translateY(-6px);
}
.eticheta-card::before {
    content: '';
    position: absolute;
    top: -40px; right: -40px;
    width: 160px; height: 160px;
    background: radial-gradient(circle, rgba(37,99,235,0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.eticheta-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(37,99,235,0.1);
    border: 1px solid rgba(37,99,235,0.3);
    border-radius: 100px;
    padding: 8px 20px;
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 28px;
}
.eticheta-img-wrap {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
    transition: var(--transition);
}
.eticheta-img-wrap:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}
.eticheta-img-wrap img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}
.eticheta-desc {
    margin-top: 22px;
    font-size: 0.9rem !important;
    color: var(--text-muted) !important;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .eticheta-card { padding: 25px 18px; border-radius: 20px; }
}

/* ============================================================
   OVERRIDE: service-showcase-stack cu carousel — layout stacked
   ============================================================ */
.service-showcase-stack {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

/* Pe desktop (>= 900px) punem text sus, carousel jos — full width */
@media (min-width: 900px) {
    .service-showcase-stack {
        flex-direction: column;
        gap: 60px;
    }
    .service-showcase-stack .showcase-content-left {
        width: 100%;
        max-width: 100%;
        text-align: left;
    }
    /* Ascunde vechiul stack-item dacă rămâne în DOM */
    .service-showcase-stack .showcase-gallery-stack {
        display: none !important;
    }
}
