 .tm-whatsapp-float {
        position: fixed;
        right: 75px;
        bottom: 26px;
        z-index: 9999;

        display: flex;
        align-items: center;
        gap: 10px;

        padding: 14px 18px;
        border-radius: 999px;

        background: linear-gradient(135deg, #25d366, #128c7e);
        color: #fff;
        font-weight: 700;
        font-size: 15px;
        text-decoration: none;

        box-shadow: 0 0 0 rgba(37, 211, 102, 0.6);
        animation: tm-whatsapp-pulse 2.2s infinite;

        transition: all .25s ease;
    }

    .tm-whatsapp-float i {
        font-size: 22px;
    }

    .tm-whatsapp-float:hover {
        transform: translateY(-3px) scale(1.02);
        box-shadow: 0 12px 40px rgba(37, 211, 102, 0.45);
        color: #fff;
    }

    /* YanÄ±p sÃ¶nme / pulse */
    @keyframes tm-whatsapp-pulse {
        0% {
            box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
        }

        70% {
            box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
        }

        100% {
            box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
        }
    }

    /* Mobil sade */
    @media (max-width: 768px) {
        .tm-whatsapp-float {
            padding: 14px;
        }

        .tm-wp-text {
            display: none;
        }
    }

    .km-modal {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.75);
        backdrop-filter: blur(6px);
        display: none;
        align-items: center;
        justify-content: center;
        z-index: 9999;
    }

    /* Modal Box */
    .km-modal-content {
        background: linear-gradient(145deg, #0f172a, #020617);
        color: #fff;
        padding: 40px;
        border-radius: 18px;
        max-width: 520px;
        width: 90%;
        text-align: center;
        position: relative;
        animation: kmFadeIn 0.6s ease;
        box-shadow: 0 40px 120px rgba(0, 0, 0, 0.6);
    }

    /* Close Button */
    .km-close {
        position: absolute;
        top: 15px;
        right: 18px;
        background: none;
        border: none;
        color: #fff;
        font-size: 28px;
        cursor: pointer;
    }

    /* Badge */
    .km-badge {
        display: inline-block;
        background: linear-gradient(90deg, #dc2626, #ef4444);
        padding: 6px 14px;
        border-radius: 999px;
        font-size: 13px;
        font-weight: 600;
        margin-bottom: 18px;
    }

    /* Title */
    .km-modal-content h2 {
        font-size: 32px;
        line-height: 1.2;
        margin-bottom: 16px;
    }

    /* Text */
    .km-modal-content p {
        font-size: 16px;
        color: #e5e7eb;
        margin-bottom: 28px;
    }

    /* Buttons */
    .km-buttons {
        display: flex;
        gap: 14px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .km-btn {
        padding: 14px 24px;
        border-radius: 10px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .km-btn.primary {
        background: linear-gradient(90deg, #22c55e, #16a34a);
        color: #022c22;
    }

    .km-btn.primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(34, 197, 94, 0.5);
    }

    .km-btn.secondary {
        background: #1f2933;
        color: #fff;
        border: 1px solid #374151;
    }

    .km-btn.secondary:hover {
        background: #374151;
    }

    /* Animation */
    @keyframes kmFadeIn {
        from {
            opacity: 0;
            transform: scale(0.9);
        }

        to {
            opacity: 1;
            transform: scale(1);
        }
    }
    .turkiye-calisma-cta {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: #0d6efd;
  color: #fff;
  padding: 14px 18px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 0 10px 10px 0;
  z-index: 9999;
  text-align: center;
  line-height: 1.3;
  box-shadow: 0 8px 20px rgba(13, 110, 253, 0.25);
  transition: all 0.3s ease;
}

.turkiye-calisma-cta:hover {
  background: #0b5ed7;
  color: #fff;
  padding-left: 24px;
}
@media (max-width: 768px) {
  .turkiye-calisma-cta {
    top: auto;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50px;
    padding: 12px 22px;
    font-size: 13px;
    white-space: nowrap;
  }
}