  /* ── Nav Base ─────────────────────────────────────── */
  .navbottom {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid #ddeee3;
    z-index: 9999;
    box-shadow: 0 1px 16px rgba(0,0,0,.06);
  }
 
  .navbottomall {
    max-width: 1200px;
    height: 72px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
  }
 
  /* ── Logo ─────────────────────────────────────────── */
  .logo img {
    height: 72px;
    object-fit: contain;
  }
 
  /* ── Desktop Links ────────────────────────────────── */
  .navlinks {
    display: flex;
    align-items: center;
    gap: 4px;
  }
 
  .linkhover a {
    font-size: 15px;
    font-weight: 500;
    color: #3a4a3e;
    padding: 8px 14px;
    border-radius: 8px;
    text-decoration: none;
    transition: background .2s, color .2s;
  }
  .linkhover a:hover {
    background: #e8fdf1;
    color: #1a9e53;
  }
 
  /* ── Right Side ───────────────────────────────────── */
  .profiluhamburger {
    display: flex;
    align-items: center;
    gap: 14px;
  }
 
  /* ── Login Button ─────────────────────────────────── */
  .loginbtnnav a {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #1a9e53;
    border: 1.5px solid #2ecc71;
    padding: 8px 20px;
    border-radius: 999px;
    text-decoration: none;
    transition: background .2s, color .2s;
    white-space: nowrap;
  }
  .loginbtnnav a:hover {
    background: #2ecc71;
    color: #fff;
  }
  /* hide old <p> tag trick */
  .loginbtnnav a p {
    all: unset;
  }
 
  /* ── Profile Circle ───────────────────────────────── */
  .profilinic {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
  }
 
  .initilaien {
    height: 38px;
    width: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e8fdf1;
    border: 1.5px solid #2ecc71;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #1a9e53;
    transition: box-shadow .2s;
  }
  .profilinic:hover .initilaien {
    box-shadow: 0 0 0 3px rgba(46,204,113,.2);
  }
 
  /* ── Profile Dropdown ─────────────────────────────── */
  .loggedinnav {
    display: none;
    position: absolute;
    top: 52px;
    right: 0;
    background: #fff;
    border: 1px solid #ddeee3;
    border-radius: 14px;
    box-shadow: 0 8px 32px rgba(0,0,0,.1);
    padding: 8px 0;
    min-width: 210px;
    overflow: hidden;
  }
  .loggedinnav.active {
    display: block;
    animation: fadeIn .2s ease;
  }
 
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
  }
 
  .userloggedflex {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #3a4a3e;
    text-decoration: none;
    transition: background .15s;
  }
  .userloggedflex:hover {
    background: #f7fcf9;
    color: #1a9e53;
  }
  .userloggedflex i {
    width: 16px;
    text-align: center;
    color: #7a8c80;
    font-size: 13px;
  }
  .userloggedflex:hover i { color: #2ecc71; }
 
  .dropdown-divider {
    border: none;
    border-top: 1px solid #ddeee3;
    margin: 6px 0;
  }
 
  /* ── Hamburger ────────────────────────────────────── */
  .hamburger {
    display: none;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #111a14;
    font-size: 20px;
    transition: background .2s;
    border: 1px solid #ddeee3;
  }
  .hamburger:hover { background: #e8fdf1; color: #1a9e53; }
 
  /* ── Mobile Nav ───────────────────────────────────── */
  .handynav {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    height: calc(100vh - 72px);
    background: #111a14;
    overflow-y: auto;
    z-index: 9998;
    animation: slideDown .25s ease;
  }
  .handyy {
    padding: 13px;
    margin-right: 13px;
}
  .handynav.active { display: flex; }
 
  @keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to   { opacity: 1; transform: translateY(0); }
  }
 
  .handynav a {
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: rgba(255,255,255,.85);
    text-decoration: none;
    padding: 14px 0;
    transition: color .2s;
    display: block;
  }
  .handynav a:hover { color: #2ecc71; }
 
  .handynav hr {
    border: none;
    border-top: 1px solid rgba(255,255,255,.08);
    margin: 0;
  }
 
  .serviceiconhandy {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    padding: 14px 0;
  }
  .serviceiconhandy > a {
    padding: 0;
    font-size: 18px;
    font-weight: 500;
    color: rgba(255,255,255,.85);
  }
  .serviceiconhandy i {
    color: rgba(255,255,255,.4);
    font-size: 14px;
    transition: transform .3s;
  }
  .serviceiconhandy.active i { transform: rotate(180deg); }
 
  .leistungen {
    display: none;
    flex-direction: column;
    padding-left: 16px;
    border-left: 2px solid #2ecc71;
    margin-bottom: 8px;
  }
  .leistungen.active { display: flex; }
 
  .itemdrop a {
    font-size: 15px !important;
    color: rgba(255,255,255,.55) !important;
    padding: 8px 0 !important;
  }
  .itemdrop a:hover { color: #2ecc71 !important; }
 
  .handynav-logout {
    color: #ff6b6b !important;
    margin-top: 8px;
  }
  .handynav-logout:hover { color: #ff4444 !important; }
 
  .handynav-cta {
    display: inline-block;
    margin-top: 20px;
    background: #2ecc71;
    color: #fff !important;
    border-radius: 999px;
    padding: 12px 28px !important;
    font-weight: 600 !important;
    text-align: center;
    transition: background .2s !important;
  }
  .handynav-cta:hover { background: #1a9e53 !important; color: #fff !important; }
 
  /* ── Responsive ───────────────────────────────────── */
  @media (max-width: 900px) {
    .navlinks,
    .loginbtnnav { display: none; }
    .hamburger { display: flex; }

    .logo img {
    height: 63px;
    margin-top: 8px;
    object-fit: contain;
}


  }
 
  /* Push page content below fixed nav */
  body { padding-top: 72px; }
