:root {
    --primary-blue: #003366; /* Albastru închis, corporate */
    --secondary-blue: #0056b3; /* Albastru mai deschis pentru hover */
    --accent-orange: #ff9900; /* Accent cald (Sun) */
    --text-dark: #333333;
    --text-light: #666666;
    --bg-light: #f4f7f6;
    --white: #ffffff;
    --max-width: 1200px;
    --spacing: 2rem;
}

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

body {
    font-family: 'Open Sans', sans-serif; /* Necesita Google Fonts in header */
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Typography */
h1, h2, h3 { color: var(--primary-blue); margin-bottom: 1rem; font-weight: 700; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
p { margin-bottom: 1rem; }

/* Layout Helpers */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing);
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: var(--accent-orange);
    color: var(--white);
    border-radius: 4px;
    font-weight: bold;
    border: none;
    cursor: pointer;
}
.btn:hover { background: #e68a00; }
.btn-outline { background: transparent; border: 2px solid var(--white); }

/* Header */
header {
    background: var(--white);
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: var(--max-width);
    margin: 0 auto;
    position: relative;
}
.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-blue);

    /* ADAUGĂ ACESTE 3 LINII: */
    display: inline-flex;
    flex-direction: column;
    line-height: 1.2;
    /* Reduce spațiul dintre titlu și subtitlu */
}
.logo span { color: var(--accent-orange); }

.nav-links { display: flex; list-style: none; gap: 1.5rem; }
.nav-links a { color: var(--text-dark); font-weight: 600; }
.nav-links a:hover { color: var(--secondary-blue); }

/* Mobile Menu */
.menu-toggle { display: none; cursor: pointer; font-size: 1.5rem; }

@media (max-width: 768px) {
        .nav-links {
            display: none;
            flex-direction: column;
            width: 100%;
            background: var(--white);
            position: absolute;
    
            top: 90%;
    
            left: 0;
            padding: 1rem;
            box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
    
            z-index: 1001;
        }
    .nav-links.active { display: flex; }
    .menu-toggle { display: block; }
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,51,102,0.9), rgba(0,51,102,0.8)), url('https://source.unsplash.com/1600x900/?office,consulting'); /* Placeholder */
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 5rem 1rem;
    text-align: center;
}
.hero h1 { color: var(--white); font-size: 2.5rem; }

/* Sections */
.section { padding: 4rem 0; }
.bg-white { background: var(--white); }

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    border-top: 4px solid var(--accent-orange);
}

/* Social Economy Box */
.social-box {
    background: #eef5fa;
    padding: 2rem;
    border-left: 5px solid var(--primary-blue);
    margin-top: 2rem;
}

/* Footer */
footer {
    background: var(--primary-blue);
    color: var(--white);
    padding: 3rem 0;
    margin-top: auto;
}
footer h3 { color: var(--accent-orange); font-size: 1.2rem; }
footer a:hover { color: var(--accent-orange); }
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}
.copyright { text-align: center; margin-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1rem; font-size: 0.9rem; }
/* --- ELEMENTE NOI PENTRU POPULARE --- */

/* Statistici / Counters */
.stats-section {
    background: var(--primary-blue);
    color: var(--white);
    padding: 3rem 0;
    text-align: center;
}
.stat-item h3 { color: var(--accent-orange); font-size: 2.5rem; margin-bottom: 0.5rem; }
.stat-item p { color: #ccc; font-weight: 600; text-transform: uppercase; font-size: 0.9rem; }

/* Timeline Proces */
.process-step {
    position: relative;
    padding-left: 60px; /* Mai mult loc pentru cerc */
    padding-bottom: 2rem; /* Spațiul dintre texte este acum padding, nu margin */
    margin-bottom: 0; /* Eliminăm marginea pentru a nu rupe linia */
}

/* Aceasta este LINIA portocalie */
.process-step::before {
    content: '';
    position: absolute;
    left: 19px; /* Centrat sub cerc */
    top: 15px; /* Pornește din centrul cercului */
    width: 3px;
    height: 100%; /* Linia continuă până jos */
    background-color: var(--accent-orange);
    z-index: 1;
}

/* Acesta este CERCUL albastru */
.process-step::after {
    content: ''; 
    position: absolute;
    left: 5px;
    top: 5px; /* Aliniat cu titlul */
    width: 30px; 
    height: 30px;
    background-color: var(--primary-blue);
    border: 3px solid var(--accent-orange);
    border-radius: 50%;
    z-index: 2; /* Deasupra liniei */
}

.process-step h4 { 
    margin-bottom: 0.5rem; 
}

/* Ascundem linia pentru ULTIMUL element */
.process-step:last-child::before {
    display: none;
}

/* Eliminăm spațiul de jos pentru ultimul element */
.process-step:last-child {
    padding-bottom: 0;
}

/* FAQ Accordion (Intrebari Frecvente) */
.faq-item {
    background: var(--white);
    margin-bottom: 1rem;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    overflow: hidden;
}
.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    font-weight: bold;
    color: var(--primary-blue);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-question::after { content: '+'; font-size: 1.5rem; color: var(--accent-orange); }
.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    color: var(--text-light);
}
.faq-item.active .faq-answer { padding: 1.5rem; max-height: 500px; border-top: 1px solid #eee; }
.faq-item.active .faq-question::after { content: '-'; }

/* Call to Action Strip */
.cta-strip {
    background: var(--accent-orange);
    color: var(--white);
    padding: 3rem 1rem;
    text-align: center;
}
.cta-strip h2 { color: var(--primary-blue); }