/* Paleta de culori: Modern Organic 2026
   Fundal: Cald/Miere (#FEFDFB)
   Accent: Verde Mentă (#2ECC71) & Ocru (#F39C12)
*/

:root {
    --primary: #2ECC71; 
    --accent: #F39C12;  
    --bg-warm: #FEFDFB;
    --text-dark: #2C3E50;
    --white: #FFFFFF;
    --glass: rgba(255, 255, 255, 0.8);
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

body { 
    font-family: 'Outfit', 'Poppins', sans-serif; 
    background-color: var(--bg-warm); 
    color: var(--text-dark);
    line-height: 1.6;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* --- HEADER OBLIGATORIU (UE & GUVERN) --- */
.ue-banner {
    background: var(--white);
    padding: 10px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    gap: 15px;
}

.ue-banner .logos { 
    display: flex; 
    gap: 20px; 
    align-items: center; 
}

.ue-banner img { 
    height: 70px; 
    width: auto; 
    transition: transform 0.3s ease; 
}

.ue-banner img:hover { 
    transform: scale(1.05); 
}

.ue-sintagma { 
    font-size: 14px; 
    color: #7f8c8d; 
    max-width: 550px; 
    line-height: 1.3; 
    font-weight: 500;
}

/* --- NAVIGATIE FANCY --- */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 8%;
    background: var(--glass);
    backdrop-filter: blur(15px);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.logo-brand { 
    font-size: 24px; 
    font-weight: 800; 
    color: var(--primary); 
    text-transform: uppercase; 
    letter-spacing: 1px;
}

.logo-brand span { 
    color: var(--accent); 
}

.nav-menu { 
    display: flex; 
    list-style: none; 
    gap: 30px; 
}

.nav-menu a { 
    text-decoration: none; 
    color: var(--text-dark); 
    font-weight: 600; 
    font-size: 14px;
    position: relative;
    padding: 5px 0;
    transition: var(--transition);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; width: 0; height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-menu a:hover { 
    color: var(--primary); 
}

.nav-menu a:hover::after { 
    width: 100%; 
}

/* --- HERO SECTION --- */
.hero {
    padding: 100px 8%;
    background: radial-gradient(circle at top right, #e8f5e9, transparent), 
                url('https://www.transparenttextures.com/patterns/cubes.png');
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    min-height: 80vh;
    gap: 40px;
}

.hero-content h1 { 
    font-size: 3.5rem; 
    line-height: 1.1; 
    margin-bottom: 25px; 
    color: var(--text-dark); 
}

.hero-content h1 span { 
    color: var(--primary); 
}

.hero-content p { 
    font-size: 1.15rem; 
    color: #555; 
    margin-bottom: 35px; 
    max-width: 600px;
}

/* --- SERVICII & CARDURI FANCY --- */
.section-header { 
    text-align: center; 
    margin-bottom: 60px; 
    padding: 0 15%;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

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

.fancy-card {
    background: var(--white);
    padding: 45px;
    border-radius: 35px;
    border: 1px solid rgba(0,0,0,0.03);
    transition: var(--transition);
    text-align: left;
    box-shadow: 0 10px 20px rgba(0,0,0,0.02);
}

.fancy-card:hover { 
    transform: translateY(-15px); 
    box-shadow: 0 30px 60px rgba(46, 204, 113, 0.15); 
    border-color: var(--primary);
}

.fancy-card i { 
    font-size: 45px; 
    color: var(--accent); 
    margin-bottom: 25px; 
    display: block; 
}

.fancy-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

/* --- GALERIE FOTO --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.gallery-item {
    height: 300px;
    background: #f0f0f0;
    border-radius: 25px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.gallery-item img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transition: transform 0.6s ease; 
}

.gallery-item:hover img { 
    transform: scale(1.15); 
}

/* --- FOOTER COMPLEX & OBLIGATORIU --- */
footer { 
    background: var(--white); 
    padding: 80px 8% 30px; 
    border-top: 1px dotted #ddd; 
}

.footer-top { 
    display: grid; 
    grid-template-columns: 1fr 2fr 1fr; 
    gap: 60px; 
    margin-bottom: 60px; 
}

.footer-logo-assoc { 
    width: 180px; 
    margin-bottom: 25px; 
    transition: filter 0.3s;
}

.sintagma-footer { 
    font-size: 14px; 
    font-style: italic; 
    color: #5d6d7e; 
    border-left: 4px solid var(--primary); 
    padding-left: 20px; 
    line-height: 1.6;
}

.footer-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 14px;
    display: block;
    margin-bottom: 10px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

/* --- POPUP PRIVACY / COOKIE --- */
#privacy-popup {
    position: fixed;
    bottom: 30px; 
    left: 30px; 
    width: 380px;
    background: var(--white);
    padding: 30px;
    border-radius: 30px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
    transform: translateX(-150%);
    transition: 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 10001;
    border: 1px solid rgba(46, 204, 113, 0.1);
}

#privacy-popup.active { 
    transform: translateX(0); 
}

.btn-fancy {
    background: var(--primary);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    font-weight: 700;
    margin-top: 20px;
    transition: var(--transition);
    display: inline-block;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
}

.btn-fancy:hover { 
    background: var(--accent); 
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(243, 156, 18, 0.3);
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .hero { grid-template-columns: 1fr; text-align: center; }
    .hero-content p { margin: 0 auto 35px; }
    .footer-top { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .sintagma-footer { border-left: none; border-top: 3px solid var(--primary); padding: 20px 0 0 0; }
    .ue-banner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .hero-content h1 { font-size: 2.5rem; }
    #privacy-popup { width: calc(100% - 60px); left: 30px; }
}
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&family=Poppins:wght@300;400;600&display=swap');

:root {
    --primary: #2ECC71; 
    --accent: #F39C12;  
    --bg-warm: #FEFDFB;
    --text-dark: #2C3E50;
    --white: #FFFFFF;
    --glass: rgba(255, 255, 255, 0.85);
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { 
    font-family: 'Poppins', sans-serif; 
    background-color: var(--bg-warm); 
    color: var(--text-dark);
    scroll-behavior: smooth;
    overflow-x: hidden;
}

h1, h2, h3, .logo-brand { font-family: 'Outfit', sans-serif; }

/* --- HEADER UE --- */
.ue-banner {
    background: var(--white);
    padding: 10px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
}
.ue-banner .logos { display: flex; gap: 15px; }
.ue-banner img { height: 70px; width: auto; }
.ue-sintagma { font-size: 14px; color: #7f8c8d; max-width: 500px; line-height: 1.3; }

/* --- NAVIGATIE --- */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 8%;
    background: var(--glass);
    backdrop-filter: blur(15px);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}
.logo-brand { font-size: 22px; font-weight: 800; color: var(--primary); text-transform: uppercase; }
.logo-brand span { color: var(--accent); }
.nav-menu { display: flex; list-style: none; gap: 25px; }
.nav-menu a { text-decoration: none; color: var(--text-dark); font-weight: 600; font-size: 14px; position: relative; }
.nav-menu a:hover { color: var(--primary); }

/* --- SERVICII DINAMICE --- */
.services-vibrant { padding: 80px 8%; background: #fff; }
.section-header { text-align: center; margin-bottom: 50px; }
.badge { background: var(--primary); color: white; padding: 4px 12px; border-radius: 50px; font-size: 11px; font-weight: 700; text-transform: uppercase; margin-bottom: 15px; display: inline-block; }

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 35px;
    border: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.service-card:hover { transform: translateY(-15px); box-shadow: 0 30px 60px rgba(0,0,0,0.08); }

.card-icon {
    width: 60px; height: 60px; border-radius: 18px;
    display: flex; align-items: center; justify-content: center;
    font-size: 28px; margin-bottom: 20px;
}

.color-1 .card-icon { background: #E8F5E9; color: #2ECC71; }
.color-2 .card-icon { background: #FFF3E0; color: #F39C12; }
.color-3 .card-icon { background: #E3F2FD; color: #3498DB; }
.color-4 .card-icon { background: #F3E5F5; color: #9B59B6; }

.stat-graph { margin-top: 20px; }
.stat-graph small { display: block; font-size: 10px; font-weight: 700; color: #999; margin-bottom: 5px; text-transform: uppercase; }
.bar { width: 100%; height: 6px; background: #f0f0f0; border-radius: 10px; overflow: hidden; }
.fill { height: 100%; transition: width 1.5s ease-in-out; }
.color-1 .fill { background: #2ECC71; } .color-2 .fill { background: #F39C12; }
.color-3 .fill { background: #3498DB; } .color-4 .fill { background: #9B59B6; }

/* --- FOOTER & ALTELE --- */
footer { padding: 60px 8% 20px; background: #fff; border-top: 1px solid #eee; }
#privacy-popup { position: fixed; bottom: 20px; left: 20px; width: 320px; background: white; padding: 20px; border-radius: 20px; box-shadow: 0 20px 40px rgba(0,0,0,0.1); transform: translateX(-150%); transition: 0.5s; z-index: 10000; }
#privacy-popup.active { transform: translateX(0); }
.btn-fancy { background: var(--primary); color: white; padding: 10px 20px; border: none; border-radius: 50px; cursor: pointer; font-weight: bold; }

/* --- PORTFOLIO FANCY 2026 --- */
.portfolio-fancy {
    padding: 100px 8%;
    background: var(--bg-warm);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.gallery-card {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    height: 400px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.gallery-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

/* Overlay cu culorile firmei (Verde -> Ocru) */
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top, 
        rgba(46, 204, 113, 0.9) 0%, 
        rgba(243, 156, 18, 0.4) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 35px;
    opacity: 0;
    transition: all 0.4s ease;
    transform: translateY(20px);
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
    transform: translateY(0);
}

.gallery-card:hover img {
    transform: scale(1.1) rotate(2deg);
}

.gallery-overlay h3 {
    color: white;
    font-size: 1.5rem;
    margin-top: 10px;
    font-weight: 800;
}

.gallery-overlay .category {
    color: rgba(255,255,255,0.9);
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 700;
}

.view-btn {
    width: 45px;
    height: 45px;
    background: white;
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    font-size: 18px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.gallery-card:hover .view-btn {
    transform: rotate(90deg);
}

/* Stil pentru ecrane mici */
@media (max-width: 768px) {
    .gallery-card { height: 300px; }
    .gallery-overlay { opacity: 1; transform: translateY(0); background: linear-gradient(to top, rgba(0,0,0,0.7), transparent); }
}
/* --- TECH SPECS SECTION --- */
.tech-specs {
    padding: 100px 8%;
    background: #f8f9fa;
    position: relative;
}

.specs-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.spec-card {
    background: var(--white);
    border-radius: 25px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 30px;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

.spec-card:hover {
    transform: scale(1.02);
    border-color: var(--primary);
    box-shadow: 0 15px 35px rgba(46, 204, 113, 0.1);
}

.spec-icon {
    min-width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), #27ae60);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    box-shadow: 0 10px 20px rgba(46, 204, 113, 0.2);
}

.spec-info h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.spec-info p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 15px;
    max-width: 700px;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tech-tags span {
    background: #E8F5E9;
    color: var(--primary);
    font-size: 11px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    border: 1px solid rgba(46, 204, 113, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .spec-card {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }
    .tech-tags {
        justify-content: center;
    }
}
/* --- REVIEWS VIBRANT SECTION --- */
.reviews-section {
    padding: 100px 8%;
    background: #fdfdfd;
    position: relative;
    overflow: hidden;
}

/* Bulele colorate din fundal */
.
.reviews-container {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    padding: 40px 10px;
    position: relative;
    z-index: 2;
    scrollbar-width: none; /* Ascunde scrollbar pe Firefox */
}

.reviews-container::-webkit-scrollbar { display: none; } /* Ascunde scrollbar pe Chrome/Safari */

.review-card {
    min-width: 320px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 35px;
    border: 1px solid rgba(255,255,255,0.5);
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
}

.review-card:hover {
    transform: translateY(-10px) rotate(1deg);
    background: var(--white);
    box-shadow: 0 25px 50px rgba(46, 204, 113, 0.1);
}

.quote-icon {
    position: absolute;
    top: 30px;
    right: 35px;
    font-size: 40px;
    opacity: 0.1;
    color: var(--text-dark);
}

.stars {
    color: #FFD700;
    font-size: 14px;
    margin-bottom: 20px;
}

.review-text {
    font-size: 1.05rem;
    font-style: italic;
    color: #444;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.review-footer {
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 20px;
}

.review-footer strong {
    display: block;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.review-footer span {
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 600;
}

/* Accente de culoare diferite pentru fiecare card */
.c-1 { border-bottom: 5px solid #2ECC71; }
.c-2 { border-bottom: 5px solid #F39C12; }
.c-3 { border-bottom: 5px solid #3498DB; }
.c-4 { border-bottom: 5px solid #9B59B6; }

@media (max-width: 768px) {
    .review-card { min-width: 280px; padding: 30px; }
}








/* --- FOOTER MODERN VERDE --- */
.main-footer {
    background: #1B3022; /* Verde închis/forestier */
    color: #e0e0e0;
    position: relative;
    padding-top: 0;
}

/* Wave effect la începutul footer-ului */
.footer-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.footer-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 70px;
}

.footer-wave .shape-fill {
    fill: #FEFDFB; /* Trebuie să fie culoarea fundalului de deasupra footer-ului */
}

.footer-content {
    padding: 120px 8% 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-col h4 {
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Branding */
.footer-logo-assoc {
    width: 150px;
    filter: brightness(0) invert(1); /* Face logoul ASSOC alb pentru contrast */
    margin-bottom: 20px;
}

.branding h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.branding h3 span { color: var(--primary); }

.address {
    font-size: 0.9rem;
    line-height: 1.8;
}

.address i {
    color: var(--primary);
    margin-right: 10px;
}

/* Sintagma UE */
.sintagma-footer {
    font-size: 0.95rem;
    line-height: 1.6;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 15px;
    border-left: 4px solid var(--primary);
}

.ue-link {
    display: inline-block;
    margin-top: 15px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.ue-link:hover { color: var(--accent); }

/* Link-uri */
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: 0.3s;
    font-size: 0.9rem;
}

.footer-col ul li a:hover {
    color: white;
    padding-left: 8px;
}

/* Bottom bar */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

.footer-bottom span {
    color: var(--primary);
    font-weight: bold;
}

/* Responsive */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .sintagma-footer { border-left: none; border-top: 4px solid var(--primary); }
    .footer-bottom { flex-direction: column; gap: 15px; }
}
#privacy-popup {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 350px;
    background: #FFFFFF;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
    z-index: 99999; /* Foarte important să fie deasupra tuturor */

    /* Starea inițială: Ascuns și tras în jos */
    opacity: 0;
    visibility: hidden;
    transform: translateY(50px);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

#privacy-popup.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#privacy-popup h4 {
    color: #2D3436;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Folosim culoarea ta mov HostFlow #9438EA pentru buton */
.btn-cookie {
    background: #9438EA;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    margin-top: 15px;
    width: 100%;
    transition: 0.3s;
}

.btn-cookie:hover {
    background: #7a2cc3;
    transform: translateY(-2px);
}

/* --- CONTACT SECTION --- */
.contact-section {
    padding: 100px 8%;
    background: #ffffff;
    position: relative;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.contact-card {
    padding: 40px;
    background: #ffffff;
    border-radius: 30px;
    border: 1px solid #f0f0f0;
    transition: all 0.4s ease;
    text-align: center;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    border-color: var(--primary);
}

.c-icon {
    width: 70px;
    height: 70px;
    background: #f8fbf9;
    color: var(--primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 25px;
    transition: 0.3s;
}

.contact-card:hover .c-icon {
    background: var(--primary);
    color: white;
}

.contact-card h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.legal-list {
    list-style: none;
    padding: 0;
    text-align: left;
    display: inline-block;
}

.legal-list li {
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: #666;
}

.legal-list li span {
    font-weight: 700;
    color: var(--text-dark);
    margin-right: 5px;
}

.lorem-text {
    font-size: 0.85rem;
    color: #999;
    margin-top: 15px;
    font-style: italic;
}

.contact-card a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.social-links-contact {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-links-contact a {
    font-size: 20px;
    color: #ccc;
    transition: 0.3s;
}

.social-links-contact a:hover {
    color: var(--primary);
}

@media (max-width: 768px) {
    .contact-card {
        padding: 30px 20px;
    }
}

.reviews-swiper {
    /* Adăugăm spațiu generos în partea de jos (80px) pentru puncte */
    padding: 20px 15px 80px 15px !important; 
    width: 100%;
    position: relative;
    overflow: hidden;
}

.swiper-slide {
    height: auto; 
    display: flex;
    /* Adăugăm o umbră mică pentru a nu fi tăiată de overflow */
    padding: 10px; 
}

/* Poziționarea punctelor de paginare sub carduri */
.reviews-section .swiper-pagination {
    bottom: 20px !important; /* Împingem punctele mai jos */
    position: absolute;
}

/* Stil pentru punctele de paginare */
.swiper-pagination-bullet {
    background: #ccc;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: var(--primary) !important;
    width: 30px !important; /* Punctul activ devine o linie modernă */
    border-radius: 5px !important;
    opacity: 1;
}
/* --- STIL LOGO MICȘORAT --- */
.logo-container {
    display: flex;
    align-items: center; /* Aliniază logoul vertical în centrul barei de navigare */
    text-decoration: none;
    padding: 0; /* Eliminăm padding-ul suplimentar care ar putea mări bara */
}

.main-logo {
    /* DIMENSIUNEA PRINCIPALĂ (Ajustează aici valoarea) */
    height: 40px; /* O înălțime de 40px e standard pentru un look "fancy" și discret */

    width: auto;  /* Păstrează proporțiile imaginii, nu o deformează */
    display: block;
    transition: transform 0.3s ease; /* Animație discretă la hover */

    /* Opțional: Adaugă o margine mică la stânga dacă logoul e lipit de margine */
    margin-left: 5px; 
}

.main-logo:hover {
    transform: scale(1.05); /* Efect discret de mărire la trecerea șoricelului */
}

/* --- AJUSTARE PENTRU MOBIL --- */
@media (max-width: 768px) {
    .main-logo {
        height: 30px; /* Chiar mai mic pe ecranele de telefon */
    }
}

/* --- TEXT LOGO STYLING --- */
.logo-text-brand {
    text-decoration: none;
    font-family: 'Outfit', sans-serif; /* Asigură-te că ai fontul încărcat, sau folosește sans-serif */
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    display: flex;
    gap: 8px;
    transition: transform 0.3s ease;
}

.logo-text-brand:hover {
    transform: scale(1.03);
}

/* Verdele Liliana (Prospețime) */
.l-name {
    color: #2ECC71;
}

/* Portocaliul Food (Gătire/Gust) */
.f-name {
    color: #F39C12;
}

/* Ajustare pentru ecrane mici */
@media (max-width: 768px) {
    .logo-text-brand {
        font-size: 1.3rem;
        gap: 5px;
    }
}

/* --- AJUSTARE LOGO ASSOC FOOTER --- */
.footer-logo-assoc {
    /* Dimensiunea controlată */
    height: 60px; /* Această valoare este ideală pentru a nu domina vizual coloana */
    width: auto;  /* Păstrează proporțiile corecte */

    /* Afișare și spațiere */
    display: block;
    margin-bottom: 20px; /* Spațiu între logo și textul LILIANA FOOD */

    /* Aspect vizual (Alb pentru contrast pe fundal închis) */
    filter: brightness(0) invert(1); 
    opacity: 0.9; /* O ușoară transparență îl face să pară mai integrat */

    transition: opacity 0.3s ease;
}

.footer-logo-assoc:hover {
    opacity: 1; /* Revine la claritate maximă la hover */
}

/* Ajustare pentru ecrane mici (Mobil) */
@media (max-width: 768px) {
    .footer-logo-assoc {
        height: 40px; /* Puțin mai mic pe mobil */
        margin-left: auto;
        margin-right: auto; /* Centrează logoul dacă textul din footer este centrat pe mobil */
    }
}

/* --- STIL HAMBURGER (Ascuns pe Desktop) --- */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    z-index: 1000;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background-color: var(--text-dark); /* sau culoarea dorită */
    border-radius: 10px;
    transition: all 0.3s ease;
}

/* --- RESPONSIVE LOGIC --- */
@media (max-width: 992px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%; /* Ascuns în afara ecranului lateral */
        width: 70%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.5s ease;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        z-index: 999;
    }

    .nav-menu.active {
        right: 0; /* Glisează în ecran */
    }

    .nav-menu li {
        margin: 20px 0;
    }

    /* Animație Hamburger -> X */
    .hamburger.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
        background-color: var(--primary);
    }
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
        background-color: var(--primary);
    }
}