.navbar.navbar-landing {
    background: rgba(10, 10, 30, 0.3) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 10px 0;
  }
  .navbar .logo-wrap {
    display: inline-flex !important;
    align-items: center;
    gap: 14px;
  }
  .navbar .card-logo {
    width: 64px !important;
    height: 64px !important;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
  }
  .navbar .brand-block {
    display: flex;
    flex-direction: column;
  }
  .navbar .brand-name {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.3px;
    font-family: 'font-1197', sans-serif;
    text-shadow: 0 1px 3px rgba(0,0,0,0.2);
    line-height: 1.3;
  }
  .navbar .brand-link {
    color: #4ecca3;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.4px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: all 0.25s;
    font-family: 'font-1197', sans-serif;
    line-height: 1.3;
    margin-top: 1px;
  }
  .navbar .brand-link:hover {
    color: #6ff5c4;
    text-shadow: 0 0 8px rgba(78,204,163,0.3);
  }
  .navbar .brand-link svg { transition: transform 0.25s; }
  .navbar .brand-link:hover svg { transform: translate(2px, -2px); }

  .navbar .contact-phone-block {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
    text-align: right;
  }
  .navbar .address {
    margin: 0;
    font-size: 13px;
    line-height: 1.3;
    letter-spacing: 0.3px;
    text-transform: none;
  }
  .navbar .yak {
    font-size: 12px;
    opacity: 0.7;
    line-height: 1.3;
  }
  .navbar .yak:hover { opacity: 1; }

 @media (max-width: 576px) {
  .navbar .container {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: space-between !important;
  }
  .navbar .address,
  .navbar .yak {
    display: none !important;
  }
}
  .navbar .header-phone {
  color: #fff;
  text-decoration: none;
  font-size: clamp(12px, 3.5vw, 18px);
  font-weight: 700;
  letter-spacing: 0.5px;
  font-family: 'font-1197', sans-serif;
  transition: color 0.25s;
  line-height: 1.3;
  white-space: nowrap;
}
.navbar .header-phone:hover {
  color: #4ecca3;
  text-shadow: 0 0 8px rgba(78,204,163,0.25);
}