footer,
.site-footer {
  position: relative;
  z-index: 20000;
  background: white;
}

@media (max-width: 991px) {
  #satservi-toggle {
    display: none;
  }

  .satservi-menu-wrapper {
    position: fixed;
    bottom: 25px;
    right: 20px;
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-end;
    z-index: 10000;
    font-family: sans-serif;
    opacity: 0.8;
    transition: opacity 0.25s ease;
  }

  #satservi-toggle:checked + .satservi-menu-wrapper {
    opacity: 1;
  }

  .satservi-overlay {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 9998;
    background: rgba(0, 0, 0, 0.01);
  }

  #satservi-toggle:checked ~ .satservi-overlay {
    display: block;
  }

  .master-btn-label {
    position: relative;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background-color: #28a745;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    z-index: 10001;
    transition: background-color 0.25s ease;
    -webkit-tap-highlight-color: transparent;
  }

  .icon-phone,
  .icon-close {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .icon-phone {
    opacity: 1;
    transition: opacity 0.2s ease;
  }

  .icon-close {
    opacity: 0;
    color: white;
    font-size: 30px;
    font-weight: bold;
    line-height: 1;
    transition: opacity 0.2s ease;
  }

  #satservi-toggle:checked + .satservi-menu-wrapper .master-btn-label {
    background-color: #dc3545;
  }

  #satservi-toggle:checked + .satservi-menu-wrapper .icon-phone {
    opacity: 0;
  }

  #satservi-toggle:checked + .satservi-menu-wrapper .icon-close {
    opacity: 1;
  }

  .call-options-v11 {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 14px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    pointer-events: none;
    transition:
      opacity 0.22s ease,
      transform 0.22s ease,
      visibility 0s linear 0.22s;
  }

  #satservi-toggle:checked + .satservi-menu-wrapper .call-options-v11 {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
    transition:
      opacity 0.22s ease,
      transform 0.22s ease,
      visibility 0s linear 0s;
  }

  .fab-row {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
  }

  .city-label {
    font-size: 15px;
    font-weight: 700;
    color: #222;
    background-color: #ffffff;
    padding: 10px 18px;
    border-radius: 20px;
    white-space: nowrap;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.18);
  }

  .city-circle {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background-color: #28a745;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
  }

  .city-circle:active {
    transform: scale(0.96);
  }

  .svg-icon {
    width: 24px;
    height: 24px;
    fill: white;
    display: block;
  }
}

@media (min-width: 992px) {
  .satservi-menu-wrapper,
  .satservi-overlay {
    display: none !important;
  }
}
