/* ============================================================
   1. SETĂRI GENERALE ȘI FONT ROBOTO
   ============================================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body {
    background-color: #f4f7f6;
    color: #333;
    line-height: 1.6;
}

/* ============================================================
   2. NAVBAR (Meniul de Sus) - Verde Închis
   ============================================================ */
.navbar-mesterica {
    background-color: #003300; /* Verdele tău oficial */
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    height: 85px; 
    position: sticky;
    top: 0;
    z-index: 9999 !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

/* ALINIERE LOGO + TEXTE (CENTRARE PERFECTĂ) */
.logo a {
    display: flex;
    align-items: center; 
    text-decoration: none;
    gap: 15px;
}

.logo-img {
    height: 60px;
    width: auto;
}

.logo-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-text {
    font-weight: 700;
    font-size: 1.5rem;
    color: white;
    line-height: 1.1;
    margin-bottom: 2px;
}

/* STATUS LIVE - SUB LOGO */
.status-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pulse-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
    animation: pulse-mega 1.5s infinite;
}

@keyframes pulse-mega {
    0% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.6); }
    70% { transform: scale(1.1); box-shadow: 0 0 0 12px rgba(46, 204, 113, 0); }
    100% { transform: scale(0.9); }
}

/* ============================================================
   3. LINK-URI NAVIGARE (ELIMINARE DEFINITIVĂ PUNCT ALB)
   ============================================================ */
.nav-links, .nav-links li, .submenu, .submenu li {
    list-style: none !important;
    list-style-type: none !important;
    text-indent: 0 !important;
}

.nav-links {
    display: flex;
    height: 100%;
    margin: 0;
    padding: 0;
}

.nav-links li {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-links a {
    color: white;
    text-decoration: none;
    padding: 0 15px;
    height: 100%;
    display: flex;
    align-items: center;
    font-weight: 500;
    font-size: 15px;
    transition: 0.3s;
    text-transform: capitalize;
}

.nav-links a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #3498db;
}

/* SUBMENIURI (Drop-down) */
.submenu {
    position: absolute;
    top: 85px;
    left: 0;
    background-color: #002200;
    display: none;
    min-width: 220px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    border-bottom: 3px solid #3498db;
    z-index: 10000 !important;
}

.submenu a {
    padding: 12px 20px;
    font-size: 13px;
    color: #ecf0f1;
    justify-content: flex-start;
    height: auto;
}

.has-submenu:hover .submenu {
    display: block;
}

/* ============================================================
   4. WIDGET CONTACT PLUTITOR (FAB)
   ============================================================ */
.fab-container {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 9000 !important;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.fab-options {
    display: none;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
}

.fab-container.active .fab-options {
    display: flex;
}

.fab-btn {
    width: 57px;  
    height: 57px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: white !important;
    box-shadow: 0 3px 10px rgba(0,0,0,0.25);
    transition: transform 0.2s;
}

.fab-btn h6 {
    margin: 0;
    font-size: 9px; 
    text-transform: capitalize;
    font-weight: 700;
    text-align: center;
    line-height: 1.1;
}

.fab-btn i { font-size: 13px; margin-bottom: 2px; }

.wa { background-color: #008000 !important; } 
.tel { background-color: #004a99 !important; } 
.map { background-color: #ff0000 !important; } 

.fab-main {
    width: 70px;
    height: 70px;
    cursor: pointer;
}

.attention-img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.3));
}

/* ============================================================
   5. FOOTER ȘI MOBIL (Hamburger)
   ============================================================ */
.footer-mesterica {
    background-color: #003300;
    color: white;
    padding: 25px 0;
    text-align: center;
    width: 100%;
    margin-top: 60px;
    font-size: 13px;
}

.hamburger-menu {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    flex-direction: column;
    justify-content: space-around;
    height: 22px;
}

.bar-line {
    width: 25px; height: 3px; background: white; border-radius: 2px;
}

@media (max-width: 768px) {
    .hamburger-menu { display: flex; }
    .nav-links {
        display: none; flex-direction: column;
        width: 100%; position: absolute;
        top: 85px; left: 0; background: #003300;
        height: auto; padding-bottom: 20px;
    }
    .nav-links.active { display: flex; }
}

/* CONȚINUT PAGINĂ */
.content {
    padding: 40px 5%;
    max-width: 1150px;
    margin: 30px auto;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.06);
}
