/* Sabit iletişim: masaüstü sağ alt FAB, mobil altta tam genişlik şerit */

@media (max-width: 767px){
  body{
    padding-bottom:0;
  }
  /* Boşluğu body yerine footer içinde tut: alt bar ile görsel boşluk kalmaz */
  .lr-footer{
    padding-bottom:calc(64px + env(safe-area-inset-bottom, 0px));
  }
}

@media (min-width: 768px){
  body{
    padding-bottom:0;
  }
}

.lr-contact-float{
  --lr-cf-z:9998;
  font-family:"Poppins", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

/* ——— Masaüstü ——— */
.lr-contact-float__desktop{
  display:none;
}

@media (min-width: 768px){
  .lr-contact-float__desktop{
    display:flex;
    flex-direction:column;
    align-items:flex-end;
    gap:10px;
    position:fixed;
    right:20px;
    bottom:22px;
    z-index:var(--lr-cf-z);
    pointer-events:none;
  }

  .lr-contact-float__desktop > *{
    pointer-events:auto;
  }

  .lr-contact-float__hint{
    margin:0 0 4px 0;
    padding:8px 12px;
    background:#ffffff;
    color:#4b5563;
    font-size:13px;
    font-weight:500;
    border-radius:10px;
    box-shadow:0 4px 18px rgba(0, 0, 0, 0.12);
    white-space:nowrap;
  }

  .lr-contact-float__fab{
    display:flex;
    align-items:center;
    justify-content:center;
    width:52px;
    height:52px;
    border-radius:50%;
    color:#ffffff;
    text-decoration:none;
    box-shadow:0 4px 14px rgba(0, 0, 0, 0.22);
    transition:transform .2s ease, box-shadow .2s ease;
  }

  .lr-contact-float__fab:hover,
  .lr-contact-float__fab:focus-visible{
    transform:scale(1.06);
    box-shadow:0 6px 20px rgba(0, 0, 0, 0.28);
  }

  .lr-contact-float__fab--wa{
    background:#25d366;
  }

  .lr-contact-float__fab--call{
    background:#ff9f1c;
  }

  .lr-contact-float__fab--mail{
    background:#1e3a5f;
  }
}

/* ——— Mobil ——— */
.lr-contact-float__mobile{
  display:none;
}

@media (max-width: 767px){
  .lr-contact-float__mobile{
    display:grid;
    grid-template-columns:1fr 1fr;
    position:fixed;
    left:0;
    bottom:0;
    width:100%;
    z-index:var(--lr-cf-z);
    box-shadow:0 -4px 6px -1px rgba(0, 0, 0, 0.1);
    padding-bottom:env(safe-area-inset-bottom, 0px);
  }

  .lr-contact-float__mob{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    min-height:56px;
    padding:10px 8px;
    color:#ffffff;
    font-size:14px;
    font-weight:600;
    text-decoration:none;
    line-height:1.2;
    text-align:center;
  }

  .lr-contact-float__mob--wa{
    background:#25d366;
  }

  .lr-contact-float__mob--call{
    background:#ff9f1c;
  }

  .lr-contact-float__mob span{
    max-width:140px;
  }
}
