 /* Variabili & Configurazioni Base */
        :root {
            --navy-dark: #063164;       
            --brand-green: #1A8F39;     
            --brand-orange: #F15A00;    
            --border-blue-light: #DCE4EC; 
        }
		
		.text-white-50 {
  --bs-text-opacity: 1;
  color: rgba(255, 255, 255, 0.79) !important;
}

.bg-dark{
background-color: rgba(3, 52, 100, 0.88) !important;
}

        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
        }

        .text-navy { color: var(--navy-dark) !important; }
        .text-brand-green { color: var(--brand-green) !important; }
        .text-brand-orange { color: var(--brand-orange) !important; }

        /* Top Bar */
        .top-bar {
            background-color: var(--navy-dark);
            font-size: 16px;
            letter-spacing: 0.3px;
        }

        /* Header / Trust Bar */
        .logo-container { line-height: 1.1; }
        .trust-box {
            border: 1px solid var(--border-blue-light);
            border-radius: 6px;
            background-color: #ffffff;
            min-height: 46px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .trust-title {
            font-size: 0.65rem;
            color: #7A8B9E;
            font-weight: 600;
            letter-spacing: 0.5px;
            line-height: 1.2;
        }
        .trust-value {
            font-size: 0.95rem;
            line-height: 1.2;
        }
        .phone-link {
            color: var(--navy-dark);
            font-size: 1.05rem;
            transition: opacity 0.2s;
        }
        .phone-link:hover { opacity: 0.8; }
        .btn-brand-green {
            background-color: var(--brand-green);
            color: #ffffff !important;
            border: none;
            font-size: 0.9rem;
            letter-spacing: 0.5px;
            box-shadow: 0 4px 10px rgba(26, 143, 57, 0.25);
            transition: background-color 0.2s ease;
        }
        .btn-brand-green:hover { background-color: #136b2a; }

        /* Menu e Submenu */
  /*      .nav-item .submenu { 
            display: none !important; 
            position: absolute;
            top: 100%;
            left: 0;
            z-index: 1000;
        }
        .nav-item:hover .submenu { 
            display: block !important; 
        }*/
		/* Hover sui Dropdown */
@media (min-width: 992px) {
    .nav-item.dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }
}
		
	/* Gestione del 2° livello di sottomenu */
.dropdown-menu li {
    position: relative; /* Assicura che il submenu 2 si posizioni rispetto alla sua voce */
}

.dropdown-menu .submenu-2 {
    display: none !important;
    position: absolute;
    left: 100%;
    top: 0;
    margin-top: 0;
}

/* Mostra il 2° sottomenu SOLO quando si passa sopra al <li> genitore (su desktop) */
@media (min-width: 992px) {
    .dropdown-menu li:hover > .submenu-2 {
        display: block !important;
    }
}
		
        .navbar-sticky {
            position: sticky;
            top: 0;
            z-index: 1030;
            width: 100%;
        }
        .row {
            margin-left: 0 !important;
            margin-right: 0 !important;
        }
        #boxCerca {
            transition: all 0.3s ease;
        }

        /* Footer */
        .main-footer {
            background-color: #021731; 
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            font-size: 0.9rem;
        }
        .text-sm { font-size: 0.88rem; }
        .text-xs { font-size: 0.82rem; }
        .main-footer a.text-brand-green:hover { filter: brightness(1.2); }
        .hover-underline:hover { text-decoration: underline !important; opacity: 0.9; }

		
		/* Riga a tutta larghezza (100% dello schermo) */
.row-fullwidth {
    width: 100%;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

/* Contenuto interno bloccato e centrato (boxed) */
.boxed-content {
    max-width: 1320px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}
		.bg-dark {
  --bs-bg-opacity: 1;
/*  background-color: rgb(26, 143, 57) !important;*/
}
		
		.bg-verde{
			background-color: rgb(26, 143, 57) !important;
		}
		.dropdown-item.text-white.py-2 {
  color: #000 !important;
}
		
        /* Responsive */
        @media (max-width: 1200px) {
            .header-right-block {
                justify-content: center;
                width: 100%;
                margin-top: 10px;
            }
        }
        @media (max-width: 576px) {
            .font-mini-mobile { font-size: 0.75rem !important; }
            .trust-box { flex: 1 1 calc(50% - 0.5rem); }
        }
        @media (max-width: 767px) {
            .main-footer { text-align: center !important; }
            .footer-links-block { margin-top: 1rem; }
        }